From 38123911d83cefb49c17a1e004c1dfd3be61084e Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 10 Aug 2015 20:57:15 -0700 Subject: [PATCH 01/37] Fix ServiceManagement test setup --- .../ServiceManagementCmdletTestHelper.cs | 47 ++++++------------- .../FunctionalTests/ServiceManagementTest.cs | 40 ++++++++-------- 2 files changed, 35 insertions(+), 52 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs index b9190545fa73..fac881f21ecc 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs @@ -12,21 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Collections; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.IO; -using System.Management.Automation; -using System.Net; -using System.Security.Cryptography.X509Certificates; -using System.Xml; -using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.WindowsAzure.Commands.Common.Storage; using Microsoft.WindowsAzure.Commands.Profile.Models; using Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions; using Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions; +using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Gateway.Model; using Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.Model; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.ConfigDataInfo; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo; @@ -34,18 +26,24 @@ using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extensions.BGInfo; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extensions.Common; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.CustomScript; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.VMAccess; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extensions.SqlServer; +using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.Extesnions.VMAccess; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.ILB; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PaasCmdletInfo; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PIRCmdletInfo; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PowershellCore; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.NetworkCmdletInfo; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.SubscriptionCmdletInfo; using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Gateway.Model; using Microsoft.WindowsAzure.Management.Network.Models; using Microsoft.WindowsAzure.Storage.Blob; +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.IO; +using System.Management.Automation; +using System.Net; +using System.Security.Cryptography.X509Certificates; +using System.Xml; namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests { @@ -1857,26 +1855,11 @@ public void RemoveAzureSubscription(string Name, bool force, bool debug = false) removeAzureSubscriptionCmdlet.Run(debug); } - public List GetAzureEnvironment(string name = null, string subscriptionDataFile = null, bool debug = false) + public List GetAzureEnvironment(string name = null, string subscriptionDataFile = null, bool debug = false) { - Collection result = (new WindowsAzurePowershellCmdlet(new GetAzureEnvironmentCmdletInfo(name, subscriptionDataFile))).Run(debug); - List envList = new List(); - - foreach (var element in result) - { - var newEnv = new AzureEnvironment(); - newEnv.Name = element.Properties.Match("Name")[0].Value.ToString(); - var endpoints = new Dictionary(); - var endpointKeys = Enum.GetValues(typeof(AzureEnvironment.Endpoint)); - foreach(var key in endpointKeys) - { - endpoints.Add((AzureEnvironment.Endpoint) key, (string) element.Properties.Match(key.ToString())[0].Value); - } - - newEnv.Endpoints = endpoints; - envList.Add(newEnv); - } - + var envList = new List(); + RunPSCmdletAndReturnAll(new GetAzureEnvironmentCmdletInfo(name, subscriptionDataFile)) + .ForEach(a => envList.Add(a)); return envList; } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs index 8c052ce0f80c..c0d4e43ced9b 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs @@ -180,33 +180,33 @@ public static void SetTestSettings() CredentialHelper.GetTestSettings(Resource.TestSettings); vmPowershellCmdlets.RemoveAzureSubscriptions(); - if (vmPowershellCmdlets.GetAzureEnvironment("ussouth").Count > 0) + var ussouthEnv = vmPowershellCmdlets.GetAzureEnvironment("ussouth"); + if (ussouthEnv != null && ussouthEnv.Count > 0) { Console.WriteLine("Removing ussouth environment..."); vmPowershellCmdlets.RunPSScript("Remove-AzureEnvironment -Name ussouth -Force"); } - List environments = vmPowershellCmdlets.GetAzureEnvironment(); + List environments = vmPowershellCmdlets.GetAzureEnvironment(); var serviceManagementUrl = GetServiceManagementUrl(CredentialHelper.PublishSettingsFile); foreach (var env in environments) { - var envServiceManagementUrl = (string) env.Endpoints[AzureEnvironment.Endpoint.ServiceManagement]; - if (!string.IsNullOrEmpty(envServiceManagementUrl)) + if (!string.IsNullOrEmpty(env.ServiceManagementUrl)) { - if (envServiceManagementUrl.Equals(serviceManagementUrl)) + if (env.ServiceManagementUrl.Equals(serviceManagementUrl)) { currentEnvName = env.Name; var curEnv = vmPowershellCmdlets.GetAzureEnvironment(currentEnvName)[0]; Console.WriteLine("Using the existing environment: {0}", currentEnvName); - Console.WriteLine("PublichSettingsFileUrl: {0}", curEnv.GetEndpoint(AzureEnvironment.Endpoint.PublishSettingsFileUrl)); - Console.WriteLine("ServiceManagement: {0}", curEnv.GetEndpoint(AzureEnvironment.Endpoint.ServiceManagement)); - Console.WriteLine("ManagementPortalUrl: {0}", curEnv.GetEndpoint(AzureEnvironment.Endpoint.ManagementPortalUrl)); - Console.WriteLine("ActiveDirectory: {0}", curEnv.GetEndpoint(AzureEnvironment.Endpoint.ActiveDirectory)); - Console.WriteLine("ActiveDirectoryServiceEndpointResourceId: {0}", curEnv.GetEndpoint(AzureEnvironment.Endpoint.ActiveDirectoryServiceEndpointResourceId)); - Console.WriteLine("ResourceManager: {0}", curEnv.GetEndpoint(AzureEnvironment.Endpoint.ResourceManager)); - Console.WriteLine("Gallery: {0}", curEnv.GetEndpoint(AzureEnvironment.Endpoint.Gallery)); - Console.WriteLine("Graph: {0}", curEnv.GetEndpoint(AzureEnvironment.Endpoint.Graph)); + Console.WriteLine("PublichSettingsFileUrl: {0}", curEnv.PublishSettingsFileUrl); + Console.WriteLine("ServiceManagement: {0}", curEnv.ServiceManagementUrl); + Console.WriteLine("ManagementPortalUrl: {0}", curEnv.ManagementPortalUrl); + Console.WriteLine("ActiveDirectory: {0}", curEnv.ActiveDirectoryAuthority); + Console.WriteLine("ActiveDirectoryServiceEndpointResourceId: {0}", curEnv.ActiveDirectoryServiceEndpointResourceId); + Console.WriteLine("ResourceManager: {0}", curEnv.ResourceManagerUrl); + Console.WriteLine("Gallery: {0}", curEnv.GalleryUrl); + Console.WriteLine("Graph: {0}", curEnv.GalleryUrl); break; } } @@ -227,14 +227,14 @@ public static void SetTestSettings() -GalleryEndpoint {7} ` -GraphEndpoint {8}", TempEnvName, - prodEnv.GetEndpoint(AzureEnvironment.Endpoint.PublishSettingsFileUrl), + prodEnv.PublishSettingsFileUrl, serviceManagementUrl, - prodEnv.GetEndpoint(AzureEnvironment.Endpoint.ManagementPortalUrl), - prodEnv.GetEndpoint(AzureEnvironment.Endpoint.ActiveDirectory), - prodEnv.GetEndpoint(AzureEnvironment.Endpoint.ActiveDirectoryServiceEndpointResourceId), - prodEnv.GetEndpoint(AzureEnvironment.Endpoint.ResourceManager), - prodEnv.GetEndpoint(AzureEnvironment.Endpoint.Gallery), - prodEnv.GetEndpoint(AzureEnvironment.Endpoint.Graph))); + prodEnv.ManagementPortalUrl, + prodEnv.ActiveDirectoryAuthority, + prodEnv.ActiveDirectoryServiceEndpointResourceId, + prodEnv.ResourceManagerUrl, + prodEnv.GalleryUrl, + prodEnv.GalleryUrl)); vmPowershellCmdlets.ImportAzurePublishSettingsFile(CredentialHelper.PublishSettingsFile, TempEnvName); } From 7d53bd94b472c2629d182bc44768f1c72b9d8469 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 11 Aug 2015 18:44:03 -0700 Subject: [PATCH 02/37] Fix AzureVMAccess test --- .../ExtensionTests/AzureVMAccessExtensionTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ExtensionTests/AzureVMAccessExtensionTests.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ExtensionTests/AzureVMAccessExtensionTests.cs index 1d4d64192a15..0114142e422b 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ExtensionTests/AzureVMAccessExtensionTests.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ExtensionTests/AzureVMAccessExtensionTests.cs @@ -87,7 +87,7 @@ public void CreateVMAccessExtensionTest() VerifyRDPExtension(vmName, serviceName); // Disbale extesnion - DisableExtension(vmName, serviceName); + DisableExtension(vmName, serviceName, "1.*"); ValidateVMAccessExtension(vmName, serviceName, false); pass = true; @@ -301,11 +301,11 @@ private void VerifyRDPExtension(string vmName, string serviceName) Console.WriteLine("Azure VM RDP file downloaded."); } - private void DisableExtension(string vmName, string serviceName) + private void DisableExtension(string vmName, string serviceName, string ver = "2.0") { var vm = GetAzureVM(vmName, serviceName); Console.WriteLine("Disabling the VM Access extesnion for the vm {0}",vmName); - vm = vmPowershellCmdlets.SetAzureVMAccessExtension(vm, disable:true, version:"2.0", forceUpdate:true); + vm = vmPowershellCmdlets.SetAzureVMAccessExtension(vm, disable:true, version:ver, forceUpdate:true); vmPowershellCmdlets.UpdateAzureVM(vmName, serviceName, vm); Console.WriteLine("Disabled VM Access extesnion for the vm {0}", vmName); } From e6f00b1db767e2b07b29950ae8f4432c8df0cef9 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Wed, 12 Aug 2015 19:36:11 -0700 Subject: [PATCH 03/37] Expose ComputeImageConfig in Get-AzurePlatformVMImage cmdlet --- .../ImagePublishing/GetAzurePlatformVMImage.cs | 7 +++++-- .../Model/VMImageDetailsContext.cs | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ImagePublishing/GetAzurePlatformVMImage.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ImagePublishing/GetAzurePlatformVMImage.cs index 3f2cfc6245f2..1eca3bcb0ed4 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ImagePublishing/GetAzurePlatformVMImage.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ImagePublishing/GetAzurePlatformVMImage.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Linq; -using System.Management.Automation; using Microsoft.WindowsAzure.Commands.ServiceManagement.Helpers; using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; using Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.Model; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.WindowsAzure.Management.Compute; +using System.Linq; +using System.Management.Automation; namespace Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.ImagePublishing { @@ -101,6 +101,9 @@ protected override void OnProcessRecord() SmallIconUri = imageDetails.SmallIconUri, SharingStatus = imageDetails.SharingStatus, PublisherName = imageDetails.PublisherName, + Offer = (imageDetails.ComputeImageAttributes == null) ? string.Empty : imageDetails.ComputeImageAttributes.Offer, + Sku = (imageDetails.ComputeImageAttributes == null) ? string.Empty : imageDetails.ComputeImageAttributes.Sku, + Version = (imageDetails.ComputeImageAttributes == null) ? string.Empty : imageDetails.ComputeImageAttributes.Version, ReplicationProgress = imageDetails.ReplicationProgress.Select( detail => new ReplicationProgressContext { diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Model/VMImageDetailsContext.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Model/VMImageDetailsContext.cs index 384e36377cf1..e1d50b4f14c6 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Model/VMImageDetailsContext.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Model/VMImageDetailsContext.cs @@ -17,5 +17,8 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageReposit public class VMImageDetailsContext : OSImageDetailsContext { public string SharingStatus { get; set; } + public string Offer { get; set; } + public string Sku { get; set; } + public string Version { get; set; } } -} \ No newline at end of file +} From e7fd44ad8183a3843209666a12cb82dfca2308dd Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Fri, 14 Aug 2015 15:59:20 -0700 Subject: [PATCH 04/37] Change hard coded locations to a function. --- .../ScenarioTests/AvailabilitySetTests.ps1 | 2 +- .../ComputeCloudExceptionTests.ps1 | 2 +- .../ScenarioTests/ComputeTestCommon.ps1 | 72 + .../VirtualMachineExtensionTests.ps1 | 10 +- .../VirtualMachineNetworkInterfaceTests.ps1 | 8 +- .../ScenarioTests/VirtualMachineTests.ps1 | 86 +- .../TestAvailabilitySet.json | 318 +- .../RunComputeCloudExceptionTests.json | 294 +- .../TestVirtualMachineAccessExtension.json | 2078 +- ...stVirtualMachineCustomScriptExtension.json | 2077 +- ...alMachineCustomScriptExtensionFileUri.json | 2405 +- .../TestVirtualMachineExtension.json | 2613 +- ...VirtualMachineExtensionUsingHashTable.json | 2379 +- .../TestAddNetworkInterface.json | 2050 +- ...TestSingleNetworkInterfaceDnsSettings.json | 2319 +- ...irtualMachineMultipleNetworkInterface.json | 2861 +- ...tVirtualMachineSingleNetworkInterface.json | 1527 +- .../TestGetVMSizeFromAllLocations.json | 265 +- .../TestLinuxVirtualMachine.json | 1162 +- .../TestVMImageCmdletOutputFormat.json | 550 +- .../TestVirtualMachine.json | 2409 +- .../TestVirtualMachineCapture.json | 1875 +- .../TestVirtualMachineDataDisk.json | 1036 +- .../TestVirtualMachineImageList.json | 3730 +- .../TestVirtualMachinePIRv2.json | 2764 +- .../TestVirtualMachinePlan.json | 844 +- .../TestVirtualMachinePlan2.json | 42421 ++++++++-------- .../TestVirtualMachineSizeAndUsage.json | 1800 +- .../TestVirtualMachineTags.json | 1871 +- ...stVirtualMachineWithVMAgentAutoUpdate.json | 1302 +- 30 files changed, 42326 insertions(+), 40804 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AvailabilitySetTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AvailabilitySetTests.ps1 index a20507f4bb0b..2d0c14f0b11c 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AvailabilitySetTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AvailabilitySetTests.ps1 @@ -24,7 +24,7 @@ function Test-AvailabilitySet try { # Common - $loc = 'West US'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; $asetName = 'avs' + $rgname; diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeCloudExceptionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeCloudExceptionTests.ps1 index 31b516ff82cf..5352c62ac105 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeCloudExceptionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeCloudExceptionTests.ps1 @@ -20,7 +20,7 @@ function Run-ComputeCloudExceptionTests try { # Common - $loc = 'West US'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; $compare = "Resource*NotFound*OperationID : `'*`'"; diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 index 7b129e658606..8c5a35612f8d 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 @@ -394,3 +394,75 @@ function Get-SasUri return $uri; } + +# Get a Location according to resource provider. +function Get-ResourceProviderLocation +{ + param ([string] $name, [string] $default = "westus", [bool] $canonical = $true) + + $loc = Get-AzureLocation | where { $_.Name.Equals($name) }; + + if ($loc -eq $null) + { + throw 'There is no available locations with given parameters'; + } + + if ($loc.LocationsString.ToLowerInvariant().Replace(" ", "").Contains($default.ToLowerInvariant().Replace(" ",""))) + { + return $default; + } + + if ($canonical) + { + return $loc.Locations[0].ToLowerInvariant().Replace(" ", ""); + } + else + { + return $loc.Locations[0]; + } +} + +function Get-ComputeVMLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/virtualMachines"; +} + +function Get-ComputeAvailabilitySetLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/availabilitySets"; +} + +function Get-ComputeVMExtensionLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/virtualMachines/extensions"; +} + +function Get-ComputeVMDiagnosticSettingLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/virtualMachines/diagnosticSettings"; +} + +function Get-ComputeVMMetricDefinitionLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/virtualMachines/metricDefinitions"; +} + +function Get-ComputeOperationLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/locations/operations"; +} + +function Get-ComputeVMSizeLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/locations/vmSizes"; +} + +function Get-ComputeUsageLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/locations/usages"; +} + +function Get-ComputePublisherLocation +{ + Get-ResourceProviderLocation "Microsoft.Compute/locations/publishers"; +} diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 index 1aead9ca56a7..4ba5a65405fe 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 @@ -24,7 +24,7 @@ function Test-VirtualMachineExtension try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -163,7 +163,7 @@ function Test-VirtualMachineExtensionUsingHashTable try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -325,7 +325,7 @@ function Test-VirtualMachineCustomScriptExtension try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -494,7 +494,7 @@ function Test-VirtualMachineCustomScriptExtensionFileUri try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -652,7 +652,7 @@ function Test-VirtualMachineAccessExtension try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1 index 346db4d72d3d..0916cb826df0 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1 @@ -24,7 +24,7 @@ function Test-SingleNetworkInterface try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -146,7 +146,7 @@ function Test-SingleNetworkInterfaceDnsSettings try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -252,7 +252,7 @@ function Test-MultipleNetworkInterface try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -366,7 +366,7 @@ function Test-AddNetworkInterface try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 index 36de6b3bdb25..449eb94f48b0 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 @@ -24,7 +24,7 @@ function Test-VirtualMachine try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -243,7 +243,7 @@ function Test-VirtualMachineImageList try { - $locStr = 'westus'; + $locStr = Get-ComputeVMLocation; # List Tests $foundAnyImage = $false; @@ -397,7 +397,7 @@ function Test-VirtualMachineSizeAndUsage try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # Availability Set @@ -571,7 +571,7 @@ function Test-VirtualMachinePIRv2 try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -680,7 +680,7 @@ function Test-VirtualMachineCapture try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -798,7 +798,7 @@ function Test-VirtualMachineDataDisk try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -878,7 +878,7 @@ function Test-VirtualMachinePlan try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -961,7 +961,7 @@ function Test-VirtualMachinePlan2 try { # Common - $loc = Get-ComputeDefaultLocation; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; @@ -1041,7 +1041,7 @@ function Test-VirtualMachineTags try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -1119,7 +1119,7 @@ function Test-VirtualMachineWithVMAgentAutoUpdate try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -1223,7 +1223,7 @@ function Test-LinuxVirtualMachine try { # Common - $loc = 'westus'; + $loc = Get-ComputeVMLocation; New-AzureResourceGroup -Name $rgname -Location $loc -Force; # VM Profile & Hardware @@ -1317,7 +1317,7 @@ function Test-LinuxVirtualMachine # Test Image Cmdlet Output Format function Test-VMImageCmdletOutputFormat { - $locStr = Get-ComputeDefaultLocation; + $locStr = Get-ComputeVMLocation; $imgRef = Get-DefaultCRPImage -loc $locStr; $publisher = $imgRef.PublisherName; $offer = $imgRef.Offer; @@ -1353,68 +1353,6 @@ function Test-GetVMSizeFromAllLocations } } -<# -.SYNOPSIS -Test Virtual Machine List with Paging -#> -function Test-VirtualMachineListWithPaging -{ - # Setup - $rgname = Get-ComputeTestResourceName - - try - { - # Common - $loc = Get-ComputeDefaultLocation; - New-AzureResourceGroup -Name $rgname -Location $loc -Force; - - $numberOfInstances = 51; - $vmSize = 'Standard_A0'; - - $templateFile = ".\Templates\azuredeploy.json"; - $paramFile = ".\Templates\azuredeploy-parameters-51vms.json"; - $paramContent = -@" -{ - "newStorageAccountName": { - "value": "${rgname}sto" - }, - "adminUsername": { - "value": "Foo12" - }, - "adminPassword": { - "value": "BaR@123${rgname}" - }, - "numberOfInstances": { - "value": $numberOfInstances - }, - "location": { - "value": "$loc" - }, - "vmSize": { - "value": "$vmSize" - } -} -"@; - - Set-Content -Path $paramFile -Value $paramContent -Force -Verbose; - - New-AzureResourceGroupDeployment -Name "${rgname}dp" -ResourceGroupName $rgname -TemplateFile $templateFile -TemplateParameterFile $paramFile; - - $vms = Get-AzureVM -ResourceGroupName $rgname; - Assert-True { $vms.Count -eq $numberOfInstances }; - - $vms = Get-AzureVM; - Assert-True { $vms.Count -ge $numberOfInstances }; - } - finally - { - # Cleanup - Clean-ResourceGroup $rgname - } -} - - <# .SYNOPSIS Test Virtual Machine List with Paging diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AvailabilitySetTests/TestAvailabilitySet.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AvailabilitySetTests/TestAvailabilitySet.json index 2671bff3d7ae..ca54f96ac5b2 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AvailabilitySetTests/TestAvailabilitySet.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AvailabilitySetTests/TestAvailabilitySet.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3330?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzMzMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "06ebd587-09ee-4d5a-850c-efa320963eae" + ], + "x-ms-correlation-request-id": [ + "06ebd587-09ee-4d5a-850c-efa320963eae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T214816Z:06ebd587-09ee-4d5a-850c-efa320963eae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 21:48:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14986" ], "x-ms-request-id": [ - "81fa8f09-586d-4290-bb7d-6dfc0f9807bd" + "514eae6e-0c3f-4395-9aed-078c2010a9e8" ], "x-ms-correlation-request-id": [ - "81fa8f09-586d-4290-bb7d-6dfc0f9807bd" + "514eae6e-0c3f-4395-9aed-078c2010a9e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004748Z:81fa8f09-586d-4290-bb7d-6dfc0f9807bd" + "WESTUS:20150813T214816Z:514eae6e-0c3f-4395-9aed-078c2010a9e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:47:47 GMT" + "Thu, 13 Aug 2015 21:48:15 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3330?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzMzMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14984" ], "x-ms-request-id": [ - "ac0700ef-38b2-4efb-be15-1842a1c95178" + "cb1842e0-b5f0-4de1-bb67-705c5d1bb625" ], "x-ms-correlation-request-id": [ - "ac0700ef-38b2-4efb-be15-1842a1c95178" + "cb1842e0-b5f0-4de1-bb67-705c5d1bb625" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004752Z:ac0700ef-38b2-4efb-be15-1842a1c95178" + "WESTUS:20150813T214819Z:cb1842e0-b5f0-4de1-bb67-705c5d1bb625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,31 +139,31 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:47:52 GMT" + "Thu, 13 Aug 2015 21:48:18 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3330?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzMzMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "28" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330\",\r\n \"name\": \"pstestrg3330\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917\",\r\n \"name\": \"crptestps5917\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-request-id": [ - "ecce9fec-56a8-4887-8613-fa236cfe4d57" + "f7fb1c01-f7e0-42f3-a62e-65241c9305bd" ], "x-ms-correlation-request-id": [ - "ecce9fec-56a8-4887-8613-fa236cfe4d57" + "f7fb1c01-f7e0-42f3-a62e-65241c9305bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004748Z:ecce9fec-56a8-4887-8613-fa236cfe4d57" + "WESTUS:20150813T214816Z:f7fb1c01-f7e0-42f3-a62e-65241c9305bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:47:47 GMT" + "Thu, 13 Aug 2015 21:48:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzMzMC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14985" ], "x-ms-request-id": [ - "9ed7cea8-7f0a-4b1f-a02c-5a9e350f28b9" + "6dd2decc-cbdb-40d4-99a6-d5e6f1542e1e" ], "x-ms-correlation-request-id": [ - "9ed7cea8-7f0a-4b1f-a02c-5a9e350f28b9" + "6dd2decc-cbdb-40d4-99a6-d5e6f1542e1e" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004748Z:9ed7cea8-7f0a-4b1f-a02c-5a9e350f28b9" + "WESTUS:20150813T214816Z:6dd2decc-cbdb-40d4-99a6-d5e6f1542e1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:47:47 GMT" + "Thu, 13 Aug 2015 21:48:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3330/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzMzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5917/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b5a4d61c-ed8b-4242-b62a-509eac87d92e" + "westus:85f710dc-72ca-48bf-94e3-37e2949acbef" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "14835" ], "x-ms-correlation-request-id": [ - "230b3ea2-e823-4176-9183-4c8840e85055" + "04422246-dec4-4a5f-b6f1-facf97b7e1d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004813Z:230b3ea2-e823-4176-9183-4c8840e85055" + "WESTUS:20150813T214817Z:04422246-dec4-4a5f-b6f1-facf97b7e1d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,16 +292,16 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:48:13 GMT" + "Thu, 13 Aug 2015 21:48:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/providers/Microsoft.Compute/availabilitySets/avspstestrg3330?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzMzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hdnNwc3Rlc3RyZzMzMzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/providers/Microsoft.Compute/availabilitySets/avscrptestps5917?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXZzY3JwdGVzdHBzNTkxNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 2,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"name\": \"avspstestrg3330\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 2,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"name\": \"avscrptestps5917\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -262,13 +310,13 @@ "171" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 2,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/providers/Microsoft.Compute/availabilitySets/avspstestrg3330\",\r\n \"name\": \"avspstestrg3330\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 2,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/providers/Microsoft.Compute/availabilitySets/avscrptestps5917\",\r\n \"name\": \"avscrptestps5917\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "372" + "375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,8 +330,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "96f021ad-d5ee-4213-ac69-7a1fd6c530b4" + "5748cc23-9d5b-48d1-bed0-8e68817aabbd" ], "Cache-Control": [ "no-cache" @@ -293,34 +344,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1179" ], "x-ms-correlation-request-id": [ - "60cd15b0-6dba-437f-92a0-aaf1572df3b5" + "122dc794-72a0-43e8-9ee3-577f4d7c1bfd" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004759Z:60cd15b0-6dba-437f-92a0-aaf1572df3b5" + "WESTUS:20150813T214818Z:122dc794-72a0-43e8-9ee3-577f4d7c1bfd" ], "Date": [ - "Wed, 29 Apr 2015 00:47:58 GMT" + "Thu, 13 Aug 2015 21:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzMzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 2,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/providers/Microsoft.Compute/availabilitySets/avspstestrg3330\",\r\n \"name\": \"avspstestrg3330\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 2,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/providers/Microsoft.Compute/availabilitySets/avscrptestps5917\",\r\n \"name\": \"avscrptestps5917\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "473" + "476" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,8 +385,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "bda0219a-894e-4870-954d-45a66f85372c" + "22fc0b09-4630-4f4a-a29d-527adff95181" ], "Cache-Control": [ "no-cache" @@ -345,28 +399,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14963" ], "x-ms-correlation-request-id": [ - "107602ba-e0b7-4c64-8109-5f6ee998a01d" + "3290d80b-434a-4ddc-9408-cfd694b435d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004759Z:107602ba-e0b7-4c64-8109-5f6ee998a01d" + "WESTUS:20150813T214818Z:3290d80b-434a-4ddc-9408-cfd694b435d8" ], "Date": [ - "Wed, 29 Apr 2015 00:47:58 GMT" + "Thu, 13 Aug 2015 21:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzMzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -384,16 +438,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14961" ], "x-ms-request-id": [ - "28f1d32d-c79c-4bdc-98ac-aa6f34b5dbcb" + "efce3ae1-e28b-4053-a0ca-f3da89bb77c6" ], "x-ms-correlation-request-id": [ - "28f1d32d-c79c-4bdc-98ac-aa6f34b5dbcb" + "efce3ae1-e28b-4053-a0ca-f3da89bb77c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004759Z:28f1d32d-c79c-4bdc-98ac-aa6f34b5dbcb" + "WESTUS:20150813T214819Z:efce3ae1-e28b-4053-a0ca-f3da89bb77c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -402,25 +456,25 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:47:59 GMT" + "Thu, 13 Aug 2015 21:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/providers/Microsoft.Compute/availabilitySets/avspstestrg3330?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzMzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hdnNwc3Rlc3RyZzMzMzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/providers/Microsoft.Compute/availabilitySets/avscrptestps5917?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXZzY3JwdGVzdHBzNTkxNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 2,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/providers/Microsoft.Compute/availabilitySets/avspstestrg3330\",\r\n \"name\": \"avspstestrg3330\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 2,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/providers/Microsoft.Compute/availabilitySets/avscrptestps5917\",\r\n \"name\": \"avscrptestps5917\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "403" ], "Content-Type": [ "application/json; charset=utf-8" @@ -434,8 +488,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "9904aa19-1bf3-4036-ab7b-1d8030974ebb" + "f8da517a-217e-4e00-946f-94e01e2e177f" ], "Cache-Control": [ "no-cache" @@ -445,28 +502,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14962" ], "x-ms-correlation-request-id": [ - "bb28bc79-a1a8-4bf2-b4a5-944dc7e313f5" + "59188316-9e6c-4562-bc84-3bafa7b91ca0" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004759Z:bb28bc79-a1a8-4bf2-b4a5-944dc7e313f5" + "WESTUS:20150813T214818Z:59188316-9e6c-4562-bc84-3bafa7b91ca0" ], "Date": [ - "Wed, 29 Apr 2015 00:47:58 GMT" + "Thu, 13 Aug 2015 21:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3330/providers/Microsoft.Compute/availabilitySets/avspstestrg3330?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzMzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hdnNwc3Rlc3RyZzMzMzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5917/providers/Microsoft.Compute/availabilitySets/avscrptestps5917?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXZzY3JwdGVzdHBzNTkxNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -483,8 +540,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "9e078faa-7650-4abf-9351-cb3fec9d6922" + "e113e530-4ee2-4cf7-9e70-fb8cad42df94" ], "Cache-Control": [ "no-cache" @@ -494,23 +554,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1178" ], "x-ms-correlation-request-id": [ - "db39a1d4-0f49-4547-adb7-b7e9c82d80ad" + "15738047-8c54-4974-a0d2-103dd9ad5a59" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004759Z:db39a1d4-0f49-4547-adb7-b7e9c82d80ad" + "WESTUS:20150813T214818Z:15738047-8c54-4974-a0d2-103dd9ad5a59" ], "Date": [ - "Wed, 29 Apr 2015 00:47:59 GMT" + "Thu, 13 Aug 2015 21:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3330?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzMzMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5917?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -533,16 +593,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-request-id": [ - "1ccf278b-afbb-474a-a160-7a3765d4bb68" + "d932849b-baf9-4955-90ea-36ca3cf82db7" ], "x-ms-correlation-request-id": [ - "1ccf278b-afbb-474a-a160-7a3765d4bb68" + "d932849b-baf9-4955-90ea-36ca3cf82db7" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004753Z:1ccf278b-afbb-474a-a160-7a3765d4bb68" + "WESTUS:20150813T214819Z:d932849b-baf9-4955-90ea-36ca3cf82db7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -551,17 +611,17 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:47:53 GMT" + "Thu, 13 Aug 2015 21:48:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMzMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMzMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek16TXpBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,16 +647,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14983" ], "x-ms-request-id": [ - "1261f057-37eb-42b9-acd3-e79b8d2b3ca7" + "5b5dcad6-333b-4698-ab3f-f55be0b867bb" ], "x-ms-correlation-request-id": [ - "1261f057-37eb-42b9-acd3-e79b8d2b3ca7" + "5b5dcad6-333b-4698-ab3f-f55be0b867bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004753Z:1261f057-37eb-42b9-acd3-e79b8d2b3ca7" + "WESTUS:20150813T214819Z:5b5dcad6-333b-4698-ab3f-f55be0b867bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -605,17 +665,17 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:47:53 GMT" + "Thu, 13 Aug 2015 21:48:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMzMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMzMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek16TXpBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,16 +701,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14982" ], "x-ms-request-id": [ - "630be9c9-e419-43a6-a83d-c629d25e58a3" + "f8dad239-02cd-411d-8958-110a5730c9d8" ], "x-ms-correlation-request-id": [ - "630be9c9-e419-43a6-a83d-c629d25e58a3" + "f8dad239-02cd-411d-8958-110a5730c9d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004808Z:630be9c9-e419-43a6-a83d-c629d25e58a3" + "WESTUS:20150813T214834Z:f8dad239-02cd-411d-8958-110a5730c9d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -659,17 +719,17 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:48:07 GMT" + "Thu, 13 Aug 2015 21:48:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMzMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMzMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek16TXpBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,16 +755,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14981" ], "x-ms-request-id": [ - "d7da4a63-9a48-4bf8-818e-975dbde51f64" + "8ad8780e-8856-4bc2-aaa3-18c60d232b19" ], "x-ms-correlation-request-id": [ - "d7da4a63-9a48-4bf8-818e-975dbde51f64" + "8ad8780e-8856-4bc2-aaa3-18c60d232b19" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004823Z:d7da4a63-9a48-4bf8-818e-975dbde51f64" + "WESTUS:20150813T214849Z:8ad8780e-8856-4bc2-aaa3-18c60d232b19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -713,17 +773,17 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:48:22 GMT" + "Thu, 13 Aug 2015 21:48:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMzMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMzMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek16TXpBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -746,16 +806,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14980" ], "x-ms-request-id": [ - "2bee0bb6-fe32-486c-8d60-ab71e06bfa4e" + "1a4105ef-c574-44e9-8285-5d3119386de7" ], "x-ms-correlation-request-id": [ - "2bee0bb6-fe32-486c-8d60-ab71e06bfa4e" + "1a4105ef-c574-44e9-8285-5d3119386de7" ], "x-ms-routing-request-id": [ - "WESTUS:20150429T004838Z:2bee0bb6-fe32-486c-8d60-ab71e06bfa4e" + "WESTUS:20150813T214904Z:1a4105ef-c574-44e9-8285-5d3119386de7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,7 +824,7 @@ "no-cache" ], "Date": [ - "Wed, 29 Apr 2015 00:48:38 GMT" + "Thu, 13 Aug 2015 21:49:03 GMT" ] }, "StatusCode": 200 @@ -772,12 +832,12 @@ ], "Names": { "Test-AvailabilitySet": [ - "pstestrg3330" + "crptestps5917" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ComputeCloudExceptionTests/RunComputeCloudExceptionTests.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ComputeCloudExceptionTests/RunComputeCloudExceptionTests.json index d992b2d44c0e..a7cf7ef28aa0 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ComputeCloudExceptionTests/RunComputeCloudExceptionTests.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.ComputeCloudExceptionTests/RunComputeCloudExceptionTests.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8748?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "749cdac1-c0c4-4715-bf1d-c30d497e73ad" + ], + "x-ms-correlation-request-id": [ + "749cdac1-c0c4-4715-bf1d-c30d497e73ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T214955Z:749cdac1-c0c4-4715-bf1d-c30d497e73ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 21:49:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1157?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczExNTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14978" ], "x-ms-request-id": [ - "535531c5-0892-4eec-8813-796615b2ae04" + "e6e0f24e-e341-4a9c-8c09-42a7d5418d00" ], "x-ms-correlation-request-id": [ - "535531c5-0892-4eec-8813-796615b2ae04" + "e6e0f24e-e341-4a9c-8c09-42a7d5418d00" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192052Z:535531c5-0892-4eec-8813-796615b2ae04" + "WESTUS:20150813T214955Z:e6e0f24e-e341-4a9c-8c09-42a7d5418d00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:52 GMT" + "Thu, 13 Aug 2015 21:49:55 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8748?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1157?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczExNTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14976" ], "x-ms-request-id": [ - "6f1f7ea8-2bae-45e7-bafd-3d5bb7791d9a" + "47019d75-7de2-4d38-9748-d33f0eea48c0" ], "x-ms-correlation-request-id": [ - "6f1f7ea8-2bae-45e7-bafd-3d5bb7791d9a" + "47019d75-7de2-4d38-9748-d33f0eea48c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192057Z:6f1f7ea8-2bae-45e7-bafd-3d5bb7791d9a" + "WESTUS:20150813T214956Z:47019d75-7de2-4d38-9748-d33f0eea48c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,28 +139,28 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:57 GMT" + "Thu, 13 Aug 2015 21:49:56 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8748?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1157?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczExNTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "28" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8748\",\r\n \"name\": \"crptestps8748\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1157\",\r\n \"name\": \"crptestps1157\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-request-id": [ - "5ee740cd-6ca2-4f42-9642-7d3c8c912b28" + "ae09c851-3873-478e-91cb-5f58cffd397a" ], "x-ms-correlation-request-id": [ - "5ee740cd-6ca2-4f42-9642-7d3c8c912b28" + "ae09c851-3873-478e-91cb-5f58cffd397a" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192056Z:5ee740cd-6ca2-4f42-9642-7d3c8c912b28" + "WESTUS:20150813T214955Z:ae09c851-3873-478e-91cb-5f58cffd397a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:55 GMT" + "Thu, 13 Aug 2015 21:49:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8748/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1157/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczExNTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14977" ], "x-ms-request-id": [ - "c3c07259-0c47-40c9-9721-8449ba27349e" + "cbc081dd-30e1-4c14-8e64-44d3e7f6972c" ], "x-ms-correlation-request-id": [ - "c3c07259-0c47-40c9-9721-8449ba27349e" + "cbc081dd-30e1-4c14-8e64-44d3e7f6972c" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192056Z:c3c07259-0c47-40c9-9721-8449ba27349e" + "WESTUS:20150813T214955Z:cbc081dd-30e1-4c14-8e64-44d3e7f6972c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:55 GMT" + "Thu, 13 Aug 2015 21:49:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8748/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1157/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczExNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1d994c32-29eb-4093-9847-c14ed9421c4d" + "westus:1676afaf-be00-488e-8d2a-c8fd2025dad6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14830" ], "x-ms-correlation-request-id": [ - "e6336b76-a26c-45c4-9c1a-14c4a0e0154c" + "6fd3eb46-8520-4009-810e-aa94e1017f08" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192057Z:e6336b76-a26c-45c4-9c1a-14c4a0e0154c" + "WESTUS:20150813T214956Z:6fd3eb46-8520-4009-810e-aa94e1017f08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,25 +292,25 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:56 GMT" + "Thu, 13 Aug 2015 21:49:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8748/providers/Microsoft.Compute/virtualMachines/test?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy90ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1157/providers/Microsoft.Compute/virtualMachines/test?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczExNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy90ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/test' under resource group 'crptestps1157' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "9e19cac2-59e6-4268-8ffc-1458aa1b055f" + "5ddc9dbc-8cdf-4606-94b3-fcfdd28a0d11" ], "x-ms-correlation-request-id": [ - "9e19cac2-59e6-4268-8ffc-1458aa1b055f" + "5ddc9dbc-8cdf-4606-94b3-fcfdd28a0d11" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192057Z:9e19cac2-59e6-4268-8ffc-1458aa1b055f" + "WESTUS:20150813T214956Z:5ddc9dbc-8cdf-4606-94b3-fcfdd28a0d11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,19 +340,19 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:56 GMT" + "Thu, 13 Aug 2015 21:49:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/foo/providers/Microsoft.Compute/virtualMachines/bar?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2Zvby9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2Jhcj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/foo/providers/Microsoft.Compute/virtualMachines/bar?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2Zvby9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2Jhcj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'foo' could not be found.\"\r\n }\r\n}", @@ -325,13 +373,13 @@ "gateway" ], "x-ms-request-id": [ - "27100ee3-0046-4411-b7c3-c3dbf4286ead" + "4311b140-c062-46f9-9083-597a2fb8285b" ], "x-ms-correlation-request-id": [ - "27100ee3-0046-4411-b7c3-c3dbf4286ead" + "4311b140-c062-46f9-9083-597a2fb8285b" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192057Z:27100ee3-0046-4411-b7c3-c3dbf4286ead" + "WESTUS:20150813T214956Z:4311b140-c062-46f9-9083-597a2fb8285b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,25 +388,25 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:57 GMT" + "Thu, 13 Aug 2015 21:49:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8748/providers/Microsoft.Compute/availabilitySets/test?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvdGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1157/providers/Microsoft.Compute/availabilitySets/test?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczExNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvdGVzdD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/availabilitySets/test' under resource group 'crptestps1157' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "156" ], "Content-Type": [ "application/json; charset=utf-8" @@ -373,13 +421,13 @@ "gateway" ], "x-ms-request-id": [ - "cdd9d4b2-7622-444a-9e76-86d058aed3e7" + "b2850611-5b1a-4783-ae5a-5e949eaa3a68" ], "x-ms-correlation-request-id": [ - "cdd9d4b2-7622-444a-9e76-86d058aed3e7" + "b2850611-5b1a-4783-ae5a-5e949eaa3a68" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192057Z:cdd9d4b2-7622-444a-9e76-86d058aed3e7" + "WESTUS:20150813T214956Z:b2850611-5b1a-4783-ae5a-5e949eaa3a68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -388,14 +436,14 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:57 GMT" + "Thu, 13 Aug 2015 21:49:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8748?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1157?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczExNTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -418,70 +466,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "b29b26d7-7261-4c26-a873-160a31f80963" - ], - "x-ms-correlation-request-id": [ - "b29b26d7-7261-4c26-a873-160a31f80963" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150624T192058Z:b29b26d7-7261-4c26-a873-160a31f80963" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 24 Jun 2015 19:20:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "1188" ], "x-ms-request-id": [ - "409c3666-35d6-4c96-ac88-2e7d58c6e275" + "fe8f25de-5502-4c59-b212-d00c3f1ff097" ], "x-ms-correlation-request-id": [ - "409c3666-35d6-4c96-ac88-2e7d58c6e275" + "fe8f25de-5502-4c59-b212-d00c3f1ff097" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192058Z:409c3666-35d6-4c96-ac88-2e7d58c6e275" + "WESTUS:20150813T214956Z:fe8f25de-5502-4c59-b212-d00c3f1ff097" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,17 +484,17 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:20:57 GMT" + "Thu, 13 Aug 2015 21:49:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMTU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMTU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TVRVM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -526,16 +520,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14975" ], "x-ms-request-id": [ - "b9025487-26f9-4887-9eeb-3d6bb45277ea" + "102f86d5-f5aa-4ed4-8483-9e99e15515bc" ], "x-ms-correlation-request-id": [ - "b9025487-26f9-4887-9eeb-3d6bb45277ea" + "102f86d5-f5aa-4ed4-8483-9e99e15515bc" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192113Z:b9025487-26f9-4887-9eeb-3d6bb45277ea" + "WESTUS:20150813T214956Z:102f86d5-f5aa-4ed4-8483-9e99e15515bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -544,17 +538,17 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:21:13 GMT" + "Thu, 13 Aug 2015 21:49:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMTU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMTU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TVRVM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -580,16 +574,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14974" ], "x-ms-request-id": [ - "94b40d48-6ff5-4877-88a8-0eab57c68c23" + "3c65a2de-c7a9-4956-87fe-15099c369b0b" ], "x-ms-correlation-request-id": [ - "94b40d48-6ff5-4877-88a8-0eab57c68c23" + "3c65a2de-c7a9-4956-87fe-15099c369b0b" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192128Z:94b40d48-6ff5-4877-88a8-0eab57c68c23" + "WESTUS:20150813T215012Z:3c65a2de-c7a9-4956-87fe-15099c369b0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,17 +592,17 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:21:27 GMT" + "Thu, 13 Aug 2015 21:50:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMTU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMTU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TVRVM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -631,16 +625,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14973" ], "x-ms-request-id": [ - "7327fe57-fe25-4d74-95f8-2f7db2ecb5a0" + "fbff504d-17a3-4737-8cb7-5f2e7daf08d1" ], "x-ms-correlation-request-id": [ - "7327fe57-fe25-4d74-95f8-2f7db2ecb5a0" + "fbff504d-17a3-4737-8cb7-5f2e7daf08d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150624T192143Z:7327fe57-fe25-4d74-95f8-2f7db2ecb5a0" + "WESTUS:20150813T215027Z:fbff504d-17a3-4737-8cb7-5f2e7daf08d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,7 +643,7 @@ "no-cache" ], "Date": [ - "Wed, 24 Jun 2015 19:21:42 GMT" + "Thu, 13 Aug 2015 21:50:26 GMT" ] }, "StatusCode": 200 @@ -657,11 +651,11 @@ ], "Names": { "": [ - "crptestps8748" + "crptestps1157" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json index d435e9a67722..8c830c0b3e93 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5805?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "c6ff53ae-145e-4c9b-97ad-5f1f76e89f7b" + ], + "x-ms-correlation-request-id": [ + "c6ff53ae-145e-4c9b-97ad-5f1f76e89f7b" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T053604Z:c6ff53ae-145e-4c9b-97ad-5f1f76e89f7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 05:36:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14974" ], "x-ms-request-id": [ - "5506a7eb-5fc2-4d1e-adef-8ee0e08244b7" + "914404f5-f21d-483e-a47b-a607fc5da54f" ], "x-ms-correlation-request-id": [ - "5506a7eb-5fc2-4d1e-adef-8ee0e08244b7" + "914404f5-f21d-483e-a47b-a607fc5da54f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172111Z:5506a7eb-5fc2-4d1e-adef-8ee0e08244b7" + "SOUTHCENTRALUS:20150813T053605Z:914404f5-f21d-483e-a47b-a607fc5da54f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:21:10 GMT" + "Thu, 13 Aug 2015 05:36:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5805?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14971" ], "x-ms-request-id": [ - "913cc7cd-8127-432d-95d7-b8df13d2efd1" + "6a38a2c8-de34-4c68-a41a-32acaf0a963b" ], "x-ms-correlation-request-id": [ - "913cc7cd-8127-432d-95d7-b8df13d2efd1" + "6a38a2c8-de34-4c68-a41a-32acaf0a963b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174321Z:913cc7cd-8127-432d-95d7-b8df13d2efd1" + "SOUTHCENTRALUS:20150813T055729Z:6a38a2c8-de34-4c68-a41a-32acaf0a963b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:43:20 GMT" + "Thu, 13 Aug 2015 05:57:28 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5805?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805\",\r\n \"name\": \"crptestps5805\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224\",\r\n \"name\": \"crptestps1224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "6ca843e7-05ed-44d4-ac85-c9f1fe42eea9" + "a75a21fa-bd2c-4f89-9a28-e845c32e32a3" ], "x-ms-correlation-request-id": [ - "6ca843e7-05ed-44d4-ac85-c9f1fe42eea9" + "a75a21fa-bd2c-4f89-9a28-e845c32e32a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172111Z:6ca843e7-05ed-44d4-ac85-c9f1fe42eea9" + "SOUTHCENTRALUS:20150813T053605Z:a75a21fa-bd2c-4f89-9a28-e845c32e32a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:21:11 GMT" + "Thu, 13 Aug 2015 05:36:05 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14973" ], "x-ms-request-id": [ - "ea0c3e76-5da9-433b-847a-4b5c645ccc51" + "c79a2c70-552f-4cff-9491-d92b9286198e" ], "x-ms-correlation-request-id": [ - "ea0c3e76-5da9-433b-847a-4b5c645ccc51" + "c79a2c70-552f-4cff-9491-d92b9286198e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172111Z:ea0c3e76-5da9-433b-847a-4b5c645ccc51" + "SOUTHCENTRALUS:20150813T053605Z:c79a2c70-552f-4cff-9491-d92b9286198e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:21:11 GMT" + "Thu, 13 Aug 2015 05:36:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5805/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:02a6dc16-fd0a-4462-b986-4aa389b01719" + "brazilus:beda92fb-76d5-4dfc-938e-8bcafdb15f75" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14752" + "14999" ], "x-ms-correlation-request-id": [ - "a01aa0c4-13bc-48d6-888e-937649566be1" + "5b576cb3-0956-44b6-8a2b-05dee865e94f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172111Z:a01aa0c4-13bc-48d6-888e-937649566be1" + "SOUTHCENTRALUS:20150813T053606Z:5b576cb3-0956-44b6-8a2b-05dee865e94f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:21:11 GMT" + "Thu, 13 Aug 2015 05:36:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTgwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTIyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps1224' under resource group 'crptestps1224' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "441d59a7-6d10-4e4b-a4b4-4e666ec68602" + "19ff9fc6-5127-41bf-9fce-874b83f538c3" ], "x-ms-correlation-request-id": [ - "441d59a7-6d10-4e4b-a4b4-4e666ec68602" + "19ff9fc6-5127-41bf-9fce-874b83f538c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172112Z:441d59a7-6d10-4e4b-a4b4-4e666ec68602" + "SOUTHCENTRALUS:20150813T053606Z:19ff9fc6-5127-41bf-9fce-874b83f538c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:21:11 GMT" + "Thu, 13 Aug 2015 05:36:06 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTgwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTIyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805\",\r\n \"etag\": \"W/\\\"d0a5a511-5818-4438-b90c-1ad1cd838b50\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805/subnets/subnetcrptestps5805\",\r\n \"etag\": \"W/\\\"d0a5a511-5818-4438-b90c-1ad1cd838b50\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224\",\r\n \"etag\": \"W/\\\"00a4967f-26ad-4136-a814-8378b20c09b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02047286-5193-4572-89eb-bf592dbadcac\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\",\r\n \"etag\": \"W/\\\"00a4967f-26ad-4136-a814-8378b20c09b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "b205a153-6521-451e-b18a-c959546507cd" + "c06e1c9f-36fa-42e3-8d49-1032c58656e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"d0a5a511-5818-4438-b90c-1ad1cd838b50\"" + "W/\"00a4967f-26ad-4136-a814-8378b20c09b4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14997" ], "x-ms-correlation-request-id": [ - "848a76c6-694f-494c-b02f-2c277f29a1c2" + "fb7d1f36-31fa-4a46-9806-170b176becb7" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172113Z:848a76c6-694f-494c-b02f-2c277f29a1c2" + "SOUTHCENTRALUS:20150813T053608Z:fb7d1f36-31fa-4a46-9806-170b176becb7" ], "Date": [ - "Fri, 19 Jun 2015 17:21:12 GMT" + "Thu, 13 Aug 2015 05:36:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTgwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTIyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805\",\r\n \"etag\": \"W/\\\"d0a5a511-5818-4438-b90c-1ad1cd838b50\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805/subnets/subnetcrptestps5805\",\r\n \"etag\": \"W/\\\"d0a5a511-5818-4438-b90c-1ad1cd838b50\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224\",\r\n \"etag\": \"W/\\\"00a4967f-26ad-4136-a814-8378b20c09b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02047286-5193-4572-89eb-bf592dbadcac\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\",\r\n \"etag\": \"W/\\\"00a4967f-26ad-4136-a814-8378b20c09b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "09eb62bd-feb1-4f02-afd9-92f6d8f807b8" + "d11fc08d-a413-4451-85ea-9f7d57a10668" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"d0a5a511-5818-4438-b90c-1ad1cd838b50\"" + "W/\"00a4967f-26ad-4136-a814-8378b20c09b4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14996" ], "x-ms-correlation-request-id": [ - "fdae0527-32bc-468f-b6b9-5b6e02abb361" + "cdb799c2-3e3f-45e5-afc3-7e64a7cdce06" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172113Z:fdae0527-32bc-468f-b6b9-5b6e02abb361" + "SOUTHCENTRALUS:20150813T053608Z:cdb799c2-3e3f-45e5-afc3-7e64a7cdce06" ], "Date": [ - "Fri, 19 Jun 2015 17:21:12 GMT" + "Thu, 13 Aug 2015 05:36:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTgwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTIyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps5805\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps5805\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps1224\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps1224\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -423,10 +471,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805\",\r\n \"etag\": \"W/\\\"c7d80141-01fa-448c-a29d-60a994b37cb6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805/subnets/subnetcrptestps5805\",\r\n \"etag\": \"W/\\\"c7d80141-01fa-448c-a29d-60a994b37cb6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224\",\r\n \"etag\": \"W/\\\"2f8d0927-0d37-487b-b200-7afa7a6dac11\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"02047286-5193-4572-89eb-bf592dbadcac\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\",\r\n \"etag\": \"W/\\\"2f8d0927-0d37-487b-b200-7afa7a6dac11\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "965" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "68b9d827-30a6-488a-8dd0-9cadd92d69dc" + "18e70a11-f40d-4c79-afbe-110e8d2b16cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/68b9d827-30a6-488a-8dd0-9cadd92d69dc?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/18e70a11-f40d-4c79-afbe-110e8d2b16cf?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "4bd45db2-459d-40f7-8b7b-ec0074d96f48" + "1a0bd4f7-b6e0-40dc-a196-58b273277272" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172112Z:4bd45db2-459d-40f7-8b7b-ec0074d96f48" + "SOUTHCENTRALUS:20150813T053608Z:1a0bd4f7-b6e0-40dc-a196-58b273277272" ], "Date": [ - "Fri, 19 Jun 2015 17:21:12 GMT" + "Thu, 13 Aug 2015 05:36:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/68b9d827-30a6-488a-8dd0-9cadd92d69dc?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjhiOWQ4MjctMzBhNi00ODhhLThkZDAtOWNhZGQ5MmQ2OWRjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/18e70a11-f40d-4c79-afbe-110e8d2b16cf?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMThlNzBhMTEtZjQwZC00Yzc5LWFmYmUtMTEwZThkMmIxNmNmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "7d27c6c2-9eaf-4e87-aa36-6c2de95d66a7" + "ac4e1f5b-0ec9-4eb4-be32-1f870f4f8107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14998" ], "x-ms-correlation-request-id": [ - "89f9eb17-0851-42e7-ae8a-df8322df8a4b" + "2d9dbc6f-9701-4ac2-afb1-769c33c5bc40" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172113Z:89f9eb17-0851-42e7-ae8a-df8322df8a4b" + "SOUTHCENTRALUS:20150813T053608Z:2d9dbc6f-9701-4ac2-afb1-769c33c5bc40" ], "Date": [ - "Fri, 19 Jun 2015 17:21:12 GMT" + "Thu, 13 Aug 2015 05:36:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTgwNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTIyNC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps1224' under resource group 'crptestps1224' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "fab42d7a-d5ad-4e28-ba36-2da7791c8898" + "a872e17f-ce9b-4ceb-b23c-2059854df2ce" ], "x-ms-correlation-request-id": [ - "fab42d7a-d5ad-4e28-ba36-2da7791c8898" + "a872e17f-ce9b-4ceb-b23c-2059854df2ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172113Z:fab42d7a-d5ad-4e28-ba36-2da7791c8898" + "SOUTHCENTRALUS:20150813T053609Z:a872e17f-ce9b-4ceb-b23c-2059854df2ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +617,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:21:12 GMT" + "Thu, 13 Aug 2015 05:36:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTgwNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTIyNC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +632,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805\",\r\n \"etag\": \"W/\\\"eb4c0037-c5d7-49a2-94de-0fc46f8b450c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5805\",\r\n \"fqdn\": \"pubipcrptestps5805.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\",\r\n \"etag\": \"W/\\\"760f2650-10b4-4a30-9e70-6ce66790b507\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ce8f75c-b308-4c10-a869-c151b8915bd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1224\",\r\n \"fqdn\": \"pubipcrptestps1224.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "dd02e2c0-5e69-4f3e-bda1-679382098f1f" + "cb583110-8b52-47c1-9f95-8dbd4c06095e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +656,30 @@ "no-cache" ], "ETag": [ - "W/\"eb4c0037-c5d7-49a2-94de-0fc46f8b450c\"" + "W/\"760f2650-10b4-4a30-9e70-6ce66790b507\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14993" ], "x-ms-correlation-request-id": [ - "cc9e3ea0-bb22-4732-8677-01f33597ab66" + "7157b59e-0c88-4062-b356-eba5b7521904" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172114Z:cc9e3ea0-bb22-4732-8677-01f33597ab66" + "SOUTHCENTRALUS:20150813T053611Z:7157b59e-0c88-4062-b356-eba5b7521904" ], "Date": [ - "Fri, 19 Jun 2015 17:21:13 GMT" + "Thu, 13 Aug 2015 05:36:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTgwNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTIyNC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805\",\r\n \"etag\": \"W/\\\"eb4c0037-c5d7-49a2-94de-0fc46f8b450c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5805\",\r\n \"fqdn\": \"pubipcrptestps5805.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\",\r\n \"etag\": \"W/\\\"760f2650-10b4-4a30-9e70-6ce66790b507\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ce8f75c-b308-4c10-a869-c151b8915bd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1224\",\r\n \"fqdn\": \"pubipcrptestps1224.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "5894cbde-c980-4ba7-ab53-132785822f33" + "c9400640-d361-4e1e-bb58-1c2c06577a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,32 +711,32 @@ "no-cache" ], "ETag": [ - "W/\"eb4c0037-c5d7-49a2-94de-0fc46f8b450c\"" + "W/\"760f2650-10b4-4a30-9e70-6ce66790b507\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14992" ], "x-ms-correlation-request-id": [ - "6d841e13-ceea-4745-9fb7-3cb98eb84877" + "f61d74a8-03e5-46d3-b783-7abee2ce42c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172114Z:6d841e13-ceea-4745-9fb7-3cb98eb84877" + "SOUTHCENTRALUS:20150813T053611Z:f61d74a8-03e5-46d3-b783-7abee2ce42c4" ], "Date": [ - "Fri, 19 Jun 2015 17:21:13 GMT" + "Thu, 13 Aug 2015 05:36:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTgwNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTIyNC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5805\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps5805\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1224\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps1224\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -700,10 +748,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805\",\r\n \"etag\": \"W/\\\"70d1c847-1300-4b00-ac27-44e1045212c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5805\",\r\n \"fqdn\": \"pubipcrptestps5805.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\",\r\n \"etag\": \"W/\\\"017c2ae2-f62c-41e8-8a49-dacbefce9662\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2ce8f75c-b308-4c10-a869-c151b8915bd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1224\",\r\n \"fqdn\": \"pubipcrptestps1224.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "554" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +766,10 @@ "10" ], "x-ms-request-id": [ - "5f833526-9b47-4999-8664-4fe178fa78f5" + "c54f2292-5ca7-4a3e-8bab-526db8c2a50e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/5f833526-9b47-4999-8664-4fe178fa78f5?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c54f2292-5ca7-4a3e-8bab-526db8c2a50e?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +782,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "0d49a395-4884-4de1-ba1f-54c8d9bb11b8" + "023f8453-9840-4df8-9309-1d396d755be9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172114Z:0d49a395-4884-4de1-ba1f-54c8d9bb11b8" + "SOUTHCENTRALUS:20150813T053610Z:023f8453-9840-4df8-9309-1d396d755be9" ], "Date": [ - "Fri, 19 Jun 2015 17:21:13 GMT" + "Thu, 13 Aug 2015 05:36:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/5f833526-9b47-4999-8664-4fe178fa78f5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWY4MzM1MjYtOWI0Ny00OTk5LTg2NjQtNGZlMTc4ZmE3OGY1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c54f2292-5ca7-4a3e-8bab-526db8c2a50e?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU0ZjIyOTItNWNhNy00YTNlLThiYWItNTI2ZGI4YzJhNTBlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +824,7 @@ "no-cache" ], "x-ms-request-id": [ - "a85aa6a8-8793-402e-8ae1-1674be9d0bda" + "1a7c7cb0-d1be-4537-b1e3-c45feba92fe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14994" ], "x-ms-correlation-request-id": [ - "e278639b-f331-4797-89e6-2b8d8c88902f" + "fd4aa804-bac5-40f8-8a9e-e55d88716e8d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172114Z:e278639b-f331-4797-89e6-2b8d8c88902f" + "SOUTHCENTRALUS:20150813T053610Z:fd4aa804-bac5-40f8-8a9e-e55d88716e8d" ], "Date": [ - "Fri, 19 Jun 2015 17:21:13 GMT" + "Thu, 13 Aug 2015 05:36:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,10 +861,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps1224' under resource group 'crptestps1224' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,13 +879,13 @@ "gateway" ], "x-ms-request-id": [ - "650ea58d-0764-48a5-a3ba-a9c47f2ca6db" + "abc5be52-2519-47ae-9255-604b4cb9d761" ], "x-ms-correlation-request-id": [ - "650ea58d-0764-48a5-a3ba-a9c47f2ca6db" + "abc5be52-2519-47ae-9255-604b4cb9d761" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172114Z:650ea58d-0764-48a5-a3ba-a9c47f2ca6db" + "SOUTHCENTRALUS:20150813T053611Z:abc5be52-2519-47ae-9255-604b4cb9d761" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +894,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:21:13 GMT" + "Thu, 13 Aug 2015 05:36:11 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +909,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805\",\r\n \"etag\": \"W/\\\"144b0d0f-553f-4b26-bc8b-4eec241e6dd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"144b0d0f-553f-4b26-bc8b-4eec241e6dd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805/subnets/subnetcrptestps5805\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94c0c32c-c10d-4c7c-a36a-f0f841e6e652\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +924,7 @@ "no-cache" ], "x-ms-request-id": [ - "e1d17977-5aa9-4b18-b9f8-2ce61cc46e49" + "dfdeb3c8-751e-4de5-a209-0d997a2ae2d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +933,30 @@ "no-cache" ], "ETag": [ - "W/\"144b0d0f-553f-4b26-bc8b-4eec241e6dd5\"" + "W/\"83af58c5-cae6-4674-97fd-09c7a79eb141\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "14989" ], "x-ms-correlation-request-id": [ - "a5b4eb4d-f690-4810-965e-1f6bd37919c2" + "016c5b6a-15b0-484b-b7b3-7c905ff1c0d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172115Z:a5b4eb4d-f690-4810-965e-1f6bd37919c2" + "SOUTHCENTRALUS:20150813T053612Z:016c5b6a-15b0-484b-b7b3-7c905ff1c0d4" ], "Date": [ - "Fri, 19 Jun 2015 17:21:14 GMT" + "Thu, 13 Aug 2015 05:36:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805\",\r\n \"etag\": \"W/\\\"144b0d0f-553f-4b26-bc8b-4eec241e6dd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"144b0d0f-553f-4b26-bc8b-4eec241e6dd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805/subnets/subnetcrptestps5805\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94c0c32c-c10d-4c7c-a36a-f0f841e6e652\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "b63b28e7-0d31-4030-9773-57d428245141" + "625ac30d-7dd0-4350-b0c2-7e086f3ad8db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,47 +988,47 @@ "no-cache" ], "ETag": [ - "W/\"144b0d0f-553f-4b26-bc8b-4eec241e6dd5\"" + "W/\"83af58c5-cae6-4674-97fd-09c7a79eb141\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14988" ], "x-ms-correlation-request-id": [ - "2dcf7acb-1656-4025-9be8-b1dcd29846d1" + "79a824b4-baf5-4d6d-ad20-2f94748a8c7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172115Z:2dcf7acb-1656-4025-9be8-b1dcd29846d1" + "SOUTHCENTRALUS:20150813T053612Z:79a824b4-baf5-4d6d-ad20-2f94748a8c7d" ], "Date": [ - "Fri, 19 Jun 2015 17:21:14 GMT" + "Thu, 13 Aug 2015 05:36:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805/subnets/subnetcrptestps5805\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"niccrptestps5805\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps1224\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "863" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5805\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805\",\r\n \"etag\": \"W/\\\"144b0d0f-553f-4b26-bc8b-4eec241e6dd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"144b0d0f-553f-4b26-bc8b-4eec241e6dd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5805\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5805/subnets/subnetcrptestps5805\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94c0c32c-c10d-4c7c-a36a-f0f841e6e652\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -992,10 +1040,10 @@ "no-cache" ], "x-ms-request-id": [ - "f7f3e8e8-f97a-43bd-935c-a64bb09729ad" + "53a8778d-afbe-447a-9d07-3584b5822749" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/f7f3e8e8-f97a-43bd-935c-a64bb09729ad?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/53a8778d-afbe-447a-9d07-3584b5822749?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,23 +1056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "6de0166a-2b03-4672-9de1-42a542f13e79" + "45a279e5-dac7-4d1a-87d8-3fd6541cf626" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172115Z:6de0166a-2b03-4672-9de1-42a542f13e79" + "SOUTHCENTRALUS:20150813T053612Z:45a279e5-dac7-4d1a-87d8-3fd6541cf626" ], "Date": [ - "Fri, 19 Jun 2015 17:21:14 GMT" + "Thu, 13 Aug 2015 05:36:12 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/f7f3e8e8-f97a-43bd-935c-a64bb09729ad?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjdmM2U4ZTgtZjk3YS00M2JkLTkzNWMtYTY0YmIwOTcyOWFkP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/53a8778d-afbe-447a-9d07-3584b5822749?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNhODc3OGQtYWZiZS00NDdhLTlkMDctMzU4NGI1ODIyNzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "a72564d1-0eb0-4115-8a68-d71a21f6029a" + "4046d4cc-ccff-4cec-b6cf-87b65df243dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14990" ], "x-ms-correlation-request-id": [ - "eec2c871-2b9d-4adb-832d-e59139cfb23e" + "be2c0cea-c92c-4c9e-8625-49836b94f954" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172115Z:eec2c871-2b9d-4adb-832d-e59139cfb23e" + "SOUTHCENTRALUS:20150813T053612Z:be2c0cea-c92c-4c9e-8625-49836b94f954" ], "Date": [ - "Fri, 19 Jun 2015 17:21:14 GMT" + "Thu, 13 Aug 2015 05:36:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Storage/storageAccounts/stocrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1ODA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjI0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1090,7 +1138,7 @@ "88" ], "x-ms-client-request-id": [ - "ebe63b39-ea58-4b4b-8931-49612295316c" + "dc5aa2e6-a0a1-4c9e-93db-2949edeca401" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1114,44 +1162,44 @@ "25" ], "x-ms-request-id": [ - "6b9c8f78-e728-420f-9a44-ca59730e9371" + "f374be20-836a-488c-8eed-1278c7eff464" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/6b9c8f78-e728-420f-9a44-ca59730e9371?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f374be20-836a-488c-8eed-1278c7eff464?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "7b01d234-6afd-4296-afdb-40ed906c8a2f" + "cc989a85-6e2c-4043-baad-19586da61389" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172117Z:7b01d234-6afd-4296-afdb-40ed906c8a2f" + "SOUTHCENTRALUS:20150813T053615Z:cc989a85-6e2c-4043-baad-19586da61389" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 17:21:16 GMT" + "Thu, 13 Aug 2015 05:36:15 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/6b9c8f78-e728-420f-9a44-ca59730e9371?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzZiOWM4Zjc4LWU3MjgtNDIwZi05YTQ0LWNhNTk3MzBlOTM3MT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f374be20-836a-488c-8eed-1278c7eff464?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YzNzRiZTIwLTgzNmEtNDg4Yy04ZWVkLTEyNzhjN2VmZjQ2ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63474bdd-56bf-4af3-a406-c71ae2031563" + "b39dabb6-9cdf-43f9-87b2-2b7d1a29e727" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1175,44 +1223,44 @@ "25" ], "x-ms-request-id": [ - "ac4d8757-32df-4890-b1f1-ba5291445226" + "77ddcc62-d4b0-4ddf-9c38-c954c980a1a2" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/6b9c8f78-e728-420f-9a44-ca59730e9371?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f374be20-836a-488c-8eed-1278c7eff464?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14999" ], "x-ms-correlation-request-id": [ - "1aa2e24b-ed3c-4a38-af12-0d9eb907f692" + "84e80482-9c3e-4e71-b545-793eb225d5f9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172117Z:1aa2e24b-ed3c-4a38-af12-0d9eb907f692" + "SOUTHCENTRALUS:20150813T053615Z:84e80482-9c3e-4e71-b545-793eb225d5f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 17:21:16 GMT" + "Thu, 13 Aug 2015 05:36:15 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/6b9c8f78-e728-420f-9a44-ca59730e9371?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzZiOWM4Zjc4LWU3MjgtNDIwZi05YTQ0LWNhNTk3MzBlOTM3MT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f374be20-836a-488c-8eed-1278c7eff464?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YzNzRiZTIwLTgzNmEtNDg4Yy04ZWVkLTEyNzhjN2VmZjQ2ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eee493b4-1138-4891-87c7-15a8f8d4596e" + "e782f2b6-9067-4a31-b56e-b13659fea787" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1233,7 +1281,7 @@ "no-cache" ], "x-ms-request-id": [ - "5bdef0a2-d036-436c-a364-4ad26534d2f3" + "c4278bbd-701a-49d5-9e8d-3946b61fc4f7" ], "Cache-Control": [ "no-cache" @@ -1243,37 +1291,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14998" ], "x-ms-correlation-request-id": [ - "4106a43a-06cd-4f0b-a5a4-3fb6c3fc5e48" + "177f3d67-fcba-4bbf-8303-e7858f6187d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172142Z:4106a43a-06cd-4f0b-a5a4-3fb6c3fc5e48" + "SOUTHCENTRALUS:20150813T053641Z:177f3d67-fcba-4bbf-8303-e7858f6187d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 17:21:42 GMT" + "Thu, 13 Aug 2015 05:36:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Storage/storageAccounts/stocrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1ODA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjI0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b277845-14a0-4fd0-901a-076c84ca4087" + "c47665b6-3f2c-452e-9495-3c20142eb337" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Storage/storageAccounts/stocrptestps5805\",\r\n \"name\": \"stocrptestps5805\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5805.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5805.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5805.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-19T17:21:15.6381735Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224\",\r\n \"name\": \"stocrptestps1224\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1224.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1224.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1224.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T05:36:14.1920878Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1288,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "114da4a7-a496-4c2f-8df9-c4a52168cabd" + "fcf3f797-b83e-4871-a9c5-c3abca831cb4" ], "Cache-Control": [ "no-cache" @@ -1298,37 +1346,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14997" ], "x-ms-correlation-request-id": [ - "0baec64a-08f5-4b8d-b60e-40e9dde4c10a" + "d8981ee2-3b57-4e67-812e-c913f573bf40" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172143Z:0baec64a-08f5-4b8d-b60e-40e9dde4c10a" + "SOUTHCENTRALUS:20150813T053641Z:d8981ee2-3b57-4e67-812e-c913f573bf40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 17:21:42 GMT" + "Thu, 13 Aug 2015 05:36:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Storage/storageAccounts/stocrptestps5805?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1ODA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjI0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f5dfde-40e5-4936-85f1-bbe63e27dbb4" + "0d39cce5-9d18-4995-b4d3-07ff336108ca" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Storage/storageAccounts/stocrptestps5805\",\r\n \"name\": \"stocrptestps5805\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5805.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5805.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5805.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-19T17:21:15.6381735Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224\",\r\n \"name\": \"stocrptestps1224\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1224.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1224.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1224.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T05:36:14.1920878Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1343,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "02e5e3c1-3674-46c1-8944-28080f62cca8" + "83cf173d-3e2f-41e1-b818-7dcfb9f59d1c" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14996" ], "x-ms-correlation-request-id": [ - "4040ffce-bcb8-48fd-a02b-b8b3ffd3b482" + "feca68f7-23db-4709-9ab5-c851f827a2a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172143Z:4040ffce-bcb8-48fd-a02b-b8b3ffd3b482" + "SOUTHCENTRALUS:20150813T053641Z:feca68f7-23db-4709-9ab5-c851f827a2a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 17:21:42 GMT" + "Thu, 13 Aug 2015 05:36:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Storage/storageAccounts/stocrptestps5805/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1ODA1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjI0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fa50d08-8dc9-45a2-a70d-13c2b4c60a7a" + "8a7a6053-185a-4521-813d-add4682b416b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"H9iZm9AP/ljPH3HCukLGbXxaLpLfG60nkVSrYe3Nqu+3xzXleO1nl9XsA6Yjf6CBOV7qMAsnvQNFbbg0YhkPjQ==\",\r\n \"key2\": \"BbwedTsZBDE3g/6BvykGTqWUNYXuV+qzhqq/tCvMoe36dJIWiJbSnkoCL6QNcWlonsxByy129bUbbkVqA2z1RA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"gpcz0iDLwQ9k9TrE/Nk4xgNhxRgqR8Wm0CbrlZY/eBbY/FnOlrU9MwSMYX7db+sgbfLHQc9Si42Z5sxi3lpj5w==\",\r\n \"key2\": \"2amkUuINbeh5rDHlydQvC9LOnLI6aCFYKjEUiyluwsLpo3C9Wu3OITm2EcDzbMFsu1r5brqhbINePRM+x5bB1g==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "197" @@ -1398,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "47bbda58-24c8-4d52-8b4a-6b0124298df8" + "e9f985cd-47bc-4da3-a248-9b755d1ae295" ], "Cache-Control": [ "no-cache" @@ -1408,28 +1456,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "567a0fa0-04cf-470b-a1c0-2b8ebc206657" + "902486e3-b34e-4124-8558-f5390159dddc" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172143Z:567a0fa0-04cf-470b-a1c0-2b8ebc206657" + "SOUTHCENTRALUS:20150813T053641Z:902486e3-b34e-4124-8558-f5390159dddc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 17:21:43 GMT" + "Thu, 13 Aug 2015 05:36:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps5805\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5805\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps1224\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps1224\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1438,10 +1486,10 @@ "1719" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805\",\r\n \"name\": \"vmcrptestps5805\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224\",\r\n \"name\": \"vmcrptestps1224\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1934" @@ -1456,13 +1504,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a7c908da-5a73-4b4c-a95e-ce73d5e32c7e" + "7d638b7c-f59a-4a55-84bb-83d520fe4853" ], "Cache-Control": [ "no-cache" @@ -1475,28 +1526,28 @@ "1198" ], "x-ms-correlation-request-id": [ - "e72120c9-416a-48f2-831e-af474391eaa9" + "75a0d98a-67e7-4d10-a4c4-79a3d70d54c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172145Z:e72120c9-416a-48f2-831e-af474391eaa9" + "SOUTHCENTRALUS:20150813T053644Z:75a0d98a-67e7-4d10-a4c4-79a3d70d54c3" ], "Date": [ - "Fri, 19 Jun 2015 17:21:45 GMT" + "Thu, 13 Aug 2015 05:36:43 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1513,8 +1564,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "5e94e307-2809-4c22-8677-695e30877364" + "0465a95e-6e2b-4900-b6ff-9e257c7ebc8e" ], "Cache-Control": [ "no-cache" @@ -1524,31 +1578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" + "14996" ], "x-ms-correlation-request-id": [ - "777c78d9-a532-4a1d-9472-1cd4244dc649" + "e15d0bef-e743-4493-aa69-f3b5601dcaed" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172145Z:777c78d9-a532-4a1d-9472-1cd4244dc649" + "SOUTHCENTRALUS:20150813T053644Z:e15d0bef-e743-4493-aa69-f3b5601dcaed" ], "Date": [ - "Fri, 19 Jun 2015 17:21:45 GMT" + "Thu, 13 Aug 2015 05:36:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1565,8 +1619,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "141ad5ae-b3ff-480b-824b-b362c3b1aaf8" + "49f37914-2da9-41a2-a6b5-9e9146c482b3" ], "Cache-Control": [ "no-cache" @@ -1576,31 +1633,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" + "14995" ], "x-ms-correlation-request-id": [ - "e3e22716-f298-4537-b113-b8f7f329ee8d" + "a3e23ec2-878c-485c-a88d-31da94448ff8" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172215Z:e3e22716-f298-4537-b113-b8f7f329ee8d" + "SOUTHCENTRALUS:20150813T053714Z:a3e23ec2-878c-485c-a88d-31da94448ff8" ], "Date": [ - "Fri, 19 Jun 2015 17:22:14 GMT" + "Thu, 13 Aug 2015 05:37:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1617,8 +1674,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "1eed9e5e-8d6e-476c-9c68-bad2a8109dee" + "a1e3d003-00e8-444d-ad1c-6198c364eb5e" ], "Cache-Control": [ "no-cache" @@ -1628,31 +1688,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" + "14994" ], "x-ms-correlation-request-id": [ - "4447e6d9-ea0b-40e5-af62-158f77ef8a75" + "7a75cf3f-9dd4-4fab-9060-f29efc28b7fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172245Z:4447e6d9-ea0b-40e5-af62-158f77ef8a75" + "SOUTHCENTRALUS:20150813T053744Z:7a75cf3f-9dd4-4fab-9060-f29efc28b7fc" ], "Date": [ - "Fri, 19 Jun 2015 17:22:44 GMT" + "Thu, 13 Aug 2015 05:37:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1669,8 +1729,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "863eb0b3-c2a7-4b85-a7c7-14a7f28ed544" + "ad9bdfbb-ff71-44f0-83f4-c0638046e69f" ], "Cache-Control": [ "no-cache" @@ -1680,31 +1743,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14754" + "14993" ], "x-ms-correlation-request-id": [ - "0ec7842a-3766-479c-8e03-6d18993c23ed" + "e5f66b26-d89f-41a4-8264-2f8582ed4118" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172315Z:0ec7842a-3766-479c-8e03-6d18993c23ed" + "SOUTHCENTRALUS:20150813T053815Z:e5f66b26-d89f-41a4-8264-2f8582ed4118" ], "Date": [ - "Fri, 19 Jun 2015 17:23:15 GMT" + "Thu, 13 Aug 2015 05:38:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1721,8 +1784,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "53da604b-85bb-44c6-86b3-4d88e3beb659" + "1dc4c17b-dd31-41e9-a4ab-115400f8363d" ], "Cache-Control": [ "no-cache" @@ -1732,31 +1798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "14992" ], "x-ms-correlation-request-id": [ - "d5800e1f-d0f6-4320-84e2-e81775916c00" + "c41a1fe5-cc5c-4af2-9e9b-ae3f48d8472e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172345Z:d5800e1f-d0f6-4320-84e2-e81775916c00" + "SOUTHCENTRALUS:20150813T053845Z:c41a1fe5-cc5c-4af2-9e9b-ae3f48d8472e" ], "Date": [ - "Fri, 19 Jun 2015 17:23:45 GMT" + "Thu, 13 Aug 2015 05:38:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1773,8 +1839,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "59f96c4f-0bc0-42ff-b3cf-dc28ac35003a" + "a594f69d-43e1-4d33-8229-8970858cef8e" ], "Cache-Control": [ "no-cache" @@ -1784,31 +1853,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14991" ], "x-ms-correlation-request-id": [ - "043db3ec-0a7e-41c6-8080-7280bc314ff6" + "2f202fa4-d51a-400f-b841-d4675245544b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172415Z:043db3ec-0a7e-41c6-8080-7280bc314ff6" + "SOUTHCENTRALUS:20150813T053915Z:2f202fa4-d51a-400f-b841-d4675245544b" ], "Date": [ - "Fri, 19 Jun 2015 17:24:15 GMT" + "Thu, 13 Aug 2015 05:39:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1825,8 +1894,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c3681618-81f2-4809-aad9-2cc43f9e10d0" + "2b2c3d65-f6ca-40cd-bbd6-11e49b8b7ed0" ], "Cache-Control": [ "no-cache" @@ -1836,31 +1908,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14990" ], "x-ms-correlation-request-id": [ - "47ee04b6-7cd1-4347-bb7c-a04e628310b2" + "e17a9ff7-a643-4cd8-a4c0-09635252b857" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172445Z:47ee04b6-7cd1-4347-bb7c-a04e628310b2" + "SOUTHCENTRALUS:20150813T053946Z:e17a9ff7-a643-4cd8-a4c0-09635252b857" ], "Date": [ - "Fri, 19 Jun 2015 17:24:45 GMT" + "Thu, 13 Aug 2015 05:39:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1877,8 +1949,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3cd0c04c-5ca8-4dd4-83e7-ca5c4000afe4" + "feb56313-f312-4345-96cf-07344fc1ca5b" ], "Cache-Control": [ "no-cache" @@ -1888,31 +1963,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14989" ], "x-ms-correlation-request-id": [ - "13f395ae-823a-4a00-8348-cf80f2addd20" + "b15b923f-281c-41be-a484-195fc181d514" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172515Z:13f395ae-823a-4a00-8348-cf80f2addd20" + "SOUTHCENTRALUS:20150813T054016Z:b15b923f-281c-41be-a484-195fc181d514" ], "Date": [ - "Fri, 19 Jun 2015 17:25:15 GMT" + "Thu, 13 Aug 2015 05:40:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1929,8 +2004,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "9320562a-162a-4c51-838f-47c3d7d76b75" + "ced35b78-1f6e-4538-8191-e3c025ddfb41" ], "Cache-Control": [ "no-cache" @@ -1940,31 +2018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14988" ], "x-ms-correlation-request-id": [ - "3c33ea1b-0348-4e53-ae95-1353858ba2a5" + "ab9bd630-a31d-4a5e-a318-4f2ea5e1b9de" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172546Z:3c33ea1b-0348-4e53-ae95-1353858ba2a5" + "SOUTHCENTRALUS:20150813T054046Z:ab9bd630-a31d-4a5e-a318-4f2ea5e1b9de" ], "Date": [ - "Fri, 19 Jun 2015 17:25:45 GMT" + "Thu, 13 Aug 2015 05:40:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1981,8 +2059,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "32c2d0f7-943c-4360-918a-1a6080170c37" + "56ba1904-35f8-4798-b77a-37bb50f2373e" ], "Cache-Control": [ "no-cache" @@ -1992,31 +2073,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14987" ], "x-ms-correlation-request-id": [ - "c7bc3b21-b28c-4531-bee1-399be841dc49" + "c891d0f2-2117-41e7-8c04-4f5f4d456cae" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172616Z:c7bc3b21-b28c-4531-bee1-399be841dc49" + "SOUTHCENTRALUS:20150813T054116Z:c891d0f2-2117-41e7-8c04-4f5f4d456cae" ], "Date": [ - "Fri, 19 Jun 2015 17:26:15 GMT" + "Thu, 13 Aug 2015 05:41:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2033,8 +2114,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "fc4bd961-f080-4d30-818c-fa593e4711cb" + "2d13f041-ad7c-49c3-a52c-3bc6e13624ad" ], "Cache-Control": [ "no-cache" @@ -2044,34 +2128,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14986" ], "x-ms-correlation-request-id": [ - "e4fd9098-cf79-4ec4-b024-449b10cd2dab" + "fd3633b5-854f-455d-ac7b-99768daf51de" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172646Z:e4fd9098-cf79-4ec4-b024-449b10cd2dab" + "SOUTHCENTRALUS:20150813T054147Z:fd3633b5-854f-455d-ac7b-99768daf51de" ], "Date": [ - "Fri, 19 Jun 2015 17:26:45 GMT" + "Thu, 13 Aug 2015 05:41:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\",\r\n \"endTime\": \"2015-08-12T22:42:16.5538102-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2085,8 +2169,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "74c48e91-dd6a-41ed-962b-c2f498c976d7" + "b4a96f6e-5463-4839-af6f-4053a7d645e9" ], "Cache-Control": [ "no-cache" @@ -2096,34 +2183,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14985" ], "x-ms-correlation-request-id": [ - "32cdc5bf-88e2-4f10-831f-4e5e3f9d4984" + "9271ef6e-8634-42ee-ae1f-e4bd9af0698b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172716Z:32cdc5bf-88e2-4f10-831f-4e5e3f9d4984" + "SOUTHCENTRALUS:20150813T054217Z:9271ef6e-8634-42ee-ae1f-e4bd9af0698b" ], "Date": [ - "Fri, 19 Jun 2015 17:27:16 GMT" + "Thu, 13 Aug 2015 05:42:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a7c908da-5a73-4b4c-a95e-ce73d5e32c7e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTdjOTA4ZGEtNWE3My00YjRjLWE5NWUtY2U3M2Q1ZTMyYzdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"protectedSettings\": {\r\n \"password\": \"FoO@123crptestps1224\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "422" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a7c908da-5a73-4b4c-a95e-ce73d5e32c7e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-19T10:21:44.8888078-07:00\",\r\n \"endTime\": \"2015-06-19T10:27:41.8198026-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "539" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2134,11 +2227,17 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a7aab7cc-1cb4-4327-990c-022bd9450acb" + "2218e02a-bf26-4369-8a8d-b99e9957946b" ], "Cache-Control": [ "no-cache" @@ -2147,41 +2246,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "ec810c83-93ef-4d6e-b280-e71a2d67fbee" + "d2323308-dc48-49e2-a204-eee1180f0498" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172746Z:ec810c83-93ef-4d6e-b280-e71a2d67fbee" + "SOUTHCENTRALUS:20150813T054218Z:d2323308-dc48-49e2-a204-eee1180f0498" ], "Date": [ - "Fri, 19 Jun 2015 17:27:45 GMT" + "Thu, 13 Aug 2015 05:42:18 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805/extensions/csetest?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4MDUvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"protectedSettings\": {\r\n \"password\": \"FoO@123crptestps5805\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "422" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2192,14 +2285,14 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "0ce0c388-facd-41ab-9c7f-8a4125751a1d" + "6f8b63bf-253e-4427-9b28-7f6ed1793e26" ], "Cache-Control": [ "no-cache" @@ -2208,32 +2301,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" ], "x-ms-correlation-request-id": [ - "c9ecc735-d6ce-4cc2-b530-1c7a7a42a5e6" + "9c6df300-9219-478f-a0a0-7f495c7127ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172747Z:c9ecc735-d6ce-4cc2-b530-1c7a7a42a5e6" + "SOUTHCENTRALUS:20150813T054219Z:9c6df300-9219-478f-a0a0-7f495c7127ff" ], "Date": [ - "Fri, 19 Jun 2015 17:27:46 GMT" + "Thu, 13 Aug 2015 05:42:19 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2250,8 +2343,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "12154549-aa22-45d0-b09c-df9c351f0f38" + "f5b7788f-b1e4-4a8b-a026-9fc69c6b0ec7" ], "Cache-Control": [ "no-cache" @@ -2261,31 +2357,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14983" ], "x-ms-correlation-request-id": [ - "c1b7271e-cd94-462c-b448-55e1aaa8ba2f" + "1ae666fb-b1ba-444e-9dc8-29e514314a7f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172747Z:c1b7271e-cd94-462c-b448-55e1aaa8ba2f" + "SOUTHCENTRALUS:20150813T054249Z:1ae666fb-b1ba-444e-9dc8-29e514314a7f" ], "Date": [ - "Fri, 19 Jun 2015 17:27:46 GMT" + "Thu, 13 Aug 2015 05:42:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2302,8 +2398,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "47101e78-5dd7-4dc6-b49a-62df9362054d" + "830c6a17-4e10-4ae7-953d-aeeaa541cf09" ], "Cache-Control": [ "no-cache" @@ -2313,31 +2412,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14982" ], "x-ms-correlation-request-id": [ - "26b14cfc-f017-43e3-a289-e93fe32cc281" + "df43bc62-ad6f-48a1-b8d9-42a92930e472" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172817Z:26b14cfc-f017-43e3-a289-e93fe32cc281" + "SOUTHCENTRALUS:20150813T054319Z:df43bc62-ad6f-48a1-b8d9-42a92930e472" ], "Date": [ - "Fri, 19 Jun 2015 17:28:16 GMT" + "Thu, 13 Aug 2015 05:43:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2354,8 +2453,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f5f99e8c-e0c6-4ba9-8828-23985265c7ff" + "ba7f7dc6-dce7-46da-a1c8-3f950efaa26a" ], "Cache-Control": [ "no-cache" @@ -2365,31 +2467,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14981" ], "x-ms-correlation-request-id": [ - "ad86e54e-8781-45af-9ac7-7aa6882c137e" + "706b521a-ab2a-4752-b630-a7ca7b14ea1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172847Z:ad86e54e-8781-45af-9ac7-7aa6882c137e" + "SOUTHCENTRALUS:20150813T054350Z:706b521a-ab2a-4752-b630-a7ca7b14ea1a" ], "Date": [ - "Fri, 19 Jun 2015 17:28:47 GMT" + "Thu, 13 Aug 2015 05:43:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2406,8 +2508,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "1e3563b9-b1c6-4d63-b8fa-6131096650f7" + "5cbc99f8-9a80-4ccc-bf66-cd4d1accdc3a" ], "Cache-Control": [ "no-cache" @@ -2417,31 +2522,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14980" ], "x-ms-correlation-request-id": [ - "66bbf987-0806-4f7c-9d02-2b847b448f30" + "114b2908-b1b8-41d0-9d92-8e8f18730f1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172917Z:66bbf987-0806-4f7c-9d02-2b847b448f30" + "SOUTHCENTRALUS:20150813T054420Z:114b2908-b1b8-41d0-9d92-8e8f18730f1a" ], "Date": [ - "Fri, 19 Jun 2015 17:29:17 GMT" + "Thu, 13 Aug 2015 05:44:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2458,8 +2563,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c1b8b708-0ee0-400e-89d8-34f60dae53f4" + "b288e738-d607-4198-898b-a30ebef7f719" ], "Cache-Control": [ "no-cache" @@ -2469,31 +2577,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14979" ], "x-ms-correlation-request-id": [ - "189a9c40-8ce5-4a2a-a9d4-8e918182c3a1" + "b09a1444-53b4-4295-a352-856989e2393d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T172947Z:189a9c40-8ce5-4a2a-a9d4-8e918182c3a1" + "SOUTHCENTRALUS:20150813T054450Z:b09a1444-53b4-4295-a352-856989e2393d" ], "Date": [ - "Fri, 19 Jun 2015 17:29:47 GMT" + "Thu, 13 Aug 2015 05:44:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2510,8 +2618,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c74319a3-0be8-43eb-984e-04d63e54b765" + "29b2f655-87ae-4d92-8580-02f9e4d7b46a" ], "Cache-Control": [ "no-cache" @@ -2521,31 +2632,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14978" ], "x-ms-correlation-request-id": [ - "8eec24de-be7a-42aa-9fb2-f050bf572ed7" + "2c8bb58c-8ffe-438e-b7e9-9d30e61c02eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173018Z:8eec24de-be7a-42aa-9fb2-f050bf572ed7" + "SOUTHCENTRALUS:20150813T054520Z:2c8bb58c-8ffe-438e-b7e9-9d30e61c02eb" ], "Date": [ - "Fri, 19 Jun 2015 17:30:17 GMT" + "Thu, 13 Aug 2015 05:45:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2562,8 +2673,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c1287949-538f-4bc6-a4e3-79ec2e4d60b5" + "eb324bcc-be3e-4ded-940d-53e1811e7b80" ], "Cache-Control": [ "no-cache" @@ -2573,31 +2687,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14977" ], "x-ms-correlation-request-id": [ - "c80e9fa6-748f-4965-9510-d7c6ebd980ad" + "2b15676e-97f7-4402-99f2-a9a8d89b9917" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173048Z:c80e9fa6-748f-4965-9510-d7c6ebd980ad" + "SOUTHCENTRALUS:20150813T054551Z:2b15676e-97f7-4402-99f2-a9a8d89b9917" ], "Date": [ - "Fri, 19 Jun 2015 17:30:47 GMT" + "Thu, 13 Aug 2015 05:45:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2614,8 +2728,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "8d6bd798-1285-4aa3-99eb-9669616f5b8d" + "03cd1e53-5b5b-4548-84a9-531dd8331735" ], "Cache-Control": [ "no-cache" @@ -2625,31 +2742,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14976" ], "x-ms-correlation-request-id": [ - "5b04279f-eec6-498b-8e22-7c98289cbb14" + "dc0cf4ca-db20-4b54-bd8d-6d60c8dbc584" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173118Z:5b04279f-eec6-498b-8e22-7c98289cbb14" + "SOUTHCENTRALUS:20150813T054621Z:dc0cf4ca-db20-4b54-bd8d-6d60c8dbc584" ], "Date": [ - "Fri, 19 Jun 2015 17:31:18 GMT" + "Thu, 13 Aug 2015 05:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2666,8 +2783,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "db59fa49-3743-45f3-adf5-12b9f2948240" + "0d1006f9-f705-455e-b8a9-90b305055f1d" ], "Cache-Control": [ "no-cache" @@ -2677,31 +2797,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14975" ], "x-ms-correlation-request-id": [ - "a36d6fc4-2bae-4a11-99e4-aacbfbd4e1e0" + "d0dd71d2-1656-463d-951c-e9bd2f48d649" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173148Z:a36d6fc4-2bae-4a11-99e4-aacbfbd4e1e0" + "SOUTHCENTRALUS:20150813T054651Z:d0dd71d2-1656-463d-951c-e9bd2f48d649" ], "Date": [ - "Fri, 19 Jun 2015 17:31:47 GMT" + "Thu, 13 Aug 2015 05:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2718,8 +2838,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3175f290-03eb-4a45-88bb-a297d1279d20" + "b779415d-e5b5-4c01-88c2-279b8961da60" ], "Cache-Control": [ "no-cache" @@ -2729,31 +2852,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14974" ], "x-ms-correlation-request-id": [ - "c9e28d82-a992-443e-a6a2-539f6a2fd0ed" + "3e21fb93-7e6a-46bd-91a4-166c13c2ca69" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173218Z:c9e28d82-a992-443e-a6a2-539f6a2fd0ed" + "SOUTHCENTRALUS:20150813T054722Z:3e21fb93-7e6a-46bd-91a4-166c13c2ca69" ], "Date": [ - "Fri, 19 Jun 2015 17:32:18 GMT" + "Thu, 13 Aug 2015 05:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2770,8 +2893,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "25bcaf3f-9a99-4b45-bc9d-fae2589894dc" + "7fd2f898-0f0e-4cf7-8076-4fd9ece1dfdf" ], "Cache-Control": [ "no-cache" @@ -2781,31 +2907,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" + "14973" ], "x-ms-correlation-request-id": [ - "53482096-04a5-490e-9f02-9ea02ef2619f" + "0210cdb2-748e-4c63-86e9-042fac145e92" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173248Z:53482096-04a5-490e-9f02-9ea02ef2619f" + "SOUTHCENTRALUS:20150813T054752Z:0210cdb2-748e-4c63-86e9-042fac145e92" ], "Date": [ - "Fri, 19 Jun 2015 17:32:48 GMT" + "Thu, 13 Aug 2015 05:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2822,8 +2948,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "1dcf6050-7191-426c-95c7-08170ebb80d8" + "90343cbb-0fdc-4671-8128-4df97abead91" ], "Cache-Control": [ "no-cache" @@ -2833,31 +2962,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14702" + "14972" ], "x-ms-correlation-request-id": [ - "2e5c6158-faec-4ca8-a71a-61af8cca07d7" + "f64b0b98-caa1-4042-ad63-f4af2ee6d271" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173318Z:2e5c6158-faec-4ca8-a71a-61af8cca07d7" + "SOUTHCENTRALUS:20150813T054822Z:f64b0b98-caa1-4042-ad63-f4af2ee6d271" ], "Date": [ - "Fri, 19 Jun 2015 17:33:18 GMT" + "Thu, 13 Aug 2015 05:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2874,8 +3003,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "97acd1c9-8b66-4770-8edc-3bf063767d2a" + "5a55f615-d173-462e-b41f-9e78f031a8a1" ], "Cache-Control": [ "no-cache" @@ -2885,31 +3017,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "14971" ], "x-ms-correlation-request-id": [ - "f20cd101-4a1f-4b00-8411-751148cc9f4c" + "8f605fd7-2dc7-4752-8314-07660d4fa1f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173348Z:f20cd101-4a1f-4b00-8411-751148cc9f4c" + "SOUTHCENTRALUS:20150813T054853Z:8f605fd7-2dc7-4752-8314-07660d4fa1f7" ], "Date": [ - "Fri, 19 Jun 2015 17:33:48 GMT" + "Thu, 13 Aug 2015 05:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2926,8 +3058,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ecce3ec2-e579-4ebb-96b2-6f8bd422ce12" + "c42f9bd1-476d-4aa2-8abf-fb1b70e34b2c" ], "Cache-Control": [ "no-cache" @@ -2937,31 +3072,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "14970" ], "x-ms-correlation-request-id": [ - "e05b5e72-9ce7-4090-8759-d298917eeacd" + "2718d699-acc4-4b29-a30d-8a1661b89141" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173419Z:e05b5e72-9ce7-4090-8759-d298917eeacd" + "SOUTHCENTRALUS:20150813T054923Z:2718d699-acc4-4b29-a30d-8a1661b89141" ], "Date": [ - "Fri, 19 Jun 2015 17:34:19 GMT" + "Thu, 13 Aug 2015 05:49:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2978,8 +3113,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "34045767-fa08-4ad8-85ab-f80df03affdc" + "ae2b5fa3-0774-4329-9ff9-49c24d4ecbd7" ], "Cache-Control": [ "no-cache" @@ -2989,31 +3127,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14689" + "14969" ], "x-ms-correlation-request-id": [ - "471ea806-de92-46a1-997c-aa46410ff577" + "519b5457-195a-49aa-a20a-2661f077a1be" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173449Z:471ea806-de92-46a1-997c-aa46410ff577" + "SOUTHCENTRALUS:20150813T054953Z:519b5457-195a-49aa-a20a-2661f077a1be" ], "Date": [ - "Fri, 19 Jun 2015 17:34:48 GMT" + "Thu, 13 Aug 2015 05:49:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3030,8 +3168,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "83ecab9c-6093-443c-b6ce-867d8eae301b" + "c421aa53-d0a7-4144-baec-2eeddb4fe4b4" ], "Cache-Control": [ "no-cache" @@ -3041,31 +3182,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14968" ], "x-ms-correlation-request-id": [ - "09b30874-235c-4d35-8f88-fc6aa61f1fa1" + "357e16b6-e2f2-4b5b-89a1-720da7d80ed0" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173519Z:09b30874-235c-4d35-8f88-fc6aa61f1fa1" + "SOUTHCENTRALUS:20150813T055024Z:357e16b6-e2f2-4b5b-89a1-720da7d80ed0" ], "Date": [ - "Fri, 19 Jun 2015 17:35:18 GMT" + "Thu, 13 Aug 2015 05:50:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3082,8 +3223,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c7fe7966-81fa-4250-932a-994f16013691" + "49c2c512-9480-4669-88ca-df0f218ca965" ], "Cache-Control": [ "no-cache" @@ -3093,31 +3237,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14967" ], "x-ms-correlation-request-id": [ - "4ae90e91-7ad5-4047-8058-9eafa5293efa" + "9100d6a0-4b83-4c32-adb5-2d9ae6205647" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173549Z:4ae90e91-7ad5-4047-8058-9eafa5293efa" + "SOUTHCENTRALUS:20150813T055054Z:9100d6a0-4b83-4c32-adb5-2d9ae6205647" ], "Date": [ - "Fri, 19 Jun 2015 17:35:49 GMT" + "Thu, 13 Aug 2015 05:50:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3134,8 +3278,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "dc52dcc1-622e-4e36-8aff-f95830133ab0" + "8cb32f8e-7500-424d-8201-eeb590840981" ], "Cache-Control": [ "no-cache" @@ -3145,31 +3292,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14966" ], "x-ms-correlation-request-id": [ - "6d568200-a434-4a90-b1cd-b6c0684d5c60" + "9fb4dd92-78f1-4f7f-8e57-e67b7c0b5a88" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173619Z:6d568200-a434-4a90-b1cd-b6c0684d5c60" + "SOUTHCENTRALUS:20150813T055124Z:9fb4dd92-78f1-4f7f-8e57-e67b7c0b5a88" ], "Date": [ - "Fri, 19 Jun 2015 17:36:18 GMT" + "Thu, 13 Aug 2015 05:51:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3186,8 +3333,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "18c45581-e40e-468a-8ed4-33d06c58087a" + "103b1619-90ca-48cd-9d78-2006afe2beaf" ], "Cache-Control": [ "no-cache" @@ -3197,31 +3347,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14701" + "14965" ], "x-ms-correlation-request-id": [ - "05ac2fda-869e-491a-9595-9c640535bf65" + "44be96db-9e24-4bc2-aac0-afa99f756002" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173649Z:05ac2fda-869e-491a-9595-9c640535bf65" + "SOUTHCENTRALUS:20150813T055155Z:44be96db-9e24-4bc2-aac0-afa99f756002" ], "Date": [ - "Fri, 19 Jun 2015 17:36:49 GMT" + "Thu, 13 Aug 2015 05:51:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3238,8 +3388,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "08def087-2124-4fe6-b2f5-731cfac5a573" + "86645fbf-3b42-4044-8567-8afd19b2f619" ], "Cache-Control": [ "no-cache" @@ -3249,31 +3402,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "14964" ], "x-ms-correlation-request-id": [ - "801469d8-ea23-4e40-acfc-5f3c3220067a" + "67f370f5-5bf1-45af-bc40-42b389981d24" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173719Z:801469d8-ea23-4e40-acfc-5f3c3220067a" + "SOUTHCENTRALUS:20150813T055225Z:67f370f5-5bf1-45af-bc40-42b389981d24" ], "Date": [ - "Fri, 19 Jun 2015 17:37:18 GMT" + "Thu, 13 Aug 2015 05:52:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3290,8 +3443,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "d4880ede-71af-4917-97e2-58a652150ec9" + "f0724193-0e49-407b-b2d5-07a7438971c2" ], "Cache-Control": [ "no-cache" @@ -3301,31 +3457,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14695" + "14963" ], "x-ms-correlation-request-id": [ - "62dda938-c95a-426b-a223-11a0d81d7e4b" + "fbda63ac-6c6d-4a51-ba5c-3ac8ea8122ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173749Z:62dda938-c95a-426b-a223-11a0d81d7e4b" + "SOUTHCENTRALUS:20150813T055255Z:fbda63ac-6c6d-4a51-ba5c-3ac8ea8122ab" ], "Date": [ - "Fri, 19 Jun 2015 17:37:49 GMT" + "Thu, 13 Aug 2015 05:52:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3342,8 +3498,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "172630df-509d-48b3-969c-913e510791f1" + "280159b0-3900-4ca2-9af8-8153c5ac91b6" ], "Cache-Control": [ "no-cache" @@ -3353,31 +3512,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "14962" ], "x-ms-correlation-request-id": [ - "5b898511-95ab-4e45-b1f1-1a85bf82532e" + "bc6eb64c-a636-45c6-8986-1838e655183c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173819Z:5b898511-95ab-4e45-b1f1-1a85bf82532e" + "SOUTHCENTRALUS:20150813T055325Z:bc6eb64c-a636-45c6-8986-1838e655183c" ], "Date": [ - "Fri, 19 Jun 2015 17:38:19 GMT" + "Thu, 13 Aug 2015 05:53:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3394,8 +3553,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3ba71281-0ee0-4ff6-8c01-2b21fde4eb41" + "a46320d3-8a39-41d1-a9af-76182f1deeec" ], "Cache-Control": [ "no-cache" @@ -3405,31 +3567,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14687" + "14961" ], "x-ms-correlation-request-id": [ - "5a73aa99-d86f-464e-9216-323b9f6a4096" + "7cd2eeb2-ed78-46a0-aa32-7062371c5372" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173849Z:5a73aa99-d86f-464e-9216-323b9f6a4096" + "SOUTHCENTRALUS:20150813T055356Z:7cd2eeb2-ed78-46a0-aa32-7062371c5372" ], "Date": [ - "Fri, 19 Jun 2015 17:38:49 GMT" + "Thu, 13 Aug 2015 05:53:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3446,8 +3608,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "2c0a05fd-436d-4c30-baeb-2cf78176f4eb" + "9834e3bc-6efc-4c80-8d0a-4aacc30d3811" ], "Cache-Control": [ "no-cache" @@ -3457,31 +3622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14682" + "14960" ], "x-ms-correlation-request-id": [ - "1fe313e6-7711-40de-8127-ddd9c16f1d19" + "bf715826-dc6f-420e-a948-eefbde2dccb8" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173920Z:1fe313e6-7711-40de-8127-ddd9c16f1d19" + "SOUTHCENTRALUS:20150813T055426Z:bf715826-dc6f-420e-a948-eefbde2dccb8" ], "Date": [ - "Fri, 19 Jun 2015 17:39:19 GMT" + "Thu, 13 Aug 2015 05:54:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3498,8 +3663,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "9d2dffd4-f5fd-49fb-b16c-feb6ba662b89" + "68908c00-4f0b-4483-9de6-6d6f54a0d66d" ], "Cache-Control": [ "no-cache" @@ -3509,31 +3677,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14679" + "14959" ], "x-ms-correlation-request-id": [ - "35c853da-de5d-48bb-83d5-2ee149673006" + "74cfe83b-be6d-49d2-b5b9-30e8dbe5c357" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T173950Z:35c853da-de5d-48bb-83d5-2ee149673006" + "SOUTHCENTRALUS:20150813T055456Z:74cfe83b-be6d-49d2-b5b9-30e8dbe5c357" ], "Date": [ - "Fri, 19 Jun 2015 17:39:49 GMT" + "Thu, 13 Aug 2015 05:54:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3550,8 +3718,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "93048798-8003-4d4d-a1d5-3e68eeafa2c6" + "3ed275ef-1e99-4f24-8d6d-6759b6b657f3" ], "Cache-Control": [ "no-cache" @@ -3561,31 +3732,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14695" + "14958" ], "x-ms-correlation-request-id": [ - "d29ace34-b5d7-47bc-8532-453006f16005" + "4b18d442-6ce8-4082-a802-f814347d3e73" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174020Z:d29ace34-b5d7-47bc-8532-453006f16005" + "SOUTHCENTRALUS:20150813T055526Z:4b18d442-6ce8-4082-a802-f814347d3e73" ], "Date": [ - "Fri, 19 Jun 2015 17:40:19 GMT" + "Thu, 13 Aug 2015 05:55:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3602,8 +3773,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e19411a2-877f-42da-aa93-a78196f01da9" + "3a8243a5-12fc-46a8-83d5-bd16912b2f5e" ], "Cache-Control": [ "no-cache" @@ -3613,31 +3787,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "14957" ], "x-ms-correlation-request-id": [ - "c246f64a-25de-4ead-a88e-0408939b469b" + "aef16b81-230a-47bd-b554-0377a6f48982" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174050Z:c246f64a-25de-4ead-a88e-0408939b469b" + "SOUTHCENTRALUS:20150813T055557Z:aef16b81-230a-47bd-b554-0377a6f48982" ], "Date": [ - "Fri, 19 Jun 2015 17:40:50 GMT" + "Thu, 13 Aug 2015 05:55:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3654,8 +3828,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "540284d2-2f7d-4b8b-9fd8-f3a10709832e" + "d509df4d-d329-4e64-bf9b-f7bb0ac9e825" ], "Cache-Control": [ "no-cache" @@ -3665,31 +3842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" + "14956" ], "x-ms-correlation-request-id": [ - "7abd38de-7517-4a24-988f-ff828396d8c6" + "9ecde86e-4406-4b0f-9892-162c6c3f323e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174120Z:7abd38de-7517-4a24-988f-ff828396d8c6" + "SOUTHCENTRALUS:20150813T055627Z:9ecde86e-4406-4b0f-9892-162c6c3f323e" ], "Date": [ - "Fri, 19 Jun 2015 17:41:19 GMT" + "Thu, 13 Aug 2015 05:56:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3706,8 +3883,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "54d82b73-ed62-47ab-94ce-378f8f89dae9" + "829fa685-2cf6-46e6-bfed-202d23353dda" ], "Cache-Control": [ "no-cache" @@ -3717,34 +3897,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14684" + "14955" ], "x-ms-correlation-request-id": [ - "924b9137-ba62-441b-a620-c1b6e1ccf58e" + "47bb462f-6609-4638-b3de-e664c60796c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174150Z:924b9137-ba62-441b-a620-c1b6e1ccf58e" + "SOUTHCENTRALUS:20150813T055657Z:47bb462f-6609-4638-b3de-e664c60796c0" ], "Date": [ - "Fri, 19 Jun 2015 17:41:50 GMT" + "Thu, 13 Aug 2015 05:56:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\",\r\n \"endTime\": \"2015-08-12T22:57:08.5433779-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3758,8 +3938,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c75fdbce-e20d-4348-a514-6f8f15306e02" + "cd537403-bf54-45b1-9d4b-a5261eceefb0" ], "Cache-Control": [ "no-cache" @@ -3769,34 +3952,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14679" + "14954" ], "x-ms-correlation-request-id": [ - "5979d781-c0d5-4aa8-bd2e-c6b202eb43ec" + "6756c00b-abc5-4b07-88eb-74a88b4116a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174220Z:5979d781-c0d5-4aa8-bd2e-c6b202eb43ec" + "SOUTHCENTRALUS:20150813T055728Z:6756c00b-abc5-4b07-88eb-74a88b4116a1" ], "Date": [ - "Fri, 19 Jun 2015 17:42:20 GMT" + "Thu, 13 Aug 2015 05:57:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3810,8 +3993,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a3f7affb-4816-4e1d-9fa5-130a81e8c949" + "fe232518-8d9f-4538-9adf-a600490c7870" ], "Cache-Control": [ "no-cache" @@ -3821,34 +4007,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14676" + "14953" ], "x-ms-correlation-request-id": [ - "105ff103-22fb-4622-b2f6-135a2e4d3397" + "1e7376ca-30b3-434c-8047-f40091c8efa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174250Z:105ff103-22fb-4622-b2f6-135a2e4d3397" + "SOUTHCENTRALUS:20150813T055728Z:1e7376ca-30b3-434c-8047-f40091c8efa5" ], "Date": [ - "Fri, 19 Jun 2015 17:42:49 GMT" + "Thu, 13 Aug 2015 05:57:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ce0c388-facd-41ab-9c7f-8a4125751a1d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlMGMzODgtZmFjZC00MWFiLTljN2YtOGE0MTI1NzUxYTFkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQvZXh0ZW5zaW9ucy9jc2V0ZXN0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ce0c388-facd-41ab-9c7f-8a4125751a1d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-19T10:27:46.9449423-07:00\",\r\n \"endTime\": \"2015-06-19T10:42:54.9844387-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Succesfully updated build-in Admin account and enabled Remote Desktop connection to the machine\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "987" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3862,8 +4048,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7b772911-99fd-4b06-b1d9-1e7b7c36a3bd" + "17582260-6cb1-4f63-b079-7a40739d5de7" ], "Cache-Control": [ "no-cache" @@ -3873,34 +4062,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14672" + "14952" ], "x-ms-correlation-request-id": [ - "5573df5e-f0b0-45cd-a33a-b9990c969474" + "b9f8b30a-7aa1-4791-be6b-ec815cec52fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174320Z:5573df5e-f0b0-45cd-a33a-b9990c969474" + "SOUTHCENTRALUS:20150813T055728Z:b9f8b30a-7aa1-4791-be6b-ec815cec52fb" ], "Date": [ - "Fri, 19 Jun 2015 17:43:20 GMT" + "Thu, 13 Aug 2015 05:57:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805/extensions/csetest?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4MDUvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224\",\r\n \"name\": \"vmcrptestps1224\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "2561" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3914,8 +4103,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "bc0c130c-cab5-45b1-bf10-5902c034b7d6" + "53e2a180-8ea2-400f-bdc9-9b3a85dc1c79" ], "Cache-Control": [ "no-cache" @@ -3925,37 +4117,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" + "14951" ], "x-ms-correlation-request-id": [ - "caaf31e1-666b-4313-8b49-cbfe86df163c" + "232fcee1-8787-4134-8c41-5227bfc54784" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174321Z:caaf31e1-666b-4313-8b49-cbfe86df163c" + "SOUTHCENTRALUS:20150813T055728Z:232fcee1-8787-4134-8c41-5227bfc54784" ], "Date": [ - "Fri, 19 Jun 2015 17:43:20 GMT" + "Thu, 13 Aug 2015 05:57:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805/extensions/csetest?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4MDUvZXh0ZW5zaW9ucy9jc2V0ZXN0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Succesfully updated build-in Admin account and enabled Remote Desktop connection to the machine\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "987" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3963,51 +4152,107 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-request-id": [ - "9e49b505-2b10-404b-bb3d-704b974032a5" + "f380bcdd-a941-4e70-a70d-9c48ebee9e34" + ], + "x-ms-correlation-request-id": [ + "f380bcdd-a941-4e70-a70d-9c48ebee9e34" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T055731Z:f380bcdd-a941-4e70-a70d-9c48ebee9e34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Date": [ + "Thu, 13 Aug 2015 05:57:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14670" + "14970" + ], + "x-ms-request-id": [ + "c09adb09-ced7-406a-b5cd-e91a87d27a2f" ], "x-ms-correlation-request-id": [ - "61c547e3-0ba0-473f-a631-a67da0eb2582" + "c09adb09-ced7-406a-b5cd-e91a87d27a2f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174321Z:61c547e3-0ba0-473f-a631-a67da0eb2582" + "SOUTHCENTRALUS:20150813T055731Z:c09adb09-ced7-406a-b5cd-e91a87d27a2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:43:20 GMT" + "Thu, 13 Aug 2015 05:57:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5805.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Network/networkInterfaces/niccrptestps5805\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5805/providers/Microsoft.Compute/virtualMachines/vmcrptestps5805\",\r\n \"name\": \"vmcrptestps5805\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "2561" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -4015,40 +4260,99 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" ], "x-ms-request-id": [ - "8a48af27-de4d-43f2-b77d-09714c8fe506" + "15e179f9-3403-40ec-8bae-ed2e75206996" + ], + "x-ms-correlation-request-id": [ + "15e179f9-3403-40ec-8bae-ed2e75206996" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T055746Z:15e179f9-3403-40ec-8bae-ed2e75206996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Date": [ + "Thu, 13 Aug 2015 05:57:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14669" + "14968" + ], + "x-ms-request-id": [ + "3add545c-a354-415d-852b-26670d82ac12" ], "x-ms-correlation-request-id": [ - "b7b8b79e-4220-414c-9f0a-9511620248c0" + "3add545c-a354-415d-852b-26670d82ac12" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174321Z:b7b8b79e-4220-414c-9f0a-9511620248c0" + "SOUTHCENTRALUS:20150813T055801Z:3add545c-a354-415d-852b-26670d82ac12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:43:20 GMT" + "Thu, 13 Aug 2015 05:58:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5805?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4MDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4067,17 +4371,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" ], "x-ms-request-id": [ - "fabaf5c4-ccc2-4b08-b956-41d2c7b79f3d" + "9863b707-8820-4313-ba31-11c1141501ec" ], "x-ms-correlation-request-id": [ - "fabaf5c4-ccc2-4b08-b956-41d2c7b79f3d" + "9863b707-8820-4313-ba31-11c1141501ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174321Z:fabaf5c4-ccc2-4b08-b956-41d2c7b79f3d" + "SOUTHCENTRALUS:20150813T055816Z:9863b707-8820-4313-ba31-11c1141501ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4086,17 +4390,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:43:20 GMT" + "Thu, 13 Aug 2015 05:58:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4122,16 +4426,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "14966" ], "x-ms-request-id": [ - "93b435c8-8927-41b9-abf4-c3e3486b4551" + "230d6249-672a-40a7-aad2-6606fe448d2c" ], "x-ms-correlation-request-id": [ - "93b435c8-8927-41b9-abf4-c3e3486b4551" + "230d6249-672a-40a7-aad2-6606fe448d2c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174321Z:93b435c8-8927-41b9-abf4-c3e3486b4551" + "SOUTHCENTRALUS:20150813T055831Z:230d6249-672a-40a7-aad2-6606fe448d2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4140,17 +4444,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:43:20 GMT" + "Thu, 13 Aug 2015 05:58:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4176,16 +4480,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14965" ], "x-ms-request-id": [ - "cae42a47-ffa6-4ea8-97ca-9cada398d695" + "74feab07-e109-4760-954c-bf3896854c33" ], "x-ms-correlation-request-id": [ - "cae42a47-ffa6-4ea8-97ca-9cada398d695" + "74feab07-e109-4760-954c-bf3896854c33" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174337Z:cae42a47-ffa6-4ea8-97ca-9cada398d695" + "SOUTHCENTRALUS:20150813T055847Z:74feab07-e109-4760-954c-bf3896854c33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4194,17 +4498,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:43:36 GMT" + "Thu, 13 Aug 2015 05:58:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4230,16 +4534,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14701" + "14964" ], "x-ms-request-id": [ - "606d593d-5312-4b52-8589-584419a0ad84" + "e95789c5-b7b2-4fd4-a381-69dc41ecaa78" ], "x-ms-correlation-request-id": [ - "606d593d-5312-4b52-8589-584419a0ad84" + "e95789c5-b7b2-4fd4-a381-69dc41ecaa78" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174352Z:606d593d-5312-4b52-8589-584419a0ad84" + "SOUTHCENTRALUS:20150813T055902Z:e95789c5-b7b2-4fd4-a381-69dc41ecaa78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4248,17 +4552,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:43:51 GMT" + "Thu, 13 Aug 2015 05:59:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4284,16 +4588,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14963" ], "x-ms-request-id": [ - "5e6231be-0525-4cb4-b20e-91ce927af8e7" + "dba87652-3714-4520-bc16-c4a5dfe9ffc1" ], "x-ms-correlation-request-id": [ - "5e6231be-0525-4cb4-b20e-91ce927af8e7" + "dba87652-3714-4520-bc16-c4a5dfe9ffc1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174407Z:5e6231be-0525-4cb4-b20e-91ce927af8e7" + "SOUTHCENTRALUS:20150813T055917Z:dba87652-3714-4520-bc16-c4a5dfe9ffc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4302,17 +4606,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:44:07 GMT" + "Thu, 13 Aug 2015 05:59:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4338,16 +4642,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" + "14962" ], "x-ms-request-id": [ - "4b231db4-da21-4d0c-9b3f-5306919e354b" + "4e6a8e10-cdd2-418a-a413-aefbf466e203" ], "x-ms-correlation-request-id": [ - "4b231db4-da21-4d0c-9b3f-5306919e354b" + "4e6a8e10-cdd2-418a-a413-aefbf466e203" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174422Z:4b231db4-da21-4d0c-9b3f-5306919e354b" + "SOUTHCENTRALUS:20150813T055932Z:4e6a8e10-cdd2-418a-a413-aefbf466e203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4356,17 +4660,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:44:21 GMT" + "Thu, 13 Aug 2015 05:59:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4392,16 +4696,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "14961" ], "x-ms-request-id": [ - "a1f1519d-8493-491f-9296-859bf57ef89d" + "2ba82cc9-7f5c-43a3-bdb0-a7f6849cc5c6" ], "x-ms-correlation-request-id": [ - "a1f1519d-8493-491f-9296-859bf57ef89d" + "2ba82cc9-7f5c-43a3-bdb0-a7f6849cc5c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174437Z:a1f1519d-8493-491f-9296-859bf57ef89d" + "SOUTHCENTRALUS:20150813T055947Z:2ba82cc9-7f5c-43a3-bdb0-a7f6849cc5c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4410,17 +4714,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:44:36 GMT" + "Thu, 13 Aug 2015 05:59:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4446,16 +4750,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14695" + "14964" ], "x-ms-request-id": [ - "27a3b6e0-8f64-4dfe-be88-a2baa7ae15a2" + "bea78c85-571d-4b1e-b1ff-05ca6298123b" ], "x-ms-correlation-request-id": [ - "27a3b6e0-8f64-4dfe-be88-a2baa7ae15a2" + "bea78c85-571d-4b1e-b1ff-05ca6298123b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174452Z:27a3b6e0-8f64-4dfe-be88-a2baa7ae15a2" + "SOUTHCENTRALUS:20150813T060002Z:bea78c85-571d-4b1e-b1ff-05ca6298123b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4464,17 +4768,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:44:52 GMT" + "Thu, 13 Aug 2015 06:00:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4500,16 +4804,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14963" ], "x-ms-request-id": [ - "ee27b975-dfbe-46f5-9b7e-398543f02573" + "9b530536-06a6-4ad6-bed9-c780ef18d192" ], "x-ms-correlation-request-id": [ - "ee27b975-dfbe-46f5-9b7e-398543f02573" + "9b530536-06a6-4ad6-bed9-c780ef18d192" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174507Z:ee27b975-dfbe-46f5-9b7e-398543f02573" + "SOUTHCENTRALUS:20150813T060018Z:9b530536-06a6-4ad6-bed9-c780ef18d192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4518,17 +4822,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:45:07 GMT" + "Thu, 13 Aug 2015 06:00:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4554,16 +4858,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14962" ], "x-ms-request-id": [ - "8681812e-65ff-4e9d-8694-7654484bd367" + "3d2ba3ec-394f-4d06-b8a6-a30d855c8a89" ], "x-ms-correlation-request-id": [ - "8681812e-65ff-4e9d-8694-7654484bd367" + "3d2ba3ec-394f-4d06-b8a6-a30d855c8a89" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174522Z:8681812e-65ff-4e9d-8694-7654484bd367" + "SOUTHCENTRALUS:20150813T060033Z:3d2ba3ec-394f-4d06-b8a6-a30d855c8a89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4572,17 +4876,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:45:21 GMT" + "Thu, 13 Aug 2015 06:00:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4608,16 +4912,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14961" ], "x-ms-request-id": [ - "5c561739-df44-44a1-aa89-18bae1b83c08" + "04679d25-8ba3-4950-b40c-6c017dc3ed5d" ], "x-ms-correlation-request-id": [ - "5c561739-df44-44a1-aa89-18bae1b83c08" + "04679d25-8ba3-4950-b40c-6c017dc3ed5d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174537Z:5c561739-df44-44a1-aa89-18bae1b83c08" + "SOUTHCENTRALUS:20150813T060048Z:04679d25-8ba3-4950-b40c-6c017dc3ed5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4626,17 +4930,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:45:37 GMT" + "Thu, 13 Aug 2015 06:00:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4662,16 +4966,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14960" ], "x-ms-request-id": [ - "886f03b2-9be7-435a-ba45-6963cd9ae3b0" + "e724a885-9010-43db-a6d1-32aa701f4fc9" ], "x-ms-correlation-request-id": [ - "886f03b2-9be7-435a-ba45-6963cd9ae3b0" + "e724a885-9010-43db-a6d1-32aa701f4fc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174552Z:886f03b2-9be7-435a-ba45-6963cd9ae3b0" + "SOUTHCENTRALUS:20150813T060103Z:e724a885-9010-43db-a6d1-32aa701f4fc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4680,17 +4984,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:45:52 GMT" + "Thu, 13 Aug 2015 06:01:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,16 +5020,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14959" ], "x-ms-request-id": [ - "cd5b3808-a089-4364-a1f0-972b97751522" + "cd31ae14-3d26-47f0-8fca-e4bd24e60406" ], "x-ms-correlation-request-id": [ - "cd5b3808-a089-4364-a1f0-972b97751522" + "cd31ae14-3d26-47f0-8fca-e4bd24e60406" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174607Z:cd5b3808-a089-4364-a1f0-972b97751522" + "SOUTHCENTRALUS:20150813T060118Z:cd31ae14-3d26-47f0-8fca-e4bd24e60406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4734,17 +5038,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:46:07 GMT" + "Thu, 13 Aug 2015 06:01:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4770,16 +5074,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "14958" ], "x-ms-request-id": [ - "e1d69bc2-d2a9-4dba-af7b-0d810c74e21c" + "f31c9da4-3728-448e-985a-ffdf85f71ee9" ], "x-ms-correlation-request-id": [ - "e1d69bc2-d2a9-4dba-af7b-0d810c74e21c" + "f31c9da4-3728-448e-985a-ffdf85f71ee9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174622Z:e1d69bc2-d2a9-4dba-af7b-0d810c74e21c" + "SOUTHCENTRALUS:20150813T060133Z:f31c9da4-3728-448e-985a-ffdf85f71ee9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4788,17 +5092,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:46:22 GMT" + "Thu, 13 Aug 2015 06:01:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4824,16 +5128,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "14957" ], "x-ms-request-id": [ - "c784cefd-99b0-4a55-8fdd-a0af51535a75" + "738b711b-a1df-45a2-afa0-aa552a9bdc39" ], "x-ms-correlation-request-id": [ - "c784cefd-99b0-4a55-8fdd-a0af51535a75" + "738b711b-a1df-45a2-afa0-aa552a9bdc39" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174637Z:c784cefd-99b0-4a55-8fdd-a0af51535a75" + "SOUTHCENTRALUS:20150813T060149Z:738b711b-a1df-45a2-afa0-aa552a9bdc39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4842,17 +5146,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:46:37 GMT" + "Thu, 13 Aug 2015 06:01:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4878,16 +5182,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14701" + "14956" ], "x-ms-request-id": [ - "bfb54873-8259-4891-8795-c629b7281584" + "478084f0-42fa-4b1e-9744-8bd6a6c902d0" ], "x-ms-correlation-request-id": [ - "bfb54873-8259-4891-8795-c629b7281584" + "478084f0-42fa-4b1e-9744-8bd6a6c902d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174653Z:bfb54873-8259-4891-8795-c629b7281584" + "SOUTHCENTRALUS:20150813T060204Z:478084f0-42fa-4b1e-9744-8bd6a6c902d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4896,17 +5200,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:46:52 GMT" + "Thu, 13 Aug 2015 06:02:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4932,16 +5236,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" + "14955" ], "x-ms-request-id": [ - "83f88f96-e390-43a3-8e0c-3de076bf6acf" + "60297378-7e68-4ada-93f2-66d99a6c81e7" ], "x-ms-correlation-request-id": [ - "83f88f96-e390-43a3-8e0c-3de076bf6acf" + "60297378-7e68-4ada-93f2-66d99a6c81e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174708Z:83f88f96-e390-43a3-8e0c-3de076bf6acf" + "SOUTHCENTRALUS:20150813T060219Z:60297378-7e68-4ada-93f2-66d99a6c81e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4950,17 +5254,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:47:07 GMT" + "Thu, 13 Aug 2015 06:02:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4986,16 +5290,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "14954" ], "x-ms-request-id": [ - "f3e188f9-fc83-4314-a832-bec083a54281" + "cb4f6a8b-3067-46bc-8e57-60db461506f1" ], "x-ms-correlation-request-id": [ - "f3e188f9-fc83-4314-a832-bec083a54281" + "cb4f6a8b-3067-46bc-8e57-60db461506f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174723Z:f3e188f9-fc83-4314-a832-bec083a54281" + "SOUTHCENTRALUS:20150813T060234Z:cb4f6a8b-3067-46bc-8e57-60db461506f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5004,17 +5308,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:47:22 GMT" + "Thu, 13 Aug 2015 06:02:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5040,16 +5344,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "14953" ], "x-ms-request-id": [ - "9c809d37-59ca-446a-88f6-536bb87f586f" + "80725dba-4706-4185-815f-9a71b1b42148" ], "x-ms-correlation-request-id": [ - "9c809d37-59ca-446a-88f6-536bb87f586f" + "80725dba-4706-4185-815f-9a71b1b42148" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174738Z:9c809d37-59ca-446a-88f6-536bb87f586f" + "SOUTHCENTRALUS:20150813T060249Z:80725dba-4706-4185-815f-9a71b1b42148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5058,17 +5362,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:47:37 GMT" + "Thu, 13 Aug 2015 06:02:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5091,16 +5395,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14693" + "14952" ], "x-ms-request-id": [ - "46dd3641-d749-4b0e-8188-07f2473aa347" + "e31d422b-8e27-4578-b913-5cd34b3a311c" ], "x-ms-correlation-request-id": [ - "46dd3641-d749-4b0e-8188-07f2473aa347" + "e31d422b-8e27-4578-b913-5cd34b3a311c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T174753Z:46dd3641-d749-4b0e-8188-07f2473aa347" + "SOUTHCENTRALUS:20150813T060304Z:e31d422b-8e27-4578-b913-5cd34b3a311c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5109,7 +5413,7 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 17:47:52 GMT" + "Thu, 13 Aug 2015 06:03:04 GMT" ] }, "StatusCode": 200 @@ -5117,11 +5421,11 @@ ], "Names": { "Test-VirtualMachineAccessExtension": [ - "crptestps5805" + "crptestps1224" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json index fbac12da72e2..d4e1daaefb21 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps3976?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "61878a88-8aea-4df6-9854-49550504ed60" + ], + "x-ms-correlation-request-id": [ + "61878a88-8aea-4df6-9854-49550504ed60" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T032329Z:61878a88-8aea-4df6-9854-49550504ed60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 03:23:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8093?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14980" ], "x-ms-request-id": [ - "3f9b6539-1120-45f0-b36b-645b86915504" + "0252d314-ce5c-4da9-b063-ebd952fa7e88" ], "x-ms-correlation-request-id": [ - "3f9b6539-1120-45f0-b36b-645b86915504" + "0252d314-ce5c-4da9-b063-ebd952fa7e88" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232122Z:3f9b6539-1120-45f0-b36b-645b86915504" + "SOUTHCENTRALUS:20150813T032330Z:0252d314-ce5c-4da9-b063-ebd952fa7e88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:21:21 GMT" + "Thu, 13 Aug 2015 03:23:29 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps3976?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8093?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14996" ], "x-ms-request-id": [ - "103bcc9f-25f7-4df4-b838-4fced5823c59" + "766d9eab-dda3-4661-aa44-4471b7111590" ], "x-ms-correlation-request-id": [ - "103bcc9f-25f7-4df4-b838-4fced5823c59" + "766d9eab-dda3-4661-aa44-4471b7111590" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234421Z:103bcc9f-25f7-4df4-b838-4fced5823c59" + "SOUTHCENTRALUS:20150813T034739Z:766d9eab-dda3-4661-aa44-4471b7111590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:44:21 GMT" + "Thu, 13 Aug 2015 03:47:38 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps3976?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8093?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976\",\r\n \"name\": \"crptestps3976\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093\",\r\n \"name\": \"crptestps8093\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "c92366d1-53a3-427a-a716-633e98670c8a" + "c7f87fcb-94a2-4c24-a008-136ad38ca2da" ], "x-ms-correlation-request-id": [ - "c92366d1-53a3-427a-a716-633e98670c8a" + "c7f87fcb-94a2-4c24-a008-136ad38ca2da" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232123Z:c92366d1-53a3-427a-a716-633e98670c8a" + "SOUTHCENTRALUS:20150813T032330Z:c7f87fcb-94a2-4c24-a008-136ad38ca2da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:21:22 GMT" + "Thu, 13 Aug 2015 03:23:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14979" ], "x-ms-request-id": [ - "90405ba3-e351-46e4-9960-e48f7a109706" + "80c17376-e140-43c6-9987-98aa30db84b9" ], "x-ms-correlation-request-id": [ - "90405ba3-e351-46e4-9960-e48f7a109706" + "80c17376-e140-43c6-9987-98aa30db84b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232123Z:90405ba3-e351-46e4-9960-e48f7a109706" + "SOUTHCENTRALUS:20150813T032330Z:80c17376-e140-43c6-9987-98aa30db84b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:21:22 GMT" + "Thu, 13 Aug 2015 03:23:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps3976/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8093/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:8436c423-e4ab-4471-bca1-b0ebfb0779fb" + "southcentralus:7f7feef5-e81f-4354-9e6d-9ebba14a7c00" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14989" ], "x-ms-correlation-request-id": [ - "a34307f9-bc1a-450a-ac0d-b569230f5aee" + "20be21ef-8a8c-479b-b057-f27a238156c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232123Z:a34307f9-bc1a-450a-ac0d-b569230f5aee" + "SOUTHCENTRALUS:20150813T032331Z:20be21ef-8a8c-479b-b057-f27a238156c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:21:22 GMT" + "Thu, 13 Aug 2015 03:23:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzk3Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODA5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps8093' under resource group 'crptestps8093' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "cb93fa24-df6b-4d8f-ac3f-e897b13f10a4" + "3d3fa899-186d-4810-b389-00463bc421b5" ], "x-ms-correlation-request-id": [ - "cb93fa24-df6b-4d8f-ac3f-e897b13f10a4" + "3d3fa899-186d-4810-b389-00463bc421b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232124Z:cb93fa24-df6b-4d8f-ac3f-e897b13f10a4" + "SOUTHCENTRALUS:20150813T032332Z:3d3fa899-186d-4810-b389-00463bc421b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:21:23 GMT" + "Thu, 13 Aug 2015 03:23:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzk3Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODA5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976\",\r\n \"etag\": \"W/\\\"d8ad5982-31b4-425b-a079-056df66adbd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976/subnets/subnetcrptestps3976\",\r\n \"etag\": \"W/\\\"d8ad5982-31b4-425b-a079-056df66adbd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093\",\r\n \"etag\": \"W/\\\"74b4bf63-2137-4096-871e-483d5d4b3c64\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d76d875-f929-4638-97fc-c8173ab56b24\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093/subnets/subnetcrptestps8093\",\r\n \"etag\": \"W/\\\"74b4bf63-2137-4096-871e-483d5d4b3c64\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "f0a9fe9b-a68e-4d7b-b2e6-e26efd840d8f" + "1e522087-1d06-4833-8d57-429b30384d43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"d8ad5982-31b4-425b-a079-056df66adbd0\"" + "W/\"74b4bf63-2137-4096-871e-483d5d4b3c64\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" + "14986" ], "x-ms-correlation-request-id": [ - "0bbd44bd-6f09-400f-a060-ea359f90e481" + "186d0378-8d64-4f4d-ae53-fafb2474f468" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232135Z:0bbd44bd-6f09-400f-a060-ea359f90e481" + "SOUTHCENTRALUS:20150813T032344Z:186d0378-8d64-4f4d-ae53-fafb2474f468" ], "Date": [ - "Fri, 19 Jun 2015 23:21:34 GMT" + "Thu, 13 Aug 2015 03:23:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzk3Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODA5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976\",\r\n \"etag\": \"W/\\\"d8ad5982-31b4-425b-a079-056df66adbd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976/subnets/subnetcrptestps3976\",\r\n \"etag\": \"W/\\\"d8ad5982-31b4-425b-a079-056df66adbd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093\",\r\n \"etag\": \"W/\\\"74b4bf63-2137-4096-871e-483d5d4b3c64\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d76d875-f929-4638-97fc-c8173ab56b24\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093/subnets/subnetcrptestps8093\",\r\n \"etag\": \"W/\\\"74b4bf63-2137-4096-871e-483d5d4b3c64\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "c8cf1a6b-ab1b-4651-a78f-d7abe53c2297" + "cd434d44-02d1-4416-8704-4a82edecb564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"d8ad5982-31b4-425b-a079-056df66adbd0\"" + "W/\"74b4bf63-2137-4096-871e-483d5d4b3c64\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "14985" ], "x-ms-correlation-request-id": [ - "e4b0d069-0566-49ba-8f5f-af2615918222" + "46a34b91-cde6-44fc-9bd2-b806575721bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232135Z:e4b0d069-0566-49ba-8f5f-af2615918222" + "SOUTHCENTRALUS:20150813T032345Z:46a34b91-cde6-44fc-9bd2-b806575721bd" ], "Date": [ - "Fri, 19 Jun 2015 23:21:34 GMT" + "Thu, 13 Aug 2015 03:23:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzk3Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODA5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps3976\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps3976\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps8093\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps8093\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -423,10 +471,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976\",\r\n \"etag\": \"W/\\\"ab84ddf4-091a-4383-8902-d81a1d9a5b46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976/subnets/subnetcrptestps3976\",\r\n \"etag\": \"W/\\\"ab84ddf4-091a-4383-8902-d81a1d9a5b46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093\",\r\n \"etag\": \"W/\\\"7c4c1159-5b2b-498b-883a-b576b6519eff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0d76d875-f929-4638-97fc-c8173ab56b24\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093/subnets/subnetcrptestps8093\",\r\n \"etag\": \"W/\\\"7c4c1159-5b2b-498b-883a-b576b6519eff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "965" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "0cedf6e8-1aca-44cc-88f6-d8ccc3aadb0e" + "7a6c5022-4b23-402c-8c4a-87fc7c74e0d6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0cedf6e8-1aca-44cc-88f6-d8ccc3aadb0e?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/7a6c5022-4b23-402c-8c4a-87fc7c74e0d6?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1187" ], "x-ms-correlation-request-id": [ - "7d7c02c2-f256-429b-b466-d665b6482b4e" + "022af073-bce2-4553-967b-83cae448c1fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232124Z:7d7c02c2-f256-429b-b466-d665b6482b4e" + "SOUTHCENTRALUS:20150813T032334Z:022af073-bce2-4553-967b-83cae448c1fc" ], "Date": [ - "Fri, 19 Jun 2015 23:21:24 GMT" + "Thu, 13 Aug 2015 03:23:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0cedf6e8-1aca-44cc-88f6-d8ccc3aadb0e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlZGY2ZTgtMWFjYS00NGNjLTg4ZjYtZDhjY2MzYWFkYjBlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/7a6c5022-4b23-402c-8c4a-87fc7c74e0d6?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2E2YzUwMjItNGIyMy00MDJjLThjNGEtODdmYzdjNzRlMGQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "e3951fc8-c29d-48b2-8add-0cd6039a0602" + "8c0f72ca-738b-4612-9958-ed6965bd0b28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" + "14988" ], "x-ms-correlation-request-id": [ - "63dd238d-d01a-48d9-8094-58edd3f2e01e" + "5e8b0f61-69d1-4caf-8123-a05701298405" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232125Z:63dd238d-d01a-48d9-8094-58edd3f2e01e" + "SOUTHCENTRALUS:20150813T032334Z:5e8b0f61-69d1-4caf-8123-a05701298405" ], "Date": [ - "Fri, 19 Jun 2015 23:21:24 GMT" + "Thu, 13 Aug 2015 03:23:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0cedf6e8-1aca-44cc-88f6-d8ccc3aadb0e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNlZGY2ZTgtMWFjYS00NGNjLTg4ZjYtZDhjY2MzYWFkYjBlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/7a6c5022-4b23-402c-8c4a-87fc7c74e0d6?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2E2YzUwMjItNGIyMy00MDJjLThjNGEtODdmYzdjNzRlMGQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "28bf5fbf-b908-4e6f-9ffb-15b2b0d8e9f6" + "72d2a00f-bfc3-4976-801b-920008647285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14987" ], "x-ms-correlation-request-id": [ - "ead3a9c1-f246-4478-84ad-0a73303d256b" + "60ed5d05-f3a2-46e1-bdda-38a0b46679f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232135Z:ead3a9c1-f246-4478-84ad-0a73303d256b" + "SOUTHCENTRALUS:20150813T032344Z:60ed5d05-f3a2-46e1-bdda-38a0b46679f4" ], "Date": [ - "Fri, 19 Jun 2015 23:21:34 GMT" + "Thu, 13 Aug 2015 03:23:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzk3Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODA5My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps8093' under resource group 'crptestps8093' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "135011c2-b073-46c8-b950-7b138c4d6d84" + "e73a05ce-4306-4ed6-8264-ed0f57e80e99" ], "x-ms-correlation-request-id": [ - "135011c2-b073-46c8-b950-7b138c4d6d84" + "e73a05ce-4306-4ed6-8264-ed0f57e80e99" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232135Z:135011c2-b073-46c8-b950-7b138c4d6d84" + "SOUTHCENTRALUS:20150813T032345Z:e73a05ce-4306-4ed6-8264-ed0f57e80e99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +672,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:21:35 GMT" + "Thu, 13 Aug 2015 03:23:44 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzk3Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODA5My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976\",\r\n \"etag\": \"W/\\\"44800d86-0497-44d7-b87a-784d2d4c56ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3976\",\r\n \"fqdn\": \"pubipcrptestps3976.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093\",\r\n \"etag\": \"W/\\\"ae1f4aee-ab14-4c34-9f5d-79fe99d9d6f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89161934-62f2-481a-bbac-26fb4cccb2d0\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8093\",\r\n \"fqdn\": \"pubipcrptestps8093.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "1f015a53-eeeb-4668-b51e-7762e1416115" + "0f69aea6-cad3-4589-b52e-24871238edd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"44800d86-0497-44d7-b87a-784d2d4c56ac\"" + "W/\"ae1f4aee-ab14-4c34-9f5d-79fe99d9d6f3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "14982" ], "x-ms-correlation-request-id": [ - "b595a188-d7bd-4853-b04f-f4b1cc8f308c" + "18c2aec7-e30f-42d1-a505-f9dcc9203e04" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232136Z:b595a188-d7bd-4853-b04f-f4b1cc8f308c" + "SOUTHCENTRALUS:20150813T032347Z:18c2aec7-e30f-42d1-a505-f9dcc9203e04" ], "Date": [ - "Fri, 19 Jun 2015 23:21:36 GMT" + "Thu, 13 Aug 2015 03:23:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzk3Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODA5My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976\",\r\n \"etag\": \"W/\\\"44800d86-0497-44d7-b87a-784d2d4c56ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3976\",\r\n \"fqdn\": \"pubipcrptestps3976.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093\",\r\n \"etag\": \"W/\\\"ae1f4aee-ab14-4c34-9f5d-79fe99d9d6f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89161934-62f2-481a-bbac-26fb4cccb2d0\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8093\",\r\n \"fqdn\": \"pubipcrptestps8093.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "342ada5a-d7ea-4aed-bce6-d9cf6d195a9b" + "eb687efd-3cf3-4227-a929-15b59dad1d1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,32 +766,32 @@ "no-cache" ], "ETag": [ - "W/\"44800d86-0497-44d7-b87a-784d2d4c56ac\"" + "W/\"ae1f4aee-ab14-4c34-9f5d-79fe99d9d6f3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14981" ], "x-ms-correlation-request-id": [ - "80727659-02b5-4190-8f6f-3cc137abdf73" + "e267b172-d69e-4091-a29f-7f219ec426d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232136Z:80727659-02b5-4190-8f6f-3cc137abdf73" + "SOUTHCENTRALUS:20150813T032347Z:e267b172-d69e-4091-a29f-7f219ec426d6" ], "Date": [ - "Fri, 19 Jun 2015 23:21:36 GMT" + "Thu, 13 Aug 2015 03:23:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzk3Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODA5My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3976\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps3976\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8093\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps8093\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -755,10 +803,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976\",\r\n \"etag\": \"W/\\\"b75d6de0-7cc5-4a9e-b247-fba0afb2d5bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3976\",\r\n \"fqdn\": \"pubipcrptestps3976.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093\",\r\n \"etag\": \"W/\\\"936c27e5-8a2b-4b25-bbdc-08f270e90659\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"89161934-62f2-481a-bbac-26fb4cccb2d0\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8093\",\r\n \"fqdn\": \"pubipcrptestps8093.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "554" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -773,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "f55c2b63-2fb2-4d45-8507-d7aa7b7c7260" + "b2d610f5-b2ec-4bed-85e1-7c57e42ee9ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/f55c2b63-2fb2-4d45-8507-d7aa7b7c7260?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b2d610f5-b2ec-4bed-85e1-7c57e42ee9ef?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1186" ], "x-ms-correlation-request-id": [ - "800a5b11-f877-4a10-9144-0474967e7cc8" + "5861d2bc-6d62-4727-a024-82f3e6905d5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232136Z:800a5b11-f877-4a10-9144-0474967e7cc8" + "SOUTHCENTRALUS:20150813T032347Z:5861d2bc-6d62-4727-a024-82f3e6905d5f" ], "Date": [ - "Fri, 19 Jun 2015 23:21:35 GMT" + "Thu, 13 Aug 2015 03:23:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/f55c2b63-2fb2-4d45-8507-d7aa7b7c7260?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjU1YzJiNjMtMmZiMi00ZDQ1LTg1MDctZDdhYTdiN2M3MjYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b2d610f5-b2ec-4bed-85e1-7c57e42ee9ef?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjJkNjEwZjUtYjJlYy00YmVkLTg1ZTEtN2M1N2U0MmVlOWVmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,7 +879,7 @@ "no-cache" ], "x-ms-request-id": [ - "5bd7966e-f15a-4fac-8761-0e471f63cbdb" + "fe8d0b23-05f7-4d1f-b424-24966c200072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -844,23 +892,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "14983" ], "x-ms-correlation-request-id": [ - "35fcc034-702e-496f-adf1-437b271264f6" + "c9da2230-10d9-453a-a551-80590fb60f43" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232136Z:35fcc034-702e-496f-adf1-437b271264f6" + "SOUTHCENTRALUS:20150813T032347Z:c9da2230-10d9-453a-a551-80590fb60f43" ], "Date": [ - "Fri, 19 Jun 2015 23:21:36 GMT" + "Thu, 13 Aug 2015 03:23:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,10 +916,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps8093' under resource group 'crptestps8093' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,13 +934,13 @@ "gateway" ], "x-ms-request-id": [ - "46af75a0-2cad-4a45-9251-038ea94eaec7" + "e0d3a854-b841-494f-948a-66fa9215577f" ], "x-ms-correlation-request-id": [ - "46af75a0-2cad-4a45-9251-038ea94eaec7" + "e0d3a854-b841-494f-948a-66fa9215577f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232136Z:46af75a0-2cad-4a45-9251-038ea94eaec7" + "SOUTHCENTRALUS:20150813T032347Z:e0d3a854-b841-494f-948a-66fa9215577f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,14 +949,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:21:36 GMT" + "Thu, 13 Aug 2015 03:23:47 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976\",\r\n \"etag\": \"W/\\\"c59583a5-cf00-481a-a8d4-773946c66c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c59583a5-cf00-481a-a8d4-773946c66c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976/subnets/subnetcrptestps3976\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093\",\r\n \"etag\": \"W/\\\"42364582-a36e-4815-8466-dcd819af8599\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a0b7f87-fba8-409c-a64b-4d9195fc36a1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"42364582-a36e-4815-8466-dcd819af8599\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093/subnets/subnetcrptestps8093\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "7d22640c-727f-49ba-bd5c-3528e53e151f" + "1dc96751-90d7-4602-a566-c9a1dcd12f4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,30 +988,30 @@ "no-cache" ], "ETag": [ - "W/\"c59583a5-cf00-481a-a8d4-773946c66c3f\"" + "W/\"42364582-a36e-4815-8466-dcd819af8599\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14978" ], "x-ms-correlation-request-id": [ - "2fb8ae1f-c91c-43f5-9f62-97054e537e7d" + "8f0e0d41-2b5e-4e55-995c-040a4c98655a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232137Z:2fb8ae1f-c91c-43f5-9f62-97054e537e7d" + "SOUTHCENTRALUS:20150813T032349Z:8f0e0d41-2b5e-4e55-995c-040a4c98655a" ], "Date": [ - "Fri, 19 Jun 2015 23:21:37 GMT" + "Thu, 13 Aug 2015 03:23:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976\",\r\n \"etag\": \"W/\\\"c59583a5-cf00-481a-a8d4-773946c66c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c59583a5-cf00-481a-a8d4-773946c66c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976/subnets/subnetcrptestps3976\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093\",\r\n \"etag\": \"W/\\\"42364582-a36e-4815-8466-dcd819af8599\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a0b7f87-fba8-409c-a64b-4d9195fc36a1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"42364582-a36e-4815-8466-dcd819af8599\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093/subnets/subnetcrptestps8093\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "4498b97d-1ef8-421a-a98a-d883277548ca" + "07bb9ba2-76c8-42f6-96a7-8269ae1997f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,47 +1043,47 @@ "no-cache" ], "ETag": [ - "W/\"c59583a5-cf00-481a-a8d4-773946c66c3f\"" + "W/\"42364582-a36e-4815-8466-dcd819af8599\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14806" + "14977" ], "x-ms-correlation-request-id": [ - "ede2d5fa-2ee2-421b-b76f-8ace706c71de" + "a2a8fdc2-f66e-4d2e-b12c-531c306b2801" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232137Z:ede2d5fa-2ee2-421b-b76f-8ace706c71de" + "SOUTHCENTRALUS:20150813T032349Z:a2a8fdc2-f66e-4d2e-b12c-531c306b2801" ], "Date": [ - "Fri, 19 Jun 2015 23:21:37 GMT" + "Thu, 13 Aug 2015 03:23:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976/subnets/subnetcrptestps3976\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"niccrptestps3976\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093/subnets/subnetcrptestps8093\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps8093\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "863" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps3976\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976\",\r\n \"etag\": \"W/\\\"c59583a5-cf00-481a-a8d4-773946c66c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c59583a5-cf00-481a-a8d4-773946c66c3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3976\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3976/subnets/subnetcrptestps3976\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8093\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093\",\r\n \"etag\": \"W/\\\"42364582-a36e-4815-8466-dcd819af8599\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a0b7f87-fba8-409c-a64b-4d9195fc36a1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"42364582-a36e-4815-8466-dcd819af8599\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8093\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8093/subnets/subnetcrptestps8093\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,10 +1095,10 @@ "no-cache" ], "x-ms-request-id": [ - "8e62777f-634f-4148-a0c6-2bdc3b432fb0" + "a792be93-4613-4bb8-a672-0dd079555867" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/8e62777f-634f-4148-a0c6-2bdc3b432fb0?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/a792be93-4613-4bb8-a672-0dd079555867?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1185" ], "x-ms-correlation-request-id": [ - "e0620190-5115-49b7-aafa-91c2f8f6b4df" + "1ec87e72-d2cb-4fc5-9888-c8e3a17d4dfc" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232137Z:e0620190-5115-49b7-aafa-91c2f8f6b4df" + "SOUTHCENTRALUS:20150813T032349Z:1ec87e72-d2cb-4fc5-9888-c8e3a17d4dfc" ], "Date": [ - "Fri, 19 Jun 2015 23:21:36 GMT" + "Thu, 13 Aug 2015 03:23:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/8e62777f-634f-4148-a0c6-2bdc3b432fb0?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGU2Mjc3N2YtNjM0Zi00MTQ4LWEwYzYtMmJkYzNiNDMyZmIwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/a792be93-4613-4bb8-a672-0dd079555867?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc5MmJlOTMtNDYxMy00YmI4LWE2NzItMGRkMDc5NTU1ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1105,7 +1153,7 @@ "no-cache" ], "x-ms-request-id": [ - "b7251d68-1014-4753-97ca-ea7a00ce173c" + "87dd4ee1-c466-471a-abe2-39aeb0a0df07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14979" ], "x-ms-correlation-request-id": [ - "67d7e82f-66cf-46d5-8cdc-a0ccffaecc76" + "70f19d0c-77c8-4294-98ab-fb94e312d680" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232137Z:67d7e82f-66cf-46d5-8cdc-a0ccffaecc76" + "SOUTHCENTRALUS:20150813T032349Z:70f19d0c-77c8-4294-98ab-fb94e312d680" ], "Date": [ - "Fri, 19 Jun 2015 23:21:37 GMT" + "Thu, 13 Aug 2015 03:23:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Storage/storageAccounts/stocrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzOTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Storage/storageAccounts/stocrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4MDkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1145,7 +1193,7 @@ "88" ], "x-ms-client-request-id": [ - "d00c186c-6a6c-4ba6-bcf9-37abeb9ad7e8" + "60b0c720-af74-422d-89b2-9f0323973dbe" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1169,44 +1217,44 @@ "25" ], "x-ms-request-id": [ - "5a5e3161-c6f7-4ec7-9ecc-997faa34daa9" + "3e8f98e9-5929-47bb-a85d-f51477f5dc9c" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/5a5e3161-c6f7-4ec7-9ecc-997faa34daa9?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3e8f98e9-5929-47bb-a85d-f51477f5dc9c?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "e7cf38d0-bd1f-49d0-a9ad-2a3bbfbde373" + "b01120f7-bcab-4ec6-a1e4-ec8770cbfed7" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232139Z:e7cf38d0-bd1f-49d0-a9ad-2a3bbfbde373" + "SOUTHCENTRALUS:20150813T032353Z:b01120f7-bcab-4ec6-a1e4-ec8770cbfed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 23:21:39 GMT" + "Thu, 13 Aug 2015 03:23:52 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/5a5e3161-c6f7-4ec7-9ecc-997faa34daa9?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzVhNWUzMTYxLWM2ZjctNGVjNy05ZWNjLTk5N2ZhYTM0ZGFhOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3e8f98e9-5929-47bb-a85d-f51477f5dc9c?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNlOGY5OGU5LTU5MjktNDdiYi1hODVkLWY1MTQ3N2Y1ZGM5Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "889b40bf-d2b3-420a-bd29-d907c00a772f" + "08129cd2-6f85-4291-b53a-46a53677bc33" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,44 +1278,44 @@ "25" ], "x-ms-request-id": [ - "60934871-e6a7-4cce-9268-9559b704d0b8" + "ffc96b07-dd98-4e16-9d1f-79ffee74775e" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/5a5e3161-c6f7-4ec7-9ecc-997faa34daa9?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3e8f98e9-5929-47bb-a85d-f51477f5dc9c?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14988" ], "x-ms-correlation-request-id": [ - "c24480f0-84eb-4acc-8f58-ce8ebb6f5d68" + "13de5561-3a89-42a9-a341-b5084104a561" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232139Z:c24480f0-84eb-4acc-8f58-ce8ebb6f5d68" + "SOUTHCENTRALUS:20150813T032353Z:13de5561-3a89-42a9-a341-b5084104a561" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 23:21:39 GMT" + "Thu, 13 Aug 2015 03:23:52 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/5a5e3161-c6f7-4ec7-9ecc-997faa34daa9?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzVhNWUzMTYxLWM2ZjctNGVjNy05ZWNjLTk5N2ZhYTM0ZGFhOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3e8f98e9-5929-47bb-a85d-f51477f5dc9c?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNlOGY5OGU5LTU5MjktNDdiYi1hODVkLWY1MTQ3N2Y1ZGM5Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b7ce178-f831-4019-803e-295695f10a8d" + "19bb00de-036d-4c02-b2af-260d7a70379c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1288,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "1473ca9b-1f18-406f-ae89-1a5ec7862093" + "3a52faa1-85f0-4163-8702-912d8c1cb59e" ], "Cache-Control": [ "no-cache" @@ -1298,37 +1346,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14987" ], "x-ms-correlation-request-id": [ - "4d8e70d1-db9f-45cd-8717-e1e3e4606d91" + "dffb8fdf-f6f7-476b-925d-7c25ae99448c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232205Z:4d8e70d1-db9f-45cd-8717-e1e3e4606d91" + "SOUTHCENTRALUS:20150813T032418Z:dffb8fdf-f6f7-476b-925d-7c25ae99448c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 23:22:04 GMT" + "Thu, 13 Aug 2015 03:24:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Storage/storageAccounts/stocrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzOTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Storage/storageAccounts/stocrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4MDkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4752972-c8b7-4cfe-a75f-8a46238cea31" + "f19ce774-f495-4a95-9836-0f2e9897f179" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Storage/storageAccounts/stocrptestps3976\",\r\n \"name\": \"stocrptestps3976\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3976.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3976.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3976.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-19T23:21:38.3086767Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Storage/storageAccounts/stocrptestps8093\",\r\n \"name\": \"stocrptestps8093\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8093.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8093.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8093.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T03:23:51.2858186Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1343,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "c982036c-4107-4310-80c0-009a5c3cbd74" + "2d303786-490b-4835-8c3c-ba2e1f45d6ff" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14986" ], "x-ms-correlation-request-id": [ - "ee25b70a-8b3f-4093-a36c-54d86f56511b" + "88a24758-3404-4219-aeaa-a452bd4339d3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232205Z:ee25b70a-8b3f-4093-a36c-54d86f56511b" + "SOUTHCENTRALUS:20150813T032418Z:88a24758-3404-4219-aeaa-a452bd4339d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 23:22:04 GMT" + "Thu, 13 Aug 2015 03:24:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Storage/storageAccounts/stocrptestps3976?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzOTc2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Storage/storageAccounts/stocrptestps8093?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4MDkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c9e848d-4c62-4b11-a336-a6ff95e35dab" + "daa8fd20-e485-41ea-92c0-0b50f6966479" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Storage/storageAccounts/stocrptestps3976\",\r\n \"name\": \"stocrptestps3976\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3976.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3976.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3976.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-19T23:21:38.3086767Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Storage/storageAccounts/stocrptestps8093\",\r\n \"name\": \"stocrptestps8093\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8093.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8093.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8093.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T03:23:51.2858186Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1398,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "5c70205d-999d-4447-8846-5d55bb807eb1" + "4ffa290e-221a-47f4-9186-b4c2b49320c5" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1456,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14985" ], "x-ms-correlation-request-id": [ - "5de641c6-93ce-4c04-bb6b-4549109448e9" + "4afbb77f-916e-4a19-8224-98ddad27cf78" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232205Z:5de641c6-93ce-4c04-bb6b-4549109448e9" + "SOUTHCENTRALUS:20150813T032419Z:4afbb77f-916e-4a19-8224-98ddad27cf78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 23:22:04 GMT" + "Thu, 13 Aug 2015 03:24:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Storage/storageAccounts/stocrptestps3976/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzOTc2L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Storage/storageAccounts/stocrptestps8093/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4MDkzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81801f20-934c-4cad-81c0-3f3835a47bf6" + "c0b70f64-964e-42ac-a8b3-34f392df3d9d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"PsYYBjvgcF2idPx5+sfNI9IZP4rz32RVh/VM0OzzmZyseyiOtEviuV/x2PDtFKLVmokCpu42FSrwOClTMfjJDA==\",\r\n \"key2\": \"5zOLF7olbwEHpwPwQa7NUKFizlyFPS1JmvFwXYPTPp43qQQF7XxQiXPlog6cRSbXMxQJDrX/W8gFOQIVeHL3Ag==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"ZTd2cIsTerXLbcfJvBtr2gpEZX2uBVU/2ztVuzBh3crRgBxlO4LJOZRFBGmkKxOBCTw5lhAZPLmCSj6+4RNFjA==\",\r\n \"key2\": \"hI1OcJzvzXWQzD04rJdEvX6HMQGi9zwzhqiVF/vfX1P5sDQpJZ3kWcsGdbaJqyLpB++UM3X1diVKF7Sand1Drg==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "197" @@ -1453,7 +1501,7 @@ "no-cache" ], "x-ms-request-id": [ - "08d8026d-3370-4345-a72c-30223ac78883" + "77af66d8-2e7d-4446-ad5c-0ef21403c1f1" ], "Cache-Control": [ "no-cache" @@ -1463,28 +1511,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "4e509b92-db87-4466-8226-9582a2fb8363" + "e3b12099-a92b-4531-bb41-615c67aa095d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232205Z:4e509b92-db87-4466-8226-9582a2fb8363" + "SOUTHCENTRALUS:20150813T032419Z:e3b12099-a92b-4531-bb41-615c67aa095d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 23:22:05 GMT" + "Thu, 13 Aug 2015 03:24:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps3976\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps3976\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps8093\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps8093\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1493,10 +1541,10 @@ "1719" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976\",\r\n \"name\": \"vmcrptestps3976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093\",\r\n \"name\": \"vmcrptestps8093\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1934" @@ -1511,13 +1559,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "7a104a82-aaa2-4455-b60e-e48dae55c22f" + "32a351ea-ec1c-42e0-985a-df85a14e569f" ], "Cache-Control": [ "no-cache" @@ -1530,31 +1581,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "1b6d5cbf-9251-4565-9dac-b9ce808f0c99" + "b867c685-cc79-469c-b8f6-a695edbee9a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232211Z:1b6d5cbf-9251-4565-9dac-b9ce808f0c99" + "SOUTHCENTRALUS:20150813T032422Z:b867c685-cc79-469c-b8f6-a695edbee9a6" ], "Date": [ - "Fri, 19 Jun 2015 23:22:11 GMT" + "Thu, 13 Aug 2015 03:24:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1568,8 +1619,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "c4ce9d0e-2d8a-4bd6-b8d3-14de930b3ddc" + "395f8575-0366-4b78-946b-83f9f07ab043" ], "Cache-Control": [ "no-cache" @@ -1579,34 +1633,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14995" ], "x-ms-correlation-request-id": [ - "c422f333-ff92-4c47-ba94-a67b03fe2299" + "5395158b-a0e4-44f1-8e88-c83cfe659469" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232212Z:c422f333-ff92-4c47-ba94-a67b03fe2299" + "SOUTHCENTRALUS:20150813T032422Z:5395158b-a0e4-44f1-8e88-c83cfe659469" ], "Date": [ - "Fri, 19 Jun 2015 23:22:11 GMT" + "Thu, 13 Aug 2015 03:24:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1620,8 +1674,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "80d91e42-e48d-4e34-9d1a-89d245d54bb7" + "b4eb3a0c-59df-4ae8-9120-7ed7d8c63b55" ], "Cache-Control": [ "no-cache" @@ -1631,34 +1688,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" + "14994" ], "x-ms-correlation-request-id": [ - "68e5a6d8-d138-4475-bbb2-6d8ca710fd04" + "b5b25959-77fb-463e-a9f6-b4c8bd0eb6e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232242Z:68e5a6d8-d138-4475-bbb2-6d8ca710fd04" + "SOUTHCENTRALUS:20150813T032453Z:b5b25959-77fb-463e-a9f6-b4c8bd0eb6e1" ], "Date": [ - "Fri, 19 Jun 2015 23:22:41 GMT" + "Thu, 13 Aug 2015 03:24:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1672,8 +1729,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "99ec7f84-74a2-4abf-b381-5bb2127b8c11" + "f4988fae-b86a-405d-834e-ec17d4ef67a9" ], "Cache-Control": [ "no-cache" @@ -1683,34 +1743,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14993" ], "x-ms-correlation-request-id": [ - "e9e4c521-7e2f-447e-b36f-fdd7c186d616" + "d012e498-4bee-4aa3-9f77-8aec21a6098c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232312Z:e9e4c521-7e2f-447e-b36f-fdd7c186d616" + "SOUTHCENTRALUS:20150813T032523Z:d012e498-4bee-4aa3-9f77-8aec21a6098c" ], "Date": [ - "Fri, 19 Jun 2015 23:23:11 GMT" + "Thu, 13 Aug 2015 03:25:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1724,8 +1784,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "3929186d-3505-4a32-9648-0179b7d7710c" + "9a6d88ea-88f1-4c20-bb8f-27f8aa1a38de" ], "Cache-Control": [ "no-cache" @@ -1735,34 +1798,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14770" + "14992" ], "x-ms-correlation-request-id": [ - "6861f711-b232-47c6-bbfd-11f78ad9b6ad" + "969fdf89-a2ce-436d-9e58-246fde2ae032" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232342Z:6861f711-b232-47c6-bbfd-11f78ad9b6ad" + "SOUTHCENTRALUS:20150813T032553Z:969fdf89-a2ce-436d-9e58-246fde2ae032" ], "Date": [ - "Fri, 19 Jun 2015 23:23:42 GMT" + "Thu, 13 Aug 2015 03:25:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1776,8 +1839,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "a99ff2b5-d988-430d-9f03-88bce828e251" + "39f24a46-8175-4cbf-b0a9-0e7ed01f9d48" ], "Cache-Control": [ "no-cache" @@ -1787,34 +1853,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14991" ], "x-ms-correlation-request-id": [ - "2a3d976c-835d-4997-838c-37064e40b8dc" + "51eb312f-4cc3-4641-8048-2e3e53328c6a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232412Z:2a3d976c-835d-4997-838c-37064e40b8dc" + "SOUTHCENTRALUS:20150813T032624Z:51eb312f-4cc3-4641-8048-2e3e53328c6a" ], "Date": [ - "Fri, 19 Jun 2015 23:24:11 GMT" + "Thu, 13 Aug 2015 03:26:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1828,8 +1894,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "6f563343-bd8a-4584-9f3c-26187a6a21ae" + "8d07e1b0-3427-4015-8e6e-599ab55b8515" ], "Cache-Control": [ "no-cache" @@ -1839,34 +1908,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" + "14990" ], "x-ms-correlation-request-id": [ - "0c3a40e7-cf82-4fec-8085-9c8da4cee4c8" + "dcf4c97a-cbad-4be7-8cbb-4d53cd917c84" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232442Z:0c3a40e7-cf82-4fec-8085-9c8da4cee4c8" + "SOUTHCENTRALUS:20150813T032654Z:dcf4c97a-cbad-4be7-8cbb-4d53cd917c84" ], "Date": [ - "Fri, 19 Jun 2015 23:24:42 GMT" + "Thu, 13 Aug 2015 03:26:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1880,8 +1949,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "55b6823e-118e-48e5-82a8-b973a52f29e9" + "2c032530-8ebd-4090-847c-e02305786a3b" ], "Cache-Control": [ "no-cache" @@ -1891,34 +1963,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14989" ], "x-ms-correlation-request-id": [ - "b4b028db-4e12-42d8-9885-463c2c549067" + "61772b35-0010-4f3c-a103-3d6e598750bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232512Z:b4b028db-4e12-42d8-9885-463c2c549067" + "SOUTHCENTRALUS:20150813T032724Z:61772b35-0010-4f3c-a103-3d6e598750bd" ], "Date": [ - "Fri, 19 Jun 2015 23:25:12 GMT" + "Thu, 13 Aug 2015 03:27:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1932,8 +2004,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "6dbb06de-be47-4645-8045-eacfdec3ba47" + "07e44ce0-9068-4dea-a15c-eb00e6ef30f7" ], "Cache-Control": [ "no-cache" @@ -1943,34 +2018,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14988" ], "x-ms-correlation-request-id": [ - "437e3148-2231-4b91-b1b4-320f8e5e3bfe" + "fbd103ed-c823-45a0-bb9e-ae5a12f10d18" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232542Z:437e3148-2231-4b91-b1b4-320f8e5e3bfe" + "SOUTHCENTRALUS:20150813T032755Z:fbd103ed-c823-45a0-bb9e-ae5a12f10d18" ], "Date": [ - "Fri, 19 Jun 2015 23:25:42 GMT" + "Thu, 13 Aug 2015 03:27:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1984,8 +2059,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "b4a7b59f-0384-4ede-8ea1-e61448c2cda8" + "97cd33c2-f3cb-4ec5-b873-6406b0d85c23" ], "Cache-Control": [ "no-cache" @@ -1995,34 +2073,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14987" ], "x-ms-correlation-request-id": [ - "ba5301bd-18fc-4b0c-9f44-f6e898106adc" + "48370e44-26fa-4013-911e-288d81ec2d65" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232613Z:ba5301bd-18fc-4b0c-9f44-f6e898106adc" + "SOUTHCENTRALUS:20150813T032825Z:48370e44-26fa-4013-911e-288d81ec2d65" ], "Date": [ - "Fri, 19 Jun 2015 23:26:12 GMT" + "Thu, 13 Aug 2015 03:28:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2036,8 +2114,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "8ce7ccdf-fc58-45fa-b896-ae89927582df" + "6b63582b-9dd8-46e8-af63-47806cdcc710" ], "Cache-Control": [ "no-cache" @@ -2047,34 +2128,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14986" ], "x-ms-correlation-request-id": [ - "fdc04a93-7122-4727-8dd7-2951698c6ac7" + "0bb92dbc-639d-4e10-b5a3-3c901c2d26b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232643Z:fdc04a93-7122-4727-8dd7-2951698c6ac7" + "SOUTHCENTRALUS:20150813T032855Z:0bb92dbc-639d-4e10-b5a3-3c901c2d26b4" ], "Date": [ - "Fri, 19 Jun 2015 23:26:42 GMT" + "Thu, 13 Aug 2015 03:28:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2088,8 +2169,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "5d78e43f-bbec-4ba4-8864-a111b5f5a3ef" + "6d718cd5-87da-4b4e-9ce8-afa0d9218efa" ], "Cache-Control": [ "no-cache" @@ -2099,34 +2183,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" + "14985" ], "x-ms-correlation-request-id": [ - "e3a5a8a8-6c67-491e-881f-865bd7ee2a57" + "357bf7b3-caa0-455f-918f-de953e164099" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232713Z:e3a5a8a8-6c67-491e-881f-865bd7ee2a57" + "SOUTHCENTRALUS:20150813T032925Z:357bf7b3-caa0-455f-918f-de953e164099" ], "Date": [ - "Fri, 19 Jun 2015 23:27:12 GMT" + "Thu, 13 Aug 2015 03:29:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "139" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2140,8 +2224,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "a154e40c-9183-47f3-9b2c-3bbc906e50a0" + "93918f0c-9895-41e9-9ca3-a9aa3411950a" ], "Cache-Control": [ "no-cache" @@ -2151,34 +2238,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" + "14984" ], "x-ms-correlation-request-id": [ - "1d42b2b0-bee2-4fa1-a385-5f9bcd543fa4" + "8d9336b7-7de6-4692-ae79-c21496b9d530" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232743Z:1d42b2b0-bee2-4fa1-a385-5f9bcd543fa4" + "SOUTHCENTRALUS:20150813T032956Z:8d9336b7-7de6-4692-ae79-c21496b9d530" ], "Date": [ - "Fri, 19 Jun 2015 23:27:42 GMT" + "Thu, 13 Aug 2015 03:29:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/7a104a82-aaa2-4455-b60e-e48dae55c22f?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ExMDRhODItYWFhMi00NDU1LWI2MGUtZTQ4ZGFlNTVjMjJmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/32a351ea-ec1c-42e0-985a-df85a14e569f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzJhMzUxZWEtZWMxYy00MmUwLTk4NWEtZGY4NWExNGU1NjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7a104a82-aaa2-4455-b60e-e48dae55c22f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-19T16:22:11.82271-07:00\",\r\n \"endTime\": \"2015-06-19T16:27:57.1355874-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"32a351ea-ec1c-42e0-985a-df85a14e569f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T20:24:21.1771965-07:00\",\r\n \"endTime\": \"2015-08-12T20:30:10.4568506-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "189" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2192,8 +2279,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "2480f554-6721-405b-9e8e-7d266469c439" + "52af5a75-f3d5-4b5a-93ad-297fc838e3b0" ], "Cache-Control": [ "no-cache" @@ -2203,40 +2293,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "14983" ], "x-ms-correlation-request-id": [ - "db3a7d71-b96d-41c4-be4c-35a9ae94445a" + "a0094689-73c7-4789-aed4-ba4aaf317399" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232813Z:db3a7d71-b96d-41c4-be4c-35a9ae94445a" + "SOUTHCENTRALUS:20150813T033026Z:a0094689-73c7-4789-aed4-ba4aaf317399" ], "Date": [ - "Fri, 19 Jun 2015 23:28:13 GMT" + "Thu, 13 Aug 2015 03:30:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976/extensions/crptestps3976ext?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM5NzYvZXh0ZW5zaW9ucy9jcnB0ZXN0cHMzOTc2ZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093/extensions/crptestps8093ext?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgwOTMvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM4MDkzZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps3976.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=f9JEXoyNSryLVjW2RYKmwrzP9kSJVNuEzdaJNcZO0kQ%3D&se=2015-06-20T23%3A28%3A13Z&sp=r\"\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps3976\",\r\n \"storageAccountKey\": \"PsYYBjvgcF2idPx5+sfNI9IZP4rz32RVh/VM0OzzmZyseyiOtEviuV/x2PDtFKLVmokCpu42FSrwOClTMfjJDA==\"\r\n }\r\n },\r\n \"name\": \"crptestps3976ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps8093.blob.core.windows.net/script/a.exe?sv=2015-02-21&sr=b&sig=UgNwGc%2FsaAJNlUI3LnK7tLoO1LlaEKRA5ImDYJQa8Pw%3D&se=2015-08-14T03%3A30%3A26Z&sp=r\"\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps8093\",\r\n \"storageAccountKey\": \"ZTd2cIsTerXLbcfJvBtr2gpEZX2uBVU/2ztVuzBh3crRgBxlO4LJOZRFBGmkKxOBCTw5lhAZPLmCSj6+4RNFjA==\"\r\n }\r\n },\r\n \"name\": \"crptestps8093ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "826" + "828" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps3976.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=f9JEXoyNSryLVjW2RYKmwrzP9kSJVNuEzdaJNcZO0kQ%3D&se=2015-06-20T23%3A28%3A13Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976/extensions/crptestps3976ext\",\r\n \"name\": \"crptestps3976ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps8093.blob.core.windows.net/script/a.exe?sv=2015-02-21&sr=b&sig=UgNwGc%2FsaAJNlUI3LnK7tLoO1LlaEKRA5ImDYJQa8Pw%3D&se=2015-08-14T03%3A30%3A26Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093/extensions/crptestps8093ext\",\r\n \"name\": \"crptestps8093ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "799" + "801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2248,13 +2338,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "4504755f-4785-4daa-a30d-8ee6164a255d" + "7133c988-80b8-4385-84bf-43766f08cac1" ], "Cache-Control": [ "no-cache" @@ -2267,28 +2360,83 @@ "1197" ], "x-ms-correlation-request-id": [ - "05652d43-595f-404a-96ab-95c1e5d3b532" + "27efa285-fc88-4cd6-bdfd-b77ff7e022ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232817Z:05652d43-595f-404a-96ab-95c1e5d3b532" + "SOUTHCENTRALUS:20150813T033028Z:27efa285-fc88-4cd6-bdfd-b77ff7e022ab" ], "Date": [ - "Fri, 19 Jun 2015 23:28:17 GMT" + "Thu, 13 Aug 2015 03:30:27 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], + "x-ms-request-id": [ + "69f2b299-c0e3-4e5e-8016-889fe75b6b66" + ], + "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": [ + "81472677-3739-427b-9b5d-a184db58f0f3" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T033028Z:81472677-3739-427b-9b5d-a184db58f0f3" + ], + "Date": [ + "Thu, 13 Aug 2015 03:30:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2305,8 +2453,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "99fd0eaf-25d7-4d0f-806c-7d28cdc9cf77" + "66cdf5c7-2997-41ab-bb9c-42cd3fea1b62" ], "Cache-Control": [ "no-cache" @@ -2316,31 +2467,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14981" ], "x-ms-correlation-request-id": [ - "60e1c253-c8de-4167-ad7a-53ab0b0777e2" + "a05ec797-7454-4c78-a849-9a7086819560" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232817Z:60e1c253-c8de-4167-ad7a-53ab0b0777e2" + "SOUTHCENTRALUS:20150813T033058Z:a05ec797-7454-4c78-a849-9a7086819560" ], "Date": [ - "Fri, 19 Jun 2015 23:28:17 GMT" + "Thu, 13 Aug 2015 03:30:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2357,8 +2508,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "dbd3697d-82c2-43b8-95c8-5b384653ebfd" + "5d808046-ab57-4b73-b9e2-2c9ee210a95d" ], "Cache-Control": [ "no-cache" @@ -2368,31 +2522,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14980" ], "x-ms-correlation-request-id": [ - "527ec9dc-5296-4ff9-9cef-f32773f00968" + "ced38cf2-91fc-45f9-a41d-9b416aeafeae" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232847Z:527ec9dc-5296-4ff9-9cef-f32773f00968" + "SOUTHCENTRALUS:20150813T033129Z:ced38cf2-91fc-45f9-a41d-9b416aeafeae" ], "Date": [ - "Fri, 19 Jun 2015 23:28:46 GMT" + "Thu, 13 Aug 2015 03:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2409,8 +2563,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "b239256d-a604-4b5d-bcd6-9688af8446cc" + "189ff6e1-4db3-48f7-a2a5-5b6b020597aa" ], "Cache-Control": [ "no-cache" @@ -2420,31 +2577,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14979" ], "x-ms-correlation-request-id": [ - "902723ae-8867-4625-a9a5-be4d0b191b9c" + "e4df09f9-3bbf-4a83-8cce-98c87bade3fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232917Z:902723ae-8867-4625-a9a5-be4d0b191b9c" + "SOUTHCENTRALUS:20150813T033159Z:e4df09f9-3bbf-4a83-8cce-98c87bade3fd" ], "Date": [ - "Fri, 19 Jun 2015 23:29:17 GMT" + "Thu, 13 Aug 2015 03:31:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2461,8 +2618,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "24092b33-de64-4f40-bb5d-0d88b9895a69" + "5e63f406-af24-431b-becc-a65941547a85" ], "Cache-Control": [ "no-cache" @@ -2472,31 +2632,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14978" ], "x-ms-correlation-request-id": [ - "8e7ee411-1e37-4abe-a67c-696899cea33f" + "ee5dcc22-013b-4226-97db-f4fa8dd707c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T232947Z:8e7ee411-1e37-4abe-a67c-696899cea33f" + "SOUTHCENTRALUS:20150813T033229Z:ee5dcc22-013b-4226-97db-f4fa8dd707c9" ], "Date": [ - "Fri, 19 Jun 2015 23:29:47 GMT" + "Thu, 13 Aug 2015 03:32:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2513,8 +2673,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "5e10300e-97a7-4db1-bc25-5acc2a5a264c" + "5596776a-c4f0-4e2c-ad2a-f0539410bcd2" ], "Cache-Control": [ "no-cache" @@ -2524,31 +2687,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" + "14977" ], "x-ms-correlation-request-id": [ - "693295b6-2af3-4dd8-b670-69588e3b6684" + "beb86566-23a2-442f-8f4c-fd5923d231cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233017Z:693295b6-2af3-4dd8-b670-69588e3b6684" + "SOUTHCENTRALUS:20150813T033259Z:beb86566-23a2-442f-8f4c-fd5923d231cf" ], "Date": [ - "Fri, 19 Jun 2015 23:30:17 GMT" + "Thu, 13 Aug 2015 03:32:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2565,8 +2728,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "8c45ae87-63cf-4ea3-a263-6c77bec9f220" + "c3e22888-352d-4957-aa55-0a84f98ed405" ], "Cache-Control": [ "no-cache" @@ -2576,31 +2742,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" + "14976" ], "x-ms-correlation-request-id": [ - "277c6505-ddcd-4659-8f7a-7c94091d08d2" + "8fdf63b6-744b-4093-b56f-a1e076a91531" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233048Z:277c6505-ddcd-4659-8f7a-7c94091d08d2" + "SOUTHCENTRALUS:20150813T033330Z:8fdf63b6-744b-4093-b56f-a1e076a91531" ], "Date": [ - "Fri, 19 Jun 2015 23:30:47 GMT" + "Thu, 13 Aug 2015 03:33:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2617,8 +2783,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "2c3eba06-717c-408a-92db-060db4421243" + "ba7e47ef-cb49-42bc-ad64-d39fa765a2ad" ], "Cache-Control": [ "no-cache" @@ -2628,31 +2797,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14757" + "14975" ], "x-ms-correlation-request-id": [ - "37816607-9be3-45b8-bb3b-3b9edf183dfe" + "b1e1efe6-f26a-45bd-ba90-087bc44646aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233118Z:37816607-9be3-45b8-bb3b-3b9edf183dfe" + "SOUTHCENTRALUS:20150813T033400Z:b1e1efe6-f26a-45bd-ba90-087bc44646aa" ], "Date": [ - "Fri, 19 Jun 2015 23:31:17 GMT" + "Thu, 13 Aug 2015 03:33:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2669,8 +2838,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "87ec2b63-3ac4-42f5-a98b-3c13b9e55ba6" + "5dc33960-78e8-403e-803b-60120bbf66a6" ], "Cache-Control": [ "no-cache" @@ -2680,31 +2852,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14754" + "14974" ], "x-ms-correlation-request-id": [ - "03cea915-9b42-4b38-812f-f346461f49da" + "497b0960-1571-4b4b-bc9c-388a92b56722" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233148Z:03cea915-9b42-4b38-812f-f346461f49da" + "SOUTHCENTRALUS:20150813T033430Z:497b0960-1571-4b4b-bc9c-388a92b56722" ], "Date": [ - "Fri, 19 Jun 2015 23:31:48 GMT" + "Thu, 13 Aug 2015 03:34:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2721,8 +2893,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "1f72b29a-76d1-4147-bc8e-6ebfcf16cf6b" + "3948398f-c138-4e4b-bd9d-e47d35a243e2" ], "Cache-Control": [ "no-cache" @@ -2732,31 +2907,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14973" ], "x-ms-correlation-request-id": [ - "c9fac648-5d3b-4618-83ce-75abc5290a2f" + "cd54fbb4-102b-4756-afee-23f8d2a8a2b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233218Z:c9fac648-5d3b-4618-83ce-75abc5290a2f" + "SOUTHCENTRALUS:20150813T033501Z:cd54fbb4-102b-4756-afee-23f8d2a8a2b3" ], "Date": [ - "Fri, 19 Jun 2015 23:32:17 GMT" + "Thu, 13 Aug 2015 03:35:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2773,8 +2948,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "16edb12e-8d8a-47a9-a411-229c44499b9c" + "f05acae2-04c4-492d-907b-d78248a3cfb7" ], "Cache-Control": [ "no-cache" @@ -2784,31 +2962,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "14972" ], "x-ms-correlation-request-id": [ - "4ae924b7-cb30-44cd-ae2b-323faa1f916d" + "87a59b98-b299-487c-ac2b-8c490ebdc87d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233248Z:4ae924b7-cb30-44cd-ae2b-323faa1f916d" + "SOUTHCENTRALUS:20150813T033531Z:87a59b98-b299-487c-ac2b-8c490ebdc87d" ], "Date": [ - "Fri, 19 Jun 2015 23:32:48 GMT" + "Thu, 13 Aug 2015 03:35:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2825,8 +3003,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "36ec72b6-975f-49e9-aebb-0f1939ae843c" + "70484bf3-bf41-459c-82ae-4afe9156c050" ], "Cache-Control": [ "no-cache" @@ -2836,31 +3017,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14971" ], "x-ms-correlation-request-id": [ - "05f1f570-4fb8-4577-9c78-7334da642ee8" + "84e365d7-d592-4c24-aaac-169d6b0c865c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233318Z:05f1f570-4fb8-4577-9c78-7334da642ee8" + "SOUTHCENTRALUS:20150813T033601Z:84e365d7-d592-4c24-aaac-169d6b0c865c" ], "Date": [ - "Fri, 19 Jun 2015 23:33:17 GMT" + "Thu, 13 Aug 2015 03:36:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2877,8 +3058,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "37a176db-0351-4e22-902e-02bba55b5ab3" + "05c75c44-b71f-4acc-bd3b-dbe720cb065f" ], "Cache-Control": [ "no-cache" @@ -2888,31 +3072,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14970" ], "x-ms-correlation-request-id": [ - "85ee0bdb-c4a8-499b-88e5-f69a19a2d766" + "166c9bec-5a29-44b1-9c30-5c3d0680b5a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233348Z:85ee0bdb-c4a8-499b-88e5-f69a19a2d766" + "SOUTHCENTRALUS:20150813T033631Z:166c9bec-5a29-44b1-9c30-5c3d0680b5a4" ], "Date": [ - "Fri, 19 Jun 2015 23:33:48 GMT" + "Thu, 13 Aug 2015 03:36:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2929,8 +3113,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "597aec02-ecea-48e5-a996-b17b197d05d9" + "ff761b7b-d47e-4339-ae2b-0a009e9d6e5f" ], "Cache-Control": [ "no-cache" @@ -2940,31 +3127,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14969" ], "x-ms-correlation-request-id": [ - "0e5a21fa-9198-4f17-9519-ca4c551bb55e" + "16de21d7-5d60-4c4a-a822-28492321fb01" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233418Z:0e5a21fa-9198-4f17-9519-ca4c551bb55e" + "SOUTHCENTRALUS:20150813T033702Z:16de21d7-5d60-4c4a-a822-28492321fb01" ], "Date": [ - "Fri, 19 Jun 2015 23:34:18 GMT" + "Thu, 13 Aug 2015 03:37:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2981,8 +3168,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "d68d6743-c811-4e81-baf3-c4df6dec8da2" + "1f913935-089f-43fd-bd5c-22d4b3e67275" ], "Cache-Control": [ "no-cache" @@ -2992,31 +3182,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14968" ], "x-ms-correlation-request-id": [ - "f2bd8917-02de-40a4-b3f9-141844ff0d31" + "018c56d5-be0a-4f47-8ef2-5dc23ff1dbf9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233448Z:f2bd8917-02de-40a4-b3f9-141844ff0d31" + "SOUTHCENTRALUS:20150813T033732Z:018c56d5-be0a-4f47-8ef2-5dc23ff1dbf9" ], "Date": [ - "Fri, 19 Jun 2015 23:34:48 GMT" + "Thu, 13 Aug 2015 03:37:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3033,8 +3223,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "c12eff0b-ad59-439a-8047-236ebb1b9657" + "ae52d848-22ca-4861-b8db-bbd243ce60a7" ], "Cache-Control": [ "no-cache" @@ -3044,31 +3237,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14967" ], "x-ms-correlation-request-id": [ - "c3834c58-fcc5-456f-89f7-eb39f4e09237" + "1cb1efb5-a650-418a-87e5-7e3e50eb8f1d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233518Z:c3834c58-fcc5-456f-89f7-eb39f4e09237" + "SOUTHCENTRALUS:20150813T033802Z:1cb1efb5-a650-418a-87e5-7e3e50eb8f1d" ], "Date": [ - "Fri, 19 Jun 2015 23:35:18 GMT" + "Thu, 13 Aug 2015 03:38:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3085,8 +3278,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "75989b05-637d-42a7-be49-284a2544d82b" + "79442540-679f-42e9-b532-3cbbc26c495a" ], "Cache-Control": [ "no-cache" @@ -3096,31 +3292,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14966" ], "x-ms-correlation-request-id": [ - "f54ab540-75c3-48a0-8c76-ce3f1036605c" + "59fd1150-ddcb-439e-9d91-f51a3a33cb20" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233549Z:f54ab540-75c3-48a0-8c76-ce3f1036605c" + "SOUTHCENTRALUS:20150813T033832Z:59fd1150-ddcb-439e-9d91-f51a3a33cb20" ], "Date": [ - "Fri, 19 Jun 2015 23:35:48 GMT" + "Thu, 13 Aug 2015 03:38:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3137,8 +3333,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "13e81726-7b1b-4a2d-a96a-ea2aa7d0f1a8" + "41f4417c-fe9f-4178-a01b-544235bcc35d" ], "Cache-Control": [ "no-cache" @@ -3148,31 +3347,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14965" ], "x-ms-correlation-request-id": [ - "217efe52-b46f-4d57-8d17-e72c0ebf1c55" + "9f3dcd48-8ae9-4679-8964-4ec526bd5251" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233619Z:217efe52-b46f-4d57-8d17-e72c0ebf1c55" + "SOUTHCENTRALUS:20150813T033903Z:9f3dcd48-8ae9-4679-8964-4ec526bd5251" ], "Date": [ - "Fri, 19 Jun 2015 23:36:18 GMT" + "Thu, 13 Aug 2015 03:39:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3189,8 +3388,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "0cac25b3-cad3-4913-9ce0-aa6e213eb3d6" + "b8dd9744-5752-41d8-880a-2c54ee17e80a" ], "Cache-Control": [ "no-cache" @@ -3200,31 +3402,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14964" ], "x-ms-correlation-request-id": [ - "8936ca79-fb97-4c02-b27d-3fa1a0688e5e" + "d0af1784-68e7-4ffa-b977-5aa54411ab58" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233649Z:8936ca79-fb97-4c02-b27d-3fa1a0688e5e" + "SOUTHCENTRALUS:20150813T033933Z:d0af1784-68e7-4ffa-b977-5aa54411ab58" ], "Date": [ - "Fri, 19 Jun 2015 23:36:48 GMT" + "Thu, 13 Aug 2015 03:39:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3241,8 +3443,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "da5007c6-8662-4edc-a5f0-0026b2df1820" + "b42db54b-2355-4c4d-8824-23e5a7ede690" ], "Cache-Control": [ "no-cache" @@ -3252,31 +3457,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14963" ], "x-ms-correlation-request-id": [ - "136fcb56-fd70-4353-a14f-2810c399c954" + "6a61c4b5-de91-4f81-91e1-cf53f09f8b70" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233719Z:136fcb56-fd70-4353-a14f-2810c399c954" + "SOUTHCENTRALUS:20150813T034003Z:6a61c4b5-de91-4f81-91e1-cf53f09f8b70" ], "Date": [ - "Fri, 19 Jun 2015 23:37:19 GMT" + "Thu, 13 Aug 2015 03:40:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3293,8 +3498,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "ed958136-b446-491a-852d-e33264048b54" + "be93f5b8-5216-41e7-9dfa-ccb0f0bbdfa6" ], "Cache-Control": [ "no-cache" @@ -3304,31 +3512,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14962" ], "x-ms-correlation-request-id": [ - "0aafb5ac-ace6-456c-bc4c-c8daa16325e7" + "0de92901-0f52-4abf-b6b6-49c458251ead" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233749Z:0aafb5ac-ace6-456c-bc4c-c8daa16325e7" + "SOUTHCENTRALUS:20150813T034033Z:0de92901-0f52-4abf-b6b6-49c458251ead" ], "Date": [ - "Fri, 19 Jun 2015 23:37:48 GMT" + "Thu, 13 Aug 2015 03:40:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3345,8 +3553,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "5fda62f8-cdbc-4dae-900d-c2fe758efa34" + "22ab5745-d23f-49ec-b078-d69eecd066a4" ], "Cache-Control": [ "no-cache" @@ -3356,31 +3567,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14961" ], "x-ms-correlation-request-id": [ - "cc459341-9fad-4695-9135-94e3b4328355" + "85e6fb17-0bdd-435d-a8bb-6393e99bcfc3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233819Z:cc459341-9fad-4695-9135-94e3b4328355" + "SOUTHCENTRALUS:20150813T034104Z:85e6fb17-0bdd-435d-a8bb-6393e99bcfc3" ], "Date": [ - "Fri, 19 Jun 2015 23:38:19 GMT" + "Thu, 13 Aug 2015 03:41:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3397,8 +3608,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "5983a915-ccbf-4ff8-8220-278577bc21c0" + "675dff6b-ec7c-45c8-af3d-8cb3c8fcb372" ], "Cache-Control": [ "no-cache" @@ -3408,31 +3622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14960" ], "x-ms-correlation-request-id": [ - "328a29da-7064-4895-b01f-945b840d7f02" + "3864d454-95c6-43f0-bd17-513f3a75a2fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233849Z:328a29da-7064-4895-b01f-945b840d7f02" + "SOUTHCENTRALUS:20150813T034134Z:3864d454-95c6-43f0-bd17-513f3a75a2fb" ], "Date": [ - "Fri, 19 Jun 2015 23:38:49 GMT" + "Thu, 13 Aug 2015 03:41:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3449,8 +3663,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "4acc9e63-e524-47ca-9d76-d64b48687c01" + "8d0c44bd-a6eb-4042-a43e-cb3714184ec6" ], "Cache-Control": [ "no-cache" @@ -3460,31 +3677,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "14959" ], "x-ms-correlation-request-id": [ - "4ba2c842-5f22-4497-ad6b-1d5f065d78d2" + "e55d1457-100a-489a-8005-bc382f48f0fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233919Z:4ba2c842-5f22-4497-ad6b-1d5f065d78d2" + "SOUTHCENTRALUS:20150813T034204Z:e55d1457-100a-489a-8005-bc382f48f0fc" ], "Date": [ - "Fri, 19 Jun 2015 23:39:18 GMT" + "Thu, 13 Aug 2015 03:42:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3501,8 +3718,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "d9f126dd-c9ce-4dcc-b547-ac7b37651a8d" + "4e8b8052-fe1e-46c7-9684-3ba33e0022f6" ], "Cache-Control": [ "no-cache" @@ -3512,31 +3732,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "14958" ], "x-ms-correlation-request-id": [ - "ffda40fc-a364-42f6-ac2d-c1e2c33c7381" + "bb4e6031-2231-4233-8cdf-1d4732511bde" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T233949Z:ffda40fc-a364-42f6-ac2d-c1e2c33c7381" + "SOUTHCENTRALUS:20150813T034234Z:bb4e6031-2231-4233-8cdf-1d4732511bde" ], "Date": [ - "Fri, 19 Jun 2015 23:39:49 GMT" + "Thu, 13 Aug 2015 03:42:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3553,8 +3773,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "311f49f5-96cf-4712-9de4-60e8a1ea9e4d" + "39b93a1d-3c40-4b82-bd68-34a4b4bbe71f" ], "Cache-Control": [ "no-cache" @@ -3564,31 +3787,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14957" ], "x-ms-correlation-request-id": [ - "d9c1d345-f7f2-4aed-9d74-b83f959fb40f" + "481f9425-fa44-43c9-aaf6-306e7cf6bb1f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234019Z:d9c1d345-f7f2-4aed-9d74-b83f959fb40f" + "SOUTHCENTRALUS:20150813T034305Z:481f9425-fa44-43c9-aaf6-306e7cf6bb1f" ], "Date": [ - "Fri, 19 Jun 2015 23:40:19 GMT" + "Thu, 13 Aug 2015 03:43:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3605,8 +3828,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "0bf98a63-4914-4d00-a621-79b632d1345d" + "7870e917-cb25-420a-9232-e1db9e016e6d" ], "Cache-Control": [ "no-cache" @@ -3616,31 +3842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "14956" ], "x-ms-correlation-request-id": [ - "984d51b6-df0a-4915-82d7-03c9c5fe16d3" + "011a317e-8561-41cb-8c5c-cfd9aa160e5e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234050Z:984d51b6-df0a-4915-82d7-03c9c5fe16d3" + "SOUTHCENTRALUS:20150813T034335Z:011a317e-8561-41cb-8c5c-cfd9aa160e5e" ], "Date": [ - "Fri, 19 Jun 2015 23:40:50 GMT" + "Thu, 13 Aug 2015 03:43:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3657,8 +3883,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "4eb7800a-d2c3-48d1-aad3-eb46346d1d26" + "3a62159e-0263-48b5-ae4f-b61e63bbf9c1" ], "Cache-Control": [ "no-cache" @@ -3668,31 +3897,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" + "14955" ], "x-ms-correlation-request-id": [ - "00c6a112-ee38-43ff-935b-19b3b75118d6" + "2c80ccfc-c013-40dc-a58b-6e5b14e137a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234120Z:00c6a112-ee38-43ff-935b-19b3b75118d6" + "SOUTHCENTRALUS:20150813T034405Z:2c80ccfc-c013-40dc-a58b-6e5b14e137a9" ], "Date": [ - "Fri, 19 Jun 2015 23:41:19 GMT" + "Thu, 13 Aug 2015 03:44:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3709,8 +3938,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "c72e8040-441d-4be4-bad9-4b3360f39985" + "39f0a86a-9402-4d97-a91e-dbbc0796b926" ], "Cache-Control": [ "no-cache" @@ -3720,31 +3952,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14702" + "14954" ], "x-ms-correlation-request-id": [ - "f3bb6402-c563-45c4-b8cb-9fc02960eb8b" + "e7edc5b3-0082-4c5b-a1b5-2c94a88473dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234150Z:f3bb6402-c563-45c4-b8cb-9fc02960eb8b" + "SOUTHCENTRALUS:20150813T034436Z:e7edc5b3-0082-4c5b-a1b5-2c94a88473dd" ], "Date": [ - "Fri, 19 Jun 2015 23:41:50 GMT" + "Thu, 13 Aug 2015 03:44:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3761,8 +3993,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "f884aa8a-e8db-4805-b155-f2c8a32e6940" + "eb8669c7-4db0-4cfe-842b-02ad1fefaa6a" ], "Cache-Control": [ "no-cache" @@ -3772,31 +4007,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" + "14953" ], "x-ms-correlation-request-id": [ - "44ab705f-9673-4cd2-a821-71c1fc6ac6b6" + "1c983ebd-5cdc-45e1-92d7-4a940b7233e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234220Z:44ab705f-9673-4cd2-a821-71c1fc6ac6b6" + "SOUTHCENTRALUS:20150813T034506Z:1c983ebd-5cdc-45e1-92d7-4a940b7233e1" ], "Date": [ - "Fri, 19 Jun 2015 23:42:19 GMT" + "Thu, 13 Aug 2015 03:45:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3813,8 +4048,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "a1bf0d05-9c3c-44fd-b69f-267c85835f56" + "2d02b934-9e87-487b-9970-76b0bde21419" ], "Cache-Control": [ "no-cache" @@ -3824,31 +4062,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "14952" ], "x-ms-correlation-request-id": [ - "39225543-d619-490b-b3fe-03bea534a72c" + "4f773cdf-cc66-4e6c-a98f-ae24ba7eba76" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234250Z:39225543-d619-490b-b3fe-03bea534a72c" + "SOUTHCENTRALUS:20150813T034536Z:4f773cdf-cc66-4e6c-a98f-ae24ba7eba76" ], "Date": [ - "Fri, 19 Jun 2015 23:42:50 GMT" + "Thu, 13 Aug 2015 03:45:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3865,8 +4103,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "540f3624-f1d7-4153-8853-870406fbd4b2" + "0e56c1ba-0050-4748-a029-cb7757b0d607" ], "Cache-Control": [ "no-cache" @@ -3876,31 +4117,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "14951" ], "x-ms-correlation-request-id": [ - "f01f9a9c-4cfa-4c8b-8bf1-1f17f61ca78f" + "77cda8c6-25cd-484e-ba5f-8b72f23f6449" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234320Z:f01f9a9c-4cfa-4c8b-8bf1-1f17f61ca78f" + "SOUTHCENTRALUS:20150813T034607Z:77cda8c6-25cd-484e-ba5f-8b72f23f6449" ], "Date": [ - "Fri, 19 Jun 2015 23:43:19 GMT" + "Thu, 13 Aug 2015 03:46:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3917,8 +4158,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "baf557b2-2ab4-4e22-890b-28c6fb2733db" + "40a60a14-99c6-458f-93f5-78c4b1b630de" ], "Cache-Control": [ "no-cache" @@ -3928,31 +4172,86 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" + "14950" ], "x-ms-correlation-request-id": [ - "cc7247c4-c22c-4b4c-9cd5-7b8335a754a8" + "82ae8935-8760-4f95-8e94-f66672aadc28" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234350Z:cc7247c4-c22c-4b4c-9cd5-7b8335a754a8" + "SOUTHCENTRALUS:20150813T034637Z:82ae8935-8760-4f95-8e94-f66672aadc28" ], "Date": [ - "Fri, 19 Jun 2015 23:43:50 GMT" + "Thu, 13 Aug 2015 03:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4504755f-4785-4daa-a30d-8ee6164a255d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUwNDc1NWYtNDc4NS00ZGFhLWEzMGQtOGVlNjE2NGEyNTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4504755f-4785-4daa-a30d-8ee6164a255d\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-06-19T16:28:16.1513235-07:00\",\r\n \"endTime\": \"2015-06-19T16:43:57.7303548-07:00\",\r\n \"error\": {\r\n \"code\": \"VMExtensionProvisioningError\",\r\n \"message\": \"VM has reported a failure when processing extension 'crptestps3976ext'. Error message: \\\"Failed to download all specified files. Exiting...\\\".\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], + "x-ms-request-id": [ + "7401826e-67e7-447e-9860-83f3d1fe9db7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "c19aa7de-4b4c-425b-ace5-a6b0145a2256" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T034707Z:c19aa7de-4b4c-425b-ace5-a6b0145a2256" + ], + "Date": [ + "Thu, 13 Aug 2015 03:47:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7133c988-80b8-4385-84bf-43766f08cac1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzEzM2M5ODgtODBiOC00Mzg1LTg0YmYtNDM3NjZmMDhjYWMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7133c988-80b8-4385-84bf-43766f08cac1\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-08-12T20:30:27.8474982-07:00\",\r\n \"endTime\": \"2015-08-12T20:47:13.4836732-07:00\",\r\n \"error\": {\r\n \"code\": \"VMExtensionProvisioningError\",\r\n \"message\": \"VM has reported a failure when processing extension 'crptestps8093ext'. Error message: \\\"Failed to download all specified files. Exiting...\\\".\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "414" @@ -3969,8 +4268,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "9c53534b-3f8d-4007-957a-82ea4f29864b" + "c8f04ff2-3294-4a43-8bb8-b4ff59ab9cfa" ], "Cache-Control": [ "no-cache" @@ -3980,34 +4282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14683" + "14948" ], "x-ms-correlation-request-id": [ - "3bebcdf9-bc11-49b9-a1aa-6faabba112aa" + "5fa84a89-15f4-44a5-ad8a-b18d4ca98a52" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234420Z:3bebcdf9-bc11-49b9-a1aa-6faabba112aa" + "SOUTHCENTRALUS:20150813T034737Z:5fa84a89-15f4-44a5-ad8a-b18d4ca98a52" ], "Date": [ - "Fri, 19 Jun 2015 23:44:20 GMT" + "Thu, 13 Aug 2015 03:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976/extensions/crptestps3976ext?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM5NzYvZXh0ZW5zaW9ucy9jcnB0ZXN0cHMzOTc2ZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093/extensions/crptestps8093ext?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgwOTMvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM4MDkzZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps3976.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=f9JEXoyNSryLVjW2RYKmwrzP9kSJVNuEzdaJNcZO0kQ%3D&se=2015-06-20T23%3A28%3A13Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976/extensions/crptestps3976ext\",\r\n \"name\": \"crptestps3976ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps8093.blob.core.windows.net/script/a.exe?sv=2015-02-21&sr=b&sig=UgNwGc%2FsaAJNlUI3LnK7tLoO1LlaEKRA5ImDYJQa8Pw%3D&se=2015-08-14T03%3A30%3A26Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093/extensions/crptestps8093ext\",\r\n \"name\": \"crptestps8093ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "797" + "799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4021,8 +4323,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "4086b8a3-56b2-49b4-bbfc-decd535ae3c0" + "d2315ddc-a28d-4c49-be7a-968f9f198b55" ], "Cache-Control": [ "no-cache" @@ -4032,34 +4337,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14682" + "14947" ], "x-ms-correlation-request-id": [ - "baf139d7-44ea-4400-92d6-249844e9f967" + "8432da9d-fad1-492b-8c78-6585924fdc7f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234420Z:baf139d7-44ea-4400-92d6-249844e9f967" + "SOUTHCENTRALUS:20150813T034738Z:8432da9d-fad1-492b-8c78-6585924fdc7f" ], "Date": [ - "Fri, 19 Jun 2015 23:44:20 GMT" + "Thu, 13 Aug 2015 03:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976/extensions/crptestps3976ext?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM5NzYvZXh0ZW5zaW9ucy9jcnB0ZXN0cHMzOTc2ZXh0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093/extensions/crptestps8093ext?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgwOTMvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM4MDkzZXh0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps3976.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=f9JEXoyNSryLVjW2RYKmwrzP9kSJVNuEzdaJNcZO0kQ%3D&se=2015-06-20T23%3A28%3A13Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"instanceView\": {\r\n \"name\": \"crptestps3976ext\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/failed/3\",\r\n \"level\": \"Error\",\r\n \"displayStatus\": \"Provisioning failed\",\r\n \"message\": \"Failed to download all specified files. Exiting...\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976/extensions/crptestps3976ext\",\r\n \"name\": \"crptestps3976ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps8093.blob.core.windows.net/script/a.exe?sv=2015-02-21&sr=b&sig=UgNwGc%2FsaAJNlUI3LnK7tLoO1LlaEKRA5ImDYJQa8Pw%3D&se=2015-08-14T03%3A30%3A26Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"instanceView\": {\r\n \"name\": \"crptestps8093ext\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/failed/3\",\r\n \"level\": \"Error\",\r\n \"displayStatus\": \"Provisioning failed\",\r\n \"message\": \"Failed to download all specified files. Exiting...\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093/extensions/crptestps8093ext\",\r\n \"name\": \"crptestps8093ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "1213" + "1215" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4073,8 +4378,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "a0168053-097e-4bfb-a79c-72669ec860c1" + "59f399e8-8bd4-47ae-a902-a420d6093a3d" ], "Cache-Control": [ "no-cache" @@ -4084,34 +4392,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14681" + "14946" ], "x-ms-correlation-request-id": [ - "4292b9fd-e9e6-473b-88d9-d41ff3c91572" + "75e6a9f3-7728-4f66-8ef9-5ae1a55bd7ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234421Z:4292b9fd-e9e6-473b-88d9-d41ff3c91572" + "SOUTHCENTRALUS:20150813T034738Z:75e6a9f3-7728-4f66-8ef9-5ae1a55bd7ef" ], "Date": [ - "Fri, 19 Jun 2015 23:44:20 GMT" + "Thu, 13 Aug 2015 03:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczM5NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3976.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Network/networkInterfaces/niccrptestps3976\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps3976.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=f9JEXoyNSryLVjW2RYKmwrzP9kSJVNuEzdaJNcZO0kQ%3D&se=2015-06-20T23%3A28%3A13Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976/extensions/crptestps3976ext\",\r\n \"name\": \"crptestps3976ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps3976/providers/Microsoft.Compute/virtualMachines/vmcrptestps3976\",\r\n \"name\": \"vmcrptestps3976\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8093.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Network/networkInterfaces/niccrptestps8093\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stocrptestps8093.blob.core.windows.net/script/a.exe?sv=2015-02-21&sr=b&sig=UgNwGc%2FsaAJNlUI3LnK7tLoO1LlaEKRA5ImDYJQa8Pw%3D&se=2015-08-14T03%3A30%3A26Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093/extensions/crptestps8093ext\",\r\n \"name\": \"crptestps8093ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8093/providers/Microsoft.Compute/virtualMachines/vmcrptestps8093\",\r\n \"name\": \"vmcrptestps8093\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2818" + "2820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4125,8 +4433,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130838446472410923" + ], "x-ms-request-id": [ - "43bc9c13-7275-4c34-8465-851a49aa4ef8" + "78cc9bdf-4395-444b-8d2c-98e871828a01" ], "Cache-Control": [ "no-cache" @@ -4136,23 +4447,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14680" + "14945" ], "x-ms-correlation-request-id": [ - "550b5d66-9293-48e5-a46f-c91759ce7001" + "977fc1b0-3346-44a3-ba35-ac89daaba395" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234421Z:550b5d66-9293-48e5-a46f-c91759ce7001" + "SOUTHCENTRALUS:20150813T034738Z:977fc1b0-3346-44a3-ba35-ac89daaba395" ], "Date": [ - "Fri, 19 Jun 2015 23:44:21 GMT" + "Thu, 13 Aug 2015 03:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps3976?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczM5NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8093?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgwOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4175,16 +4486,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "d0c697c6-c2a6-45e0-b647-3b44b1028a44" + "d3154847-6c5a-4081-8e47-480648b448f8" ], "x-ms-correlation-request-id": [ - "d0c697c6-c2a6-45e0-b647-3b44b1028a44" + "d3154847-6c5a-4081-8e47-480648b448f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234421Z:d0c697c6-c2a6-45e0-b647-3b44b1028a44" + "SOUTHCENTRALUS:20150813T034740Z:d3154847-6c5a-4081-8e47-480648b448f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4193,17 +4504,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:44:21 GMT" + "Thu, 13 Aug 2015 03:47:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4229,16 +4540,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14772" + "14995" ], "x-ms-request-id": [ - "9bb1de3e-e40c-41db-9ec2-e2ca829c4f4e" + "198f9c50-99a7-48dd-99b9-562c6c4e6d67" ], "x-ms-correlation-request-id": [ - "9bb1de3e-e40c-41db-9ec2-e2ca829c4f4e" + "198f9c50-99a7-48dd-99b9-562c6c4e6d67" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234421Z:9bb1de3e-e40c-41db-9ec2-e2ca829c4f4e" + "SOUTHCENTRALUS:20150813T034740Z:198f9c50-99a7-48dd-99b9-562c6c4e6d67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4247,17 +4558,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:44:21 GMT" + "Thu, 13 Aug 2015 03:47:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4283,16 +4594,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "14994" ], "x-ms-request-id": [ - "235ad5b9-6f59-496b-8014-3263b3223871" + "7e25587d-e963-4e83-8459-2e55bc922284" ], "x-ms-correlation-request-id": [ - "235ad5b9-6f59-496b-8014-3263b3223871" + "7e25587d-e963-4e83-8459-2e55bc922284" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234436Z:235ad5b9-6f59-496b-8014-3263b3223871" + "SOUTHCENTRALUS:20150813T034755Z:7e25587d-e963-4e83-8459-2e55bc922284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4301,17 +4612,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:44:36 GMT" + "Thu, 13 Aug 2015 03:47:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4337,16 +4648,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14993" ], "x-ms-request-id": [ - "856e6fcc-248b-4ff4-84a0-6611b43d0de5" + "1e4a4930-e605-4dec-ade1-c33e23e05101" ], "x-ms-correlation-request-id": [ - "856e6fcc-248b-4ff4-84a0-6611b43d0de5" + "1e4a4930-e605-4dec-ade1-c33e23e05101" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234451Z:856e6fcc-248b-4ff4-84a0-6611b43d0de5" + "SOUTHCENTRALUS:20150813T034810Z:1e4a4930-e605-4dec-ade1-c33e23e05101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4355,17 +4666,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:44:50 GMT" + "Thu, 13 Aug 2015 03:48:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4391,16 +4702,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "14992" ], "x-ms-request-id": [ - "2b6504de-864c-4d1c-a207-bab4f162ff58" + "39434b41-b97f-4ece-9d8b-2d113a814d12" ], "x-ms-correlation-request-id": [ - "2b6504de-864c-4d1c-a207-bab4f162ff58" + "39434b41-b97f-4ece-9d8b-2d113a814d12" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234506Z:2b6504de-864c-4d1c-a207-bab4f162ff58" + "SOUTHCENTRALUS:20150813T034826Z:39434b41-b97f-4ece-9d8b-2d113a814d12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4409,17 +4720,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:45:06 GMT" + "Thu, 13 Aug 2015 03:48:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4445,16 +4756,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14991" ], "x-ms-request-id": [ - "fbb64452-6279-4f23-acb5-af9a4f86531f" + "9164c6ab-8582-4929-b33c-83b184c18ee1" ], "x-ms-correlation-request-id": [ - "fbb64452-6279-4f23-acb5-af9a4f86531f" + "9164c6ab-8582-4929-b33c-83b184c18ee1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234522Z:fbb64452-6279-4f23-acb5-af9a4f86531f" + "SOUTHCENTRALUS:20150813T034841Z:9164c6ab-8582-4929-b33c-83b184c18ee1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4463,17 +4774,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:45:21 GMT" + "Thu, 13 Aug 2015 03:48:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4499,16 +4810,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" + "14990" ], "x-ms-request-id": [ - "d86f3e98-e537-42a6-966e-ec4582a6e207" + "0ae2a995-2fee-4394-b67c-48b7d3e25ab3" ], "x-ms-correlation-request-id": [ - "d86f3e98-e537-42a6-966e-ec4582a6e207" + "0ae2a995-2fee-4394-b67c-48b7d3e25ab3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234537Z:d86f3e98-e537-42a6-966e-ec4582a6e207" + "SOUTHCENTRALUS:20150813T034856Z:0ae2a995-2fee-4394-b67c-48b7d3e25ab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4517,17 +4828,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:45:36 GMT" + "Thu, 13 Aug 2015 03:48:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4553,16 +4864,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "14989" ], "x-ms-request-id": [ - "621e6204-ebd4-4f4e-ad22-5d7e62e21788" + "f33868b4-9210-4fe7-82ac-a1cfbf0b1733" ], "x-ms-correlation-request-id": [ - "621e6204-ebd4-4f4e-ad22-5d7e62e21788" + "f33868b4-9210-4fe7-82ac-a1cfbf0b1733" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234552Z:621e6204-ebd4-4f4e-ad22-5d7e62e21788" + "SOUTHCENTRALUS:20150813T034911Z:f33868b4-9210-4fe7-82ac-a1cfbf0b1733" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4571,17 +4882,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:45:51 GMT" + "Thu, 13 Aug 2015 03:49:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4607,16 +4918,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14762" + "14988" ], "x-ms-request-id": [ - "7b9aa1f2-c09a-4726-8869-f7ff71230838" + "6c1f15cf-5137-48a9-bda6-ccb0560f689e" ], "x-ms-correlation-request-id": [ - "7b9aa1f2-c09a-4726-8869-f7ff71230838" + "6c1f15cf-5137-48a9-bda6-ccb0560f689e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234607Z:7b9aa1f2-c09a-4726-8869-f7ff71230838" + "SOUTHCENTRALUS:20150813T034926Z:6c1f15cf-5137-48a9-bda6-ccb0560f689e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4625,17 +4936,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:46:06 GMT" + "Thu, 13 Aug 2015 03:49:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4661,16 +4972,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14987" ], "x-ms-request-id": [ - "1154be60-d3d3-4129-9061-f4bad8395c06" + "aa66d3ea-7633-41d4-9de4-2aae42e65364" ], "x-ms-correlation-request-id": [ - "1154be60-d3d3-4129-9061-f4bad8395c06" + "aa66d3ea-7633-41d4-9de4-2aae42e65364" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234622Z:1154be60-d3d3-4129-9061-f4bad8395c06" + "SOUTHCENTRALUS:20150813T034941Z:aa66d3ea-7633-41d4-9de4-2aae42e65364" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4679,17 +4990,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:46:22 GMT" + "Thu, 13 Aug 2015 03:49:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4715,16 +5026,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" + "14986" ], "x-ms-request-id": [ - "865f35cf-aa65-4e4d-b316-047a83589aa1" + "e7324dbf-baef-4b1c-8aca-c4a547118107" ], "x-ms-correlation-request-id": [ - "865f35cf-aa65-4e4d-b316-047a83589aa1" + "e7324dbf-baef-4b1c-8aca-c4a547118107" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234637Z:865f35cf-aa65-4e4d-b316-047a83589aa1" + "SOUTHCENTRALUS:20150813T034957Z:e7324dbf-baef-4b1c-8aca-c4a547118107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4733,17 +5044,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:46:37 GMT" + "Thu, 13 Aug 2015 03:49:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4769,16 +5080,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14756" + "14985" ], "x-ms-request-id": [ - "8ea17af9-9222-47d9-abca-7d3d80b9beff" + "fff73e3d-6a9c-4f51-928e-068465eab236" ], "x-ms-correlation-request-id": [ - "8ea17af9-9222-47d9-abca-7d3d80b9beff" + "fff73e3d-6a9c-4f51-928e-068465eab236" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234652Z:8ea17af9-9222-47d9-abca-7d3d80b9beff" + "SOUTHCENTRALUS:20150813T035012Z:fff73e3d-6a9c-4f51-928e-068465eab236" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4787,17 +5098,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:46:51 GMT" + "Thu, 13 Aug 2015 03:50:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4823,16 +5134,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" + "14984" ], "x-ms-request-id": [ - "6d055df2-8d6f-4da4-9c29-15f70f775d5a" + "19c89662-79cb-407f-bb25-0a51d3a1b216" ], "x-ms-correlation-request-id": [ - "6d055df2-8d6f-4da4-9c29-15f70f775d5a" + "19c89662-79cb-407f-bb25-0a51d3a1b216" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234707Z:6d055df2-8d6f-4da4-9c29-15f70f775d5a" + "SOUTHCENTRALUS:20150813T035027Z:19c89662-79cb-407f-bb25-0a51d3a1b216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4841,17 +5152,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:47:06 GMT" + "Thu, 13 Aug 2015 03:50:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4877,16 +5188,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14754" + "14983" ], "x-ms-request-id": [ - "5f146606-a6f8-4e99-bee3-bc3a75997139" + "2087d84f-2a44-4fd0-8ea6-62145ebff52e" ], "x-ms-correlation-request-id": [ - "5f146606-a6f8-4e99-bee3-bc3a75997139" + "2087d84f-2a44-4fd0-8ea6-62145ebff52e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234722Z:5f146606-a6f8-4e99-bee3-bc3a75997139" + "SOUTHCENTRALUS:20150813T035042Z:2087d84f-2a44-4fd0-8ea6-62145ebff52e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4895,17 +5206,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:47:22 GMT" + "Thu, 13 Aug 2015 03:50:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4931,16 +5242,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14982" ], "x-ms-request-id": [ - "e0425226-fe1c-4346-8370-53f23df1ec2e" + "032f8906-f686-4bf1-9e48-a43eb39ccd36" ], "x-ms-correlation-request-id": [ - "e0425226-fe1c-4346-8370-53f23df1ec2e" + "032f8906-f686-4bf1-9e48-a43eb39ccd36" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234737Z:e0425226-fe1c-4346-8370-53f23df1ec2e" + "SOUTHCENTRALUS:20150813T035057Z:032f8906-f686-4bf1-9e48-a43eb39ccd36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4949,17 +5260,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:47:37 GMT" + "Thu, 13 Aug 2015 03:50:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4985,16 +5296,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "14981" ], "x-ms-request-id": [ - "7a3bdf97-93eb-4737-92d3-fa4129c3330f" + "d21d0426-5857-4746-81a0-25059c7c258e" ], "x-ms-correlation-request-id": [ - "7a3bdf97-93eb-4737-92d3-fa4129c3330f" + "d21d0426-5857-4746-81a0-25059c7c258e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234752Z:7a3bdf97-93eb-4737-92d3-fa4129c3330f" + "SOUTHCENTRALUS:20150813T035112Z:d21d0426-5857-4746-81a0-25059c7c258e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5003,17 +5314,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:47:52 GMT" + "Thu, 13 Aug 2015 03:51:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5039,16 +5350,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "14980" ], "x-ms-request-id": [ - "6043b70c-125a-453a-9ca3-983ebee9f79b" + "80ef7a0a-8eb1-4612-ac9e-b4330157f502" ], "x-ms-correlation-request-id": [ - "6043b70c-125a-453a-9ca3-983ebee9f79b" + "80ef7a0a-8eb1-4612-ac9e-b4330157f502" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234808Z:6043b70c-125a-453a-9ca3-983ebee9f79b" + "SOUTHCENTRALUS:20150813T035128Z:80ef7a0a-8eb1-4612-ac9e-b4330157f502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5057,17 +5368,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:48:07 GMT" + "Thu, 13 Aug 2015 03:51:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5093,16 +5404,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14979" ], "x-ms-request-id": [ - "1336299a-e491-4b8f-9ab7-5bab74b76bd4" + "4af41707-3f78-4058-a5b0-8259d89c8f80" ], "x-ms-correlation-request-id": [ - "1336299a-e491-4b8f-9ab7-5bab74b76bd4" + "4af41707-3f78-4058-a5b0-8259d89c8f80" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234823Z:1336299a-e491-4b8f-9ab7-5bab74b76bd4" + "SOUTHCENTRALUS:20150813T035143Z:4af41707-3f78-4058-a5b0-8259d89c8f80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5111,17 +5422,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:48:22 GMT" + "Thu, 13 Aug 2015 03:51:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5147,16 +5458,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14978" ], "x-ms-request-id": [ - "2c22a1af-ea85-41d2-a465-b30478eefc52" + "38fa223e-e2b9-45c7-8131-4a727daf6007" ], "x-ms-correlation-request-id": [ - "2c22a1af-ea85-41d2-a465-b30478eefc52" + "38fa223e-e2b9-45c7-8131-4a727daf6007" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234838Z:2c22a1af-ea85-41d2-a465-b30478eefc52" + "SOUTHCENTRALUS:20150813T035158Z:38fa223e-e2b9-45c7-8131-4a727daf6007" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5165,17 +5476,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:48:37 GMT" + "Thu, 13 Aug 2015 03:51:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5201,16 +5512,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14977" ], "x-ms-request-id": [ - "0fd91205-8e27-4595-86e5-193e124a255a" + "335e7dc3-e0df-4565-a20f-dc76001d896a" ], "x-ms-correlation-request-id": [ - "0fd91205-8e27-4595-86e5-193e124a255a" + "335e7dc3-e0df-4565-a20f-dc76001d896a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234853Z:0fd91205-8e27-4595-86e5-193e124a255a" + "SOUTHCENTRALUS:20150813T035213Z:335e7dc3-e0df-4565-a20f-dc76001d896a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5219,17 +5530,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:48:52 GMT" + "Thu, 13 Aug 2015 03:52:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzOTc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16T1RjMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MDkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TURrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5252,16 +5563,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" + "14976" ], "x-ms-request-id": [ - "df57332d-fa97-4bf4-882b-501fe2331a94" + "8f13897f-eaec-44ae-9503-ccf14c4dd44e" ], "x-ms-correlation-request-id": [ - "df57332d-fa97-4bf4-882b-501fe2331a94" + "8f13897f-eaec-44ae-9503-ccf14c4dd44e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T234908Z:df57332d-fa97-4bf4-882b-501fe2331a94" + "SOUTHCENTRALUS:20150813T035228Z:8f13897f-eaec-44ae-9503-ccf14c4dd44e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5270,7 +5581,7 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 23:49:08 GMT" + "Thu, 13 Aug 2015 03:52:28 GMT" ] }, "StatusCode": 200 @@ -5278,11 +5589,11 @@ ], "Names": { "Test-VirtualMachineCustomScriptExtension": [ - "crptestps3976" + "crptestps8093" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtensionFileUri.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtensionFileUri.json index 93f99ac3a45b..1047f374b30e 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtensionFileUri.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtensionFileUri.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4916?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "81073f60-e52a-4d32-9a16-5de512e13c1e" + ], + "x-ms-correlation-request-id": [ + "81073f60-e52a-4d32-9a16-5de512e13c1e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T043007Z:81073f60-e52a-4d32-9a16-5de512e13c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 04:30:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5353?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14986" ], "x-ms-request-id": [ - "c11f248d-a049-4725-9342-d47c09c245a3" + "c0d53877-5293-42e3-a8d6-ec12b784c41a" ], "x-ms-correlation-request-id": [ - "c11f248d-a049-4725-9342-d47c09c245a3" + "c0d53877-5293-42e3-a8d6-ec12b784c41a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042207Z:c11f248d-a049-4725-9342-d47c09c245a3" + "SOUTHCENTRALUS:20150813T043007Z:c0d53877-5293-42e3-a8d6-ec12b784c41a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:22:07 GMT" + "Thu, 13 Aug 2015 04:30:06 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4916?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5353?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-request-id": [ - "c0b4afe6-9364-48ba-895d-4aad4150ef84" + "34923a0c-3e9b-46ea-8e1d-008c3b7cf649" ], "x-ms-correlation-request-id": [ - "c0b4afe6-9364-48ba-895d-4aad4150ef84" + "34923a0c-3e9b-46ea-8e1d-008c3b7cf649" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044640Z:c0b4afe6-9364-48ba-895d-4aad4150ef84" + "SOUTHCENTRALUS:20150813T045404Z:34923a0c-3e9b-46ea-8e1d-008c3b7cf649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:46:40 GMT" + "Thu, 13 Aug 2015 04:54:03 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4916?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5353?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916\",\r\n \"name\": \"crptestps4916\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353\",\r\n \"name\": \"crptestps5353\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-request-id": [ - "59bdc43a-08e2-4ed6-a77c-500c62f6a84a" + "742afeb2-0bfe-4a2d-bad9-555e02b57713" ], "x-ms-correlation-request-id": [ - "59bdc43a-08e2-4ed6-a77c-500c62f6a84a" + "742afeb2-0bfe-4a2d-bad9-555e02b57713" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042208Z:59bdc43a-08e2-4ed6-a77c-500c62f6a84a" + "SOUTHCENTRALUS:20150813T043008Z:742afeb2-0bfe-4a2d-bad9-555e02b57713" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:22:08 GMT" + "Thu, 13 Aug 2015 04:30:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14985" ], "x-ms-request-id": [ - "997ae4a4-6905-48ca-a196-9841f8332039" + "8d393786-721e-4960-99ff-2baf10f6f71d" ], "x-ms-correlation-request-id": [ - "997ae4a4-6905-48ca-a196-9841f8332039" + "8d393786-721e-4960-99ff-2baf10f6f71d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042208Z:997ae4a4-6905-48ca-a196-9841f8332039" + "SOUTHCENTRALUS:20150813T043008Z:8d393786-721e-4960-99ff-2baf10f6f71d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:22:08 GMT" + "Thu, 13 Aug 2015 04:30:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4916/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5353/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:0a7d0499-1598-4b26-afc6-adda7fb0a846" + "brazilus:d83b23ff-3fda-49e4-aece-7b50b8195005" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-correlation-request-id": [ - "13e5be66-f3c8-4f8a-ace2-df08817f6e11" + "13d67fbf-c47e-4e4e-b54a-6eb73cec5c2e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042208Z:13e5be66-f3c8-4f8a-ace2-df08817f6e11" + "SOUTHCENTRALUS:20150813T043008Z:13d67fbf-c47e-4e4e-b54a-6eb73cec5c2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:22:08 GMT" + "Thu, 13 Aug 2015 04:30:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDkxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTM1Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,7 +307,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps4916' under resource group 'crptestps4916' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps5353' under resource group 'crptestps5353' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "fa1a5ee3-def4-4dc8-af94-503b33d038a0" + "9757979f-49a8-40d8-9294-bbda28b221c2" ], "x-ms-correlation-request-id": [ - "fa1a5ee3-def4-4dc8-af94-503b33d038a0" + "9757979f-49a8-40d8-9294-bbda28b221c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042208Z:fa1a5ee3-def4-4dc8-af94-503b33d038a0" + "SOUTHCENTRALUS:20150813T043009Z:9757979f-49a8-40d8-9294-bbda28b221c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:22:07 GMT" + "Thu, 13 Aug 2015 04:30:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDkxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTM1Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,7 +355,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916\",\r\n \"etag\": \"W/\\\"eeab66f3-c4a7-49a3-9720-fe1fe7ce11cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4bd8374e-4d89-438f-bbf1-086aff9d3969\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916/subnets/subnetcrptestps4916\",\r\n \"etag\": \"W/\\\"eeab66f3-c4a7-49a3-9720-fe1fe7ce11cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353\",\r\n \"etag\": \"W/\\\"e26668e3-611e-4497-b5ca-da8359f463c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a3eaeb8-cd42-4d7e-b701-b538f5e25516\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353/subnets/subnetcrptestps5353\",\r\n \"etag\": \"W/\\\"e26668e3-611e-4497-b5ca-da8359f463c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "d2b12cba-e5f3-4712-bea1-19b888c8b9ef" + "8bf61c99-64bc-4ec5-9ab6-14001942044d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"eeab66f3-c4a7-49a3-9720-fe1fe7ce11cc\"" + "W/\"e26668e3-611e-4497-b5ca-da8359f463c6\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14997" ], "x-ms-correlation-request-id": [ - "1ff6da21-da19-4442-b044-79c754cb9974" + "228cacfd-6232-4fc0-9237-9e605e6f64b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042219Z:1ff6da21-da19-4442-b044-79c754cb9974" + "SOUTHCENTRALUS:20150813T043010Z:228cacfd-6232-4fc0-9237-9e605e6f64b6" ], "Date": [ - "Thu, 06 Aug 2015 04:22:19 GMT" + "Thu, 13 Aug 2015 04:30:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDkxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTM1Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,7 +410,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916\",\r\n \"etag\": \"W/\\\"eeab66f3-c4a7-49a3-9720-fe1fe7ce11cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4bd8374e-4d89-438f-bbf1-086aff9d3969\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916/subnets/subnetcrptestps4916\",\r\n \"etag\": \"W/\\\"eeab66f3-c4a7-49a3-9720-fe1fe7ce11cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353\",\r\n \"etag\": \"W/\\\"e26668e3-611e-4497-b5ca-da8359f463c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a3eaeb8-cd42-4d7e-b701-b538f5e25516\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353/subnets/subnetcrptestps5353\",\r\n \"etag\": \"W/\\\"e26668e3-611e-4497-b5ca-da8359f463c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "81f1dac6-e984-4a48-9c6b-e7baf4e34c5d" + "c5b67f15-0215-4d8f-acb7-082548b11463" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"eeab66f3-c4a7-49a3-9720-fe1fe7ce11cc\"" + "W/\"e26668e3-611e-4497-b5ca-da8359f463c6\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14996" ], "x-ms-correlation-request-id": [ - "ec41e152-8ce5-4150-81c7-37a7f7872044" + "f5483d5d-cfc0-438f-b528-829de2cd3d4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042219Z:ec41e152-8ce5-4150-81c7-37a7f7872044" + "SOUTHCENTRALUS:20150813T043011Z:f5483d5d-cfc0-438f-b528-829de2cd3d4e" ], "Date": [ - "Thu, 06 Aug 2015 04:22:19 GMT" + "Thu, 13 Aug 2015 04:30:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDkxNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTM1Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps4916\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps4916\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps5353\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps5353\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -423,7 +471,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916\",\r\n \"etag\": \"W/\\\"9c2d26a2-8af6-4bc5-b4e3-5938988adb7c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4bd8374e-4d89-438f-bbf1-086aff9d3969\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916/subnets/subnetcrptestps4916\",\r\n \"etag\": \"W/\\\"9c2d26a2-8af6-4bc5-b4e3-5938988adb7c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353\",\r\n \"etag\": \"W/\\\"e43b0eaa-9e5b-4145-a4ec-70b440cd645e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4a3eaeb8-cd42-4d7e-b701-b538f5e25516\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353/subnets/subnetcrptestps5353\",\r\n \"etag\": \"W/\\\"e43b0eaa-9e5b-4145-a4ec-70b440cd645e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1026" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "b3c7464b-c041-42d1-9a99-27a9f173f8c7" + "da1c7aca-ae81-43af-b41e-3a3458c6967b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b3c7464b-c041-42d1-9a99-27a9f173f8c7?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/da1c7aca-ae81-43af-b41e-3a3458c6967b?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,78 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1199" ], "x-ms-correlation-request-id": [ - "305a1eaa-3dfe-44d2-81e7-90ce62b54e92" + "bd327904-a20e-4bec-87a5-148cbd48be09" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042209Z:305a1eaa-3dfe-44d2-81e7-90ce62b54e92" + "SOUTHCENTRALUS:20150813T043010Z:bd327904-a20e-4bec-87a5-148cbd48be09" ], "Date": [ - "Thu, 06 Aug 2015 04:22:08 GMT" + "Thu, 13 Aug 2015 04:30:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b3c7464b-c041-42d1-9a99-27a9f173f8c7?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNjNzQ2NGItYzA0MS00MmQxLTlhOTktMjdhOWYxNzNmOGM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4a208079-d2e9-4a5e-8811-4f0cd25c73fa" - ], - "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": [ - "14946" - ], - "x-ms-correlation-request-id": [ - "70a02df3-2a92-4ef7-b3c1-2d5f4391af1f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T042209Z:70a02df3-2a92-4ef7-b3c1-2d5f4391af1f" - ], - "Date": [ - "Thu, 06 Aug 2015 04:22:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b3c7464b-c041-42d1-9a99-27a9f173f8c7?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNjNzQ2NGItYzA0MS00MmQxLTlhOTktMjdhOWYxNzNmOGM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/da1c7aca-ae81-43af-b41e-3a3458c6967b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGExYzdhY2EtYWU4MS00M2FmLWI0MWUtM2EzNDU4YzY5NjdiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "33d9de21-2963-4a8a-8d10-f10ba3d8fd2c" + "88df762b-1d8e-40e7-934f-1f9289fe3a0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14998" ], "x-ms-correlation-request-id": [ - "cf27d3d7-4c57-462f-a847-4062f9ecefce" + "9942620d-d324-4d4c-8d06-9464e9bee64b" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042219Z:cf27d3d7-4c57-462f-a847-4062f9ecefce" + "SOUTHCENTRALUS:20150813T043010Z:9942620d-d324-4d4c-8d06-9464e9bee64b" ], "Date": [ - "Thu, 06 Aug 2015 04:22:19 GMT" + "Thu, 13 Aug 2015 04:30:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDkxNi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTM1My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,7 +584,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps4916' under resource group 'crptestps4916' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps5353' under resource group 'crptestps5353' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -609,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "ed8c06e7-c195-4da3-b33a-27ff402383cf" + "60a0d8a8-c1d6-4990-9282-4a27ed884b0c" ], "x-ms-correlation-request-id": [ - "ed8c06e7-c195-4da3-b33a-27ff402383cf" + "60a0d8a8-c1d6-4990-9282-4a27ed884b0c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042219Z:ed8c06e7-c195-4da3-b33a-27ff402383cf" + "SOUTHCENTRALUS:20150813T043011Z:60a0d8a8-c1d6-4990-9282-4a27ed884b0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +617,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:22:19 GMT" + "Thu, 13 Aug 2015 04:30:10 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDkxNi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTM1My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,7 +632,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916\",\r\n \"etag\": \"W/\\\"3a5246ed-db1c-477e-bfbc-52c130f4b3b6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ec0efbfb-798b-456e-93c3-6d45d08186cb\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4916\",\r\n \"fqdn\": \"pubipcrptestps4916.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353\",\r\n \"etag\": \"W/\\\"42b4c807-e333-43f3-85fe-0b949014fcb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"db0ea65c-7156-4040-8c88-2a662ee03faf\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5353\",\r\n \"fqdn\": \"pubipcrptestps5353.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -654,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "7f7f3c07-272b-4bc2-a081-05e1b461d331" + "285557e5-d117-49bd-b7be-b1b6de5a4a68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +656,30 @@ "no-cache" ], "ETag": [ - "W/\"3a5246ed-db1c-477e-bfbc-52c130f4b3b6\"" + "W/\"42b4c807-e333-43f3-85fe-0b949014fcb2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14993" ], "x-ms-correlation-request-id": [ - "145e726f-ac73-4068-8370-2c8975560991" + "e864aa94-e279-4ecf-845f-e4aeaa127785" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042231Z:145e726f-ac73-4068-8370-2c8975560991" + "SOUTHCENTRALUS:20150813T043012Z:e864aa94-e279-4ecf-845f-e4aeaa127785" ], "Date": [ - "Thu, 06 Aug 2015 04:22:30 GMT" + "Thu, 13 Aug 2015 04:30:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDkxNi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTM1My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,7 +687,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916\",\r\n \"etag\": \"W/\\\"3a5246ed-db1c-477e-bfbc-52c130f4b3b6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ec0efbfb-798b-456e-93c3-6d45d08186cb\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4916\",\r\n \"fqdn\": \"pubipcrptestps4916.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353\",\r\n \"etag\": \"W/\\\"42b4c807-e333-43f3-85fe-0b949014fcb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"db0ea65c-7156-4040-8c88-2a662ee03faf\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5353\",\r\n \"fqdn\": \"pubipcrptestps5353.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -709,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "52e3f5b1-48b7-4308-b873-bdf7521e9dd6" + "ca1b0a06-1610-4bdc-80e9-4e0673172868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,32 +711,32 @@ "no-cache" ], "ETag": [ - "W/\"3a5246ed-db1c-477e-bfbc-52c130f4b3b6\"" + "W/\"42b4c807-e333-43f3-85fe-0b949014fcb2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14992" ], "x-ms-correlation-request-id": [ - "1bfa0a02-8cff-40b7-82af-fa3c5ecb5c41" + "61e16a29-3a78-46d5-8e18-ee89b0c9101a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042231Z:1bfa0a02-8cff-40b7-82af-fa3c5ecb5c41" + "SOUTHCENTRALUS:20150813T043013Z:61e16a29-3a78-46d5-8e18-ee89b0c9101a" ], "Date": [ - "Thu, 06 Aug 2015 04:22:30 GMT" + "Thu, 13 Aug 2015 04:30:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDkxNi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTM1My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4916\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps4916\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5353\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps5353\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -755,7 +748,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916\",\r\n \"etag\": \"W/\\\"8a2c2cfa-e9fb-4694-aba5-aa4a563e7720\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ec0efbfb-798b-456e-93c3-6d45d08186cb\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4916\",\r\n \"fqdn\": \"pubipcrptestps4916.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353\",\r\n \"etag\": \"W/\\\"7fe39dff-f5ef-49cf-baa2-f40237f7806f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"db0ea65c-7156-4040-8c88-2a662ee03faf\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5353\",\r\n \"fqdn\": \"pubipcrptestps5353.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -773,10 +766,10 @@ "10" ], "x-ms-request-id": [ - "fc73a861-81c1-44f1-a4d7-1c66e85d861e" + "5c73e72b-536e-4ed7-925b-4cac7a3ebb3c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/fc73a861-81c1-44f1-a4d7-1c66e85d861e?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/5c73e72b-536e-4ed7-925b-4cac7a3ebb3c?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,78 +782,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1198" ], "x-ms-correlation-request-id": [ - "664445c3-36b1-49e6-9aee-97caef40c3aa" + "40721a1a-8481-445b-911b-dd9a0e80dd49" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042220Z:664445c3-36b1-49e6-9aee-97caef40c3aa" + "SOUTHCENTRALUS:20150813T043012Z:40721a1a-8481-445b-911b-dd9a0e80dd49" ], "Date": [ - "Thu, 06 Aug 2015 04:22:20 GMT" + "Thu, 13 Aug 2015 04:30:11 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/fc73a861-81c1-44f1-a4d7-1c66e85d861e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmM3M2E4NjEtODFjMS00NGYxLWE0ZDctMWM2NmU4NWQ4NjFlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "25b3da6d-4e9d-4cab-b5e6-477761413c20" - ], - "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": [ - "14941" - ], - "x-ms-correlation-request-id": [ - "e24df030-05ad-464b-acf5-0a242f7a5511" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T042221Z:e24df030-05ad-464b-acf5-0a242f7a5511" - ], - "Date": [ - "Thu, 06 Aug 2015 04:22:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/fc73a861-81c1-44f1-a4d7-1c66e85d861e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmM3M2E4NjEtODFjMS00NGYxLWE0ZDctMWM2NmU4NWQ4NjFlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/5c73e72b-536e-4ed7-925b-4cac7a3ebb3c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWM3M2U3MmItNTM2ZS00ZWQ3LTkyNWItNGNhYzdhM2ViYjNjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -886,7 +824,7 @@ "no-cache" ], "x-ms-request-id": [ - "d9e0ee2d-70ac-4cfd-848d-611858dc1670" + "ad17fb6b-32e3-413a-ac3c-3c9df454a3ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14994" ], "x-ms-correlation-request-id": [ - "cf31f1e6-65d0-45fd-a6a0-bcab6ae533d0" + "dd773a0f-c0a5-449e-80c1-5dc776b43ec4" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042231Z:cf31f1e6-65d0-45fd-a6a0-bcab6ae533d0" + "SOUTHCENTRALUS:20150813T043012Z:dd773a0f-c0a5-449e-80c1-5dc776b43ec4" ], "Date": [ - "Thu, 06 Aug 2015 04:22:30 GMT" + "Thu, 13 Aug 2015 04:30:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,7 +861,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps4916' under resource group 'crptestps4916' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps5353' under resource group 'crptestps5353' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -941,13 +879,13 @@ "gateway" ], "x-ms-request-id": [ - "cb5dc706-90b8-4a44-8fa8-4ad11e91f3ca" + "3e9b4c4c-341c-413f-936d-f5fe6fc13066" ], "x-ms-correlation-request-id": [ - "cb5dc706-90b8-4a44-8fa8-4ad11e91f3ca" + "3e9b4c4c-341c-413f-936d-f5fe6fc13066" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042231Z:cb5dc706-90b8-4a44-8fa8-4ad11e91f3ca" + "SOUTHCENTRALUS:20150813T043013Z:3e9b4c4c-341c-413f-936d-f5fe6fc13066" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -956,14 +894,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:22:30 GMT" + "Thu, 13 Aug 2015 04:30:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,7 +909,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916\",\r\n \"etag\": \"W/\\\"5eb3a242-cc82-4b17-8e6a-c16480248878\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5e4e5cf8-5a4e-4001-b90f-a1fe270bf85d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5eb3a242-cc82-4b17-8e6a-c16480248878\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916/subnets/subnetcrptestps4916\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353\",\r\n \"etag\": \"W/\\\"c60c5728-5419-4ce9-b7c4-d6fb956a455e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce5db7ee-cf61-4b4f-877c-5d6d21497f2d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c60c5728-5419-4ce9-b7c4-d6fb956a455e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353/subnets/subnetcrptestps5353\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -986,7 +924,7 @@ "no-cache" ], "x-ms-request-id": [ - "496a1ec4-a397-40b1-877d-8b337c9a6100" + "c3af3cae-57e4-44f8-b473-2091c32ae6ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,30 +933,30 @@ "no-cache" ], "ETag": [ - "W/\"5eb3a242-cc82-4b17-8e6a-c16480248878\"" + "W/\"c60c5728-5419-4ce9-b7c4-d6fb956a455e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14989" ], "x-ms-correlation-request-id": [ - "62217dcc-26be-4e62-abdf-0916271acde0" + "7ecc10a8-950a-41fe-8522-88ad4fec3915" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042231Z:62217dcc-26be-4e62-abdf-0916271acde0" + "SOUTHCENTRALUS:20150813T043014Z:7ecc10a8-950a-41fe-8522-88ad4fec3915" ], "Date": [ - "Thu, 06 Aug 2015 04:22:31 GMT" + "Thu, 13 Aug 2015 04:30:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,7 +964,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916\",\r\n \"etag\": \"W/\\\"5eb3a242-cc82-4b17-8e6a-c16480248878\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5e4e5cf8-5a4e-4001-b90f-a1fe270bf85d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5eb3a242-cc82-4b17-8e6a-c16480248878\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916/subnets/subnetcrptestps4916\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353\",\r\n \"etag\": \"W/\\\"c60c5728-5419-4ce9-b7c4-d6fb956a455e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce5db7ee-cf61-4b4f-877c-5d6d21497f2d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c60c5728-5419-4ce9-b7c4-d6fb956a455e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353/subnets/subnetcrptestps5353\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -1041,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "7e262012-c4e6-409d-a895-e5620bdbb8de" + "d09724b5-69e1-414c-bcbe-ceb24a032635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,32 +988,32 @@ "no-cache" ], "ETag": [ - "W/\"5eb3a242-cc82-4b17-8e6a-c16480248878\"" + "W/\"c60c5728-5419-4ce9-b7c4-d6fb956a455e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14988" ], "x-ms-correlation-request-id": [ - "ffcea404-e53a-432c-b433-94f2d0cca23f" + "34f11e92-944d-4bb2-a318-41343f93b332" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042232Z:ffcea404-e53a-432c-b433-94f2d0cca23f" + "SOUTHCENTRALUS:20150813T043014Z:34f11e92-944d-4bb2-a318-41343f93b332" ], "Date": [ - "Thu, 06 Aug 2015 04:22:31 GMT" + "Thu, 13 Aug 2015 04:30:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916/subnets/subnetcrptestps4916\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps4916\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353/subnets/subnetcrptestps5353\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps5353\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1087,7 +1025,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps4916\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916\",\r\n \"etag\": \"W/\\\"5eb3a242-cc82-4b17-8e6a-c16480248878\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5e4e5cf8-5a4e-4001-b90f-a1fe270bf85d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5eb3a242-cc82-4b17-8e6a-c16480248878\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4916\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4916/subnets/subnetcrptestps4916\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5353\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353\",\r\n \"etag\": \"W/\\\"c60c5728-5419-4ce9-b7c4-d6fb956a455e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce5db7ee-cf61-4b4f-877c-5d6d21497f2d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c60c5728-5419-4ce9-b7c4-d6fb956a455e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5353\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5353/subnets/subnetcrptestps5353\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -1102,10 +1040,10 @@ "no-cache" ], "x-ms-request-id": [ - "dd6fd219-f9d9-4cb3-a594-aaf775441b63" + "eb3f289b-a92b-4d74-b613-ae4d002ec763" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/dd6fd219-f9d9-4cb3-a594-aaf775441b63?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/eb3f289b-a92b-4d74-b613-ae4d002ec763?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1197" ], "x-ms-correlation-request-id": [ - "260be2a1-44d7-4985-8548-471af199ca21" + "e93a6bbc-7246-484e-841a-80e572f465a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042231Z:260be2a1-44d7-4985-8548-471af199ca21" + "SOUTHCENTRALUS:20150813T043014Z:e93a6bbc-7246-484e-841a-80e572f465a9" ], "Date": [ - "Thu, 06 Aug 2015 04:22:31 GMT" + "Thu, 13 Aug 2015 04:30:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/dd6fd219-f9d9-4cb3-a594-aaf775441b63?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGQ2ZmQyMTktZjlkOS00Y2IzLWE1OTQtYWFmNzc1NDQxYjYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/eb3f289b-a92b-4d74-b613-ae4d002ec763?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIzZjI4OWItYTkyYi00ZDc0LWI2MTMtYWU0ZDAwMmVjNzYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1160,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "d6662100-1e2b-43aa-a580-630f92a7af81" + "d01f1db1-5dcc-4e29-9220-73fd9285de21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14990" ], "x-ms-correlation-request-id": [ - "cd0ab681-0025-4701-8af7-ccb43c0a8499" + "ea9ba6f0-9cbe-45eb-8cb1-9fffb9b6acc0" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042231Z:cd0ab681-0025-4701-8af7-ccb43c0a8499" + "SOUTHCENTRALUS:20150813T043014Z:ea9ba6f0-9cbe-45eb-8cb1-9fffb9b6acc0" ], "Date": [ - "Thu, 06 Aug 2015 04:22:31 GMT" + "Thu, 13 Aug 2015 04:30:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Storage/storageAccounts/stocrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0OTE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Storage/storageAccounts/stocrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1MzUzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1200,7 +1138,7 @@ "88" ], "x-ms-client-request-id": [ - "f1b40bba-9a91-4d1b-b3cb-7345dd72bf7b" + "c0f777da-c53a-4ce8-8407-19c00d8e14d8" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1224,44 +1162,44 @@ "25" ], "x-ms-request-id": [ - "cbca715a-9477-4559-aebb-7d68f231ec83" + "9c31dee7-85d5-4540-85c5-bb70b7d977a7" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cbca715a-9477-4559-aebb-7d68f231ec83?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/9c31dee7-85d5-4540-85c5-bb70b7d977a7?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "825c2e92-bff7-4675-affe-6a795ebefef1" + "cae6841c-50e4-45cd-9462-8a4802cd8452" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042234Z:825c2e92-bff7-4675-affe-6a795ebefef1" + "SOUTHCENTRALUS:20150813T043018Z:cae6841c-50e4-45cd-9462-8a4802cd8452" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 04:22:33 GMT" + "Thu, 13 Aug 2015 04:30:17 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cbca715a-9477-4559-aebb-7d68f231ec83?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NiY2E3MTVhLTk0NzctNDU1OS1hZWJiLTdkNjhmMjMxZWM4Mz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/9c31dee7-85d5-4540-85c5-bb70b7d977a7?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzljMzFkZWU3LTg1ZDUtNDU0MC04NWM1LWJiNzBiN2Q5NzdhNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb985b70-8ad3-4334-a663-4e6b0c0c7603" + "7c6a94b6-d825-40e5-a47d-7701eb52218f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1285,44 +1223,44 @@ "25" ], "x-ms-request-id": [ - "ee2b4665-1060-416f-89ff-b5bd0221eb87" + "c6ee540e-1c13-4607-83a2-f921f450930a" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cbca715a-9477-4559-aebb-7d68f231ec83?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/9c31dee7-85d5-4540-85c5-bb70b7d977a7?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "c51bad53-acff-4da4-b481-c322d14a15bf" + "e7d1c211-6869-4740-bb51-01e543018644" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042234Z:c51bad53-acff-4da4-b481-c322d14a15bf" + "SOUTHCENTRALUS:20150813T043018Z:e7d1c211-6869-4740-bb51-01e543018644" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 04:22:33 GMT" + "Thu, 13 Aug 2015 04:30:17 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cbca715a-9477-4559-aebb-7d68f231ec83?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NiY2E3MTVhLTk0NzctNDU1OS1hZWJiLTdkNjhmMjMxZWM4Mz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/9c31dee7-85d5-4540-85c5-bb70b7d977a7?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzljMzFkZWU3LTg1ZDUtNDU0MC04NWM1LWJiNzBiN2Q5NzdhNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "256081c8-ab0f-4fe9-b20e-68839d29241f" + "0ea569d5-69a4-44cb-9ce6-370cbcfddc0d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1343,7 +1281,7 @@ "no-cache" ], "x-ms-request-id": [ - "c484fa73-b2c3-40a2-908a-25caa4e5ab13" + "4b29b38d-9530-46b8-a0c4-6236fd0fcb66" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1291,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "c5009dd4-a5fa-465f-8bd0-ac5b8f84f17a" + "de454167-ff68-40d2-abe7-edd566bd3951" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042259Z:c5009dd4-a5fa-465f-8bd0-ac5b8f84f17a" + "SOUTHCENTRALUS:20150813T043043Z:de454167-ff68-40d2-abe7-edd566bd3951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 04:22:58 GMT" + "Thu, 13 Aug 2015 04:30:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Storage/storageAccounts/stocrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0OTE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Storage/storageAccounts/stocrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1MzUzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7368b6d1-da50-4e3b-8a52-8ec19197552e" + "b1e8537d-4a2f-4cfe-bfa7-086924e46555" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Storage/storageAccounts/stocrptestps4916\",\r\n \"name\": \"stocrptestps4916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4916.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4916.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4916.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-06T04:22:32.7165205Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Storage/storageAccounts/stocrptestps5353\",\r\n \"name\": \"stocrptestps5353\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5353.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5353.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5353.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T04:30:15.7233388Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1398,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "4815a0e1-7026-4b4d-bbee-7ab417061b21" + "40416523-8742-495e-8ed9-4f165293246c" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1346,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "90059465-50bd-4a24-a9b5-c788047b771f" + "01a04e8f-e731-45dc-8e33-dfcb2cc47e7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042259Z:90059465-50bd-4a24-a9b5-c788047b771f" + "SOUTHCENTRALUS:20150813T043043Z:01a04e8f-e731-45dc-8e33-dfcb2cc47e7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 04:22:59 GMT" + "Thu, 13 Aug 2015 04:30:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Storage/storageAccounts/stocrptestps4916?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0OTE2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Storage/storageAccounts/stocrptestps5353?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1MzUzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3c391ee-7fe0-4c4b-81de-77edfdd9bd5c" + "dc1db7f2-2af0-4b27-ae40-af6d7c18a1f8" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Storage/storageAccounts/stocrptestps4916\",\r\n \"name\": \"stocrptestps4916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4916.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4916.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4916.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-06T04:22:32.7165205Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Storage/storageAccounts/stocrptestps5353\",\r\n \"name\": \"stocrptestps5353\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5353.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5353.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5353.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T04:30:15.7233388Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1453,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "ec6b1c54-953e-4517-af65-2bd217d5f367" + "7829b340-25d8-49a7-9ddd-619f3da2bb35" ], "Cache-Control": [ "no-cache" @@ -1463,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14996" ], "x-ms-correlation-request-id": [ - "466dc0a0-5c0d-44b5-bd69-a7e7980af5da" + "37f872e3-4e20-4fc8-a968-7d4761fcd55c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042300Z:466dc0a0-5c0d-44b5-bd69-a7e7980af5da" + "SOUTHCENTRALUS:20150813T043043Z:37f872e3-4e20-4fc8-a968-7d4761fcd55c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 04:22:59 GMT" + "Thu, 13 Aug 2015 04:30:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Storage/storageAccounts/stocrptestps4916/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0OTE2L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Storage/storageAccounts/stocrptestps5353/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1MzUzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c5c224d-638e-44c5-aacb-bfd67bea3ce4" + "d21b5c93-04df-4780-84dc-d8188360de44" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"sTQB7wbuCVsFDvgXBrQqDEgTV1ILbgcb0z5lawxOaqnDtjDEw52qO+Px1ggLSKc1g7JlylirGfXbjodacRfzgA==\",\r\n \"key2\": \"ieB4yWVYSiKtN9qENRa8Xs6fKHZitp6oQLqciLb1adJ7F1svSKWIn0gdR7OP4SjyrdncoKR704USYkLYxEuUtg==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"XC2LmJnsd/ugRxQY6nmcNZx6AxwLj2wR5UiVGGqCu5xyS9y+nZKMel/AKwMl/SyrpvIyoqGRdHS9/ik2fv1bIw==\",\r\n \"key2\": \"22TTjmhGEjb+VI2InLdmJvCVmyOwH/ZS/qK6iZQxEiTU2ajoxb1ABWLyBsz7R/78qYW65IO/aA0p9jQD32ySSQ==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "197" @@ -1508,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "f02758c0-73dc-488b-ab59-68515e21b467" + "dbd5aeb5-09a4-4445-9cde-085f12c962bb" ], "Cache-Control": [ "no-cache" @@ -1518,28 +1456,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "02ac3b0d-9970-49fe-a2df-f243445d8797" + "e05b61ac-eb1c-4936-bdd3-cfbbc0dec512" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042300Z:02ac3b0d-9970-49fe-a2df-f243445d8797" + "SOUTHCENTRALUS:20150813T043044Z:e05b61ac-eb1c-4936-bdd3-cfbbc0dec512" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 04:22:59 GMT" + "Thu, 13 Aug 2015 04:30:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps4916\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps4916\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps5353\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5353\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1548,10 +1486,10 @@ "1719" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916\",\r\n \"name\": \"vmcrptestps4916\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353\",\r\n \"name\": \"vmcrptestps5353\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1934" @@ -1566,16 +1504,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "ba587030-d706-437a-9d85-2341f4a75134" + "f26e84bc-d70f-4451-9d40-a605ff71d0b9" ], "Cache-Control": [ "no-cache" @@ -1585,31 +1523,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1198" ], "x-ms-correlation-request-id": [ - "01db7f2b-f7be-49c6-b8b2-b1c3bd076e72" + "26035e35-bcad-414d-b010-58850056641d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042302Z:01db7f2b-f7be-49c6-b8b2-b1c3bd076e72" + "SOUTHCENTRALUS:20150813T043046Z:26035e35-bcad-414d-b010-58850056641d" ], "Date": [ - "Thu, 06 Aug 2015 04:23:01 GMT" + "Thu, 13 Aug 2015 04:30:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1627,10 +1565,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "7520894b-a464-451b-97e0-5e3e869caeaa" + "5e44f190-f49a-4a5e-8d80-7090af4fd619" ], "Cache-Control": [ "no-cache" @@ -1640,31 +1578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14974" ], "x-ms-correlation-request-id": [ - "e7c7d46a-c5bc-4df5-a4e9-bc0d374099b8" + "d5217aac-3113-4547-ad3e-dd937b139193" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042302Z:e7c7d46a-c5bc-4df5-a4e9-bc0d374099b8" + "SOUTHCENTRALUS:20150813T043047Z:d5217aac-3113-4547-ad3e-dd937b139193" ], "Date": [ - "Thu, 06 Aug 2015 04:23:02 GMT" + "Thu, 13 Aug 2015 04:30:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1682,10 +1620,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "7697667f-1787-412d-b302-38632b30966f" + "a1d0e0da-1f91-407d-8c89-5346d139610c" ], "Cache-Control": [ "no-cache" @@ -1695,31 +1633,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14973" ], "x-ms-correlation-request-id": [ - "db7d6c2b-d415-4e3b-8d82-576a4ad37f7a" + "2edfb75d-b926-4110-a73b-98a5444dceb0" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042332Z:db7d6c2b-d415-4e3b-8d82-576a4ad37f7a" + "SOUTHCENTRALUS:20150813T043117Z:2edfb75d-b926-4110-a73b-98a5444dceb0" ], "Date": [ - "Thu, 06 Aug 2015 04:23:32 GMT" + "Thu, 13 Aug 2015 04:31:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1737,10 +1675,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "d4dd0a7b-a7c0-4dc2-836d-a69324a56d71" + "a42caeea-600d-4de5-87a5-58598000ab5a" ], "Cache-Control": [ "no-cache" @@ -1750,31 +1688,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14972" ], "x-ms-correlation-request-id": [ - "f27409f1-5257-44e8-bba7-d960d8db7d00" + "44debbfa-c36c-4436-b192-c60ada58df1e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042402Z:f27409f1-5257-44e8-bba7-d960d8db7d00" + "SOUTHCENTRALUS:20150813T043147Z:44debbfa-c36c-4436-b192-c60ada58df1e" ], "Date": [ - "Thu, 06 Aug 2015 04:24:02 GMT" + "Thu, 13 Aug 2015 04:31:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1792,10 +1730,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "0d9cc9a5-27dc-4549-aac9-1ed0e64eaad7" + "1a00aa8d-7e7c-4b1e-a018-642c524d1dca" ], "Cache-Control": [ "no-cache" @@ -1805,31 +1743,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14971" ], "x-ms-correlation-request-id": [ - "d5d3fb14-748a-4939-8e78-e5680a38f946" + "a3c2e858-05a4-4f68-9779-9b9d8fff2355" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042432Z:d5d3fb14-748a-4939-8e78-e5680a38f946" + "SOUTHCENTRALUS:20150813T043217Z:a3c2e858-05a4-4f68-9779-9b9d8fff2355" ], "Date": [ - "Thu, 06 Aug 2015 04:24:31 GMT" + "Thu, 13 Aug 2015 04:32:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1847,10 +1785,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "51816be4-373d-4a89-81ce-3defdff6af8b" + "d32cecef-eb03-432c-8dd4-9dda6e5b8221" ], "Cache-Control": [ "no-cache" @@ -1860,31 +1798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14970" ], "x-ms-correlation-request-id": [ - "83e17ee0-a44e-42f7-95a2-140e85dd1949" + "965a4301-4bb7-4224-b5f0-dc77b7b4b100" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042502Z:83e17ee0-a44e-42f7-95a2-140e85dd1949" + "SOUTHCENTRALUS:20150813T043248Z:965a4301-4bb7-4224-b5f0-dc77b7b4b100" ], "Date": [ - "Thu, 06 Aug 2015 04:25:02 GMT" + "Thu, 13 Aug 2015 04:32:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1902,10 +1840,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "574086d5-92d3-438d-88ea-b32b6f192d75" + "34ef8ca3-9cd0-4d35-977b-13e4ded20e46" ], "Cache-Control": [ "no-cache" @@ -1915,31 +1853,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14969" ], "x-ms-correlation-request-id": [ - "6071be8f-6dbe-4851-a21a-a75afcf939c9" + "427d0345-a180-4129-8574-843138d6d5bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042532Z:6071be8f-6dbe-4851-a21a-a75afcf939c9" + "SOUTHCENTRALUS:20150813T043318Z:427d0345-a180-4129-8574-843138d6d5bb" ], "Date": [ - "Thu, 06 Aug 2015 04:25:31 GMT" + "Thu, 13 Aug 2015 04:33:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1957,10 +1895,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "9c578b0f-7c00-4beb-a1a2-1996874c2d7e" + "450c5fb6-8656-4ad1-a66f-7a37bf1fced3" ], "Cache-Control": [ "no-cache" @@ -1970,31 +1908,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14968" ], "x-ms-correlation-request-id": [ - "4930fef4-fab7-40c5-b48b-321f6cf18042" + "3b3a8bd8-1b1b-4a46-b3f3-a930d9661149" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042602Z:4930fef4-fab7-40c5-b48b-321f6cf18042" + "SOUTHCENTRALUS:20150813T043348Z:3b3a8bd8-1b1b-4a46-b3f3-a930d9661149" ], "Date": [ - "Thu, 06 Aug 2015 04:26:02 GMT" + "Thu, 13 Aug 2015 04:33:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2012,10 +1950,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "0b99d157-d41d-43b1-95bf-d09babb4a34e" + "c3a7abe3-25e1-4e9e-9d06-583be9d3a7c3" ], "Cache-Control": [ "no-cache" @@ -2025,31 +1963,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14967" ], "x-ms-correlation-request-id": [ - "adeff6f0-77ab-403a-82ba-934ce0047679" + "80f35630-a8ce-4cbd-a6ee-c1e137db3831" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042633Z:adeff6f0-77ab-403a-82ba-934ce0047679" + "SOUTHCENTRALUS:20150813T043419Z:80f35630-a8ce-4cbd-a6ee-c1e137db3831" ], "Date": [ - "Thu, 06 Aug 2015 04:26:33 GMT" + "Thu, 13 Aug 2015 04:34:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2067,10 +2005,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "3df49c81-6c52-43c1-8f51-e6858cca1b87" + "079b394a-0116-4d4f-b050-83e9e2f574b1" ], "Cache-Control": [ "no-cache" @@ -2080,31 +2018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14966" ], "x-ms-correlation-request-id": [ - "b2a83eb3-716e-4aa5-85ad-3a2fe5ad32a1" + "1c570877-f3eb-44ea-b126-2844ef60057e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042703Z:b2a83eb3-716e-4aa5-85ad-3a2fe5ad32a1" + "SOUTHCENTRALUS:20150813T043449Z:1c570877-f3eb-44ea-b126-2844ef60057e" ], "Date": [ - "Thu, 06 Aug 2015 04:27:03 GMT" + "Thu, 13 Aug 2015 04:34:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2122,10 +2060,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "260a5aaf-a1f1-4ff9-bf7d-a2c2689fac96" + "bcfab3b5-be85-4c04-83a3-68bebb4a671a" ], "Cache-Control": [ "no-cache" @@ -2135,31 +2073,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14965" ], "x-ms-correlation-request-id": [ - "cb837899-ee20-42e0-a207-a999cd6e95e0" + "006e6419-0958-4602-823a-dfc034007437" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042733Z:cb837899-ee20-42e0-a207-a999cd6e95e0" + "SOUTHCENTRALUS:20150813T043519Z:006e6419-0958-4602-823a-dfc034007437" ], "Date": [ - "Thu, 06 Aug 2015 04:27:33 GMT" + "Thu, 13 Aug 2015 04:35:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2177,10 +2115,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "c900bd04-c84f-4399-81a7-5c88f8768c03" + "59235dc3-d0cd-4dae-af29-74ef4d8d6871" ], "Cache-Control": [ "no-cache" @@ -2190,31 +2128,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14964" ], "x-ms-correlation-request-id": [ - "79a5b864-0152-4272-84be-1f24d813ef1a" + "f1b0b3c7-8706-464c-b087-17ce03dff0f9" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042803Z:79a5b864-0152-4272-84be-1f24d813ef1a" + "SOUTHCENTRALUS:20150813T043550Z:f1b0b3c7-8706-464c-b087-17ce03dff0f9" ], "Date": [ - "Thu, 06 Aug 2015 04:28:03 GMT" + "Thu, 13 Aug 2015 04:35:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2232,10 +2170,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "c1ddc3c1-fabe-4e53-a1ee-03dc6327f4ef" + "fea43176-34fa-4b95-b4ec-867a50d864b8" ], "Cache-Control": [ "no-cache" @@ -2245,34 +2183,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14963" ], "x-ms-correlation-request-id": [ - "a51643d9-9a89-4afb-9478-30a463ede80f" + "2a8caa5a-a665-4941-b052-569e37ff0e00" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042833Z:a51643d9-9a89-4afb-9478-30a463ede80f" + "SOUTHCENTRALUS:20150813T043620Z:2a8caa5a-a665-4941-b052-569e37ff0e00" ], "Date": [ - "Thu, 06 Aug 2015 04:28:33 GMT" + "Thu, 13 Aug 2015 04:36:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f26e84bc-d70f-4451-9d40-a605ff71d0b9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjI2ZTg0YmMtZDcwZi00NDUxLTlkNDAtYTYwNWZmNzFkMGI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f26e84bc-d70f-4451-9d40-a605ff71d0b9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T21:30:46.3867502-07:00\",\r\n \"endTime\": \"2015-08-12T21:36:32.435856-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2287,10 +2225,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "6f2c067c-9ce9-494e-aac8-5c63c0522987" + "8d5d2a81-0111-4fc0-9c86-b69da55d8e8a" ], "Cache-Control": [ "no-cache" @@ -2300,34 +2238,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14962" ], "x-ms-correlation-request-id": [ - "7461134b-a2d8-443c-b43b-29c097b8f81d" + "040ba442-446a-4320-899c-27fca531a872" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042903Z:7461134b-a2d8-443c-b43b-29c097b8f81d" + "SOUTHCENTRALUS:20150813T043650Z:040ba442-446a-4320-899c-27fca531a872" ], "Date": [ - "Thu, 06 Aug 2015 04:29:02 GMT" + "Thu, 13 Aug 2015 04:36:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ba587030-d706-437a-9d85-2341f4a75134?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmE1ODcwMzAtZDcwNi00MzdhLTlkODUtMjM0MWY0YTc1MTM0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353/extensions/crptestps5353ext?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczUzNTMvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM1MzUzZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\",\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\"\r\n ]\r\n }\r\n },\r\n \"name\": \"crptestps5353ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "811" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ba587030-d706-437a-9d85-2341f4a75134\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-05T21:23:01.5422106-07:00\",\r\n \"endTime\": \"2015-08-05T21:29:05.5758478-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\",\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353/extensions/crptestps5353ext\",\r\n \"name\": \"crptestps5353ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "978" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2338,14 +2282,17 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "8211dee0-070b-4254-9002-7bb2702ecfc8" + "3c1d4757-bf9b-4ed6-a8cc-24e2c917155b" ], "Cache-Control": [ "no-cache" @@ -2354,41 +2301,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "fc21cb3d-1594-4de7-85c9-18ba8ace7413" + "40c8456d-37b5-4bcb-b979-b02a8cb0154e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042933Z:fc21cb3d-1594-4de7-85c9-18ba8ace7413" + "SOUTHCENTRALUS:20150813T043652Z:40c8456d-37b5-4bcb-b979-b02a8cb0154e" ], "Date": [ - "Thu, 06 Aug 2015 04:29:33 GMT" + "Thu, 13 Aug 2015 04:36:52 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916/extensions/crptestps4916ext?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ5MTYvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM0OTE2ZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\",\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\"\r\n ]\r\n }\r\n },\r\n \"name\": \"crptestps4916ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "823" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\",\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916/extensions/crptestps4916ext\",\r\n \"name\": \"crptestps4916ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "990" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2399,17 +2340,14 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe" + "5f6ac198-124f-4c57-8ea3-1318229eb299" ], "Cache-Control": [ "no-cache" @@ -2418,32 +2356,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" ], "x-ms-correlation-request-id": [ - "63dc03db-0a00-4aa6-ad88-36996e639295" + "e94a3879-db4a-4d46-87be-5d2e5c464111" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042934Z:63dc03db-0a00-4aa6-ad88-36996e639295" + "SOUTHCENTRALUS:20150813T043653Z:e94a3879-db4a-4d46-87be-5d2e5c464111" ], "Date": [ - "Thu, 06 Aug 2015 04:29:34 GMT" + "Thu, 13 Aug 2015 04:36:52 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2461,10 +2399,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "21a8fdbd-6cd6-468c-95f5-f3d4c27605f0" + "9d7a78d3-7fab-41c1-9b9a-3629345d56e3" ], "Cache-Control": [ "no-cache" @@ -2474,31 +2412,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14960" ], "x-ms-correlation-request-id": [ - "4c034f46-efcb-4a10-8765-355f8f023e3b" + "c12c51aa-85cc-4230-9a06-78c18c19f92a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T042935Z:4c034f46-efcb-4a10-8765-355f8f023e3b" + "SOUTHCENTRALUS:20150813T043723Z:c12c51aa-85cc-4230-9a06-78c18c19f92a" ], "Date": [ - "Thu, 06 Aug 2015 04:29:34 GMT" + "Thu, 13 Aug 2015 04:37:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2516,10 +2454,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "608f6d32-2ccb-4669-870d-e3d31ac7c662" + "bcf5206f-bd6e-40c6-9e9d-79121fcc1bac" ], "Cache-Control": [ "no-cache" @@ -2529,31 +2467,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14959" ], "x-ms-correlation-request-id": [ - "4cb24ae8-9d75-4291-8882-699b309c7365" + "8db95282-f921-42b4-a5da-455da7982dda" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043005Z:4cb24ae8-9d75-4291-8882-699b309c7365" + "SOUTHCENTRALUS:20150813T043753Z:8db95282-f921-42b4-a5da-455da7982dda" ], "Date": [ - "Thu, 06 Aug 2015 04:30:04 GMT" + "Thu, 13 Aug 2015 04:37:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2571,10 +2509,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "f3b8f475-2487-45a4-ab41-acb2c3d334cb" + "569e78b2-7be8-4d70-a9e3-d97743ecf1e8" ], "Cache-Control": [ "no-cache" @@ -2584,31 +2522,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14958" ], "x-ms-correlation-request-id": [ - "7bff8c13-0dbb-4361-84a9-6f8f55512ca5" + "ebca5dcf-0734-494f-b3de-030e424b39c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043035Z:7bff8c13-0dbb-4361-84a9-6f8f55512ca5" + "SOUTHCENTRALUS:20150813T043823Z:ebca5dcf-0734-494f-b3de-030e424b39c6" ], "Date": [ - "Thu, 06 Aug 2015 04:30:34 GMT" + "Thu, 13 Aug 2015 04:38:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2626,10 +2564,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "cd782e11-7953-4c2a-833b-d42e719b8bc9" + "1c026bf5-ac26-4056-8c4c-2468342cb241" ], "Cache-Control": [ "no-cache" @@ -2639,31 +2577,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14957" ], "x-ms-correlation-request-id": [ - "ca7e4a8b-2487-4c47-bb28-732194b27779" + "52c3d91b-8fbb-436d-976e-1e19819e6afa" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043105Z:ca7e4a8b-2487-4c47-bb28-732194b27779" + "SOUTHCENTRALUS:20150813T043854Z:52c3d91b-8fbb-436d-976e-1e19819e6afa" ], "Date": [ - "Thu, 06 Aug 2015 04:31:04 GMT" + "Thu, 13 Aug 2015 04:38:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2681,10 +2619,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "77090593-4c24-4b15-9b49-34fed7948759" + "c58bb2ef-8a58-4267-b603-238c18e4c614" ], "Cache-Control": [ "no-cache" @@ -2694,31 +2632,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14956" ], "x-ms-correlation-request-id": [ - "d4cf5283-de33-4404-bc78-f17b900db7a5" + "c7cd8abe-389b-4d88-90b5-6d64a42da607" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043135Z:d4cf5283-de33-4404-bc78-f17b900db7a5" + "SOUTHCENTRALUS:20150813T043924Z:c7cd8abe-389b-4d88-90b5-6d64a42da607" ], "Date": [ - "Thu, 06 Aug 2015 04:31:35 GMT" + "Thu, 13 Aug 2015 04:39:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2736,10 +2674,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "1828ca3d-73fc-48ed-a43b-51f9d4ad2a8b" + "b6439811-537d-4467-9b2e-1beb86c81103" ], "Cache-Control": [ "no-cache" @@ -2749,31 +2687,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14955" ], "x-ms-correlation-request-id": [ - "0d471756-130e-4d09-9350-8059519698e8" + "a3d3adca-1292-4f05-9ecf-f80903b73a4a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043205Z:0d471756-130e-4d09-9350-8059519698e8" + "SOUTHCENTRALUS:20150813T043954Z:a3d3adca-1292-4f05-9ecf-f80903b73a4a" ], "Date": [ - "Thu, 06 Aug 2015 04:32:05 GMT" + "Thu, 13 Aug 2015 04:39:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2791,10 +2729,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "080f3abd-915b-47cb-aec8-c990741ccf34" + "9b27fb16-7d57-4a5a-9e9f-8ea3c520503a" ], "Cache-Control": [ "no-cache" @@ -2804,31 +2742,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14954" ], "x-ms-correlation-request-id": [ - "dbabeced-9cba-4b25-8edd-2c2cbab0e979" + "69559f9d-a01a-4d85-b158-7426efc8beba" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043235Z:dbabeced-9cba-4b25-8edd-2c2cbab0e979" + "SOUTHCENTRALUS:20150813T044025Z:69559f9d-a01a-4d85-b158-7426efc8beba" ], "Date": [ - "Thu, 06 Aug 2015 04:32:35 GMT" + "Thu, 13 Aug 2015 04:40:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2846,10 +2784,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "3a390497-bb07-4cab-b2d2-2aad07db4a12" + "da8eb0f3-b083-4897-b89b-d7005e303f11" ], "Cache-Control": [ "no-cache" @@ -2859,31 +2797,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14953" ], "x-ms-correlation-request-id": [ - "743319a7-d8eb-4154-b1c8-410a07d60f2f" + "4bfaca21-a4d1-41c6-a681-e3457c3e45c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043306Z:743319a7-d8eb-4154-b1c8-410a07d60f2f" + "SOUTHCENTRALUS:20150813T044055Z:4bfaca21-a4d1-41c6-a681-e3457c3e45c1" ], "Date": [ - "Thu, 06 Aug 2015 04:33:05 GMT" + "Thu, 13 Aug 2015 04:40:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2901,10 +2839,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "a1505163-a34d-4438-85b7-2ad4b00991e8" + "434f24f7-4717-4a82-a837-b8cd349b22ee" ], "Cache-Control": [ "no-cache" @@ -2914,31 +2852,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14952" ], "x-ms-correlation-request-id": [ - "da86ed8c-d0e0-4be0-a86e-0aca9932f011" + "e885edc2-3546-4d5e-ae19-8dc34cedd35a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043336Z:da86ed8c-d0e0-4be0-a86e-0aca9932f011" + "SOUTHCENTRALUS:20150813T044125Z:e885edc2-3546-4d5e-ae19-8dc34cedd35a" ], "Date": [ - "Thu, 06 Aug 2015 04:33:35 GMT" + "Thu, 13 Aug 2015 04:41:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2956,10 +2894,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "2c70d7b1-1273-4532-947c-b450de88979c" + "d5e08e32-5b14-437e-b8ea-1009626a361a" ], "Cache-Control": [ "no-cache" @@ -2969,31 +2907,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14951" ], "x-ms-correlation-request-id": [ - "03a2e561-3b52-4fd6-86cc-39d7195e6c1d" + "93e2fbd1-a0e0-4817-aeb3-243da2d6695b" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043406Z:03a2e561-3b52-4fd6-86cc-39d7195e6c1d" + "SOUTHCENTRALUS:20150813T044155Z:93e2fbd1-a0e0-4817-aeb3-243da2d6695b" ], "Date": [ - "Thu, 06 Aug 2015 04:34:05 GMT" + "Thu, 13 Aug 2015 04:41:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3011,10 +2949,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "db5fb2f9-b141-4528-a42a-6ce9295c0ddc" + "a2386642-e54e-4a8b-a9a1-fffe25e9df7e" ], "Cache-Control": [ "no-cache" @@ -3024,31 +2962,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14950" ], "x-ms-correlation-request-id": [ - "e5c732fa-b93b-43d7-894f-0fe2d3c70d33" + "94e3cc21-2633-4ef1-b52e-09494f626a43" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043436Z:e5c732fa-b93b-43d7-894f-0fe2d3c70d33" + "SOUTHCENTRALUS:20150813T044226Z:94e3cc21-2633-4ef1-b52e-09494f626a43" ], "Date": [ - "Thu, 06 Aug 2015 04:34:35 GMT" + "Thu, 13 Aug 2015 04:42:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3066,10 +3004,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "ddb1bfe6-9615-445a-aa25-148924ade580" + "a72a2318-a5d4-4b69-86b6-d1109dbc68ca" ], "Cache-Control": [ "no-cache" @@ -3079,86 +3017,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "77d4fdc9-dfff-40f2-9343-d1adc4186c59" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T043506Z:77d4fdc9-dfff-40f2-9343-d1adc4186c59" - ], - "Date": [ - "Thu, 06 Aug 2015 04:35:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" - ], - "x-ms-request-id": [ - "8fe5c907-8e6f-4496-8b5a-0a19fc9d9fb2" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14949" ], "x-ms-correlation-request-id": [ - "61e955ca-3c27-4a89-b303-2ca8b4aa642f" + "dfcdad67-bed8-414e-af55-40f3950f1b9d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043536Z:61e955ca-3c27-4a89-b303-2ca8b4aa642f" + "SOUTHCENTRALUS:20150813T044256Z:dfcdad67-bed8-414e-af55-40f3950f1b9d" ], "Date": [ - "Thu, 06 Aug 2015 04:35:36 GMT" + "Thu, 13 Aug 2015 04:42:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3176,10 +3059,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "d0235224-9e0c-45c3-9622-884f4a146596" + "b9ff4878-8bfc-4c55-ad1c-c90f48d93837" ], "Cache-Control": [ "no-cache" @@ -3189,31 +3072,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14948" ], "x-ms-correlation-request-id": [ - "080adf74-6472-4267-82a0-78640825435d" + "4ab650fc-bcc8-4117-906e-7761f6d04de1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043606Z:080adf74-6472-4267-82a0-78640825435d" + "SOUTHCENTRALUS:20150813T044326Z:4ab650fc-bcc8-4117-906e-7761f6d04de1" ], "Date": [ - "Thu, 06 Aug 2015 04:36:06 GMT" + "Thu, 13 Aug 2015 04:43:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3231,10 +3114,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "30e852c1-ccb7-4798-ab65-05c8421a7d3b" + "f00f93a7-bbb7-4f36-babf-4a76848791b8" ], "Cache-Control": [ "no-cache" @@ -3244,31 +3127,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14947" ], "x-ms-correlation-request-id": [ - "333a60ad-3561-4e84-a9b2-ef45ce444816" + "ae9ea8ee-be39-478a-b234-0feac8c321ea" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043637Z:333a60ad-3561-4e84-a9b2-ef45ce444816" + "SOUTHCENTRALUS:20150813T044357Z:ae9ea8ee-be39-478a-b234-0feac8c321ea" ], "Date": [ - "Thu, 06 Aug 2015 04:36:36 GMT" + "Thu, 13 Aug 2015 04:43:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3286,10 +3169,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "06a1b291-76a3-484e-9bd7-7c55f6bf6408" + "9b7eeb89-3a11-4dd4-831c-696c6fe1db57" ], "Cache-Control": [ "no-cache" @@ -3299,31 +3182,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14946" ], "x-ms-correlation-request-id": [ - "2c9a7ba4-f367-4c67-ab3e-8ea975a66618" + "987121db-4d47-4587-b9d2-57abcbf7c1ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043707Z:2c9a7ba4-f367-4c67-ab3e-8ea975a66618" + "SOUTHCENTRALUS:20150813T044427Z:987121db-4d47-4587-b9d2-57abcbf7c1ee" ], "Date": [ - "Thu, 06 Aug 2015 04:37:06 GMT" + "Thu, 13 Aug 2015 04:44:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3341,10 +3224,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "511638b3-0997-4f4b-9a5e-d7a3b0f2f919" + "a3c1663b-bedb-48d9-8ea8-8b4085cb4796" ], "Cache-Control": [ "no-cache" @@ -3354,31 +3237,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14945" ], "x-ms-correlation-request-id": [ - "79b4f043-b1d0-47a3-865a-292dd01cd164" + "f9dd459f-eeae-4cde-94d0-1216f738b150" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043737Z:79b4f043-b1d0-47a3-865a-292dd01cd164" + "SOUTHCENTRALUS:20150813T044457Z:f9dd459f-eeae-4cde-94d0-1216f738b150" ], "Date": [ - "Thu, 06 Aug 2015 04:37:36 GMT" + "Thu, 13 Aug 2015 04:44:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3396,10 +3279,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "f697515b-1cd1-492c-a7dc-1d7d8ae0b65b" + "a8826ce2-2d35-4ffd-9d96-566346bfb25c" ], "Cache-Control": [ "no-cache" @@ -3409,31 +3292,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14944" ], "x-ms-correlation-request-id": [ - "400ad785-9ea5-4b43-abf3-1763187c12c2" + "0576ca47-13de-47fd-8bc0-db528fe973f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043807Z:400ad785-9ea5-4b43-abf3-1763187c12c2" + "SOUTHCENTRALUS:20150813T044528Z:0576ca47-13de-47fd-8bc0-db528fe973f3" ], "Date": [ - "Thu, 06 Aug 2015 04:38:07 GMT" + "Thu, 13 Aug 2015 04:45:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3451,10 +3334,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "61cae3cd-ae66-4cd7-9c1f-6ff5b232a425" + "0781cb2e-ba50-4f4b-ac9c-99bc3f126a43" ], "Cache-Control": [ "no-cache" @@ -3464,31 +3347,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14943" ], "x-ms-correlation-request-id": [ - "ec458578-a0f2-45ab-a33e-2741c364063f" + "1f867fc6-bb44-42d0-b617-ec4eaac47a45" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043837Z:ec458578-a0f2-45ab-a33e-2741c364063f" + "SOUTHCENTRALUS:20150813T044558Z:1f867fc6-bb44-42d0-b617-ec4eaac47a45" ], "Date": [ - "Thu, 06 Aug 2015 04:38:37 GMT" + "Thu, 13 Aug 2015 04:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3506,10 +3389,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "62398dc0-41d2-41c6-bb82-b765bdce256b" + "785d39f2-a306-4bcd-8918-9898774e9b4a" ], "Cache-Control": [ "no-cache" @@ -3519,31 +3402,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14942" ], "x-ms-correlation-request-id": [ - "2b5e4680-ddb9-4bfd-ba7f-a67b61877e87" + "73cd9bae-5a2e-44c6-bf47-0916adfe1112" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043907Z:2b5e4680-ddb9-4bfd-ba7f-a67b61877e87" + "SOUTHCENTRALUS:20150813T044628Z:73cd9bae-5a2e-44c6-bf47-0916adfe1112" ], "Date": [ - "Thu, 06 Aug 2015 04:39:07 GMT" + "Thu, 13 Aug 2015 04:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3561,10 +3444,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "da1064cf-f137-4158-ad16-e64b3ab054a0" + "e57e572a-fed9-4f94-8839-14c989aca031" ], "Cache-Control": [ "no-cache" @@ -3574,31 +3457,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14941" ], "x-ms-correlation-request-id": [ - "38cc5dbc-e3e8-4a44-a4c7-a9b1b0f4aaba" + "b204bb7e-69ed-4b1d-a0c3-a4820393c5b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T043937Z:38cc5dbc-e3e8-4a44-a4c7-a9b1b0f4aaba" + "SOUTHCENTRALUS:20150813T044658Z:b204bb7e-69ed-4b1d-a0c3-a4820393c5b6" ], "Date": [ - "Thu, 06 Aug 2015 04:39:37 GMT" + "Thu, 13 Aug 2015 04:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3616,10 +3499,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "9a55b7b6-ca18-4bc9-9cf3-9f3838223547" + "d3b9016c-754d-44dd-b856-55b5a4c09206" ], "Cache-Control": [ "no-cache" @@ -3629,31 +3512,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14940" ], "x-ms-correlation-request-id": [ - "a9d75ebb-c2ab-491e-aa4c-03733df6dc4e" + "8b678f5c-6923-4d32-b8c4-d48d7d1d521a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044007Z:a9d75ebb-c2ab-491e-aa4c-03733df6dc4e" + "SOUTHCENTRALUS:20150813T044729Z:8b678f5c-6923-4d32-b8c4-d48d7d1d521a" ], "Date": [ - "Thu, 06 Aug 2015 04:40:07 GMT" + "Thu, 13 Aug 2015 04:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3671,10 +3554,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "4545e2fc-1a66-4701-b8e2-7b12658c5436" + "4e95fe22-b784-4bce-bf56-af82e1a79b80" ], "Cache-Control": [ "no-cache" @@ -3684,31 +3567,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14939" ], "x-ms-correlation-request-id": [ - "9273b114-c098-47a3-8ed2-a68c3bcac0f8" + "13782efe-d2ea-4627-b52d-8c89cb503d6d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044038Z:9273b114-c098-47a3-8ed2-a68c3bcac0f8" + "SOUTHCENTRALUS:20150813T044759Z:13782efe-d2ea-4627-b52d-8c89cb503d6d" ], "Date": [ - "Thu, 06 Aug 2015 04:40:37 GMT" + "Thu, 13 Aug 2015 04:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3726,10 +3609,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "7c391187-3234-4475-bba7-c023831f5038" + "eea29527-6ca0-46b7-81f9-09ab5420846c" ], "Cache-Control": [ "no-cache" @@ -3739,31 +3622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14938" ], "x-ms-correlation-request-id": [ - "638e14bd-f258-4805-9e05-b44e072ce782" + "836b46b9-f1d6-4c98-baf8-6fd12a7d893a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044108Z:638e14bd-f258-4805-9e05-b44e072ce782" + "SOUTHCENTRALUS:20150813T044829Z:836b46b9-f1d6-4c98-baf8-6fd12a7d893a" ], "Date": [ - "Thu, 06 Aug 2015 04:41:08 GMT" + "Thu, 13 Aug 2015 04:48:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3781,10 +3664,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "5f13dee0-95a8-477c-a7ea-b1247ef81339" + "a394ddb1-191e-4ac6-8479-1ef26f78ff25" ], "Cache-Control": [ "no-cache" @@ -3794,31 +3677,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14937" ], "x-ms-correlation-request-id": [ - "a39b3205-ee05-4ae7-97fa-bcfbec3083f8" + "05ad5309-31c5-4d06-a8ec-a82b213dc6fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044138Z:a39b3205-ee05-4ae7-97fa-bcfbec3083f8" + "SOUTHCENTRALUS:20150813T044900Z:05ad5309-31c5-4d06-a8ec-a82b213dc6fe" ], "Date": [ - "Thu, 06 Aug 2015 04:41:37 GMT" + "Thu, 13 Aug 2015 04:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3836,10 +3719,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "0c9a967f-c11b-48eb-b32c-23f77712151f" + "6c4c3c0c-a62d-4bd0-a7fc-d722eb20d468" ], "Cache-Control": [ "no-cache" @@ -3849,31 +3732,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14936" ], "x-ms-correlation-request-id": [ - "d9f24dae-72cf-4da5-8fd8-c4d7facbd4c0" + "c93e1d26-1af9-4d2a-808e-516455d5a86c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044208Z:d9f24dae-72cf-4da5-8fd8-c4d7facbd4c0" + "SOUTHCENTRALUS:20150813T044930Z:c93e1d26-1af9-4d2a-808e-516455d5a86c" ], "Date": [ - "Thu, 06 Aug 2015 04:42:07 GMT" + "Thu, 13 Aug 2015 04:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3891,10 +3774,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "af536eb0-4030-42bd-a785-ddd3044cba82" + "0e0c754a-b27c-4aaa-8b28-eda6f6478965" ], "Cache-Control": [ "no-cache" @@ -3904,31 +3787,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14935" ], "x-ms-correlation-request-id": [ - "8910aad7-98db-4a90-acc0-c6c51b0754ed" + "2387c88a-07df-4a90-8fdf-52a68f196855" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044238Z:8910aad7-98db-4a90-acc0-c6c51b0754ed" + "SOUTHCENTRALUS:20150813T045000Z:2387c88a-07df-4a90-8fdf-52a68f196855" ], "Date": [ - "Thu, 06 Aug 2015 04:42:37 GMT" + "Thu, 13 Aug 2015 04:49:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3946,10 +3829,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "e05d0299-acc7-44a0-a196-a3f4ce7cead7" + "919003dc-e7c1-4293-824c-58353089e722" ], "Cache-Control": [ "no-cache" @@ -3959,31 +3842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14934" ], "x-ms-correlation-request-id": [ - "c7f5dac2-4ce2-4aff-8794-f6665db251f5" + "1ac96faa-5237-4336-a2f0-48495f660214" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044308Z:c7f5dac2-4ce2-4aff-8794-f6665db251f5" + "SOUTHCENTRALUS:20150813T045030Z:1ac96faa-5237-4336-a2f0-48495f660214" ], "Date": [ - "Thu, 06 Aug 2015 04:43:08 GMT" + "Thu, 13 Aug 2015 04:50:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4001,10 +3884,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "0522a0cb-edc4-4040-83d6-534daafd5f77" + "b84b6e42-359f-43cd-9e32-ee1fa51fde94" ], "Cache-Control": [ "no-cache" @@ -4014,31 +3897,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14933" ], "x-ms-correlation-request-id": [ - "b466c472-7095-43f0-8b47-e93cb227784a" + "65947bfd-e4e7-4ad1-815a-24f4a7e18b90" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044338Z:b466c472-7095-43f0-8b47-e93cb227784a" + "SOUTHCENTRALUS:20150813T045101Z:65947bfd-e4e7-4ad1-815a-24f4a7e18b90" ], "Date": [ - "Thu, 06 Aug 2015 04:43:38 GMT" + "Thu, 13 Aug 2015 04:51:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4056,10 +3939,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "9f4834e0-1a4f-49ea-a776-cfe2205e211e" + "730f333b-1a69-4134-93d8-dc2cc55f923f" ], "Cache-Control": [ "no-cache" @@ -4069,31 +3952,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14932" ], "x-ms-correlation-request-id": [ - "5309b428-7d5d-499c-9c6b-9188afac3479" + "dfff5299-232d-4601-85a5-4733db8fe8a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044409Z:5309b428-7d5d-499c-9c6b-9188afac3479" + "SOUTHCENTRALUS:20150813T045131Z:dfff5299-232d-4601-85a5-4733db8fe8a2" ], "Date": [ - "Thu, 06 Aug 2015 04:44:08 GMT" + "Thu, 13 Aug 2015 04:51:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4111,10 +3994,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "203e000e-0291-4eec-bc4f-33d3601d8e93" + "ea9d1c56-abf8-4f46-9509-3eefa6ffd818" ], "Cache-Control": [ "no-cache" @@ -4124,31 +4007,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14931" ], "x-ms-correlation-request-id": [ - "cf3e8ca5-d79f-41c6-a9b4-bce208f0de09" + "008ca1dd-043c-48a0-9221-b0ee51982a1e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044439Z:cf3e8ca5-d79f-41c6-a9b4-bce208f0de09" + "SOUTHCENTRALUS:20150813T045201Z:008ca1dd-043c-48a0-9221-b0ee51982a1e" ], "Date": [ - "Thu, 06 Aug 2015 04:44:38 GMT" + "Thu, 13 Aug 2015 04:52:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4166,10 +4049,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "6b7fe6a2-cd71-408b-8e85-612f8f2a0cf3" + "b30bdd6a-7e46-4ce5-8aca-1ac59f0e70aa" ], "Cache-Control": [ "no-cache" @@ -4179,31 +4062,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14930" ], "x-ms-correlation-request-id": [ - "18e78f23-4db3-463c-8c4f-62038d44ccc6" + "f4641a19-04d9-4113-9182-bdf8362c8ab0" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044509Z:18e78f23-4db3-463c-8c4f-62038d44ccc6" + "SOUTHCENTRALUS:20150813T045232Z:f4641a19-04d9-4113-9182-bdf8362c8ab0" ], "Date": [ - "Thu, 06 Aug 2015 04:45:08 GMT" + "Thu, 13 Aug 2015 04:52:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4221,10 +4104,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "cb8ff617-08c5-4be4-b49f-19b8934ed3cd" + "9117357c-362d-4427-a8d8-1aa604b64e85" ], "Cache-Control": [ "no-cache" @@ -4234,31 +4117,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14929" ], "x-ms-correlation-request-id": [ - "12b3ab90-cba0-4918-a451-fa74693136ae" + "af8699c5-7f9e-44b6-bb7b-578c053e832a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044539Z:12b3ab90-cba0-4918-a451-fa74693136ae" + "SOUTHCENTRALUS:20150813T045302Z:af8699c5-7f9e-44b6-bb7b-578c053e832a" ], "Date": [ - "Thu, 06 Aug 2015 04:45:39 GMT" + "Thu, 13 Aug 2015 04:53:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4276,10 +4159,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "e7e24bfa-52bb-407a-a982-02e8962920f2" + "9de0d59a-1893-42c4-82f3-4c51e3355056" ], "Cache-Control": [ "no-cache" @@ -4289,31 +4172,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14928" ], "x-ms-correlation-request-id": [ - "3629139d-6b84-4f75-a583-cc516fcea292" + "b4eac810-979f-4b79-87cb-adae6e91f013" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044609Z:3629139d-6b84-4f75-a583-cc516fcea292" + "SOUTHCENTRALUS:20150813T045332Z:b4eac810-979f-4b79-87cb-adae6e91f013" ], "Date": [ - "Thu, 06 Aug 2015 04:46:09 GMT" + "Thu, 13 Aug 2015 04:53:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2U2ZWIzYTQtNWFmOC00ZjliLThjMjItNDYxMWYyNWUzZGJlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3c1d4757-bf9b-4ed6-a8cc-24e2c917155b?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2MxZDQ3NTctYmY5Yi00ZWQ2LWE4Y2MtMjRlMmM5MTcxNTViP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3e6eb3a4-5af8-4f9b-8c22-4611f25e3dbe\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-08-05T21:29:34.5760625-07:00\",\r\n \"endTime\": \"2015-08-05T21:46:18.1762055-07:00\",\r\n \"error\": {\r\n \"code\": \"VMExtensionProvisioningError\",\r\n \"message\": \"VM has reported a failure when processing extension 'crptestps4916ext'. Error message: \\\"Failed to download all specified files. Exiting...\\\".\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3c1d4757-bf9b-4ed6-a8cc-24e2c917155b\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-08-12T21:36:52.5140303-07:00\",\r\n \"endTime\": \"2015-08-12T21:53:34.3165801-07:00\",\r\n \"error\": {\r\n \"code\": \"VMExtensionProvisioningError\",\r\n \"message\": \"VM has reported a failure when processing extension 'crptestps5353ext'. Error message: \\\"Failed to download all specified files. Exiting...\\\".\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "414" @@ -4331,10 +4214,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "f7b60cef-e8dc-4ad0-ac18-60ab57a3ab39" + "73d41090-caf9-4139-b069-668f4f4291cc" ], "Cache-Control": [ "no-cache" @@ -4344,34 +4227,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14927" ], "x-ms-correlation-request-id": [ - "a38ad253-7b88-4660-826f-10fc96d00224" + "f3342bc8-49e7-4112-aeba-d2b8887731ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044639Z:a38ad253-7b88-4660-826f-10fc96d00224" + "SOUTHCENTRALUS:20150813T045402Z:f3342bc8-49e7-4112-aeba-d2b8887731ee" ], "Date": [ - "Thu, 06 Aug 2015 04:46:39 GMT" + "Thu, 13 Aug 2015 04:54:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916/extensions/crptestps4916ext?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ5MTYvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM0OTE2ZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353/extensions/crptestps5353ext?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczUzNTMvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM1MzUzZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\",\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916/extensions/crptestps4916ext\",\r\n \"name\": \"crptestps4916ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\",\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353/extensions/crptestps5353ext\",\r\n \"name\": \"crptestps5353ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "988" + "976" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4386,10 +4269,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "2ca471c1-22a8-4636-9db6-72f3ec9665ce" + "5029639e-3800-42c4-bc9f-946e2f7232b9" ], "Cache-Control": [ "no-cache" @@ -4399,34 +4282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14926" ], "x-ms-correlation-request-id": [ - "5f291a05-4f15-4e2d-8a8c-77d000986974" + "2bb10ac8-6dd0-4f3f-86c4-7070ea3a8d43" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044639Z:5f291a05-4f15-4e2d-8a8c-77d000986974" + "SOUTHCENTRALUS:20150813T045403Z:2bb10ac8-6dd0-4f3f-86c4-7070ea3a8d43" ], "Date": [ - "Thu, 06 Aug 2015 04:46:39 GMT" + "Thu, 13 Aug 2015 04:54:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916/extensions/crptestps4916ext?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ5MTYvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM0OTE2ZXh0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353/extensions/crptestps5353ext?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczUzNTMvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM1MzUzZXh0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\",\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"instanceView\": {\r\n \"name\": \"crptestps4916ext\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/failed/3\",\r\n \"level\": \"Error\",\r\n \"displayStatus\": \"Provisioning failed\",\r\n \"message\": \"Failed to download all specified files. Exiting...\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916/extensions/crptestps4916ext\",\r\n \"name\": \"crptestps4916ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\",\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"instanceView\": {\r\n \"name\": \"crptestps5353ext\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/failed/3\",\r\n \"level\": \"Error\",\r\n \"displayStatus\": \"Provisioning failed\",\r\n \"message\": \"Failed to download all specified files. Exiting...\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353/extensions/crptestps5353ext\",\r\n \"name\": \"crptestps5353ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "1404" + "1392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4441,10 +4324,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "7163e7b4-4a19-4df7-87c2-56cc056cd0ea" + "7e2f2d55-45d5-461a-8bc6-8123266ae27b" ], "Cache-Control": [ "no-cache" @@ -4454,34 +4337,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14925" ], "x-ms-correlation-request-id": [ - "908df955-3e81-4edf-bdb1-839503b1151d" + "8f425243-ed20-4a55-a4c9-162baa3f3b8e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044639Z:908df955-3e81-4edf-bdb1-839503b1151d" + "SOUTHCENTRALUS:20150813T045403Z:8f425243-ed20-4a55-a4c9-162baa3f3b8e" ], "Date": [ - "Thu, 06 Aug 2015 04:46:39 GMT" + "Thu, 13 Aug 2015 04:54:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ5MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4916.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Network/networkInterfaces/niccrptestps4916\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\",\r\n \"https://stocrptestps4916.blob.core.windows.net/scripts/test1.ps1?sv=2014-02-14&sr=b&sig=VO%2B8zKxYkOEqvtWE5%2BraFOIYUCKw0%2BWEgf1Td1rKIwE%3D&se=2015-08-06T06%3A29%3A30Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916/extensions/crptestps4916ext\",\r\n \"name\": \"crptestps4916ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4916/providers/Microsoft.Compute/virtualMachines/vmcrptestps4916\",\r\n \"name\": \"vmcrptestps4916\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5353.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Network/networkInterfaces/niccrptestps5353\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file test1.ps1 \",\r\n \"fileUris\": [\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\",\r\n \"https://stocrptestps5353.blob.core.windows.net/scripts/test1.ps1?sv=2015-02-21&sr=b&sig=8RnFwy0c6szph4FantMRKfRTRydLCWAmNCU1qqKwN5g%3D&se=2015-08-13T06%3A36%3A50Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353/extensions/crptestps5353ext\",\r\n \"name\": \"crptestps5353ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5353/providers/Microsoft.Compute/virtualMachines/vmcrptestps5353\",\r\n \"name\": \"vmcrptestps5353\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3009" + "2997" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4496,10 +4379,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "06db1e59-d3c1-4850-bd86-85f73a6a5240" + "38ccf4a3-526c-46dd-8a88-c63bd0179181" ], "Cache-Control": [ "no-cache" @@ -4509,23 +4392,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14924" ], "x-ms-correlation-request-id": [ - "23e2bda4-b832-41e2-b673-39c9eba7c908" + "fe4cc453-9ab0-4f37-8a28-c0c92bd5b39d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044640Z:23e2bda4-b832-41e2-b673-39c9eba7c908" + "SOUTHCENTRALUS:20150813T045403Z:fe4cc453-9ab0-4f37-8a28-c0c92bd5b39d" ], "Date": [ - "Thu, 06 Aug 2015 04:46:39 GMT" + "Thu, 13 Aug 2015 04:54:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4916?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ5MTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5353?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUzNTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4551,121 +4434,13 @@ "1199" ], "x-ms-request-id": [ - "62dbcc97-c256-4a4f-8caa-b86e478b03ec" - ], - "x-ms-correlation-request-id": [ - "62dbcc97-c256-4a4f-8caa-b86e478b03ec" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T044640Z:62dbcc97-c256-4a4f-8caa-b86e478b03ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Aug 2015 04:46:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-request-id": [ - "6da2cf4f-ee84-4b40-ac1f-42ab76be5270" - ], - "x-ms-correlation-request-id": [ - "6da2cf4f-ee84-4b40-ac1f-42ab76be5270" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T044640Z:6da2cf4f-ee84-4b40-ac1f-42ab76be5270" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Aug 2015 04:46:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-request-id": [ - "c268b70f-eeea-47a2-baaf-d5cb5a0655e0" + "4c96e277-533a-498c-9bb6-738dfe4a01f5" ], "x-ms-correlation-request-id": [ - "c268b70f-eeea-47a2-baaf-d5cb5a0655e0" + "4c96e277-533a-498c-9bb6-738dfe4a01f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044655Z:c268b70f-eeea-47a2-baaf-d5cb5a0655e0" + "SOUTHCENTRALUS:20150813T045405Z:4c96e277-533a-498c-9bb6-738dfe4a01f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4674,17 +4449,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:46:55 GMT" + "Thu, 13 Aug 2015 04:54:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4710,178 +4485,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-request-id": [ - "26f4ec98-ba5b-4095-aef3-8d6111a974c9" - ], - "x-ms-correlation-request-id": [ - "26f4ec98-ba5b-4095-aef3-8d6111a974c9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T044710Z:26f4ec98-ba5b-4095-aef3-8d6111a974c9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Aug 2015 04:47:10 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-request-id": [ - "34ba1313-a772-418d-9b6d-7d2d99867ba9" - ], - "x-ms-correlation-request-id": [ - "34ba1313-a772-418d-9b6d-7d2d99867ba9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T044725Z:34ba1313-a772-418d-9b6d-7d2d99867ba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Aug 2015 04:47:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "396ed000-ae35-46c1-a2e9-e861cf0b3da1" - ], - "x-ms-correlation-request-id": [ - "396ed000-ae35-46c1-a2e9-e861cf0b3da1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T044740Z:396ed000-ae35-46c1-a2e9-e861cf0b3da1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Aug 2015 04:47:40 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-request-id": [ - "a703c0c8-151f-48cb-acb0-bc79e66712f6" + "129b6ba6-de41-40ff-a8ba-7ce4d28a174e" ], "x-ms-correlation-request-id": [ - "a703c0c8-151f-48cb-acb0-bc79e66712f6" + "129b6ba6-de41-40ff-a8ba-7ce4d28a174e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044755Z:a703c0c8-151f-48cb-acb0-bc79e66712f6" + "SOUTHCENTRALUS:20150813T045405Z:129b6ba6-de41-40ff-a8ba-7ce4d28a174e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4890,17 +4503,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:47:54 GMT" + "Thu, 13 Aug 2015 04:54:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4926,16 +4539,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-request-id": [ - "acce8a61-7e74-4dac-b2c9-22f56d0c2c1f" + "fa014b43-5e35-4d87-ac5f-4463b15f0567" ], "x-ms-correlation-request-id": [ - "acce8a61-7e74-4dac-b2c9-22f56d0c2c1f" + "fa014b43-5e35-4d87-ac5f-4463b15f0567" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044810Z:acce8a61-7e74-4dac-b2c9-22f56d0c2c1f" + "SOUTHCENTRALUS:20150813T045420Z:fa014b43-5e35-4d87-ac5f-4463b15f0567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4944,17 +4557,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:48:10 GMT" + "Thu, 13 Aug 2015 04:54:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4980,16 +4593,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14995" ], "x-ms-request-id": [ - "df412d99-792f-48fa-bb0c-782da3d08fe6" + "7caae4e3-dbab-46a0-aa2f-d9dbc51ce2a3" ], "x-ms-correlation-request-id": [ - "df412d99-792f-48fa-bb0c-782da3d08fe6" + "7caae4e3-dbab-46a0-aa2f-d9dbc51ce2a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044826Z:df412d99-792f-48fa-bb0c-782da3d08fe6" + "SOUTHCENTRALUS:20150813T045435Z:7caae4e3-dbab-46a0-aa2f-d9dbc51ce2a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4998,17 +4611,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:48:25 GMT" + "Thu, 13 Aug 2015 04:54:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5034,16 +4647,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14994" ], "x-ms-request-id": [ - "781e1f39-3435-4762-8495-b9047153deb7" + "5e7329ee-0984-47df-8588-5481c8fe8596" ], "x-ms-correlation-request-id": [ - "781e1f39-3435-4762-8495-b9047153deb7" + "5e7329ee-0984-47df-8588-5481c8fe8596" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044841Z:781e1f39-3435-4762-8495-b9047153deb7" + "SOUTHCENTRALUS:20150813T045450Z:5e7329ee-0984-47df-8588-5481c8fe8596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5052,17 +4665,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:48:40 GMT" + "Thu, 13 Aug 2015 04:54:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5088,16 +4701,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14993" ], "x-ms-request-id": [ - "998bd61e-5072-40db-b1f2-7a6682f9e7b4" + "cb04d7c6-e038-4b13-9f2d-d2de49def572" ], "x-ms-correlation-request-id": [ - "998bd61e-5072-40db-b1f2-7a6682f9e7b4" + "cb04d7c6-e038-4b13-9f2d-d2de49def572" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044856Z:998bd61e-5072-40db-b1f2-7a6682f9e7b4" + "SOUTHCENTRALUS:20150813T045505Z:cb04d7c6-e038-4b13-9f2d-d2de49def572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5106,17 +4719,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:48:55 GMT" + "Thu, 13 Aug 2015 04:55:04 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5142,16 +4755,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14992" ], "x-ms-request-id": [ - "8b48ec60-78d3-4592-9d75-5057c4e96f7c" + "7f227380-191c-4745-aed5-2e13ddb56958" ], "x-ms-correlation-request-id": [ - "8b48ec60-78d3-4592-9d75-5057c4e96f7c" + "7f227380-191c-4745-aed5-2e13ddb56958" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044911Z:8b48ec60-78d3-4592-9d75-5057c4e96f7c" + "SOUTHCENTRALUS:20150813T045520Z:7f227380-191c-4745-aed5-2e13ddb56958" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5160,17 +4773,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:49:10 GMT" + "Thu, 13 Aug 2015 04:55:20 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5196,16 +4809,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14991" ], "x-ms-request-id": [ - "310bd374-1b96-4276-b9d3-eec20c7b728a" + "3694b0c9-ffa1-415d-8204-31a2cee773ea" ], "x-ms-correlation-request-id": [ - "310bd374-1b96-4276-b9d3-eec20c7b728a" + "3694b0c9-ffa1-415d-8204-31a2cee773ea" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044926Z:310bd374-1b96-4276-b9d3-eec20c7b728a" + "SOUTHCENTRALUS:20150813T045536Z:3694b0c9-ffa1-415d-8204-31a2cee773ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5214,17 +4827,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:49:26 GMT" + "Thu, 13 Aug 2015 04:55:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5250,16 +4863,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14990" ], "x-ms-request-id": [ - "9a9e0aa3-6138-4166-9703-e18fd43ea152" + "8fcdcd07-e7de-40d2-b7c4-cb3cc13cc74c" ], "x-ms-correlation-request-id": [ - "9a9e0aa3-6138-4166-9703-e18fd43ea152" + "8fcdcd07-e7de-40d2-b7c4-cb3cc13cc74c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044941Z:9a9e0aa3-6138-4166-9703-e18fd43ea152" + "SOUTHCENTRALUS:20150813T045551Z:8fcdcd07-e7de-40d2-b7c4-cb3cc13cc74c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5268,17 +4881,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:49:40 GMT" + "Thu, 13 Aug 2015 04:55:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5304,16 +4917,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14989" ], "x-ms-request-id": [ - "599ebc75-b6e4-4835-a186-eb0cedb9cb68" + "be1f1fbd-0210-4ead-86b7-06d1ff6e5671" ], "x-ms-correlation-request-id": [ - "599ebc75-b6e4-4835-a186-eb0cedb9cb68" + "be1f1fbd-0210-4ead-86b7-06d1ff6e5671" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T044956Z:599ebc75-b6e4-4835-a186-eb0cedb9cb68" + "SOUTHCENTRALUS:20150813T045606Z:be1f1fbd-0210-4ead-86b7-06d1ff6e5671" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5322,17 +4935,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:49:56 GMT" + "Thu, 13 Aug 2015 04:56:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5358,16 +4971,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14988" ], "x-ms-request-id": [ - "ea94eda3-8f03-433c-8585-a79c89027c21" + "ab808cde-00a9-451e-a1da-9b86e372da3f" ], "x-ms-correlation-request-id": [ - "ea94eda3-8f03-433c-8585-a79c89027c21" + "ab808cde-00a9-451e-a1da-9b86e372da3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045011Z:ea94eda3-8f03-433c-8585-a79c89027c21" + "SOUTHCENTRALUS:20150813T045621Z:ab808cde-00a9-451e-a1da-9b86e372da3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5376,17 +4989,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:50:11 GMT" + "Thu, 13 Aug 2015 04:56:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5412,16 +5025,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14987" ], "x-ms-request-id": [ - "d64c7d60-1543-460c-a9a6-f96dc206bdbb" + "ba5b202e-831a-4e4e-9b11-70b9f2a66f06" ], "x-ms-correlation-request-id": [ - "d64c7d60-1543-460c-a9a6-f96dc206bdbb" + "ba5b202e-831a-4e4e-9b11-70b9f2a66f06" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045026Z:d64c7d60-1543-460c-a9a6-f96dc206bdbb" + "SOUTHCENTRALUS:20150813T045636Z:ba5b202e-831a-4e4e-9b11-70b9f2a66f06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5430,17 +5043,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:50:25 GMT" + "Thu, 13 Aug 2015 04:56:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5466,16 +5079,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14986" ], "x-ms-request-id": [ - "a27ca16d-120b-4f71-8a9d-2a6af643b39c" + "2a7160e6-86fd-4a0a-8437-79008b650591" ], "x-ms-correlation-request-id": [ - "a27ca16d-120b-4f71-8a9d-2a6af643b39c" + "2a7160e6-86fd-4a0a-8437-79008b650591" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045041Z:a27ca16d-120b-4f71-8a9d-2a6af643b39c" + "SOUTHCENTRALUS:20150813T045651Z:2a7160e6-86fd-4a0a-8437-79008b650591" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5484,17 +5097,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:50:40 GMT" + "Thu, 13 Aug 2015 04:56:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5520,16 +5133,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14985" ], "x-ms-request-id": [ - "3ca3ee5b-4260-4877-a84a-3fd4ed88834b" + "10e0646b-02ce-4381-a941-debf85a372ed" ], "x-ms-correlation-request-id": [ - "3ca3ee5b-4260-4877-a84a-3fd4ed88834b" + "10e0646b-02ce-4381-a941-debf85a372ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045056Z:3ca3ee5b-4260-4877-a84a-3fd4ed88834b" + "SOUTHCENTRALUS:20150813T045707Z:10e0646b-02ce-4381-a941-debf85a372ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5538,17 +5151,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:50:56 GMT" + "Thu, 13 Aug 2015 04:57:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5574,16 +5187,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14984" ], "x-ms-request-id": [ - "d7e29e82-aa49-46fc-90d9-9e6379b4a2c4" + "cbdaa077-da10-4094-8382-b277e98bdf1a" ], "x-ms-correlation-request-id": [ - "d7e29e82-aa49-46fc-90d9-9e6379b4a2c4" + "cbdaa077-da10-4094-8382-b277e98bdf1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045111Z:d7e29e82-aa49-46fc-90d9-9e6379b4a2c4" + "SOUTHCENTRALUS:20150813T045722Z:cbdaa077-da10-4094-8382-b277e98bdf1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5592,17 +5205,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:51:11 GMT" + "Thu, 13 Aug 2015 04:57:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5628,16 +5241,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14983" ], "x-ms-request-id": [ - "17c96e6e-5ac1-4a4d-b3b0-a61cfe97c621" + "c9ccff86-fe10-47a5-8d60-4f8279f40c75" ], "x-ms-correlation-request-id": [ - "17c96e6e-5ac1-4a4d-b3b0-a61cfe97c621" + "c9ccff86-fe10-47a5-8d60-4f8279f40c75" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045126Z:17c96e6e-5ac1-4a4d-b3b0-a61cfe97c621" + "SOUTHCENTRALUS:20150813T045737Z:c9ccff86-fe10-47a5-8d60-4f8279f40c75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5646,17 +5259,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:51:26 GMT" + "Thu, 13 Aug 2015 04:57:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5682,16 +5295,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14982" ], "x-ms-request-id": [ - "080936cd-b61e-4b60-b12a-9942c13453aa" + "bc05e6c7-f1d9-4df7-83df-8b8ca34cf0c9" ], "x-ms-correlation-request-id": [ - "080936cd-b61e-4b60-b12a-9942c13453aa" + "bc05e6c7-f1d9-4df7-83df-8b8ca34cf0c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045141Z:080936cd-b61e-4b60-b12a-9942c13453aa" + "SOUTHCENTRALUS:20150813T045752Z:bc05e6c7-f1d9-4df7-83df-8b8ca34cf0c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5700,17 +5313,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:51:41 GMT" + "Thu, 13 Aug 2015 04:57:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5736,16 +5349,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14981" ], "x-ms-request-id": [ - "8bdd9b83-c17e-4136-9bf9-ba3f90430951" + "7f973345-6712-4c94-ba25-0cf34fa823ef" ], "x-ms-correlation-request-id": [ - "8bdd9b83-c17e-4136-9bf9-ba3f90430951" + "7f973345-6712-4c94-ba25-0cf34fa823ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045157Z:8bdd9b83-c17e-4136-9bf9-ba3f90430951" + "SOUTHCENTRALUS:20150813T045807Z:7f973345-6712-4c94-ba25-0cf34fa823ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5754,17 +5367,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:51:56 GMT" + "Thu, 13 Aug 2015 04:58:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5790,16 +5403,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14980" ], "x-ms-request-id": [ - "9fa2957f-4fe5-4c69-9e75-6fc035ea34a1" + "6573df9a-ec7d-4269-9887-b09ff03c8701" ], "x-ms-correlation-request-id": [ - "9fa2957f-4fe5-4c69-9e75-6fc035ea34a1" + "6573df9a-ec7d-4269-9887-b09ff03c8701" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045212Z:9fa2957f-4fe5-4c69-9e75-6fc035ea34a1" + "SOUTHCENTRALUS:20150813T045822Z:6573df9a-ec7d-4269-9887-b09ff03c8701" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5808,17 +5421,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:52:12 GMT" + "Thu, 13 Aug 2015 04:58:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5844,16 +5457,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14979" ], "x-ms-request-id": [ - "fd33581c-9bd0-45ec-a50e-4c86090a5cbd" + "5e33c24a-a152-4f5a-b9b8-a509fc8979d9" ], "x-ms-correlation-request-id": [ - "fd33581c-9bd0-45ec-a50e-4c86090a5cbd" + "5e33c24a-a152-4f5a-b9b8-a509fc8979d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045227Z:fd33581c-9bd0-45ec-a50e-4c86090a5cbd" + "SOUTHCENTRALUS:20150813T045838Z:5e33c24a-a152-4f5a-b9b8-a509fc8979d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5862,17 +5475,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:52:26 GMT" + "Thu, 13 Aug 2015 04:58:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5898,16 +5511,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14978" ], "x-ms-request-id": [ - "dcb821fd-e035-4ce0-80a5-c634ee585aaa" + "2000be3e-8cb5-4ae9-a4c9-cd3352a1ce30" ], "x-ms-correlation-request-id": [ - "dcb821fd-e035-4ce0-80a5-c634ee585aaa" + "2000be3e-8cb5-4ae9-a4c9-cd3352a1ce30" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045242Z:dcb821fd-e035-4ce0-80a5-c634ee585aaa" + "SOUTHCENTRALUS:20150813T045853Z:2000be3e-8cb5-4ae9-a4c9-cd3352a1ce30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5916,17 +5529,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:52:42 GMT" + "Thu, 13 Aug 2015 04:58:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5952,16 +5565,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14977" ], "x-ms-request-id": [ - "3a2f8ac3-8607-456e-a6a6-5f45e8083cba" + "3871d5e7-3ecf-4ec7-b29d-b314f2c1d033" ], "x-ms-correlation-request-id": [ - "3a2f8ac3-8607-456e-a6a6-5f45e8083cba" + "3871d5e7-3ecf-4ec7-b29d-b314f2c1d033" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045257Z:3a2f8ac3-8607-456e-a6a6-5f45e8083cba" + "SOUTHCENTRALUS:20150813T045908Z:3871d5e7-3ecf-4ec7-b29d-b314f2c1d033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5970,17 +5583,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:52:56 GMT" + "Thu, 13 Aug 2015 04:59:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6006,16 +5619,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14976" ], "x-ms-request-id": [ - "0c810e57-e59b-4cf1-b07f-10f6caa970cb" + "b094413c-1619-47eb-98e5-51e5c483d545" ], "x-ms-correlation-request-id": [ - "0c810e57-e59b-4cf1-b07f-10f6caa970cb" + "b094413c-1619-47eb-98e5-51e5c483d545" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045312Z:0c810e57-e59b-4cf1-b07f-10f6caa970cb" + "SOUTHCENTRALUS:20150813T045923Z:b094413c-1619-47eb-98e5-51e5c483d545" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6024,17 +5637,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:53:11 GMT" + "Thu, 13 Aug 2015 04:59:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0OTE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wT1RFMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MzUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTXpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6057,16 +5670,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14975" ], "x-ms-request-id": [ - "ef92ff86-0e41-42f0-8c5c-2aef1934e47b" + "798d746e-133c-4da2-a420-50e18c620b92" ], "x-ms-correlation-request-id": [ - "ef92ff86-0e41-42f0-8c5c-2aef1934e47b" + "798d746e-133c-4da2-a420-50e18c620b92" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T045327Z:ef92ff86-0e41-42f0-8c5c-2aef1934e47b" + "SOUTHCENTRALUS:20150813T045938Z:798d746e-133c-4da2-a420-50e18c620b92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6075,7 +5688,7 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 04:53:26 GMT" + "Thu, 13 Aug 2015 04:59:38 GMT" ] }, "StatusCode": 200 @@ -6083,7 +5696,7 @@ ], "Names": { "Test-VirtualMachineCustomScriptExtensionFileUri": [ - "crptestps4916" + "crptestps5353" ] }, "Variables": { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineExtension.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineExtension.json index 2becae6f744c..3a33333f2073 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineExtension.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineExtension.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8851?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "0b75bfee-925c-4f4b-90ea-2a8f8aad426d" + ], + "x-ms-correlation-request-id": [ + "0b75bfee-925c-4f4b-90ea-2a8f8aad426d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T035322Z:0b75bfee-925c-4f4b-90ea-2a8f8aad426d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 03:53:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7102?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14989" ], "x-ms-request-id": [ - "4e3aee19-c08e-4be3-963f-67b323b7b84a" + "5d8b10fa-8de0-4750-936b-f6ab2b1f16a4" ], "x-ms-correlation-request-id": [ - "4e3aee19-c08e-4be3-963f-67b323b7b84a" + "5d8b10fa-8de0-4750-936b-f6ab2b1f16a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204739Z:4e3aee19-c08e-4be3-963f-67b323b7b84a" + "SOUTHCENTRALUS:20150813T035322Z:5d8b10fa-8de0-4750-936b-f6ab2b1f16a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 20:47:38 GMT" + "Thu, 13 Aug 2015 03:53:22 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8851?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7102?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" + "14999" ], "x-ms-request-id": [ - "32089b5a-2123-416b-b7c3-62b25a2c63e8" + "f30f3810-508f-428f-aa58-de1dedc07d5f" ], "x-ms-correlation-request-id": [ - "32089b5a-2123-416b-b7c3-62b25a2c63e8" + "f30f3810-508f-428f-aa58-de1dedc07d5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211432Z:32089b5a-2123-416b-b7c3-62b25a2c63e8" + "SOUTHCENTRALUS:20150813T042324Z:f30f3810-508f-428f-aa58-de1dedc07d5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:14:31 GMT" + "Thu, 13 Aug 2015 04:23:23 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8851?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7102?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851\",\r\n \"name\": \"crptestps8851\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102\",\r\n \"name\": \"crptestps7102\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "cf0cd94e-6610-4411-916b-69228215d37a" + "faeddd08-b50f-4378-8148-09b4801dd46d" ], "x-ms-correlation-request-id": [ - "cf0cd94e-6610-4411-916b-69228215d37a" + "faeddd08-b50f-4378-8148-09b4801dd46d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204740Z:cf0cd94e-6610-4411-916b-69228215d37a" + "SOUTHCENTRALUS:20150813T035323Z:faeddd08-b50f-4378-8148-09b4801dd46d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 20:47:39 GMT" + "Thu, 13 Aug 2015 03:53:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14988" ], "x-ms-request-id": [ - "2e54c33d-33e1-40ab-83e1-b569110b11cb" + "021f4dc1-9807-456d-9f47-30ddfcb99c07" ], "x-ms-correlation-request-id": [ - "2e54c33d-33e1-40ab-83e1-b569110b11cb" + "021f4dc1-9807-456d-9f47-30ddfcb99c07" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204740Z:2e54c33d-33e1-40ab-83e1-b569110b11cb" + "SOUTHCENTRALUS:20150813T035323Z:021f4dc1-9807-456d-9f47-30ddfcb99c07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 20:47:39 GMT" + "Thu, 13 Aug 2015 03:53:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8851/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7102/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:212d33f2-82dd-42e5-a313-7b04c7975613" + "brazilus:c7f71dd5-48f0-4db1-9a8c-d7075be33ee2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14982" ], "x-ms-correlation-request-id": [ - "0f18babe-44bf-4d1e-91d4-2fc66de8b310" + "c8d1ca49-c304-44ab-942d-8b0a066b110e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204740Z:0f18babe-44bf-4d1e-91d4-2fc66de8b310" + "SOUTHCENTRALUS:20150813T035324Z:c8d1ca49-c304-44ab-942d-8b0a066b110e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 20:47:39 GMT" + "Thu, 13 Aug 2015 03:53:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODg1MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzEwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps7102' under resource group 'crptestps7102' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "066c0296-e9d8-4c96-990f-4cd71f8665dc" + "77966073-05d9-4c0e-b694-ca8478ab4c68" ], "x-ms-correlation-request-id": [ - "066c0296-e9d8-4c96-990f-4cd71f8665dc" + "77966073-05d9-4c0e-b694-ca8478ab4c68" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204740Z:066c0296-e9d8-4c96-990f-4cd71f8665dc" + "SOUTHCENTRALUS:20150813T035325Z:77966073-05d9-4c0e-b694-ca8478ab4c68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 20:47:40 GMT" + "Thu, 13 Aug 2015 03:53:24 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODg1MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzEwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851\",\r\n \"etag\": \"W/\\\"c81d2213-4abe-4df8-90c5-71d44a5243ef\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851/subnets/subnetcrptestps8851\",\r\n \"etag\": \"W/\\\"c81d2213-4abe-4df8-90c5-71d44a5243ef\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102\",\r\n \"etag\": \"W/\\\"ef4528ff-c0af-43ba-b6be-a603e7a36238\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a3626fb-167e-44c2-90f8-6cc2d5e2073d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102/subnets/subnetcrptestps7102\",\r\n \"etag\": \"W/\\\"ef4528ff-c0af-43ba-b6be-a603e7a36238\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "b1282e9b-b618-4b70-bcfc-548f3bbb9890" + "eab50725-4ad6-481f-bc11-e52158aa6d68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"c81d2213-4abe-4df8-90c5-71d44a5243ef\"" + "W/\"ef4528ff-c0af-43ba-b6be-a603e7a36238\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14983" ], "x-ms-correlation-request-id": [ - "12bf85a0-4958-4d32-a104-f4b217dadb18" + "ae32df7a-19a2-41f2-9722-7e48641d0ebe" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204751Z:12bf85a0-4958-4d32-a104-f4b217dadb18" + "SOUTHCENTRALUS:20150813T035327Z:ae32df7a-19a2-41f2-9722-7e48641d0ebe" ], "Date": [ - "Fri, 19 Jun 2015 20:47:51 GMT" + "Thu, 13 Aug 2015 03:53:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODg1MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzEwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851\",\r\n \"etag\": \"W/\\\"c81d2213-4abe-4df8-90c5-71d44a5243ef\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851/subnets/subnetcrptestps8851\",\r\n \"etag\": \"W/\\\"c81d2213-4abe-4df8-90c5-71d44a5243ef\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102\",\r\n \"etag\": \"W/\\\"ef4528ff-c0af-43ba-b6be-a603e7a36238\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a3626fb-167e-44c2-90f8-6cc2d5e2073d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102/subnets/subnetcrptestps7102\",\r\n \"etag\": \"W/\\\"ef4528ff-c0af-43ba-b6be-a603e7a36238\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "9a81218d-43ed-49b5-9c7d-296b6563c209" + "ccbaa4aa-e335-4499-b5f9-6c011cc34b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"c81d2213-4abe-4df8-90c5-71d44a5243ef\"" + "W/\"ef4528ff-c0af-43ba-b6be-a603e7a36238\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" + "14982" ], "x-ms-correlation-request-id": [ - "13adc995-87d5-4d52-8ec3-222bab6fe390" + "404c2743-7606-4738-978d-dfaeb61b8f8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204751Z:13adc995-87d5-4d52-8ec3-222bab6fe390" + "SOUTHCENTRALUS:20150813T035327Z:404c2743-7606-4738-978d-dfaeb61b8f8f" ], "Date": [ - "Fri, 19 Jun 2015 20:47:51 GMT" + "Thu, 13 Aug 2015 03:53:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODg1MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzEwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps8851\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps8851\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps7102\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps7102\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -423,10 +471,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851\",\r\n \"etag\": \"W/\\\"c4bb504e-2948-40e6-851b-b94ed9f60feb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851/subnets/subnetcrptestps8851\",\r\n \"etag\": \"W/\\\"c4bb504e-2948-40e6-851b-b94ed9f60feb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102\",\r\n \"etag\": \"W/\\\"7abf7d9c-c91f-407a-9a04-3af9b80e25b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7a3626fb-167e-44c2-90f8-6cc2d5e2073d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102/subnets/subnetcrptestps7102\",\r\n \"etag\": \"W/\\\"7abf7d9c-c91f-407a-9a04-3af9b80e25b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "965" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "799dd6e2-b6c1-449a-b0d7-a7928a62985e" + "b30dabc8-8355-42b1-8778-e20b056859d8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/799dd6e2-b6c1-449a-b0d7-a7928a62985e?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b30dabc8-8355-42b1-8778-e20b056859d8?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,78 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "3028c147-f354-4dfe-9a34-ac6f6be68156" + "b0354af0-c441-4fc3-8cf0-3d8a4491098b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204741Z:3028c147-f354-4dfe-9a34-ac6f6be68156" + "SOUTHCENTRALUS:20150813T035326Z:b0354af0-c441-4fc3-8cf0-3d8a4491098b" ], "Date": [ - "Fri, 19 Jun 2015 20:47:40 GMT" + "Thu, 13 Aug 2015 03:53:25 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/799dd6e2-b6c1-449a-b0d7-a7928a62985e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzk5ZGQ2ZTItYjZjMS00NDlhLWIwZDctYTc5MjhhNjI5ODVlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd17e06d-e274-4918-8913-304e8e5981e6" - ], - "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": [ - "14885" - ], - "x-ms-correlation-request-id": [ - "2ed80a4d-cc0e-43cf-81cc-b9e7576363db" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150619T204741Z:2ed80a4d-cc0e-43cf-81cc-b9e7576363db" - ], - "Date": [ - "Fri, 19 Jun 2015 20:47:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/799dd6e2-b6c1-449a-b0d7-a7928a62985e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzk5ZGQ2ZTItYjZjMS00NDlhLWIwZDctYTc5MjhhNjI5ODVlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b30dabc8-8355-42b1-8778-e20b056859d8?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjMwZGFiYzgtODM1NS00MmIxLTg3NzgtZTIwYjA1Njg1OWQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "adb38af0-d779-44ac-af2a-c493cbdb9182" + "21a27c81-ea60-42f3-8a2f-acac998d99a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14984" ], "x-ms-correlation-request-id": [ - "28b390b9-9e40-49a4-aa52-a1af6db8cfe4" + "cc828a85-17b2-4550-b04d-a898dab87888" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204751Z:28b390b9-9e40-49a4-aa52-a1af6db8cfe4" + "SOUTHCENTRALUS:20150813T035326Z:cc828a85-17b2-4550-b04d-a898dab87888" ], "Date": [ - "Fri, 19 Jun 2015 20:47:51 GMT" + "Thu, 13 Aug 2015 03:53:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODg1MS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzEwMi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps7102' under resource group 'crptestps7102' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "244ff8f1-d647-4ead-8923-1843d53ec9dd" + "ed369a8a-eeca-46e1-a252-e24319f552ee" ], "x-ms-correlation-request-id": [ - "244ff8f1-d647-4ead-8923-1843d53ec9dd" + "ed369a8a-eeca-46e1-a252-e24319f552ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204752Z:244ff8f1-d647-4ead-8923-1843d53ec9dd" + "SOUTHCENTRALUS:20150813T035327Z:ed369a8a-eeca-46e1-a252-e24319f552ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +617,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 20:47:52 GMT" + "Thu, 13 Aug 2015 03:53:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODg1MS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzEwMi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +632,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851\",\r\n \"etag\": \"W/\\\"b5f0ba5c-39ed-441d-b4ea-389e66659e5d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8851\",\r\n \"fqdn\": \"pubipcrptestps8851.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102\",\r\n \"etag\": \"W/\\\"51a7d625-33d9-45fc-a4fb-9ba6cb5e192a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7f2743e-ce63-400a-a4ed-f17c61980685\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7102\",\r\n \"fqdn\": \"pubipcrptestps7102.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "210ff713-de52-413a-82c4-53fddcad57bb" + "28b3d916-54a3-4f44-a1d4-382c3987b54c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +656,30 @@ "no-cache" ], "ETag": [ - "W/\"b5f0ba5c-39ed-441d-b4ea-389e66659e5d\"" + "W/\"51a7d625-33d9-45fc-a4fb-9ba6cb5e192a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14979" ], "x-ms-correlation-request-id": [ - "3c36b54a-41c6-492e-88c0-a46bfab8d230" + "2d2267b4-a707-45c3-a10f-7963eb65099c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204753Z:3c36b54a-41c6-492e-88c0-a46bfab8d230" + "SOUTHCENTRALUS:20150813T035329Z:2d2267b4-a707-45c3-a10f-7963eb65099c" ], "Date": [ - "Fri, 19 Jun 2015 20:47:53 GMT" + "Thu, 13 Aug 2015 03:53:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODg1MS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzEwMi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851\",\r\n \"etag\": \"W/\\\"b5f0ba5c-39ed-441d-b4ea-389e66659e5d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8851\",\r\n \"fqdn\": \"pubipcrptestps8851.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102\",\r\n \"etag\": \"W/\\\"51a7d625-33d9-45fc-a4fb-9ba6cb5e192a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f7f2743e-ce63-400a-a4ed-f17c61980685\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7102\",\r\n \"fqdn\": \"pubipcrptestps7102.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "caa53b32-28bf-49f4-95eb-31662ebff9d5" + "9919dcf7-e3c0-49c0-a8f6-137c05137150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,32 +711,32 @@ "no-cache" ], "ETag": [ - "W/\"b5f0ba5c-39ed-441d-b4ea-389e66659e5d\"" + "W/\"51a7d625-33d9-45fc-a4fb-9ba6cb5e192a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" + "14978" ], "x-ms-correlation-request-id": [ - "8b1770e9-5e0f-437c-a4df-4201253f2076" + "68e9f6b7-3298-48b1-93dc-cf3abd569cff" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204753Z:8b1770e9-5e0f-437c-a4df-4201253f2076" + "SOUTHCENTRALUS:20150813T035329Z:68e9f6b7-3298-48b1-93dc-cf3abd569cff" ], "Date": [ - "Fri, 19 Jun 2015 20:47:53 GMT" + "Thu, 13 Aug 2015 03:53:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODg1MS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzEwMi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8851\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps8851\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7102\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps7102\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -755,10 +748,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851\",\r\n \"etag\": \"W/\\\"02d4d0d3-3a27-4d84-a818-fdf1553b63be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8851\",\r\n \"fqdn\": \"pubipcrptestps8851.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102\",\r\n \"etag\": \"W/\\\"23b604ca-21aa-4a17-be24-d6516bc2433f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f7f2743e-ce63-400a-a4ed-f17c61980685\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7102\",\r\n \"fqdn\": \"pubipcrptestps7102.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "554" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -773,10 +766,10 @@ "10" ], "x-ms-request-id": [ - "94eb3293-674c-4374-89a2-921cb5b2c51f" + "c978e4a9-40e7-438d-9ebf-95678136bdba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/94eb3293-674c-4374-89a2-921cb5b2c51f?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c978e4a9-40e7-438d-9ebf-95678136bdba?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +782,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "92c652eb-e72c-435f-90c7-f6184dbbd8fa" + "e0ff7860-8d06-4af7-bf94-48eaa5636893" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204752Z:92c652eb-e72c-435f-90c7-f6184dbbd8fa" + "SOUTHCENTRALUS:20150813T035328Z:e0ff7860-8d06-4af7-bf94-48eaa5636893" ], "Date": [ - "Fri, 19 Jun 2015 20:47:52 GMT" + "Thu, 13 Aug 2015 03:53:27 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/94eb3293-674c-4374-89a2-921cb5b2c51f?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTRlYjMyOTMtNjc0Yy00Mzc0LTg5YTItOTIxY2I1YjJjNTFmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c978e4a9-40e7-438d-9ebf-95678136bdba?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzk3OGU0YTktNDBlNy00MzhkLTllYmYtOTU2NzgxMzZiZGJhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,7 +824,7 @@ "no-cache" ], "x-ms-request-id": [ - "06418633-67d4-4e4a-96c8-68afabe3b2e8" + "a756556b-eda2-497d-9791-aafa861f85e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -844,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14980" ], "x-ms-correlation-request-id": [ - "b3a83b8a-0178-49ce-b20a-e000fd30df52" + "936e2aa7-73a7-4a64-93ff-0190edca35b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204753Z:b3a83b8a-0178-49ce-b20a-e000fd30df52" + "SOUTHCENTRALUS:20150813T035329Z:936e2aa7-73a7-4a64-93ff-0190edca35b0" ], "Date": [ - "Fri, 19 Jun 2015 20:47:53 GMT" + "Thu, 13 Aug 2015 03:53:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,10 +861,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps7102' under resource group 'crptestps7102' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,13 +879,13 @@ "gateway" ], "x-ms-request-id": [ - "9724896d-d718-4c5c-8a94-a43f3c972fe3" + "888ced10-24cb-41df-8f2d-09d2bbd8dda4" ], "x-ms-correlation-request-id": [ - "9724896d-d718-4c5c-8a94-a43f3c972fe3" + "888ced10-24cb-41df-8f2d-09d2bbd8dda4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204753Z:9724896d-d718-4c5c-8a94-a43f3c972fe3" + "SOUTHCENTRALUS:20150813T035329Z:888ced10-24cb-41df-8f2d-09d2bbd8dda4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,14 +894,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 20:47:53 GMT" + "Thu, 13 Aug 2015 03:53:28 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +909,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851\",\r\n \"etag\": \"W/\\\"2b6046f5-bc93-4de8-96c3-70917b6af43d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2b6046f5-bc93-4de8-96c3-70917b6af43d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851/subnets/subnetcrptestps8851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102\",\r\n \"etag\": \"W/\\\"6c50d76f-00b3-4ae0-866d-ad258859fac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"787a8a00-c837-4f60-a1ea-a8576bdc895a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"6c50d76f-00b3-4ae0-866d-ad258859fac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102/subnets/subnetcrptestps7102\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +924,7 @@ "no-cache" ], "x-ms-request-id": [ - "44bc820d-df42-40ab-b3de-af31f67621a7" + "c9ed8459-7d87-4632-a958-dc060a818fda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,30 +933,30 @@ "no-cache" ], "ETag": [ - "W/\"2b6046f5-bc93-4de8-96c3-70917b6af43d\"" + "W/\"6c50d76f-00b3-4ae0-866d-ad258859fac7\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14975" ], "x-ms-correlation-request-id": [ - "c4b1f736-a879-4ade-af16-e53a1d61131a" + "426c6cd6-a167-4d94-9558-da411cf352c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204754Z:c4b1f736-a879-4ade-af16-e53a1d61131a" + "SOUTHCENTRALUS:20150813T035330Z:426c6cd6-a167-4d94-9558-da411cf352c2" ], "Date": [ - "Fri, 19 Jun 2015 20:47:54 GMT" + "Thu, 13 Aug 2015 03:53:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851\",\r\n \"etag\": \"W/\\\"2b6046f5-bc93-4de8-96c3-70917b6af43d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2b6046f5-bc93-4de8-96c3-70917b6af43d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851/subnets/subnetcrptestps8851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102\",\r\n \"etag\": \"W/\\\"6c50d76f-00b3-4ae0-866d-ad258859fac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"787a8a00-c837-4f60-a1ea-a8576bdc895a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"6c50d76f-00b3-4ae0-866d-ad258859fac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102/subnets/subnetcrptestps7102\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "09a40fad-f516-46a1-bebd-7f0606cd484a" + "f8d374d8-7ed1-4633-840f-d5e5ffb03233" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,47 +988,47 @@ "no-cache" ], "ETag": [ - "W/\"2b6046f5-bc93-4de8-96c3-70917b6af43d\"" + "W/\"6c50d76f-00b3-4ae0-866d-ad258859fac7\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14974" ], "x-ms-correlation-request-id": [ - "cfa21940-9aa6-4e2c-8905-8b6da0cee35b" + "6de502c8-596c-4c4b-a65a-6ba7e7f7fece" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204754Z:cfa21940-9aa6-4e2c-8905-8b6da0cee35b" + "SOUTHCENTRALUS:20150813T035331Z:6de502c8-596c-4c4b-a65a-6ba7e7f7fece" ], "Date": [ - "Fri, 19 Jun 2015 20:47:54 GMT" + "Thu, 13 Aug 2015 03:53:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851/subnets/subnetcrptestps8851\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"niccrptestps8851\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102/subnets/subnetcrptestps7102\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps7102\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "863" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps8851\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851\",\r\n \"etag\": \"W/\\\"2b6046f5-bc93-4de8-96c3-70917b6af43d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2b6046f5-bc93-4de8-96c3-70917b6af43d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8851\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8851/subnets/subnetcrptestps8851\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps7102\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102\",\r\n \"etag\": \"W/\\\"6c50d76f-00b3-4ae0-866d-ad258859fac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"787a8a00-c837-4f60-a1ea-a8576bdc895a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"6c50d76f-00b3-4ae0-866d-ad258859fac7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7102\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7102/subnets/subnetcrptestps7102\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,10 +1040,10 @@ "no-cache" ], "x-ms-request-id": [ - "a0df8db1-db42-45f4-ab35-8984da32ef97" + "cf099087-c056-48c0-a16a-66dfbfb6e010" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a0df8db1-db42-45f4-ab35-8984da32ef97?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/cf099087-c056-48c0-a16a-66dfbfb6e010?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "4eb91729-a742-4622-af72-6fc5f1d0e11b" + "0df4f654-88af-473c-b480-a032399bb1d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204753Z:4eb91729-a742-4622-af72-6fc5f1d0e11b" + "SOUTHCENTRALUS:20150813T035330Z:0df4f654-88af-473c-b480-a032399bb1d8" ], "Date": [ - "Fri, 19 Jun 2015 20:47:53 GMT" + "Thu, 13 Aug 2015 03:53:29 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a0df8db1-db42-45f4-ab35-8984da32ef97?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTBkZjhkYjEtZGI0Mi00NWY0LWFiMzUtODk4NGRhMzJlZjk3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/cf099087-c056-48c0-a16a-66dfbfb6e010?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2YwOTkwODctYzA1Ni00OGMwLWExNmEtNjZkZmJmYjZlMDEwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1105,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "cc949b29-5434-45d8-84ae-57ebbed471e7" + "ce54f35d-fb5d-4104-8381-69c8be90114e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14976" ], "x-ms-correlation-request-id": [ - "ec57ec3b-6b0b-445b-8b1f-46dbfa13d88f" + "8a12a3d8-e5b0-4276-b950-c072dcea362a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204754Z:ec57ec3b-6b0b-445b-8b1f-46dbfa13d88f" + "SOUTHCENTRALUS:20150813T035330Z:8a12a3d8-e5b0-4276-b950-c072dcea362a" ], "Date": [ - "Fri, 19 Jun 2015 20:47:53 GMT" + "Thu, 13 Aug 2015 03:53:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Storage/storageAccounts/stocrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4ODUxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Storage/storageAccounts/stocrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM3MTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1145,7 +1138,7 @@ "88" ], "x-ms-client-request-id": [ - "2f748f36-f78c-490d-aace-e41f23c17281" + "243c4d16-eae9-4542-a6ba-3a9c161215ef" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1169,13 +1162,13 @@ "25" ], "x-ms-request-id": [ - "a9c02194-356d-4138-b3be-b031529dbd59" + "f089f518-4b80-4cf2-b8ce-9a4724450624" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/a9c02194-356d-4138-b3be-b031529dbd59?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f089f518-4b80-4cf2-b8ce-9a4724450624?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1185,28 +1178,28 @@ "1199" ], "x-ms-correlation-request-id": [ - "179b9acd-e821-4fa6-81ff-dfb18fb00e10" + "fded6445-e5ea-4bb4-a9cf-bab15408a6ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204755Z:179b9acd-e821-4fa6-81ff-dfb18fb00e10" + "SOUTHCENTRALUS:20150813T035333Z:fded6445-e5ea-4bb4-a9cf-bab15408a6ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 20:47:55 GMT" + "Thu, 13 Aug 2015 03:53:33 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/a9c02194-356d-4138-b3be-b031529dbd59?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E5YzAyMTk0LTM1NmQtNDEzOC1iM2JlLWIwMzE1MjlkYmQ1OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f089f518-4b80-4cf2-b8ce-9a4724450624?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YwODlmNTE4LTRiODAtNGNmMi1iOGNlLTlhNDcyNDQ1MDYyND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b161dbc-e3ab-4420-a31e-19faebbc5f71" + "5c9c8b90-370e-473a-98b3-c70041963ea2" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,44 +1223,44 @@ "25" ], "x-ms-request-id": [ - "48f077d6-8553-4cf5-948f-6485853a7201" + "74777155-1340-45f5-a807-2e4699f00b64" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/a9c02194-356d-4138-b3be-b031529dbd59?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f089f518-4b80-4cf2-b8ce-9a4724450624?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14996" ], "x-ms-correlation-request-id": [ - "0996f2f9-3665-4d56-a133-c5453f0dc828" + "b609b9cc-9fbe-4b0a-95bb-550843906491" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204756Z:0996f2f9-3665-4d56-a133-c5453f0dc828" + "SOUTHCENTRALUS:20150813T035333Z:b609b9cc-9fbe-4b0a-95bb-550843906491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 20:47:56 GMT" + "Thu, 13 Aug 2015 03:53:33 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/a9c02194-356d-4138-b3be-b031529dbd59?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E5YzAyMTk0LTM1NmQtNDEzOC1iM2JlLWIwMzE1MjlkYmQ1OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f089f518-4b80-4cf2-b8ce-9a4724450624?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YwODlmNTE4LTRiODAtNGNmMi1iOGNlLTlhNDcyNDQ1MDYyND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "332d708a-59d1-48fc-ab28-4c0e6123a160" + "af92d0bc-325e-4374-b930-641e698ef362" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1288,7 +1281,7 @@ "no-cache" ], "x-ms-request-id": [ - "721b49d8-b65f-4525-b80a-c88801bf8b05" + "74cfa9ef-0a3f-4c9a-b212-ceadaa0e64e1" ], "Cache-Control": [ "no-cache" @@ -1298,37 +1291,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14995" ], "x-ms-correlation-request-id": [ - "28dea991-14aa-4178-b015-bee83ca9318e" + "8251244e-e74c-4d64-934a-01c546397b24" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204821Z:28dea991-14aa-4178-b015-bee83ca9318e" + "SOUTHCENTRALUS:20150813T035358Z:8251244e-e74c-4d64-934a-01c546397b24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 20:48:20 GMT" + "Thu, 13 Aug 2015 03:53:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Storage/storageAccounts/stocrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4ODUxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Storage/storageAccounts/stocrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM3MTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca9944ee-c957-462d-97b9-2352b7068644" + "aa77ccb1-bb8e-447d-a22d-3f43124ba69c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Storage/storageAccounts/stocrptestps8851\",\r\n \"name\": \"stocrptestps8851\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8851.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8851.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8851.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-19T20:47:54.7251154Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Storage/storageAccounts/stocrptestps7102\",\r\n \"name\": \"stocrptestps7102\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps7102.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps7102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps7102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T03:53:31.9420099Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1343,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "302b650e-2c1d-4f9d-afef-cab1b71276a6" + "495c65b1-d443-4f04-9046-d290ab7a3ace" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1346,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14994" ], "x-ms-correlation-request-id": [ - "e2aeefcf-9d88-40a3-ba3d-977c860cdcd2" + "41c02294-98a0-4956-b7b8-775995db42b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204821Z:e2aeefcf-9d88-40a3-ba3d-977c860cdcd2" + "SOUTHCENTRALUS:20150813T035358Z:41c02294-98a0-4956-b7b8-775995db42b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 20:48:20 GMT" + "Thu, 13 Aug 2015 03:53:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Storage/storageAccounts/stocrptestps8851?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4ODUxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Storage/storageAccounts/stocrptestps7102?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM3MTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a0b6744-7214-48e3-9ee6-9734acda683b" + "6ad18af3-f881-4e0a-a7e6-6b062c956539" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Storage/storageAccounts/stocrptestps8851\",\r\n \"name\": \"stocrptestps8851\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8851.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8851.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8851.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-19T20:47:54.7251154Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Storage/storageAccounts/stocrptestps7102\",\r\n \"name\": \"stocrptestps7102\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps7102.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps7102.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps7102.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T03:53:31.9420099Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1398,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "fbfc9ce9-29a5-4a4e-8d4a-f1c408a8c293" + "ad78cd3e-0316-4ee4-9f16-799adff18111" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14993" ], "x-ms-correlation-request-id": [ - "38a6bc06-6341-4a8e-94d0-7b8cfbd1e010" + "4c6ddc4a-10c8-4ef9-84a0-cb9fc6651ba6" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204821Z:38a6bc06-6341-4a8e-94d0-7b8cfbd1e010" + "SOUTHCENTRALUS:20150813T035359Z:4c6ddc4a-10c8-4ef9-84a0-cb9fc6651ba6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 20:48:20 GMT" + "Thu, 13 Aug 2015 03:53:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Storage/storageAccounts/stocrptestps8851/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4ODUxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Storage/storageAccounts/stocrptestps7102/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM3MTAyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ffbb790-8008-4284-9b52-236f17a6cc68" + "cd54507e-3821-4a88-80d6-ee48cc913646" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"jA/6+sT3lXl/zt6W2NV/MDQqZRtjTx2q+x3lQGeK5Bsfe1arXmK+fG3KYn6Nu3Upyllw/el6DqR9cK34Sr8VZg==\",\r\n \"key2\": \"3blWBJgW83WNKO/uMWNTiT+6G0Z5++Ro934Ulr4i6Smygag0oIvr9zxneQAg11mwi9J/3J5wCp7UVczwdR1kuw==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"GhtWv2dLOBCfKY8rhrjRKpV/8r+IvGU7rqo7ylCOWYpW7m3/YwBGURGzpUef3FRXZ8P6RaOsdF5/iI6w+5fh9A==\",\r\n \"key2\": \"PI7O0HWHsJ8N27RTJ4LAKJWr1RH4cN47/Zx3UTNXvGrGqr3PhcGejL6Iq9gVBVllHeSyrWjI0I+LehyzaSnFdw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "197" @@ -1453,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "2010cc43-80ac-457d-835e-179f5848af62" + "665d5cd5-22bd-4b75-8bbd-033d588e6c3a" ], "Cache-Control": [ "no-cache" @@ -1466,25 +1459,25 @@ "1198" ], "x-ms-correlation-request-id": [ - "eed6cb8a-d204-45d5-93f1-28649082a447" + "00f3245d-3bd6-4d55-a8ef-237cd9108357" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204823Z:eed6cb8a-d204-45d5-93f1-28649082a447" + "SOUTHCENTRALUS:20150813T035359Z:00f3245d-3bd6-4d55-a8ef-237cd9108357" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 20:48:22 GMT" + "Thu, 13 Aug 2015 03:53:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8851.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8851.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8851.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps8851\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps8851\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7102.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7102.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7102.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps7102\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps7102\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1493,10 +1486,10 @@ "1719" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8851.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8851.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8851.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Network/networkInterfaces/niccrptestps8851\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851\",\r\n \"name\": \"vmcrptestps8851\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7102.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7102.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7102.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Network/networkInterfaces/niccrptestps7102\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102\",\r\n \"name\": \"vmcrptestps7102\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1934" @@ -1511,13 +1504,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "5fca8f61-908c-4d49-882f-2188c835faf2" + "4c51856b-2078-4663-a361-57998af153b0" ], "Cache-Control": [ "no-cache" @@ -1527,31 +1523,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "ae88367d-b3c6-45fb-a587-4e63e6b997bb" + "a56a74d9-b796-48bf-9f3a-f9a21b1d8b8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204824Z:ae88367d-b3c6-45fb-a587-4e63e6b997bb" + "SOUTHCENTRALUS:20150813T035402Z:a56a74d9-b796-48bf-9f3a-f9a21b1d8b8f" ], "Date": [ - "Fri, 19 Jun 2015 20:48:24 GMT" + "Thu, 13 Aug 2015 03:54:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1568,8 +1564,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c73f6d91-c7e7-41d6-ac46-53a2b4c0c268" + "1e7348f0-a723-4ac7-842c-acc4084a405a" ], "Cache-Control": [ "no-cache" @@ -1579,31 +1578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14944" ], "x-ms-correlation-request-id": [ - "ee1f9afe-ba9b-41a6-a50a-ea03061619b6" + "eb838bf9-5d79-4de5-a5bc-6adaaadacf1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204824Z:ee1f9afe-ba9b-41a6-a50a-ea03061619b6" + "SOUTHCENTRALUS:20150813T035402Z:eb838bf9-5d79-4de5-a5bc-6adaaadacf1a" ], "Date": [ - "Fri, 19 Jun 2015 20:48:24 GMT" + "Thu, 13 Aug 2015 03:54:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1620,8 +1619,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "496d267b-5014-448e-b992-aa2462d6d922" + "baf72f5d-0fcf-4fc3-bb8b-2885276bb5a0" ], "Cache-Control": [ "no-cache" @@ -1631,31 +1633,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14943" ], "x-ms-correlation-request-id": [ - "8f43b564-811d-4368-b0a7-d62799856b8a" + "157e47c4-5588-47b3-b7be-24c8b0d0be27" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204854Z:8f43b564-811d-4368-b0a7-d62799856b8a" + "SOUTHCENTRALUS:20150813T035432Z:157e47c4-5588-47b3-b7be-24c8b0d0be27" ], "Date": [ - "Fri, 19 Jun 2015 20:48:54 GMT" + "Thu, 13 Aug 2015 03:54:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1672,8 +1674,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "4759ab95-89eb-4542-b5fb-91d5954b5e91" + "529bc165-e99c-48f1-b313-24aa0a107278" ], "Cache-Control": [ "no-cache" @@ -1683,31 +1688,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "14945" ], "x-ms-correlation-request-id": [ - "10e43f3b-2562-4220-b6b8-bbe0f425be32" + "17c41b2c-a2bf-4514-941e-404f2fe7ae8b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204924Z:10e43f3b-2562-4220-b6b8-bbe0f425be32" + "SOUTHCENTRALUS:20150813T035503Z:17c41b2c-a2bf-4514-941e-404f2fe7ae8b" ], "Date": [ - "Fri, 19 Jun 2015 20:49:24 GMT" + "Thu, 13 Aug 2015 03:55:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1724,8 +1729,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a57c8f9b-b686-4364-986e-d256a0c9cdea" + "273e5918-6d95-4246-b947-0126e69e09d4" ], "Cache-Control": [ "no-cache" @@ -1735,31 +1743,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14944" ], "x-ms-correlation-request-id": [ - "43d214f2-68d1-4bb5-a339-e860130e2b2d" + "1595a821-1f84-4af6-b097-eb67207ecea0" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T204954Z:43d214f2-68d1-4bb5-a339-e860130e2b2d" + "SOUTHCENTRALUS:20150813T035533Z:1595a821-1f84-4af6-b097-eb67207ecea0" ], "Date": [ - "Fri, 19 Jun 2015 20:49:54 GMT" + "Thu, 13 Aug 2015 03:55:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1776,8 +1784,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "aa80c5f8-9f25-41f3-b6bb-2b7ad6dd6b85" + "18386460-1b81-49d7-a9f7-b69893628e00" ], "Cache-Control": [ "no-cache" @@ -1787,31 +1798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14943" ], "x-ms-correlation-request-id": [ - "83917032-7881-40e4-852c-d73341660b47" + "daed5db5-c10d-4e55-a3a6-16d5350ec635" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205024Z:83917032-7881-40e4-852c-d73341660b47" + "SOUTHCENTRALUS:20150813T035603Z:daed5db5-c10d-4e55-a3a6-16d5350ec635" ], "Date": [ - "Fri, 19 Jun 2015 20:50:24 GMT" + "Thu, 13 Aug 2015 03:56:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1828,8 +1839,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "d19a9f6a-11df-4e1b-82e8-4065ccd5695a" + "9e80fb6a-3f93-4ddb-aa93-ce9944be6f9c" ], "Cache-Control": [ "no-cache" @@ -1839,31 +1853,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14942" ], "x-ms-correlation-request-id": [ - "e4da7d33-454c-4345-a3d0-07eb41a62fe6" + "74f2b6f3-db92-40af-9fb9-0869c9a7cade" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205055Z:e4da7d33-454c-4345-a3d0-07eb41a62fe6" + "SOUTHCENTRALUS:20150813T035633Z:74f2b6f3-db92-40af-9fb9-0869c9a7cade" ], "Date": [ - "Fri, 19 Jun 2015 20:50:54 GMT" + "Thu, 13 Aug 2015 03:56:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1880,8 +1894,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "5e09bf64-7a83-4cdf-b8c8-103a8f62560a" + "5c76c2c7-14b7-4b66-b04e-a22e0dddfc06" ], "Cache-Control": [ "no-cache" @@ -1891,31 +1908,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14941" ], "x-ms-correlation-request-id": [ - "d202cd45-110f-4a19-888b-a528f1ebb004" + "64440bbd-4957-4918-8018-c85bddf97dff" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205125Z:d202cd45-110f-4a19-888b-a528f1ebb004" + "SOUTHCENTRALUS:20150813T035704Z:64440bbd-4957-4918-8018-c85bddf97dff" ], "Date": [ - "Fri, 19 Jun 2015 20:51:24 GMT" + "Thu, 13 Aug 2015 03:57:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1932,8 +1949,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f973554e-5525-466e-b108-70d6fa53635a" + "cd1d0bee-2eaa-4c94-bd95-5abf9e94a13a" ], "Cache-Control": [ "no-cache" @@ -1943,31 +1963,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14940" ], "x-ms-correlation-request-id": [ - "25679fca-0170-4c97-a0ba-5f3b4d9e46f3" + "bf0a2dcf-40e9-42cd-bc02-7bd69f574b1c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205155Z:25679fca-0170-4c97-a0ba-5f3b4d9e46f3" + "SOUTHCENTRALUS:20150813T035734Z:bf0a2dcf-40e9-42cd-bc02-7bd69f574b1c" ], "Date": [ - "Fri, 19 Jun 2015 20:51:55 GMT" + "Thu, 13 Aug 2015 03:57:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1984,8 +2004,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b81682b2-8824-43f6-839e-fd0f276348f9" + "a9e68c54-01d4-4efb-813a-31c6a4427828" ], "Cache-Control": [ "no-cache" @@ -1995,31 +2018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14939" ], "x-ms-correlation-request-id": [ - "a1298575-12ae-40f3-939e-af7b70f58c78" + "fe87029d-5427-443c-af3a-d844a2b5222f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205225Z:a1298575-12ae-40f3-939e-af7b70f58c78" + "SOUTHCENTRALUS:20150813T035804Z:fe87029d-5427-443c-af3a-d844a2b5222f" ], "Date": [ - "Fri, 19 Jun 2015 20:52:24 GMT" + "Thu, 13 Aug 2015 03:58:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2036,8 +2059,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "16787447-3c52-413c-894d-14c44c343cd8" + "26134970-8fda-4fb1-b7f0-032dfc4494f8" ], "Cache-Control": [ "no-cache" @@ -2047,31 +2073,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14938" ], "x-ms-correlation-request-id": [ - "e1fb5c06-6df3-4803-bc1d-278c6fb5f2e6" + "331bb567-bdbf-4547-8180-113f1e286930" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205255Z:e1fb5c06-6df3-4803-bc1d-278c6fb5f2e6" + "SOUTHCENTRALUS:20150813T035835Z:331bb567-bdbf-4547-8180-113f1e286930" ], "Date": [ - "Fri, 19 Jun 2015 20:52:55 GMT" + "Thu, 13 Aug 2015 03:58:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2088,8 +2114,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "d7268fab-414b-4299-b873-d6025641f96b" + "90988987-7fbd-4013-b5b7-22847413d4fd" ], "Cache-Control": [ "no-cache" @@ -2099,31 +2128,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14937" ], "x-ms-correlation-request-id": [ - "fbd4b642-5e25-49c2-887d-13d1cb377b33" + "ffb2be54-19d4-4ea1-b3ef-59e52dfc4063" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205325Z:fbd4b642-5e25-49c2-887d-13d1cb377b33" + "SOUTHCENTRALUS:20150813T035905Z:ffb2be54-19d4-4ea1-b3ef-59e52dfc4063" ], "Date": [ - "Fri, 19 Jun 2015 20:53:24 GMT" + "Thu, 13 Aug 2015 03:59:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2140,8 +2169,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3ca7d71c-f484-463d-b37f-587f27069370" + "2ccd02b0-7c4e-4e07-83f3-011cf7a5ec2f" ], "Cache-Control": [ "no-cache" @@ -2151,34 +2183,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14936" ], "x-ms-correlation-request-id": [ - "ad1aca7c-8da0-4fb5-8528-52bc4a48c8b8" + "4da8f699-98a9-4a84-9842-d438417d7937" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205355Z:ad1aca7c-8da0-4fb5-8528-52bc4a48c8b8" + "SOUTHCENTRALUS:20150813T035935Z:4da8f699-98a9-4a84-9842-d438417d7937" ], "Date": [ - "Fri, 19 Jun 2015 20:53:55 GMT" + "Thu, 13 Aug 2015 03:59:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5fca8f61-908c-4d49-882f-2188c835faf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjYThmNjEtOTA4Yy00ZDQ5LTg4MmYtMjE4OGM4MzVmYWYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5fca8f61-908c-4d49-882f-2188c835faf2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-19T13:48:24.3563004-07:00\",\r\n \"endTime\": \"2015-06-19T13:54:03.936612-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2192,8 +2224,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "bbf3708c-c914-4c6a-845e-3ed209e8f1ff" + "49b29fc5-c4cf-46e8-bc78-c698a514d14e" ], "Cache-Control": [ "no-cache" @@ -2203,40 +2238,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14936" ], "x-ms-correlation-request-id": [ - "fe6b0d3e-4fbe-4e6e-b1ae-c98e4194e521" + "5d6118f1-ee17-4e73-a5e9-d4623c5b1c95" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205425Z:fe6b0d3e-4fbe-4e6e-b1ae-c98e4194e521" + "SOUTHCENTRALUS:20150813T040006Z:5d6118f1-ee17-4e73-a5e9-d4623c5b1c95" ], "Date": [ - "Fri, 19 Jun 2015 20:54:24 GMT" + "Thu, 13 Aug 2015 04:00:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851/extensions/csetest?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg4NTEvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps8851\",\r\n \"storageAccountKey\": \"jA/6+sT3lXl/zt6W2NV/MDQqZRtjTx2q+x3lQGeK5Bsfe1arXmK+fG3KYn6Nu3Upyllw/el6DqR9cK34Sr8VZg==\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "582" - ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "564" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2247,14 +2276,14 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "dce9474b-54a9-4666-b2c5-15f0cd20e5b2" + "301bf233-3e06-495e-8405-757bcb2f49eb" ], "Cache-Control": [ "no-cache" @@ -2263,32 +2292,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" ], "x-ms-correlation-request-id": [ - "86983501-3bba-45a6-8e3a-83c1be677646" + "9200f6e1-9841-4987-8a1c-f89b6235a8bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205426Z:86983501-3bba-45a6-8e3a-83c1be677646" + "SOUTHCENTRALUS:20150813T040036Z:9200f6e1-9841-4987-8a1c-f89b6235a8bb" ], "Date": [ - "Fri, 19 Jun 2015 20:54:25 GMT" + "Thu, 13 Aug 2015 04:00:35 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2305,8 +2334,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6633900d-f3b1-434c-bcb4-0ccbcdd8e9c8" + "de5bfaaa-4d3e-49da-a77e-88a6b2b6670a" ], "Cache-Control": [ "no-cache" @@ -2316,31 +2348,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14934" ], "x-ms-correlation-request-id": [ - "32f1d30e-f7c8-4272-b6d9-98cafb6569d8" + "6ba313c2-f59b-4879-9343-0d649267bfca" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205426Z:32f1d30e-f7c8-4272-b6d9-98cafb6569d8" + "SOUTHCENTRALUS:20150813T040106Z:6ba313c2-f59b-4879-9343-0d649267bfca" ], "Date": [ - "Fri, 19 Jun 2015 20:54:26 GMT" + "Thu, 13 Aug 2015 04:01:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2357,8 +2389,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "33321192-1fae-4149-9248-d6d33b37fbeb" + "f4a337e6-205b-4bd5-9276-8089a5ad1f81" ], "Cache-Control": [ "no-cache" @@ -2368,31 +2403,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14933" ], "x-ms-correlation-request-id": [ - "1f996ce9-51d9-402f-9deb-9a87d3ae823a" + "814bfb62-ce57-455c-aec8-91637471b17f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205457Z:1f996ce9-51d9-402f-9deb-9a87d3ae823a" + "SOUTHCENTRALUS:20150813T040136Z:814bfb62-ce57-455c-aec8-91637471b17f" ], "Date": [ - "Fri, 19 Jun 2015 20:54:56 GMT" + "Thu, 13 Aug 2015 04:01:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2409,8 +2444,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a2d77858-6fe1-4bf1-b7bc-456b57a6e72f" + "a116ac7e-f86f-46b4-b4a9-2a8efbfd96c0" ], "Cache-Control": [ "no-cache" @@ -2420,34 +2458,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14932" ], "x-ms-correlation-request-id": [ - "bdc1ba56-a601-469f-9317-c9070ca25514" + "05b1a064-4b53-4e2d-908f-162a9a3a15b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205527Z:bdc1ba56-a601-469f-9317-c9070ca25514" + "SOUTHCENTRALUS:20150813T040207Z:05b1a064-4b53-4e2d-908f-162a9a3a15b7" ], "Date": [ - "Fri, 19 Jun 2015 20:55:26 GMT" + "Thu, 13 Aug 2015 04:02:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/4c51856b-2078-4663-a361-57998af153b0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGM1MTg1NmItMjA3OC00NjYzLWEzNjEtNTc5OThhZjE1M2IwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"4c51856b-2078-4663-a361-57998af153b0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T20:54:01.3882568-07:00\",\r\n \"endTime\": \"2015-08-12T21:02:31.8602953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2461,8 +2499,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "0d3c4c3d-c7a2-4e25-b94c-e1d69a9ce253" + "1bd9ec3d-f1bd-40a9-9c21-bed728bc2cc3" ], "Cache-Control": [ "no-cache" @@ -2472,34 +2513,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14931" ], "x-ms-correlation-request-id": [ - "94c8ab8c-ac51-4320-81d8-f357e246672b" + "b1f08b06-fb2f-4e3f-8e67-215ae4e2de30" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205557Z:94c8ab8c-ac51-4320-81d8-f357e246672b" + "SOUTHCENTRALUS:20150813T040237Z:b1f08b06-fb2f-4e3f-8e67-215ae4e2de30" ], "Date": [ - "Fri, 19 Jun 2015 20:55:56 GMT" + "Thu, 13 Aug 2015 04:02:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102/extensions/csetest?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczcxMDIvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps7102\",\r\n \"storageAccountKey\": \"GhtWv2dLOBCfKY8rhrjRKpV/8r+IvGU7rqo7ylCOWYpW7m3/YwBGURGzpUef3FRXZ8P6RaOsdF5/iI6w+5fh9A==\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "582" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "564" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2510,11 +2557,17 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a748aa92-5fd3-47b6-9c77-199495f88e16" + "2d11f60c-6591-43cb-9fba-99018659b94f" ], "Cache-Control": [ "no-cache" @@ -2523,32 +2576,32 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "686ae8a4-c80e-4126-a6cd-8febdca8074c" + "1dcc2810-9fee-4920-ab21-a9aa6a786dd5" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205627Z:686ae8a4-c80e-4126-a6cd-8febdca8074c" + "SOUTHCENTRALUS:20150813T040239Z:1dcc2810-9fee-4920-ab21-a9aa6a786dd5" ], "Date": [ - "Fri, 19 Jun 2015 20:56:26 GMT" + "Thu, 13 Aug 2015 04:02:39 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2565,8 +2618,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6a0be0e8-1181-454a-a4d3-634edf40ad02" + "00608dff-feb0-4b08-8c12-487a804869f1" ], "Cache-Control": [ "no-cache" @@ -2576,31 +2632,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" + "14930" ], "x-ms-correlation-request-id": [ - "fba4d45e-1f02-40ba-a9cd-7786e18138f0" + "a11eb103-4b73-4f0b-98ae-fc54e26c65b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205657Z:fba4d45e-1f02-40ba-a9cd-7786e18138f0" + "SOUTHCENTRALUS:20150813T040239Z:a11eb103-4b73-4f0b-98ae-fc54e26c65b1" ], "Date": [ - "Fri, 19 Jun 2015 20:56:57 GMT" + "Thu, 13 Aug 2015 04:02:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2617,8 +2673,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "4947e81d-2022-4959-8687-80fc0e5d0f19" + "07483559-85da-4bcf-9759-9a7e3e709848" ], "Cache-Control": [ "no-cache" @@ -2628,31 +2687,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "14929" ], "x-ms-correlation-request-id": [ - "2cf4cadc-09f2-427b-9cb7-19be56080eb5" + "ba6c3686-fc68-44fb-9642-a9ae1c2bef7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205727Z:2cf4cadc-09f2-427b-9cb7-19be56080eb5" + "SOUTHCENTRALUS:20150813T040310Z:ba6c3686-fc68-44fb-9642-a9ae1c2bef7e" ], "Date": [ - "Fri, 19 Jun 2015 20:57:26 GMT" + "Thu, 13 Aug 2015 04:03:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2669,8 +2728,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "36169d33-81d3-4533-afc7-c03c34e96de1" + "6e504d46-5a74-4213-9a98-a3f93413a063" ], "Cache-Control": [ "no-cache" @@ -2680,31 +2742,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14928" ], "x-ms-correlation-request-id": [ - "2a68237c-8e14-4fc8-a48b-c20fe9ddeba9" + "009c8889-d137-4ce8-b641-f1176ac82f2b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205757Z:2a68237c-8e14-4fc8-a48b-c20fe9ddeba9" + "SOUTHCENTRALUS:20150813T040340Z:009c8889-d137-4ce8-b641-f1176ac82f2b" ], "Date": [ - "Fri, 19 Jun 2015 20:57:57 GMT" + "Thu, 13 Aug 2015 04:03:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2721,8 +2783,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "fb23ae47-4cc0-4851-9e98-9bb6b7776257" + "26f3d516-c26e-4bbd-a79f-2e0af6689377" ], "Cache-Control": [ "no-cache" @@ -2732,31 +2797,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14927" ], "x-ms-correlation-request-id": [ - "bc6cb533-928e-442c-8789-ccf0ed07d138" + "324c440f-b91d-4afc-bbb2-2373223f9005" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205827Z:bc6cb533-928e-442c-8789-ccf0ed07d138" + "SOUTHCENTRALUS:20150813T040410Z:324c440f-b91d-4afc-bbb2-2373223f9005" ], "Date": [ - "Fri, 19 Jun 2015 20:58:27 GMT" + "Thu, 13 Aug 2015 04:04:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2773,8 +2838,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "8b4361d7-7b51-487d-9db7-df398f8fd0ea" + "d6752a5a-d9df-4502-9929-edc9bc747192" ], "Cache-Control": [ "no-cache" @@ -2784,31 +2852,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14926" ], "x-ms-correlation-request-id": [ - "1875a9b9-2948-4499-a35d-e52e04447cf8" + "2bb6ec2c-4686-41f1-a257-10ba12926171" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205857Z:1875a9b9-2948-4499-a35d-e52e04447cf8" + "SOUTHCENTRALUS:20150813T040441Z:2bb6ec2c-4686-41f1-a257-10ba12926171" ], "Date": [ - "Fri, 19 Jun 2015 20:58:57 GMT" + "Thu, 13 Aug 2015 04:04:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2825,8 +2893,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "2e33fe5d-4fb8-4940-9130-b42858fac0ad" + "9c32c764-cb40-4efc-9612-808f136250e2" ], "Cache-Control": [ "no-cache" @@ -2836,31 +2907,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14925" ], "x-ms-correlation-request-id": [ - "667c5e03-8525-4ccf-ad66-cace2b06e55d" + "e273763c-58b8-4314-b84d-842b80e34087" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205928Z:667c5e03-8525-4ccf-ad66-cace2b06e55d" + "SOUTHCENTRALUS:20150813T040511Z:e273763c-58b8-4314-b84d-842b80e34087" ], "Date": [ - "Fri, 19 Jun 2015 20:59:28 GMT" + "Thu, 13 Aug 2015 04:05:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2877,8 +2948,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3087ec70-04f1-4ec8-b0fc-09a753947317" + "40eb8398-4b38-45ae-b1db-61debc071304" ], "Cache-Control": [ "no-cache" @@ -2888,31 +2962,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14844" + "14924" ], "x-ms-correlation-request-id": [ - "f2620e74-177c-4208-afd9-debc18e48cf9" + "3228bae3-4f25-4141-a1a2-766f8798264b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T205958Z:f2620e74-177c-4208-afd9-debc18e48cf9" + "SOUTHCENTRALUS:20150813T040541Z:3228bae3-4f25-4141-a1a2-766f8798264b" ], "Date": [ - "Fri, 19 Jun 2015 20:59:57 GMT" + "Thu, 13 Aug 2015 04:05:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2929,8 +3003,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "0653c10c-9add-4e96-b711-35fb867bc05a" + "f3d9eef2-70c0-40df-be72-7a3ea1ba885c" ], "Cache-Control": [ "no-cache" @@ -2940,31 +3017,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" + "14923" ], "x-ms-correlation-request-id": [ - "78809c1f-58c3-4add-8c8e-6890caacbbec" + "58261940-6638-4e2c-80c1-5d35a5a3cd5a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210028Z:78809c1f-58c3-4add-8c8e-6890caacbbec" + "SOUTHCENTRALUS:20150813T040611Z:58261940-6638-4e2c-80c1-5d35a5a3cd5a" ], "Date": [ - "Fri, 19 Jun 2015 21:00:27 GMT" + "Thu, 13 Aug 2015 04:06:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2981,8 +3058,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "4cec8f02-abf3-44ec-9c71-05971f05d829" + "7b5b3b70-4b34-4ec4-bc18-fec4bfee475d" ], "Cache-Control": [ "no-cache" @@ -2992,31 +3072,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14922" ], "x-ms-correlation-request-id": [ - "006b6a05-2d4d-476e-b18e-2ea664686510" + "ead8e54c-4af0-4490-aa0f-7aa86034caae" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210058Z:006b6a05-2d4d-476e-b18e-2ea664686510" + "SOUTHCENTRALUS:20150813T040642Z:ead8e54c-4af0-4490-aa0f-7aa86034caae" ], "Date": [ - "Fri, 19 Jun 2015 21:00:57 GMT" + "Thu, 13 Aug 2015 04:06:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3033,8 +3113,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b7b9f540-2dc5-4f1a-86c2-8dcabe992fdb" + "41bf26c9-a3a9-493b-8568-bac615ce4f17" ], "Cache-Control": [ "no-cache" @@ -3044,31 +3127,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14921" ], "x-ms-correlation-request-id": [ - "26ce7ede-4f07-4319-a81e-a1cd4df1fddf" + "12a90b3c-d082-468c-8cfc-c40802b1d7ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210128Z:26ce7ede-4f07-4319-a81e-a1cd4df1fddf" + "SOUTHCENTRALUS:20150813T040712Z:12a90b3c-d082-468c-8cfc-c40802b1d7ef" ], "Date": [ - "Fri, 19 Jun 2015 21:01:28 GMT" + "Thu, 13 Aug 2015 04:07:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3085,8 +3168,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e6c1300f-efd8-46fa-a745-0eec126cec11" + "a8786451-029d-4986-8a95-0271f276a8f0" ], "Cache-Control": [ "no-cache" @@ -3096,31 +3182,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14920" ], "x-ms-correlation-request-id": [ - "d645b790-e46c-4875-871c-a46075427d33" + "be0d191b-41f8-4604-83ef-10793ebd7c22" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210158Z:d645b790-e46c-4875-871c-a46075427d33" + "SOUTHCENTRALUS:20150813T040742Z:be0d191b-41f8-4604-83ef-10793ebd7c22" ], "Date": [ - "Fri, 19 Jun 2015 21:01:57 GMT" + "Thu, 13 Aug 2015 04:07:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3137,8 +3223,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "cd45416e-7a40-44d8-8c10-63c151208726" + "b6b61d26-6178-4bc5-9b32-d31fe72a31e3" ], "Cache-Control": [ "no-cache" @@ -3148,31 +3237,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14919" ], "x-ms-correlation-request-id": [ - "3f58d7a8-3643-4a5e-908a-a47618946453" + "a1981284-9edc-41af-a138-229d11e63097" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210228Z:3f58d7a8-3643-4a5e-908a-a47618946453" + "SOUTHCENTRALUS:20150813T040812Z:a1981284-9edc-41af-a138-229d11e63097" ], "Date": [ - "Fri, 19 Jun 2015 21:02:28 GMT" + "Thu, 13 Aug 2015 04:08:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3189,8 +3278,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a6a5d0ec-cc83-44ba-b65c-7a3fcf926a87" + "5e5549c5-3abb-4c39-9721-cc8243b92b30" ], "Cache-Control": [ "no-cache" @@ -3200,31 +3292,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14918" ], "x-ms-correlation-request-id": [ - "28660584-8663-4087-b7c1-941810b31c0e" + "d5e9e08f-373a-43aa-a1a6-52e720902666" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210258Z:28660584-8663-4087-b7c1-941810b31c0e" + "SOUTHCENTRALUS:20150813T040843Z:d5e9e08f-373a-43aa-a1a6-52e720902666" ], "Date": [ - "Fri, 19 Jun 2015 21:02:57 GMT" + "Thu, 13 Aug 2015 04:08:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3241,8 +3333,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ed751a4b-135d-46e9-b59e-8c6bb682282d" + "6cb11174-63f6-4e14-9c99-746545b248b7" ], "Cache-Control": [ "no-cache" @@ -3252,31 +3347,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14917" ], "x-ms-correlation-request-id": [ - "e405d830-1e18-484b-a522-e8d6043af73b" + "2ce77c56-f02a-4f53-971b-a1fa72a35010" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210328Z:e405d830-1e18-484b-a522-e8d6043af73b" + "SOUTHCENTRALUS:20150813T040913Z:2ce77c56-f02a-4f53-971b-a1fa72a35010" ], "Date": [ - "Fri, 19 Jun 2015 21:03:28 GMT" + "Thu, 13 Aug 2015 04:09:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3293,8 +3388,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "abd3c1e6-085a-4659-bf6e-98508d4bc5a7" + "5a990242-e0ca-4d4c-b777-8ae10ae4e013" ], "Cache-Control": [ "no-cache" @@ -3304,31 +3402,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "14916" ], "x-ms-correlation-request-id": [ - "7fbdca68-2906-46f8-8a74-5e951a4ad661" + "5944c24d-b93b-4928-9ebe-da2bb080bc4d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210358Z:7fbdca68-2906-46f8-8a74-5e951a4ad661" + "SOUTHCENTRALUS:20150813T040943Z:5944c24d-b93b-4928-9ebe-da2bb080bc4d" ], "Date": [ - "Fri, 19 Jun 2015 21:03:58 GMT" + "Thu, 13 Aug 2015 04:09:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3345,8 +3443,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "bee0a860-b317-4430-b867-5367a291d6ba" + "b5188adc-74d5-419c-9cc0-15d2f34c4100" ], "Cache-Control": [ "no-cache" @@ -3356,31 +3457,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14915" ], "x-ms-correlation-request-id": [ - "cc806dcd-588c-4632-87c2-5b487599f921" + "f5b07b31-3987-4b45-a94d-ee2f4392a1ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210429Z:cc806dcd-588c-4632-87c2-5b487599f921" + "SOUTHCENTRALUS:20150813T041014Z:f5b07b31-3987-4b45-a94d-ee2f4392a1ba" ], "Date": [ - "Fri, 19 Jun 2015 21:04:28 GMT" + "Thu, 13 Aug 2015 04:10:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3397,8 +3498,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "efae000a-be22-4d28-993d-5a4832ed8391" + "b7bffb56-14fc-4668-985b-909643348b20" ], "Cache-Control": [ "no-cache" @@ -3408,31 +3512,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "14914" ], "x-ms-correlation-request-id": [ - "38d9a977-0942-4c29-a739-70345e1ef695" + "dcfad29d-c349-4de3-8301-0428ba1d8fa3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210459Z:38d9a977-0942-4c29-a739-70345e1ef695" + "SOUTHCENTRALUS:20150813T041044Z:dcfad29d-c349-4de3-8301-0428ba1d8fa3" ], "Date": [ - "Fri, 19 Jun 2015 21:04:58 GMT" + "Thu, 13 Aug 2015 04:10:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3449,8 +3553,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "2ea19720-91ce-417d-88d2-720d2b135133" + "ca37e53f-3c8e-473a-a900-a13b5ab60ef7" ], "Cache-Control": [ "no-cache" @@ -3460,31 +3567,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "14913" ], "x-ms-correlation-request-id": [ - "fdb01b90-9a3e-4c87-ae55-fd72c2b33937" + "85747b4c-e960-4172-88f8-fd16252569d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210529Z:fdb01b90-9a3e-4c87-ae55-fd72c2b33937" + "SOUTHCENTRALUS:20150813T041114Z:85747b4c-e960-4172-88f8-fd16252569d2" ], "Date": [ - "Fri, 19 Jun 2015 21:05:28 GMT" + "Thu, 13 Aug 2015 04:11:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3501,8 +3608,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a047bbcc-dac7-489e-acd1-7fa4e53e6df4" + "a1f4bdab-3c37-479f-a8eb-27e0aa85ff05" ], "Cache-Control": [ "no-cache" @@ -3512,31 +3622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14912" ], "x-ms-correlation-request-id": [ - "704d6093-9e84-4736-a0bb-bb7707b4cefe" + "0e5d8a0a-9448-4b27-ae41-1d2538881af7" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210559Z:704d6093-9e84-4736-a0bb-bb7707b4cefe" + "SOUTHCENTRALUS:20150813T041145Z:0e5d8a0a-9448-4b27-ae41-1d2538881af7" ], "Date": [ - "Fri, 19 Jun 2015 21:05:58 GMT" + "Thu, 13 Aug 2015 04:11:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3553,8 +3663,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "09d53770-3f46-4381-b413-f6c69142180e" + "2adef57c-d7b9-4beb-8670-8b7a97f1cc5a" ], "Cache-Control": [ "no-cache" @@ -3564,31 +3677,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14911" ], "x-ms-correlation-request-id": [ - "f4d8329b-c2ae-437b-961c-33500d6f4c45" + "49f809a8-fd22-4e99-b6ca-cdc3c887c329" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210629Z:f4d8329b-c2ae-437b-961c-33500d6f4c45" + "SOUTHCENTRALUS:20150813T041215Z:49f809a8-fd22-4e99-b6ca-cdc3c887c329" ], "Date": [ - "Fri, 19 Jun 2015 21:06:29 GMT" + "Thu, 13 Aug 2015 04:12:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3605,8 +3718,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "4e210087-b079-466e-8e93-4ca3fe6a88e1" + "4120db97-5052-4355-8585-8255b7e24907" ], "Cache-Control": [ "no-cache" @@ -3616,31 +3732,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "14910" ], "x-ms-correlation-request-id": [ - "91bbc9b6-ed9b-4c99-943f-bd91f1c92076" + "c82ec14f-4afe-410c-b827-a70c07e1a96f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210659Z:91bbc9b6-ed9b-4c99-943f-bd91f1c92076" + "SOUTHCENTRALUS:20150813T041245Z:c82ec14f-4afe-410c-b827-a70c07e1a96f" ], "Date": [ - "Fri, 19 Jun 2015 21:06:58 GMT" + "Thu, 13 Aug 2015 04:12:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3657,8 +3773,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "bec01a99-2536-4fa0-8203-fc90e0c23d6e" + "afe33152-1452-415c-9762-70b9a994eee8" ], "Cache-Control": [ "no-cache" @@ -3668,31 +3787,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14800" + "14909" ], "x-ms-correlation-request-id": [ - "9fee2a10-d648-4866-8e19-59d4d34d3315" + "39ef10b7-d5b0-4b76-a201-089a3d4f1cdb" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210729Z:9fee2a10-d648-4866-8e19-59d4d34d3315" + "SOUTHCENTRALUS:20150813T041316Z:39ef10b7-d5b0-4b76-a201-089a3d4f1cdb" ], "Date": [ - "Fri, 19 Jun 2015 21:07:29 GMT" + "Thu, 13 Aug 2015 04:13:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3709,8 +3828,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "5d469565-08ab-47f8-bae4-deabb3a694d0" + "511055b4-f45c-4032-a11c-a22809df91ff" ], "Cache-Control": [ "no-cache" @@ -3720,31 +3842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" + "14908" ], "x-ms-correlation-request-id": [ - "fd4ae639-f098-4838-9ea3-0a815c2f9681" + "7cb84fc1-d8e9-464d-9564-62eb2d46b0e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210800Z:fd4ae639-f098-4838-9ea3-0a815c2f9681" + "SOUTHCENTRALUS:20150813T041346Z:7cb84fc1-d8e9-464d-9564-62eb2d46b0e8" ], "Date": [ - "Fri, 19 Jun 2015 21:07:59 GMT" + "Thu, 13 Aug 2015 04:13:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3761,8 +3883,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "07f80932-eb7c-4685-9b0c-3baacf4cdb1f" + "9013c7bd-7082-47c8-811e-5205c781a1fa" ], "Cache-Control": [ "no-cache" @@ -3772,31 +3897,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" + "14907" ], "x-ms-correlation-request-id": [ - "8d79193f-080d-4d6e-93cc-49bc18dff602" + "384722c0-8803-4508-919a-d38ee8299132" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210830Z:8d79193f-080d-4d6e-93cc-49bc18dff602" + "SOUTHCENTRALUS:20150813T041416Z:384722c0-8803-4508-919a-d38ee8299132" ], "Date": [ - "Fri, 19 Jun 2015 21:08:30 GMT" + "Thu, 13 Aug 2015 04:14:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3813,8 +3938,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c213de94-a255-4f38-8590-7006b34db20f" + "1bbe3107-c02a-49df-a0d1-15837c93b7f1" ], "Cache-Control": [ "no-cache" @@ -3824,34 +3952,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" + "14906" ], "x-ms-correlation-request-id": [ - "f61a7080-9d3a-4c85-8681-1eeefb435ba7" + "12e0d314-2c69-4657-9c43-64b6a0fd1869" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210900Z:f61a7080-9d3a-4c85-8681-1eeefb435ba7" + "SOUTHCENTRALUS:20150813T041446Z:12e0d314-2c69-4657-9c43-64b6a0fd1869" ], "Date": [ - "Fri, 19 Jun 2015 21:08:59 GMT" + "Thu, 13 Aug 2015 04:14:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/dce9474b-54a9-4666-b2c5-15f0cd20e5b2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGNlOTQ3NGItNTRhOS00NjY2LWIyYzUtMTVmMGNkMjBlNWIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"dce9474b-54a9-4666-b2c5-15f0cd20e5b2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-19T13:54:26.8586366-07:00\",\r\n \"endTime\": \"2015-06-19T14:09:09.0049097-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3865,8 +3993,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c525547c-0893-4731-b6c1-a1a3f61482e7" + "99e2dfbc-a7d8-45b8-a14e-a7aa6b4852fc" ], "Cache-Control": [ "no-cache" @@ -3876,34 +4007,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14905" ], "x-ms-correlation-request-id": [ - "0b0d7112-9ed8-49ce-8a35-1334db2865c8" + "a6f3e81d-a76c-4355-9c2d-56abbddb08ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210930Z:0b0d7112-9ed8-49ce-8a35-1334db2865c8" + "SOUTHCENTRALUS:20150813T041517Z:a6f3e81d-a76c-4355-9c2d-56abbddb08ff" ], "Date": [ - "Fri, 19 Jun 2015 21:09:29 GMT" + "Thu, 13 Aug 2015 04:15:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851/extensions/csetest?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg4NTEvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "565" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3917,8 +4048,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a70ac219-28cb-43e1-bae9-afe375eba510" + "88d9fc3c-0c86-4377-87ee-40bc297a7d56" ], "Cache-Control": [ "no-cache" @@ -3928,34 +4062,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" + "14904" ], "x-ms-correlation-request-id": [ - "eeb6854c-2cd8-4ffe-8e75-1c38f5e62307" + "991824c0-07e1-4401-a944-66210ae990b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210930Z:eeb6854c-2cd8-4ffe-8e75-1c38f5e62307" + "SOUTHCENTRALUS:20150813T041547Z:991824c0-07e1-4401-a944-66210ae990b0" ], "Date": [ - "Fri, 19 Jun 2015 21:09:29 GMT" + "Thu, 13 Aug 2015 04:15:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851/extensions/csetest?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg4NTEvZXh0ZW5zaW9ucy9jc2V0ZXN0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus/StdOut/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"\"\r\n },\r\n {\r\n \"code\": \"ComponentStatus/StdErr/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Finished executing command\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1354" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3969,8 +4103,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a43ebfff-fb3e-4c7d-aef6-23826c79c2b2" + "6642f38d-a183-4af5-a15e-71f46b5fce70" ], "Cache-Control": [ "no-cache" @@ -3980,34 +4117,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14903" ], "x-ms-correlation-request-id": [ - "2314fcbd-9eae-49df-b6d2-19e32155ac00" + "fb807146-ee43-4fa7-b5f9-b35189f99380" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210930Z:2314fcbd-9eae-49df-b6d2-19e32155ac00" + "SOUTHCENTRALUS:20150813T041617Z:fb807146-ee43-4fa7-b5f9-b35189f99380" ], "Date": [ - "Fri, 19 Jun 2015 21:09:29 GMT" + "Thu, 13 Aug 2015 04:16:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps8851/providers/Microsoft.Compute/virtualMachines/vmcrptestps8851/extensions/csetest?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg4NTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg4NTEvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4015,51 +4155,48 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "40152ee1-6620-4eed-a1de-d880843f1d84" + "32cee5f7-03c7-48b0-9573-4417a7c0239a" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" ], "x-ms-correlation-request-id": [ - "4acf0c72-f2d2-404e-9a3f-efb3803c6b4a" + "ce3b9e28-711d-402b-b037-d714a1a5e7ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210930Z:4acf0c72-f2d2-404e-9a3f-efb3803c6b4a" + "SOUTHCENTRALUS:20150813T041647Z:ce3b9e28-711d-402b-b037-d714a1a5e7ee" ], "Date": [ - "Fri, 19 Jun 2015 21:09:30 GMT" + "Thu, 13 Aug 2015 04:16:47 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4076,8 +4213,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e06e0600-9e94-422c-9ee6-f3e6f1efdcfd" + "3f269774-4bd4-4d22-a4e0-e381d400ed34" ], "Cache-Control": [ "no-cache" @@ -4087,31 +4227,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14901" ], "x-ms-correlation-request-id": [ - "a4e19d20-ac7a-46fe-9b26-d77a5de515a8" + "5fc03b84-81db-4111-9fd4-fe5f4348920b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T210930Z:a4e19d20-ac7a-46fe-9b26-d77a5de515a8" + "SOUTHCENTRALUS:20150813T041718Z:5fc03b84-81db-4111-9fd4-fe5f4348920b" ], "Date": [ - "Fri, 19 Jun 2015 21:09:30 GMT" + "Thu, 13 Aug 2015 04:17:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4128,8 +4268,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e51bf74c-c93f-42ee-ad81-017f2c18271d" + "5e79a399-b13b-4bbb-bbe5-b1bdc08fe301" ], "Cache-Control": [ "no-cache" @@ -4139,34 +4282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14786" + "14900" ], "x-ms-correlation-request-id": [ - "d4a42c50-27b1-46f2-8aa1-191b3e43bd48" + "fc7686e1-2382-4562-a917-9dc1cd6f6c91" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211001Z:d4a42c50-27b1-46f2-8aa1-191b3e43bd48" + "SOUTHCENTRALUS:20150813T041748Z:fc7686e1-2382-4562-a917-9dc1cd6f6c91" ], "Date": [ - "Fri, 19 Jun 2015 21:10:00 GMT" + "Thu, 13 Aug 2015 04:17:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2d11f60c-6591-43cb-9fba-99018659b94f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQxMWY2MGMtNjU5MS00M2NiLTlmYmEtOTkwMTg2NTliOTRmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"2d11f60c-6591-43cb-9fba-99018659b94f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T21:02:39.1884498-07:00\",\r\n \"endTime\": \"2015-08-12T21:17:55.0068025-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4180,8 +4323,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "39878a06-e7a1-48b6-b4ad-029463976bb4" + "3ce27d33-bd9a-4a90-b4f8-be14d3bf490e" ], "Cache-Control": [ "no-cache" @@ -4191,34 +4337,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14899" ], "x-ms-correlation-request-id": [ - "3ee7fc96-0eb1-49de-bc7a-0bafdfa68d11" + "153736b6-754f-4996-9d76-6fabf6fbcdfe" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211031Z:3ee7fc96-0eb1-49de-bc7a-0bafdfa68d11" + "SOUTHCENTRALUS:20150813T041818Z:153736b6-754f-4996-9d76-6fabf6fbcdfe" ], "Date": [ - "Fri, 19 Jun 2015 21:10:31 GMT" + "Thu, 13 Aug 2015 04:18:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102/extensions/csetest?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczcxMDIvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4232,8 +4378,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "d7c4bbcf-60c4-4324-be73-c3b3aba4bbd9" + "ec79601d-808c-4623-ab34-91f0c44ef6a7" ], "Cache-Control": [ "no-cache" @@ -4243,34 +4392,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" + "14898" ], "x-ms-correlation-request-id": [ - "5dc494b9-0136-4090-ac60-59f7004cd5ae" + "feb0010b-e156-403a-9bde-874aa4793ba8" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211101Z:5dc494b9-0136-4090-ac60-59f7004cd5ae" + "SOUTHCENTRALUS:20150813T041819Z:feb0010b-e156-403a-9bde-874aa4793ba8" ], "Date": [ - "Fri, 19 Jun 2015 21:11:00 GMT" + "Thu, 13 Aug 2015 04:18:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102/extensions/csetest?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczcxMDIvZXh0ZW5zaW9ucy9jc2V0ZXN0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus/StdOut/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"\"\r\n },\r\n {\r\n \"code\": \"ComponentStatus/StdErr/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Finished executing command\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "1354" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4284,8 +4433,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ecf9cf22-2369-4760-9c0d-069bf07c6bc9" + "0602bbfc-b648-4900-b99d-816d08088d79" ], "Cache-Control": [ "no-cache" @@ -4295,31 +4447,89 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14897" ], "x-ms-correlation-request-id": [ - "344de109-b4b3-4d97-8702-d45404f765ea" + "3ac44eed-e1b8-4779-ba40-2e2936c18322" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211131Z:344de109-b4b3-4d97-8702-d45404f765ea" + "SOUTHCENTRALUS:20150813T041819Z:3ac44eed-e1b8-4779-ba40-2e2936c18322" ], "Date": [ - "Fri, 19 Jun 2015 21:11:31 GMT" + "Thu, 13 Aug 2015 04:18:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7102/providers/Microsoft.Compute/virtualMachines/vmcrptestps7102/extensions/csetest?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczcxMDIvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], + "x-ms-request-id": [ + "e30ea39c-6f69-4181-a38f-94e6a7e37581" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "15f69721-0215-4b45-9a19-ddbe41df8dc3" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T041820Z:15f69721-0215-4b45-9a19-ddbe41df8dc3" + ], + "Date": [ + "Thu, 13 Aug 2015 04:18:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4336,8 +4546,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a3735d25-3bb3-4f45-89e3-2cb036367b05" + "e7776cd4-6547-43db-92ae-5c34e1ba4ff9" ], "Cache-Control": [ "no-cache" @@ -4347,31 +4560,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14770" + "14896" ], "x-ms-correlation-request-id": [ - "2839c383-fea1-477a-b7e0-39f45a7f1210" + "cb3d6004-3564-4395-8b2f-d55b49aaad30" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211201Z:2839c383-fea1-477a-b7e0-39f45a7f1210" + "SOUTHCENTRALUS:20150813T041820Z:cb3d6004-3564-4395-8b2f-d55b49aaad30" ], "Date": [ - "Fri, 19 Jun 2015 21:12:01 GMT" + "Thu, 13 Aug 2015 04:18:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4388,8 +4601,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f2bb090c-5ad5-4ed4-b2c6-1f667dfbd4b5" + "ee468121-dea4-49a5-b329-2641f025ccec" ], "Cache-Control": [ "no-cache" @@ -4399,31 +4615,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14895" ], "x-ms-correlation-request-id": [ - "5e19b7e3-48c5-4e69-ac68-a34be33e8590" + "2bc94c97-562e-411e-8049-5f194b7172dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211231Z:5e19b7e3-48c5-4e69-ac68-a34be33e8590" + "SOUTHCENTRALUS:20150813T041850Z:2bc94c97-562e-411e-8049-5f194b7172dc" ], "Date": [ - "Fri, 19 Jun 2015 21:12:30 GMT" + "Thu, 13 Aug 2015 04:18:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4440,8 +4656,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c5192dfc-7426-4bc3-8da5-93c293ca56c5" + "2a295ebc-6c9f-49d9-a5c9-a8a37486ea96" ], "Cache-Control": [ "no-cache" @@ -4451,31 +4670,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14894" ], "x-ms-correlation-request-id": [ - "30af0d55-4c44-4ebf-b731-64744d5c000c" + "b370ce16-5704-4f57-b7bb-c95ce3be140e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211301Z:30af0d55-4c44-4ebf-b731-64744d5c000c" + "SOUTHCENTRALUS:20150813T041921Z:b370ce16-5704-4f57-b7bb-c95ce3be140e" ], "Date": [ - "Fri, 19 Jun 2015 21:13:01 GMT" + "Thu, 13 Aug 2015 04:19:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4492,8 +4711,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ac2b384b-dfad-4a85-9317-544838484648" + "efa32304-3a74-42cc-ae6b-503f181eed73" ], "Cache-Control": [ "no-cache" @@ -4503,31 +4725,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14893" ], "x-ms-correlation-request-id": [ - "9296c542-ce38-4eff-88d8-78917f005571" + "be77e164-c0d3-4b46-aa8c-6c41d882784a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211332Z:9296c542-ce38-4eff-88d8-78917f005571" + "SOUTHCENTRALUS:20150813T041951Z:be77e164-c0d3-4b46-aa8c-6c41d882784a" ], "Date": [ - "Fri, 19 Jun 2015 21:13:31 GMT" + "Thu, 13 Aug 2015 04:19:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4544,8 +4766,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c16f5a46-9426-46c9-9f99-4276e0e2579b" + "a5eb0a70-8358-42cc-af57-d2a10258a9ce" ], "Cache-Control": [ "no-cache" @@ -4555,34 +4780,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14756" + "14894" ], "x-ms-correlation-request-id": [ - "37dfde0f-5ba7-4c8b-8a7e-f1fe2945457f" + "b33c8c0e-32a9-49c8-b76a-80253e2e397f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211402Z:37dfde0f-5ba7-4c8b-8a7e-f1fe2945457f" + "SOUTHCENTRALUS:20150813T042021Z:b33c8c0e-32a9-49c8-b76a-80253e2e397f" ], "Date": [ - "Fri, 19 Jun 2015 21:14:02 GMT" + "Thu, 13 Aug 2015 04:20:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/40152ee1-6620-4eed-a1de-d880843f1d84?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDAxNTJlZTEtNjYyMC00ZWVkLWExZGUtZDg4MDg0M2YxZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"40152ee1-6620-4eed-a1de-d880843f1d84\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-19T14:09:31.0831577-07:00\",\r\n \"endTime\": \"2015-06-19T14:14:30.3819459-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4596,8 +4821,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6a7ff6f6-2e72-4a2e-bd19-8415defb675d" + "cf73761e-1981-4d22-bce5-fcd035705fff" ], "Cache-Control": [ "no-cache" @@ -4607,34 +4835,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14893" ], "x-ms-correlation-request-id": [ - "dc233162-09b0-4ca7-9624-d870ef41af81" + "d4527f5b-c636-4a15-b944-71b0a9e29f86" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211432Z:dc233162-09b0-4ca7-9624-d870ef41af81" + "SOUTHCENTRALUS:20150813T042051Z:d4527f5b-c636-4a15-b944-71b0a9e29f86" ], "Date": [ - "Fri, 19 Jun 2015 21:14:31 GMT" + "Thu, 13 Aug 2015 04:20:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps8851?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg4NTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4642,53 +4873,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "48c8d709-a773-415f-8542-f0db1ce3797b" + "9a462b13-f461-450f-a9b8-6b1f6ae81ae9" ], - "x-ms-correlation-request-id": [ - "48c8d709-a773-415f-8542-f0db1ce3797b" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150619T211432Z:48c8d709-a773-415f-8542-f0db1ce3797b" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "8cf309cc-223d-43e1-a33c-a2afc43aae6e" ], - "Date": [ - "Fri, 19 Jun 2015 21:14:31 GMT" + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T042122Z:8cf309cc-223d-43e1-a33c-a2afc43aae6e" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 04:21:21 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4696,53 +4928,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14801" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "e130d189-3961-44e6-8964-0942e289558a" + "ea5cd6ee-4a49-40a8-8790-64394066807b" ], - "x-ms-correlation-request-id": [ - "e130d189-3961-44e6-8964-0942e289558a" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150619T211432Z:e130d189-3961-44e6-8964-0942e289558a" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "c18818ac-b29a-4bfa-8657-33f1b051d304" ], - "Date": [ - "Fri, 19 Jun 2015 21:14:31 GMT" + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T042152Z:c18818ac-b29a-4bfa-8657-33f1b051d304" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 04:21:52 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4750,53 +4983,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "a57dc695-b526-4fcf-b816-6819817fecb9" + "92d54e9f-be2e-4576-913c-d59040231ea9" ], - "x-ms-correlation-request-id": [ - "a57dc695-b526-4fcf-b816-6819817fecb9" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150619T211447Z:a57dc695-b526-4fcf-b816-6819817fecb9" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "4c32e425-b397-49b0-85cf-8a53bf686a76" ], - "Date": [ - "Fri, 19 Jun 2015 21:14:47 GMT" + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T042222Z:4c32e425-b397-49b0-85cf-8a53bf686a76" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 04:22:22 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4804,45 +5038,98 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "b3f2d2cf-a374-44d4-a3fa-c8bac1e07215" + "31acbeb3-3b6d-4b8a-bc5a-1fb25760ce6c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" ], "x-ms-correlation-request-id": [ - "b3f2d2cf-a374-44d4-a3fa-c8bac1e07215" + "04a26afd-1723-48ae-9e20-2ef9f6a98b61" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211502Z:b3f2d2cf-a374-44d4-a3fa-c8bac1e07215" + "SOUTHCENTRALUS:20150813T042253Z:04a26afd-1723-48ae-9e20-2ef9f6a98b61" + ], + "Date": [ + "Thu, 13 Aug 2015 04:22:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e30ea39c-6f69-4181-a38f-94e6a7e37581?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMwZWEzOWMtNmY2OS00MTgxLWEzOGYtOTRlNmE3ZTM3NTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"e30ea39c-6f69-4181-a38f-94e6a7e37581\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T21:18:20.0225953-07:00\",\r\n \"endTime\": \"2015-08-12T21:23:09.852578-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], + "x-ms-request-id": [ + "c610dd43-5182-44db-95fd-8fdaa11020d4" + ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2015 21:15:02 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "618167c8-ec73-46c5-be6b-b2e6570c76fa" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T042323Z:618167c8-ec73-46c5-be6b-b2e6570c76fa" + ], + "Date": [ + "Thu, 13 Aug 2015 04:23:22 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7102?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcxMDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -4861,17 +5148,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "5a3f7d72-b29b-40e9-ba5e-ef4ff5eb929e" + "0047dadb-c9da-4e11-a3ad-565a09ef55b8" ], "x-ms-correlation-request-id": [ - "5a3f7d72-b29b-40e9-ba5e-ef4ff5eb929e" + "0047dadb-c9da-4e11-a3ad-565a09ef55b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211517Z:5a3f7d72-b29b-40e9-ba5e-ef4ff5eb929e" + "SOUTHCENTRALUS:20150813T042325Z:0047dadb-c9da-4e11-a3ad-565a09ef55b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4880,17 +5167,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:15:17 GMT" + "Thu, 13 Aug 2015 04:23:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4916,16 +5203,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14998" ], "x-ms-request-id": [ - "3665fbc5-3320-4ddc-aa87-dbc0623644d9" + "87101493-0798-4151-9a9e-1cf0a805fc9d" ], "x-ms-correlation-request-id": [ - "3665fbc5-3320-4ddc-aa87-dbc0623644d9" + "87101493-0798-4151-9a9e-1cf0a805fc9d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211533Z:3665fbc5-3320-4ddc-aa87-dbc0623644d9" + "SOUTHCENTRALUS:20150813T042325Z:87101493-0798-4151-9a9e-1cf0a805fc9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4934,17 +5221,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:15:32 GMT" + "Thu, 13 Aug 2015 04:23:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4970,16 +5257,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14997" ], "x-ms-request-id": [ - "8dcbcd84-2fcb-4dc9-8346-253691407fb5" + "8183e29f-750c-4797-bb9f-b8012ef9646c" ], "x-ms-correlation-request-id": [ - "8dcbcd84-2fcb-4dc9-8346-253691407fb5" + "8183e29f-750c-4797-bb9f-b8012ef9646c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211548Z:8dcbcd84-2fcb-4dc9-8346-253691407fb5" + "SOUTHCENTRALUS:20150813T042340Z:8183e29f-750c-4797-bb9f-b8012ef9646c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4988,17 +5275,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:15:47 GMT" + "Thu, 13 Aug 2015 04:23:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5024,16 +5311,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14806" + "14996" ], "x-ms-request-id": [ - "8fa85c5f-f439-479f-94a2-0c319be72fa9" + "ff4a67c1-88b6-4e27-b4d5-54dd8188e569" ], "x-ms-correlation-request-id": [ - "8fa85c5f-f439-479f-94a2-0c319be72fa9" + "ff4a67c1-88b6-4e27-b4d5-54dd8188e569" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211603Z:8fa85c5f-f439-479f-94a2-0c319be72fa9" + "SOUTHCENTRALUS:20150813T042355Z:ff4a67c1-88b6-4e27-b4d5-54dd8188e569" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5042,17 +5329,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:16:02 GMT" + "Thu, 13 Aug 2015 04:23:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5078,16 +5365,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14803" + "14995" ], "x-ms-request-id": [ - "8cb90332-ec11-49a0-9e11-c48d0daea5c0" + "65a7308b-04ed-4bab-a817-8b3c1600d5f5" ], "x-ms-correlation-request-id": [ - "8cb90332-ec11-49a0-9e11-c48d0daea5c0" + "65a7308b-04ed-4bab-a817-8b3c1600d5f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211618Z:8cb90332-ec11-49a0-9e11-c48d0daea5c0" + "SOUTHCENTRALUS:20150813T042410Z:65a7308b-04ed-4bab-a817-8b3c1600d5f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5096,17 +5383,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:16:17 GMT" + "Thu, 13 Aug 2015 04:24:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5132,16 +5419,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" + "14994" ], "x-ms-request-id": [ - "ccf69a86-8249-4300-9660-260afc546e79" + "24a1ec42-174e-41f4-a8f6-d474a87b238e" ], "x-ms-correlation-request-id": [ - "ccf69a86-8249-4300-9660-260afc546e79" + "24a1ec42-174e-41f4-a8f6-d474a87b238e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211633Z:ccf69a86-8249-4300-9660-260afc546e79" + "SOUTHCENTRALUS:20150813T042425Z:24a1ec42-174e-41f4-a8f6-d474a87b238e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5150,17 +5437,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:16:33 GMT" + "Thu, 13 Aug 2015 04:24:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5186,16 +5473,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14800" + "14993" ], "x-ms-request-id": [ - "84264e21-2012-43bd-bf9e-65ccd1b735a9" + "6b300e41-9884-4f78-a465-06d0971ec842" ], "x-ms-correlation-request-id": [ - "84264e21-2012-43bd-bf9e-65ccd1b735a9" + "6b300e41-9884-4f78-a465-06d0971ec842" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211648Z:84264e21-2012-43bd-bf9e-65ccd1b735a9" + "SOUTHCENTRALUS:20150813T042441Z:6b300e41-9884-4f78-a465-06d0971ec842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5204,17 +5491,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:16:48 GMT" + "Thu, 13 Aug 2015 04:24:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5240,16 +5527,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "14992" ], "x-ms-request-id": [ - "7c8c0c53-7d1d-4a80-979b-b8b7b6705b67" + "10713b8a-479e-4427-8a72-2e6e7382872e" ], "x-ms-correlation-request-id": [ - "7c8c0c53-7d1d-4a80-979b-b8b7b6705b67" + "10713b8a-479e-4427-8a72-2e6e7382872e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211703Z:7c8c0c53-7d1d-4a80-979b-b8b7b6705b67" + "SOUTHCENTRALUS:20150813T042456Z:10713b8a-479e-4427-8a72-2e6e7382872e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5258,17 +5545,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:17:03 GMT" + "Thu, 13 Aug 2015 04:24:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5294,16 +5581,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" + "14991" ], "x-ms-request-id": [ - "4b6b91ea-e202-48a0-870c-14162bb03dac" + "d03fbf8f-b87d-4af2-827c-5d86aeb35b12" ], "x-ms-correlation-request-id": [ - "4b6b91ea-e202-48a0-870c-14162bb03dac" + "d03fbf8f-b87d-4af2-827c-5d86aeb35b12" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211718Z:4b6b91ea-e202-48a0-870c-14162bb03dac" + "SOUTHCENTRALUS:20150813T042511Z:d03fbf8f-b87d-4af2-827c-5d86aeb35b12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5312,17 +5599,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:17:17 GMT" + "Thu, 13 Aug 2015 04:25:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5348,16 +5635,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14796" + "14990" ], "x-ms-request-id": [ - "2d588303-13c6-4f22-be38-04374fd1a52a" + "494c5d7c-8c4a-4470-a8c0-f1abc62d3c4a" ], "x-ms-correlation-request-id": [ - "2d588303-13c6-4f22-be38-04374fd1a52a" + "494c5d7c-8c4a-4470-a8c0-f1abc62d3c4a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211733Z:2d588303-13c6-4f22-be38-04374fd1a52a" + "SOUTHCENTRALUS:20150813T042526Z:494c5d7c-8c4a-4470-a8c0-f1abc62d3c4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5366,17 +5653,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:17:32 GMT" + "Thu, 13 Aug 2015 04:25:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5402,16 +5689,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14794" + "14989" ], "x-ms-request-id": [ - "29a92041-88e7-48f0-a594-be566acc75a6" + "1fe35887-debb-4a9e-a969-f9a43127b623" ], "x-ms-correlation-request-id": [ - "29a92041-88e7-48f0-a594-be566acc75a6" + "1fe35887-debb-4a9e-a969-f9a43127b623" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211748Z:29a92041-88e7-48f0-a594-be566acc75a6" + "SOUTHCENTRALUS:20150813T042541Z:1fe35887-debb-4a9e-a969-f9a43127b623" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5420,17 +5707,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:17:48 GMT" + "Thu, 13 Aug 2015 04:25:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5456,16 +5743,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14793" + "14988" ], "x-ms-request-id": [ - "041bc6b0-4753-400f-a6a6-a04225b0825d" + "eb033ad7-1c09-498b-8e5a-e027605c073b" ], "x-ms-correlation-request-id": [ - "041bc6b0-4753-400f-a6a6-a04225b0825d" + "eb033ad7-1c09-498b-8e5a-e027605c073b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211803Z:041bc6b0-4753-400f-a6a6-a04225b0825d" + "SOUTHCENTRALUS:20150813T042556Z:eb033ad7-1c09-498b-8e5a-e027605c073b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5474,17 +5761,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:18:03 GMT" + "Thu, 13 Aug 2015 04:25:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5510,16 +5797,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14987" ], "x-ms-request-id": [ - "cc6fc5f6-04c7-4269-91aa-7d1934b98646" + "9791aa74-fd7d-411c-8a63-a41b20358093" ], "x-ms-correlation-request-id": [ - "cc6fc5f6-04c7-4269-91aa-7d1934b98646" + "9791aa74-fd7d-411c-8a63-a41b20358093" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211818Z:cc6fc5f6-04c7-4269-91aa-7d1934b98646" + "SOUTHCENTRALUS:20150813T042612Z:9791aa74-fd7d-411c-8a63-a41b20358093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5528,17 +5815,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:18:18 GMT" + "Thu, 13 Aug 2015 04:26:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5564,16 +5851,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14789" + "14986" ], "x-ms-request-id": [ - "7ea9927d-6134-47e0-90d5-820d769be51f" + "a89daa8d-921c-46f3-b148-2acbf48192b5" ], "x-ms-correlation-request-id": [ - "7ea9927d-6134-47e0-90d5-820d769be51f" + "a89daa8d-921c-46f3-b148-2acbf48192b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211833Z:7ea9927d-6134-47e0-90d5-820d769be51f" + "SOUTHCENTRALUS:20150813T042627Z:a89daa8d-921c-46f3-b148-2acbf48192b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5582,17 +5869,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:18:32 GMT" + "Thu, 13 Aug 2015 04:26:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5618,16 +5905,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "14985" ], "x-ms-request-id": [ - "0cabb528-65fa-44e9-852a-799a5298c56b" + "d125ccca-a7d0-42db-9875-e6bb9eb42d41" ], "x-ms-correlation-request-id": [ - "0cabb528-65fa-44e9-852a-799a5298c56b" + "d125ccca-a7d0-42db-9875-e6bb9eb42d41" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211848Z:0cabb528-65fa-44e9-852a-799a5298c56b" + "SOUTHCENTRALUS:20150813T042642Z:d125ccca-a7d0-42db-9875-e6bb9eb42d41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5636,17 +5923,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:18:48 GMT" + "Thu, 13 Aug 2015 04:26:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5672,16 +5959,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14984" ], "x-ms-request-id": [ - "0ce54ca1-902f-489f-95c4-d6ae50aa9ce1" + "b1ac9f3a-7b08-483a-80a9-3c749c3f5114" ], "x-ms-correlation-request-id": [ - "0ce54ca1-902f-489f-95c4-d6ae50aa9ce1" + "b1ac9f3a-7b08-483a-80a9-3c749c3f5114" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211904Z:0ce54ca1-902f-489f-95c4-d6ae50aa9ce1" + "SOUTHCENTRALUS:20150813T042657Z:b1ac9f3a-7b08-483a-80a9-3c749c3f5114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5690,17 +5977,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:19:03 GMT" + "Thu, 13 Aug 2015 04:26:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5726,16 +6013,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14983" ], "x-ms-request-id": [ - "9d40eff7-3906-408a-83f0-1f3bb4bc72b5" + "d7cdf9d2-9d16-4058-b70e-95712454bddc" ], "x-ms-correlation-request-id": [ - "9d40eff7-3906-408a-83f0-1f3bb4bc72b5" + "d7cdf9d2-9d16-4058-b70e-95712454bddc" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211919Z:9d40eff7-3906-408a-83f0-1f3bb4bc72b5" + "SOUTHCENTRALUS:20150813T042712Z:d7cdf9d2-9d16-4058-b70e-95712454bddc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5744,17 +6031,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:19:18 GMT" + "Thu, 13 Aug 2015 04:27:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5780,16 +6067,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" + "14982" ], "x-ms-request-id": [ - "1ce50ca5-29d4-43ed-a3d7-62beb19c81cf" + "47620eec-9a96-40e9-bb43-df6b60616f25" ], "x-ms-correlation-request-id": [ - "1ce50ca5-29d4-43ed-a3d7-62beb19c81cf" + "47620eec-9a96-40e9-bb43-df6b60616f25" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211934Z:1ce50ca5-29d4-43ed-a3d7-62beb19c81cf" + "SOUTHCENTRALUS:20150813T042727Z:47620eec-9a96-40e9-bb43-df6b60616f25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5798,17 +6085,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:19:34 GMT" + "Thu, 13 Aug 2015 04:27:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5834,16 +6121,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14981" ], "x-ms-request-id": [ - "6e72bf0c-c76e-46f8-aa7e-f1a9883996a7" + "00f71b50-076c-473e-9d71-0a9e300bd08c" ], "x-ms-correlation-request-id": [ - "6e72bf0c-c76e-46f8-aa7e-f1a9883996a7" + "00f71b50-076c-473e-9d71-0a9e300bd08c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T211949Z:6e72bf0c-c76e-46f8-aa7e-f1a9883996a7" + "SOUTHCENTRALUS:20150813T042743Z:00f71b50-076c-473e-9d71-0a9e300bd08c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5852,17 +6139,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:19:48 GMT" + "Thu, 13 Aug 2015 04:27:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5888,16 +6175,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14777" + "14980" ], "x-ms-request-id": [ - "3dac6dc8-f079-4a1a-9102-224f6d621a9d" + "706577f9-6e8f-422b-985b-691db008fe52" ], "x-ms-correlation-request-id": [ - "3dac6dc8-f079-4a1a-9102-224f6d621a9d" + "706577f9-6e8f-422b-985b-691db008fe52" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T212004Z:3dac6dc8-f079-4a1a-9102-224f6d621a9d" + "SOUTHCENTRALUS:20150813T042758Z:706577f9-6e8f-422b-985b-691db008fe52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5906,17 +6193,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:20:03 GMT" + "Thu, 13 Aug 2015 04:27:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5942,16 +6229,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14774" + "14979" ], "x-ms-request-id": [ - "e415bb7b-3c49-4713-b3ad-28365eab4320" + "39f8381c-40d9-424f-b8b8-f2e30a63522d" ], "x-ms-correlation-request-id": [ - "e415bb7b-3c49-4713-b3ad-28365eab4320" + "39f8381c-40d9-424f-b8b8-f2e30a63522d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T212019Z:e415bb7b-3c49-4713-b3ad-28365eab4320" + "SOUTHCENTRALUS:20150813T042813Z:39f8381c-40d9-424f-b8b8-f2e30a63522d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5960,17 +6247,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:20:19 GMT" + "Thu, 13 Aug 2015 04:28:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5996,16 +6283,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14978" ], "x-ms-request-id": [ - "00d5d0cd-d1cf-423e-81b8-c6e4937c8088" + "bba1490b-de3c-4994-839b-396de720198a" ], "x-ms-correlation-request-id": [ - "00d5d0cd-d1cf-423e-81b8-c6e4937c8088" + "bba1490b-de3c-4994-839b-396de720198a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T212034Z:00d5d0cd-d1cf-423e-81b8-c6e4937c8088" + "SOUTHCENTRALUS:20150813T042828Z:bba1490b-de3c-4994-839b-396de720198a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6014,17 +6301,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:20:34 GMT" + "Thu, 13 Aug 2015 04:28:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6050,16 +6337,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14772" + "14977" ], "x-ms-request-id": [ - "39540330-d6ce-4ab0-bd85-e7c37303b492" + "2beefd62-1674-4c9c-947d-97f6ecfc55c0" ], "x-ms-correlation-request-id": [ - "39540330-d6ce-4ab0-bd85-e7c37303b492" + "2beefd62-1674-4c9c-947d-97f6ecfc55c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T212049Z:39540330-d6ce-4ab0-bd85-e7c37303b492" + "SOUTHCENTRALUS:20150813T042843Z:2beefd62-1674-4c9c-947d-97f6ecfc55c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6068,17 +6355,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:20:48 GMT" + "Thu, 13 Aug 2015 04:28:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,16 +6391,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" + "14976" ], "x-ms-request-id": [ - "345d9baf-5530-406c-b0a9-f3ee3a4ef40f" + "db2d329f-be40-42dd-8e30-95f2150dccb9" ], "x-ms-correlation-request-id": [ - "345d9baf-5530-406c-b0a9-f3ee3a4ef40f" + "db2d329f-be40-42dd-8e30-95f2150dccb9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T212104Z:345d9baf-5530-406c-b0a9-f3ee3a4ef40f" + "SOUTHCENTRALUS:20150813T042858Z:db2d329f-be40-42dd-8e30-95f2150dccb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6122,17 +6409,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:21:04 GMT" + "Thu, 13 Aug 2015 04:28:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4ODUxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T0RVeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MTAyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTVRBeUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6155,16 +6442,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14975" ], "x-ms-request-id": [ - "a0b60adb-eff4-4a66-ab4a-1192437624f1" + "1d160f8d-ba8d-4671-8ea8-90496e568bbb" ], "x-ms-correlation-request-id": [ - "a0b60adb-eff4-4a66-ab4a-1192437624f1" + "1d160f8d-ba8d-4671-8ea8-90496e568bbb" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T212119Z:a0b60adb-eff4-4a66-ab4a-1192437624f1" + "SOUTHCENTRALUS:20150813T042914Z:1d160f8d-ba8d-4671-8ea8-90496e568bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6173,7 +6460,7 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 21:21:19 GMT" + "Thu, 13 Aug 2015 04:29:14 GMT" ] }, "StatusCode": 200 @@ -6181,11 +6468,11 @@ ], "Names": { "Test-VirtualMachineExtension": [ - "crptestps8851" + "crptestps7102" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineExtensionUsingHashTable.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineExtensionUsingHashTable.json index d7a3ca18ba07..2d18810c404d 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineExtensionUsingHashTable.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineExtensionUsingHashTable.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5842?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "4db5fb5a-f9da-45c3-97a9-8c8795990776" + ], + "x-ms-correlation-request-id": [ + "4db5fb5a-f9da-45c3-97a9-8c8795990776" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T050032Z:4db5fb5a-f9da-45c3-97a9-8c8795990776" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 05:00:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2544?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "32c02a7d-951c-424c-9689-13077c85ff1e" + "2454166a-3810-41f7-8a79-c128f0ecc044" ], "x-ms-correlation-request-id": [ - "32c02a7d-951c-424c-9689-13077c85ff1e" + "2454166a-3810-41f7-8a79-c128f0ecc044" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185142Z:32c02a7d-951c-424c-9689-13077c85ff1e" + "SOUTHCENTRALUS:20150813T050032Z:2454166a-3810-41f7-8a79-c128f0ecc044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 18:51:42 GMT" + "Thu, 13 Aug 2015 05:00:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5842?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2544?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-request-id": [ - "2bf458c2-fe1b-42f0-8e67-809c5a8085fb" + "689e93a8-2443-4c77-a240-347ced3d6460" ], "x-ms-correlation-request-id": [ - "2bf458c2-fe1b-42f0-8e67-809c5a8085fb" + "689e93a8-2443-4c77-a240-347ced3d6460" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192000Z:2bf458c2-fe1b-42f0-8e67-809c5a8085fb" + "SOUTHCENTRALUS:20150813T052935Z:689e93a8-2443-4c77-a240-347ced3d6460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:20:00 GMT" + "Thu, 13 Aug 2015 05:29:34 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5842?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2544?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842\",\r\n \"name\": \"crptestps5842\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544\",\r\n \"name\": \"crptestps2544\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -130,13 +178,13 @@ "1199" ], "x-ms-request-id": [ - "a30b72d2-f679-44ee-80da-dae86ea8a0ca" + "50188670-4036-4e2b-bbad-35de5ade5cd6" ], "x-ms-correlation-request-id": [ - "a30b72d2-f679-44ee-80da-dae86ea8a0ca" + "50188670-4036-4e2b-bbad-35de5ade5cd6" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185144Z:a30b72d2-f679-44ee-80da-dae86ea8a0ca" + "SOUTHCENTRALUS:20150813T050033Z:50188670-4036-4e2b-bbad-35de5ade5cd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 18:51:43 GMT" + "Thu, 13 Aug 2015 05:00:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "54915f9c-8aae-4930-b67a-4208aa2ba2fa" + "db20061f-c904-4f92-9e34-9dcb202822e1" ], "x-ms-correlation-request-id": [ - "54915f9c-8aae-4930-b67a-4208aa2ba2fa" + "db20061f-c904-4f92-9e34-9dcb202822e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185144Z:54915f9c-8aae-4930-b67a-4208aa2ba2fa" + "SOUTHCENTRALUS:20150813T050033Z:db20061f-c904-4f92-9e34-9dcb202822e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 18:51:43 GMT" + "Thu, 13 Aug 2015 05:00:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5842/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2544/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:befaa398-00b2-41bf-a14c-bf184ac9c924" + "southcentralus:4cc31def-2e7b-44d6-9f06-08da4374b24b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14999" ], "x-ms-correlation-request-id": [ - "4f502d5a-639d-45ac-8c30-485c9b6e2c92" + "43658b12-8d7a-4ce7-8644-afb54c697f8b" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185144Z:4f502d5a-639d-45ac-8c30-485c9b6e2c92" + "SOUTHCENTRALUS:20150813T050034Z:43658b12-8d7a-4ce7-8644-afb54c697f8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 18:51:43 GMT" + "Thu, 13 Aug 2015 05:00:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTg0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjU0ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,7 +307,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps5842' under resource group 'crptestps5842' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps2544' under resource group 'crptestps2544' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "8e8af5d8-d6c9-4eb8-becb-647445a40633" + "8453e1e0-1bfa-457a-bc46-ba95dff7805c" ], "x-ms-correlation-request-id": [ - "8e8af5d8-d6c9-4eb8-becb-647445a40633" + "8453e1e0-1bfa-457a-bc46-ba95dff7805c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185145Z:8e8af5d8-d6c9-4eb8-becb-647445a40633" + "SOUTHCENTRALUS:20150813T050035Z:8453e1e0-1bfa-457a-bc46-ba95dff7805c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 18:51:45 GMT" + "Thu, 13 Aug 2015 05:00:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTg0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjU0ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,7 +355,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842\",\r\n \"etag\": \"W/\\\"84b9858e-39b3-4936-8ee7-69d5b51cc00d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73b4f33f-77f7-4f34-b165-c17e658fe184\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842/subnets/subnetcrptestps5842\",\r\n \"etag\": \"W/\\\"84b9858e-39b3-4936-8ee7-69d5b51cc00d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544\",\r\n \"etag\": \"W/\\\"239a4f4b-9596-4ca5-b5ce-9e71228e1a3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"295b059a-6432-47fa-ad4d-6e15c9969cb0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544/subnets/subnetcrptestps2544\",\r\n \"etag\": \"W/\\\"239a4f4b-9596-4ca5-b5ce-9e71228e1a3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "0517c636-f89b-4643-a399-2755192fe454" + "bf199822-129f-4d13-aae5-68d42696160b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"84b9858e-39b3-4936-8ee7-69d5b51cc00d\"" + "W/\"239a4f4b-9596-4ca5-b5ce-9e71228e1a3b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14921" ], "x-ms-correlation-request-id": [ - "95ca8f26-d636-41ed-a9ab-7c805047e99b" + "08b74a0b-f172-421f-ac1e-d9c17d767f1f" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185146Z:95ca8f26-d636-41ed-a9ab-7c805047e99b" + "SOUTHCENTRALUS:20150813T050037Z:08b74a0b-f172-421f-ac1e-d9c17d767f1f" ], "Date": [ - "Thu, 06 Aug 2015 18:51:46 GMT" + "Thu, 13 Aug 2015 05:00:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTg0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjU0ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,7 +410,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842\",\r\n \"etag\": \"W/\\\"84b9858e-39b3-4936-8ee7-69d5b51cc00d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73b4f33f-77f7-4f34-b165-c17e658fe184\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842/subnets/subnetcrptestps5842\",\r\n \"etag\": \"W/\\\"84b9858e-39b3-4936-8ee7-69d5b51cc00d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544\",\r\n \"etag\": \"W/\\\"239a4f4b-9596-4ca5-b5ce-9e71228e1a3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"295b059a-6432-47fa-ad4d-6e15c9969cb0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544/subnets/subnetcrptestps2544\",\r\n \"etag\": \"W/\\\"239a4f4b-9596-4ca5-b5ce-9e71228e1a3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "fb6ca186-4fa5-4f8c-80c3-3f217bd6c20c" + "6c165385-a46c-4a8e-b281-80357138690f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"84b9858e-39b3-4936-8ee7-69d5b51cc00d\"" + "W/\"239a4f4b-9596-4ca5-b5ce-9e71228e1a3b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14920" ], "x-ms-correlation-request-id": [ - "75003a55-7433-457d-ba14-1745e2507856" + "2da59adb-de2d-4311-91c2-ee304a2c5f29" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185147Z:75003a55-7433-457d-ba14-1745e2507856" + "SOUTHCENTRALUS:20150813T050037Z:2da59adb-de2d-4311-91c2-ee304a2c5f29" ], "Date": [ - "Thu, 06 Aug 2015 18:51:46 GMT" + "Thu, 13 Aug 2015 05:00:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTg0Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjU0ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps5842\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps5842\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps2544\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps2544\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -423,7 +471,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842\",\r\n \"etag\": \"W/\\\"1311b70c-7810-4725-b3fa-8eacea315d7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"73b4f33f-77f7-4f34-b165-c17e658fe184\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842/subnets/subnetcrptestps5842\",\r\n \"etag\": \"W/\\\"1311b70c-7810-4725-b3fa-8eacea315d7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544\",\r\n \"etag\": \"W/\\\"22a5e1b9-53f2-46f0-9249-f13257aaaaa0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"295b059a-6432-47fa-ad4d-6e15c9969cb0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544/subnets/subnetcrptestps2544\",\r\n \"etag\": \"W/\\\"22a5e1b9-53f2-46f0-9249-f13257aaaaa0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1026" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "84911bc0-d053-4ce4-9c7e-d7d73978d035" + "a111f353-aa05-445e-a968-243611773794" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/84911bc0-d053-4ce4-9c7e-d7d73978d035?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/a111f353-aa05-445e-a968-243611773794?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "5f741571-a536-4cc2-8eca-ba1a56a332f4" + "75cdffe3-b30a-4956-a3cd-058ca96e4f37" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185146Z:5f741571-a536-4cc2-8eca-ba1a56a332f4" + "SOUTHCENTRALUS:20150813T050036Z:75cdffe3-b30a-4956-a3cd-058ca96e4f37" ], "Date": [ - "Thu, 06 Aug 2015 18:51:46 GMT" + "Thu, 13 Aug 2015 05:00:36 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/84911bc0-d053-4ce4-9c7e-d7d73978d035?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODQ5MTFiYzAtZDA1My00Y2U0LTljN2UtZDdkNzM5NzhkMDM1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/a111f353-aa05-445e-a968-243611773794?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTExMWYzNTMtYWEwNS00NDVlLWE5NjgtMjQzNjExNzczNzk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "7683be88-77a6-4089-88cc-48c29fd87624" + "708e1365-cd2c-4976-9ba5-8e98c8da5cd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14922" ], "x-ms-correlation-request-id": [ - "0864658d-fcdb-49da-9805-3662090ad093" + "940368d5-a697-46ca-9d15-2873fa80cdac" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185146Z:0864658d-fcdb-49da-9805-3662090ad093" + "SOUTHCENTRALUS:20150813T050036Z:940368d5-a697-46ca-9d15-2873fa80cdac" ], "Date": [ - "Thu, 06 Aug 2015 18:51:46 GMT" + "Thu, 13 Aug 2015 05:00:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTg0Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjU0NC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,7 +584,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps5842' under resource group 'crptestps5842' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps2544' under resource group 'crptestps2544' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -554,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "ecdbe7d9-3bf7-4579-a573-c1f0996f90e9" + "d82e66a4-8ca5-4fcb-994f-8eca79d1f12d" ], "x-ms-correlation-request-id": [ - "ecdbe7d9-3bf7-4579-a573-c1f0996f90e9" + "d82e66a4-8ca5-4fcb-994f-8eca79d1f12d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185147Z:ecdbe7d9-3bf7-4579-a573-c1f0996f90e9" + "SOUTHCENTRALUS:20150813T050037Z:d82e66a4-8ca5-4fcb-994f-8eca79d1f12d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +617,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 18:51:47 GMT" + "Thu, 13 Aug 2015 05:00:37 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTg0Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjU0NC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,7 +632,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842\",\r\n \"etag\": \"W/\\\"0100696a-27d8-45f0-8ae2-6013b2c8b603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a198aee-2d75-4927-92bd-d1b1a07b148b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5842\",\r\n \"fqdn\": \"pubipcrptestps5842.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544\",\r\n \"etag\": \"W/\\\"1a0b6d41-afa0-430b-b935-e5903cbb4a22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a33cc16-8004-4f7a-ad03-2e01bb6149c9\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2544\",\r\n \"fqdn\": \"pubipcrptestps2544.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -599,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "3018d241-1a5f-4831-a5fc-fc83bc578867" + "2eab96ea-f4fe-4129-99c0-63a0b19ab1f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +656,30 @@ "no-cache" ], "ETag": [ - "W/\"0100696a-27d8-45f0-8ae2-6013b2c8b603\"" + "W/\"1a0b6d41-afa0-430b-b935-e5903cbb4a22\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14917" ], "x-ms-correlation-request-id": [ - "da5b5052-462d-4659-81c7-fa78c0879ccb" + "6ed0fb24-09b1-4797-9c5a-7fd319d765dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185149Z:da5b5052-462d-4659-81c7-fa78c0879ccb" + "SOUTHCENTRALUS:20150813T050039Z:6ed0fb24-09b1-4797-9c5a-7fd319d765dc" ], "Date": [ - "Thu, 06 Aug 2015 18:51:48 GMT" + "Thu, 13 Aug 2015 05:00:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTg0Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjU0NC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,7 +687,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842\",\r\n \"etag\": \"W/\\\"0100696a-27d8-45f0-8ae2-6013b2c8b603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a198aee-2d75-4927-92bd-d1b1a07b148b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5842\",\r\n \"fqdn\": \"pubipcrptestps5842.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544\",\r\n \"etag\": \"W/\\\"1a0b6d41-afa0-430b-b935-e5903cbb4a22\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a33cc16-8004-4f7a-ad03-2e01bb6149c9\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2544\",\r\n \"fqdn\": \"pubipcrptestps2544.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -654,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "59feeef4-2d82-4200-9661-4064b89cb8c9" + "ffe43a18-f353-4f51-b97d-430a512052cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,32 +711,32 @@ "no-cache" ], "ETag": [ - "W/\"0100696a-27d8-45f0-8ae2-6013b2c8b603\"" + "W/\"1a0b6d41-afa0-430b-b935-e5903cbb4a22\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14916" ], "x-ms-correlation-request-id": [ - "c8eeef7b-0fec-46c5-ae6a-647de332f302" + "d199f64d-4161-47a8-9800-b9e8cc3633c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185149Z:c8eeef7b-0fec-46c5-ae6a-647de332f302" + "SOUTHCENTRALUS:20150813T050039Z:d199f64d-4161-47a8-9800-b9e8cc3633c0" ], "Date": [ - "Thu, 06 Aug 2015 18:51:48 GMT" + "Thu, 13 Aug 2015 05:00:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTg0Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjU0NC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5842\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps5842\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2544\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps2544\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -700,7 +748,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842\",\r\n \"etag\": \"W/\\\"8f186000-71ab-4536-8ede-8d05c635d8ef\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7a198aee-2d75-4927-92bd-d1b1a07b148b\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5842\",\r\n \"fqdn\": \"pubipcrptestps5842.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544\",\r\n \"etag\": \"W/\\\"87e9068e-fe38-4eb1-81a9-5c6a68c5398b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9a33cc16-8004-4f7a-ad03-2e01bb6149c9\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2544\",\r\n \"fqdn\": \"pubipcrptestps2544.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -718,10 +766,10 @@ "10" ], "x-ms-request-id": [ - "622b2375-8e85-4e14-8b39-27cf20109d52" + "459ceb62-7619-49d3-9e45-9d214a94b0ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/622b2375-8e85-4e14-8b39-27cf20109d52?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/459ceb62-7619-49d3-9e45-9d214a94b0ef?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +782,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "87f03b61-51a3-41fb-8932-b518d59e1ce8" + "201492df-9811-4e9a-90f4-bf3a385498d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185148Z:87f03b61-51a3-41fb-8932-b518d59e1ce8" + "SOUTHCENTRALUS:20150813T050038Z:201492df-9811-4e9a-90f4-bf3a385498d1" ], "Date": [ - "Thu, 06 Aug 2015 18:51:48 GMT" + "Thu, 13 Aug 2015 05:00:38 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/622b2375-8e85-4e14-8b39-27cf20109d52?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjIyYjIzNzUtOGU4NS00ZTE0LThiMzktMjdjZjIwMTA5ZDUyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/459ceb62-7619-49d3-9e45-9d214a94b0ef?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDU5Y2ViNjItNzYxOS00OWQzLTllNDUtOWQyMTRhOTRiMGVmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +824,7 @@ "no-cache" ], "x-ms-request-id": [ - "dce4266c-1122-4cd6-b9ef-926fa52d0689" + "f5f1625b-59f3-4dd0-9025-86a28d67cbd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14918" ], "x-ms-correlation-request-id": [ - "2c812b00-0949-4a66-888d-a1c4063ba480" + "0b054713-2d0d-45e4-aef2-b2f21c45a6c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185148Z:2c812b00-0949-4a66-888d-a1c4063ba480" + "SOUTHCENTRALUS:20150813T050039Z:0b054713-2d0d-45e4-aef2-b2f21c45a6c4" ], "Date": [ - "Thu, 06 Aug 2015 18:51:48 GMT" + "Thu, 13 Aug 2015 05:00:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,7 +861,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps5842' under resource group 'crptestps5842' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps2544' under resource group 'crptestps2544' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -831,13 +879,13 @@ "gateway" ], "x-ms-request-id": [ - "1dfcda87-5044-49a7-8f8c-a39f3f411e31" + "237116e0-6f04-4a5a-800c-f060b5e74bcb" ], "x-ms-correlation-request-id": [ - "1dfcda87-5044-49a7-8f8c-a39f3f411e31" + "237116e0-6f04-4a5a-800c-f060b5e74bcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185149Z:1dfcda87-5044-49a7-8f8c-a39f3f411e31" + "SOUTHCENTRALUS:20150813T050039Z:237116e0-6f04-4a5a-800c-f060b5e74bcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +894,14 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 18:51:49 GMT" + "Thu, 13 Aug 2015 05:00:39 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,7 +909,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842\",\r\n \"etag\": \"W/\\\"eb4ca865-732e-44e5-84bd-03432dab4dc0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b49c22af-00a6-4036-8f6e-784dc0d5ace9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"eb4ca865-732e-44e5-84bd-03432dab4dc0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842/subnets/subnetcrptestps5842\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544\",\r\n \"etag\": \"W/\\\"70dcde34-e1f4-4634-944d-b821d19d86b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2264082a-4697-42db-a159-e058f3798385\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"70dcde34-e1f4-4634-944d-b821d19d86b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544/subnets/subnetcrptestps2544\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -876,7 +924,7 @@ "no-cache" ], "x-ms-request-id": [ - "1ff8c9e8-9906-47e4-b881-bb1032f3a0f4" + "2a795882-ed24-40c9-ac55-6f47ed455e9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +933,30 @@ "no-cache" ], "ETag": [ - "W/\"eb4ca865-732e-44e5-84bd-03432dab4dc0\"" + "W/\"70dcde34-e1f4-4634-944d-b821d19d86b8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14913" ], "x-ms-correlation-request-id": [ - "9c1c1742-fb77-4b7f-bb06-484aea826ceb" + "65cb5d7a-1338-4a54-8fd4-2fa936010eb1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185150Z:9c1c1742-fb77-4b7f-bb06-484aea826ceb" + "SOUTHCENTRALUS:20150813T050042Z:65cb5d7a-1338-4a54-8fd4-2fa936010eb1" ], "Date": [ - "Thu, 06 Aug 2015 18:51:49 GMT" + "Thu, 13 Aug 2015 05:00:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,7 +964,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842\",\r\n \"etag\": \"W/\\\"eb4ca865-732e-44e5-84bd-03432dab4dc0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b49c22af-00a6-4036-8f6e-784dc0d5ace9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"eb4ca865-732e-44e5-84bd-03432dab4dc0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842/subnets/subnetcrptestps5842\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544\",\r\n \"etag\": \"W/\\\"70dcde34-e1f4-4634-944d-b821d19d86b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2264082a-4697-42db-a159-e058f3798385\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"70dcde34-e1f4-4634-944d-b821d19d86b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544/subnets/subnetcrptestps2544\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -931,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "e0d982e9-4f28-408c-99e6-3b9bd57f4182" + "dac868a0-0045-4d02-abe7-1f282be48232" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,32 +988,32 @@ "no-cache" ], "ETag": [ - "W/\"eb4ca865-732e-44e5-84bd-03432dab4dc0\"" + "W/\"70dcde34-e1f4-4634-944d-b821d19d86b8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14912" ], "x-ms-correlation-request-id": [ - "d9d47dc1-cd67-4955-b16a-9f2c8674d26d" + "04676034-9338-4e10-a89c-7c3037299683" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185150Z:d9d47dc1-cd67-4955-b16a-9f2c8674d26d" + "SOUTHCENTRALUS:20150813T050042Z:04676034-9338-4e10-a89c-7c3037299683" ], "Date": [ - "Thu, 06 Aug 2015 18:51:49 GMT" + "Thu, 13 Aug 2015 05:00:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842/subnets/subnetcrptestps5842\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps5842\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544/subnets/subnetcrptestps2544\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps2544\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -977,7 +1025,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5842\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842\",\r\n \"etag\": \"W/\\\"eb4ca865-732e-44e5-84bd-03432dab4dc0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b49c22af-00a6-4036-8f6e-784dc0d5ace9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"eb4ca865-732e-44e5-84bd-03432dab4dc0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5842\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5842/subnets/subnetcrptestps5842\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps2544\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544\",\r\n \"etag\": \"W/\\\"70dcde34-e1f4-4634-944d-b821d19d86b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2264082a-4697-42db-a159-e058f3798385\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"70dcde34-e1f4-4634-944d-b821d19d86b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2544\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2544/subnets/subnetcrptestps2544\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -992,10 +1040,10 @@ "no-cache" ], "x-ms-request-id": [ - "8eccf084-a0d7-4060-a326-b5f38ddabd95" + "d3f8938d-beea-4cfb-8942-fc22edb7e4e4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/8eccf084-a0d7-4060-a326-b5f38ddabd95?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/d3f8938d-beea-4cfb-8942-fc22edb7e4e4?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,23 +1056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "13d74e6d-d378-4826-9d2e-e7200c5b4399" + "05d6f83c-d20d-4b82-87d9-9569587980c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185149Z:13d74e6d-d378-4826-9d2e-e7200c5b4399" + "SOUTHCENTRALUS:20150813T050041Z:05d6f83c-d20d-4b82-87d9-9569587980c7" ], "Date": [ - "Thu, 06 Aug 2015 18:51:49 GMT" + "Thu, 13 Aug 2015 05:00:41 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/8eccf084-a0d7-4060-a326-b5f38ddabd95?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGVjY2YwODQtYTBkNy00MDYwLWEzMjYtYjVmMzhkZGFiZDk1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/d3f8938d-beea-4cfb-8942-fc22edb7e4e4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDNmODkzOGQtYmVlYS00Y2ZiLTg5NDItZmMyMmVkYjdlNGU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "36ccd3b3-5b74-4bac-b895-e7931c19a1a3" + "f82583a4-9def-41f1-9ad0-f5af8c7e3c4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14914" ], "x-ms-correlation-request-id": [ - "c897bbda-8ce2-413d-bd55-4516eb607448" + "05ab66c8-f91f-4d27-96b0-145d49edfcdc" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185149Z:c897bbda-8ce2-413d-bd55-4516eb607448" + "SOUTHCENTRALUS:20150813T050042Z:05ab66c8-f91f-4d27-96b0-145d49edfcdc" ], "Date": [ - "Thu, 06 Aug 2015 18:51:49 GMT" + "Thu, 13 Aug 2015 05:00:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Storage/storageAccounts/stocrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1ODQyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Storage/storageAccounts/stocrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNTQ0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1090,7 +1138,7 @@ "88" ], "x-ms-client-request-id": [ - "68eb38ee-d8cd-436f-ba63-c089ce05b322" + "e48f1f76-19f5-4861-b8ee-4a237b0c86a2" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1114,13 +1162,13 @@ "25" ], "x-ms-request-id": [ - "d01fbe9e-214b-4a40-a02b-11434c1589ec" + "a8967bdd-4275-4438-bbd4-31ba0b5065e2" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/d01fbe9e-214b-4a40-a02b-11434c1589ec?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/a8967bdd-4275-4438-bbd4-31ba0b5065e2?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1130,28 +1178,28 @@ "1199" ], "x-ms-correlation-request-id": [ - "478c84d4-615e-46e6-a89b-493b1c4385d1" + "3b947856-90d2-4084-b1e9-162c26e9aeab" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185153Z:478c84d4-615e-46e6-a89b-493b1c4385d1" + "SOUTHCENTRALUS:20150813T050045Z:3b947856-90d2-4084-b1e9-162c26e9aeab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 18:51:52 GMT" + "Thu, 13 Aug 2015 05:00:45 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/d01fbe9e-214b-4a40-a02b-11434c1589ec?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2QwMWZiZTllLTIxNGItNGE0MC1hMDJiLTExNDM0YzE1ODllYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/a8967bdd-4275-4438-bbd4-31ba0b5065e2?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E4OTY3YmRkLTQyNzUtNDQzOC1iYmQ0LTMxYmEwYjUwNjVlMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41ce06d2-7ae6-461c-a307-7beea9c39d55" + "e660c71b-1e35-4d84-b9a7-2e13ebb16fe3" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1175,13 +1223,13 @@ "25" ], "x-ms-request-id": [ - "ae4e9612-13eb-4647-98fb-f1b08e564df8" + "6d5114cc-2d00-4d74-a565-2eb281dbe373" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/d01fbe9e-214b-4a40-a02b-11434c1589ec?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/a8967bdd-4275-4438-bbd4-31ba0b5065e2?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1191,28 +1239,28 @@ "14999" ], "x-ms-correlation-request-id": [ - "7b245bda-762b-4b92-904d-78659f6823b2" + "63f36d37-c058-4e4f-b81c-8f3657770514" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185153Z:7b245bda-762b-4b92-904d-78659f6823b2" + "SOUTHCENTRALUS:20150813T050046Z:63f36d37-c058-4e4f-b81c-8f3657770514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 18:51:53 GMT" + "Thu, 13 Aug 2015 05:00:45 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/d01fbe9e-214b-4a40-a02b-11434c1589ec?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2QwMWZiZTllLTIxNGItNGE0MC1hMDJiLTExNDM0YzE1ODllYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/a8967bdd-4275-4438-bbd4-31ba0b5065e2?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E4OTY3YmRkLTQyNzUtNDQzOC1iYmQ0LTMxYmEwYjUwNjVlMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5724a457-d8d7-4c9c-8964-8aa86782271d" + "c26244d4-307c-483b-8de9-b56715a4aa24" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1233,7 +1281,7 @@ "no-cache" ], "x-ms-request-id": [ - "d1b724db-dd51-49c4-87f4-401fe6e46061" + "603bfb47-49cc-4ab9-92af-ede89f89bf0e" ], "Cache-Control": [ "no-cache" @@ -1246,34 +1294,34 @@ "14998" ], "x-ms-correlation-request-id": [ - "2b8ab18a-e5e4-4bbc-b3c3-a9bc24eb8269" + "5d37dc19-f416-4704-888e-5fec3f25eb64" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185218Z:2b8ab18a-e5e4-4bbc-b3c3-a9bc24eb8269" + "SOUTHCENTRALUS:20150813T050111Z:5d37dc19-f416-4704-888e-5fec3f25eb64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 18:52:17 GMT" + "Thu, 13 Aug 2015 05:01:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Storage/storageAccounts/stocrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1ODQyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Storage/storageAccounts/stocrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNTQ0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5254dda5-ec3e-450c-a649-6e92c4e073e0" + "0128eeb4-e044-4acd-8f93-abfc1c747fa1" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Storage/storageAccounts/stocrptestps5842\",\r\n \"name\": \"stocrptestps5842\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5842.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5842.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5842.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-06T18:51:51.2333004Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Storage/storageAccounts/stocrptestps2544\",\r\n \"name\": \"stocrptestps2544\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2544.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2544.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2544.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T05:00:43.4108196Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1288,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "d712837d-7f39-440b-8ce9-c035420e3723" + "419157f4-f2bf-4f3b-a436-7fa9b052bb64" ], "Cache-Control": [ "no-cache" @@ -1301,34 +1349,34 @@ "14997" ], "x-ms-correlation-request-id": [ - "9cc38bb7-4d1e-4d5c-9ddc-2cb53e654900" + "bde46474-9bfb-494f-9d69-ea4c06bb606a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185218Z:9cc38bb7-4d1e-4d5c-9ddc-2cb53e654900" + "SOUTHCENTRALUS:20150813T050111Z:bde46474-9bfb-494f-9d69-ea4c06bb606a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 18:52:17 GMT" + "Thu, 13 Aug 2015 05:01:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Storage/storageAccounts/stocrptestps5842?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1ODQyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Storage/storageAccounts/stocrptestps2544?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNTQ0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c97294a8-bd43-403f-a142-c081785c468c" + "91293783-597d-4100-99fb-db68358d613f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Storage/storageAccounts/stocrptestps5842\",\r\n \"name\": \"stocrptestps5842\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5842.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5842.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5842.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-06T18:51:51.2333004Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Storage/storageAccounts/stocrptestps2544\",\r\n \"name\": \"stocrptestps2544\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2544.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2544.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2544.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T05:00:43.4108196Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1343,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "1d007c47-22a4-4e26-912f-0b846b7d2f5a" + "7cfb6839-25ef-4bde-81fb-a47ea5ec5268" ], "Cache-Control": [ "no-cache" @@ -1356,34 +1404,34 @@ "14996" ], "x-ms-correlation-request-id": [ - "6d19274c-d783-4ab8-85cb-7b2da95d84a7" + "b205ea77-5107-4313-8044-529f78d44a29" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185219Z:6d19274c-d783-4ab8-85cb-7b2da95d84a7" + "SOUTHCENTRALUS:20150813T050111Z:b205ea77-5107-4313-8044-529f78d44a29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 18:52:18 GMT" + "Thu, 13 Aug 2015 05:01:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Storage/storageAccounts/stocrptestps5842/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1ODQyL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Storage/storageAccounts/stocrptestps2544/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNTQ0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff799bd4-9f4e-4dc1-95c1-9bf2455728a9" + "2e7d28b0-6c75-4d96-97de-08b8ab6d5c96" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"bKL8Ana+yg2UTaYIa2VueMPDwZL2M8b3wWNWV9ZPXAfH9jF+QXrXto4Vc6b2ohT6OcLYVPool308FOW1x7wlmg==\",\r\n \"key2\": \"CCmRRl42yQk+NCMiCbQh9R8NR4m2N+2scgcrS7PKKfZF96oG4o3fy/TmH826m1u2ngVKwoFSi7bhLCJbDTJG8A==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"jTyCrZNFvD6pyC6NS/rOMypjVGNU3qEewZSeMqxhZUZmf74TgfOlJDtkKpGrEAtWMalKThkMqRksc8SQUByTBg==\",\r\n \"key2\": \"JHHHEDGnkQBmLujRF8Zz7CxM2ZqNQjD3KDPJCa7oE7CKlavk0nEeBugwxNV7JdZ0F++Vtr00zN8V0zCitEaHUw==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "197" @@ -1398,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "ed64f112-731c-47e4-a0c2-432110321e93" + "8661391c-4d8e-4b9d-872c-b741e53cab1b" ], "Cache-Control": [ "no-cache" @@ -1411,25 +1459,25 @@ "1198" ], "x-ms-correlation-request-id": [ - "4fb121bf-ca56-4d7f-8177-06b470a65c5b" + "fb5503fb-7514-49d8-ac64-1505cbb361ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185220Z:4fb121bf-ca56-4d7f-8177-06b470a65c5b" + "SOUTHCENTRALUS:20150813T050111Z:fb5503fb-7514-49d8-ac64-1505cbb361ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 06 Aug 2015 18:52:19 GMT" + "Thu, 13 Aug 2015 05:01:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps5842\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5842\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps2544\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps2544\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1438,10 +1486,10 @@ "1719" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842\",\r\n \"name\": \"vmcrptestps5842\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544\",\r\n \"name\": \"vmcrptestps2544\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1934" @@ -1456,16 +1504,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "ff6a7f1f-6902-441b-96a6-189d538f35e4" + "0c7bbbe5-d5c8-4a2b-882f-7474f97844b8" ], "Cache-Control": [ "no-cache" @@ -1475,86 +1523,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "5dea48cd-4504-447d-bc10-a04ad33ac748" + "e76990c4-e9a2-4eab-8bf3-f371088585ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185221Z:5dea48cd-4504-447d-bc10-a04ad33ac748" + "SOUTHCENTRALUS:20150813T050114Z:e76990c4-e9a2-4eab-8bf3-f371088585ef" ], "Date": [ - "Thu, 06 Aug 2015 18:52:20 GMT" + "Thu, 13 Aug 2015 05:01:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" - ], - "x-ms-request-id": [ - "f1b10694-be5b-4361-8aef-522399f19442" - ], - "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": [ - "4aaeeb19-8e3d-455b-91ad-7435683033a6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T185221Z:4aaeeb19-8e3d-455b-91ad-7435683033a6" - ], - "Date": [ - "Thu, 06 Aug 2015 18:52:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1572,10 +1565,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "dd487308-9c0a-4596-878a-9e3c3a45abf8" + "1c692ddb-2959-4393-a967-bdc6064fe9ea" ], "Cache-Control": [ "no-cache" @@ -1585,31 +1578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "6ba0cafe-6eaf-4aa6-9f76-2dfeccfc93b1" + "5447b96f-5f2e-49a5-8779-a8abeff0cc87" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185251Z:6ba0cafe-6eaf-4aa6-9f76-2dfeccfc93b1" + "SOUTHCENTRALUS:20150813T050114Z:5447b96f-5f2e-49a5-8779-a8abeff0cc87" ], "Date": [ - "Thu, 06 Aug 2015 18:52:51 GMT" + "Thu, 13 Aug 2015 05:01:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1627,10 +1620,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "69dbd678-77a3-4cfd-bde8-1569f31426bd" + "482ba3ba-8b58-4f61-a05a-0be902c095c4" ], "Cache-Control": [ "no-cache" @@ -1640,31 +1633,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-correlation-request-id": [ - "c40b8f3e-305c-437b-a9a1-6c824cdc29a1" + "ce98d5b0-f401-4bc2-ac15-6a64cf535c37" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185321Z:c40b8f3e-305c-437b-a9a1-6c824cdc29a1" + "SOUTHCENTRALUS:20150813T050144Z:ce98d5b0-f401-4bc2-ac15-6a64cf535c37" ], "Date": [ - "Thu, 06 Aug 2015 18:53:20 GMT" + "Thu, 13 Aug 2015 05:01:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1682,10 +1675,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "f9aff93a-ea00-41cf-99d9-bfb6f9240e9c" + "0c3f6de1-3195-475a-80d6-28acd710e726" ], "Cache-Control": [ "no-cache" @@ -1695,31 +1688,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14994" ], "x-ms-correlation-request-id": [ - "19967131-0148-4eba-a77f-6c2d3c2446ad" + "b2f691b8-554d-4aa4-b472-79db51c22df2" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185351Z:19967131-0148-4eba-a77f-6c2d3c2446ad" + "SOUTHCENTRALUS:20150813T050214Z:b2f691b8-554d-4aa4-b472-79db51c22df2" ], "Date": [ - "Thu, 06 Aug 2015 18:53:51 GMT" + "Thu, 13 Aug 2015 05:02:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1737,10 +1730,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "cc4b29ad-1b9d-4b6a-b01c-41716908d4bb" + "5d40e9d5-8b21-46ac-9c9d-0669da670ee5" ], "Cache-Control": [ "no-cache" @@ -1750,31 +1743,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14993" ], "x-ms-correlation-request-id": [ - "2afc62be-a5e0-4e57-b783-cd5d1d9c2520" + "70d9159c-5204-4e52-92b4-cf6797c03b65" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185421Z:2afc62be-a5e0-4e57-b783-cd5d1d9c2520" + "SOUTHCENTRALUS:20150813T050245Z:70d9159c-5204-4e52-92b4-cf6797c03b65" ], "Date": [ - "Thu, 06 Aug 2015 18:54:21 GMT" + "Thu, 13 Aug 2015 05:02:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1792,10 +1785,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "ab6005ca-6e42-46f2-b6d7-434781dda109" + "f1c98815-4a89-4216-8b85-9ecf41ab3ca0" ], "Cache-Control": [ "no-cache" @@ -1805,31 +1798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14992" ], "x-ms-correlation-request-id": [ - "2ba65269-0118-48f4-95ed-fc3a70236447" + "d5a6001a-0007-4c8e-a8e6-c640909bdd87" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185452Z:2ba65269-0118-48f4-95ed-fc3a70236447" + "SOUTHCENTRALUS:20150813T050315Z:d5a6001a-0007-4c8e-a8e6-c640909bdd87" ], "Date": [ - "Thu, 06 Aug 2015 18:54:51 GMT" + "Thu, 13 Aug 2015 05:03:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1847,10 +1840,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "31651547-c520-4521-9239-3467bef5f2ff" + "0bda5d02-cd5e-4a53-ad48-ef32d42a9aa0" ], "Cache-Control": [ "no-cache" @@ -1860,31 +1853,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14991" ], "x-ms-correlation-request-id": [ - "b951c62e-bf6c-4a72-be7f-36ed32ca23ca" + "1b5e28ec-c46d-4f45-90be-ee6e2424145d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185522Z:b951c62e-bf6c-4a72-be7f-36ed32ca23ca" + "SOUTHCENTRALUS:20150813T050345Z:1b5e28ec-c46d-4f45-90be-ee6e2424145d" ], "Date": [ - "Thu, 06 Aug 2015 18:55:21 GMT" + "Thu, 13 Aug 2015 05:03:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1902,10 +1895,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "db2e5ff1-cd6e-45a0-8c4d-5d3a2f083e74" + "68e4d226-384b-439d-a981-02de19fdff68" ], "Cache-Control": [ "no-cache" @@ -1915,31 +1908,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14990" ], "x-ms-correlation-request-id": [ - "1044bc65-4e6c-4693-8f17-197370787701" + "f0201e9a-e3c0-43f3-8bf7-c40d3f864a0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185552Z:1044bc65-4e6c-4693-8f17-197370787701" + "SOUTHCENTRALUS:20150813T050416Z:f0201e9a-e3c0-43f3-8bf7-c40d3f864a0f" ], "Date": [ - "Thu, 06 Aug 2015 18:55:52 GMT" + "Thu, 13 Aug 2015 05:04:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1957,10 +1950,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "519d789d-67fd-43c0-a73e-4dcd04e9abad" + "2d0266e8-8595-47d0-9dc1-d0e98d33fc9a" ], "Cache-Control": [ "no-cache" @@ -1970,31 +1963,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14989" ], "x-ms-correlation-request-id": [ - "7d7290fc-cc5f-4cfd-8548-4fe443c7d008" + "dfc9b704-a3db-4fb7-a3ec-9bcecd3ed515" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185622Z:7d7290fc-cc5f-4cfd-8548-4fe443c7d008" + "SOUTHCENTRALUS:20150813T050446Z:dfc9b704-a3db-4fb7-a3ec-9bcecd3ed515" ], "Date": [ - "Thu, 06 Aug 2015 18:56:21 GMT" + "Thu, 13 Aug 2015 05:04:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2012,10 +2005,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "b941b125-c730-4426-94e4-372845674d5a" + "bf9329b6-de56-42d8-a4fd-09976dc0ba60" ], "Cache-Control": [ "no-cache" @@ -2025,31 +2018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14988" ], "x-ms-correlation-request-id": [ - "9cd35a9a-1a99-495e-b24e-f6df501ce25d" + "29b4b11f-c12b-4e51-afbd-51d683ed1e72" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185652Z:9cd35a9a-1a99-495e-b24e-f6df501ce25d" + "SOUTHCENTRALUS:20150813T050516Z:29b4b11f-c12b-4e51-afbd-51d683ed1e72" ], "Date": [ - "Thu, 06 Aug 2015 18:56:51 GMT" + "Thu, 13 Aug 2015 05:05:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2067,10 +2060,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "52374203-4a0b-4029-94ae-f057351bd94a" + "ebea28c5-3e5b-4d89-b9ee-8e3df2f314d0" ], "Cache-Control": [ "no-cache" @@ -2080,31 +2073,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14987" ], "x-ms-correlation-request-id": [ - "e18c6198-3341-4fd2-b141-d5311ce5d9f7" + "51ac35b3-b89e-406f-9d35-dbf6a9fd9f4a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185722Z:e18c6198-3341-4fd2-b141-d5311ce5d9f7" + "SOUTHCENTRALUS:20150813T050547Z:51ac35b3-b89e-406f-9d35-dbf6a9fd9f4a" ], "Date": [ - "Thu, 06 Aug 2015 18:57:22 GMT" + "Thu, 13 Aug 2015 05:05:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2122,10 +2115,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "c8a85c9a-2b89-4d46-9e29-23c9d9f714d0" + "c3cb6f8a-b043-44d0-b0b4-f3e6d4fc83df" ], "Cache-Control": [ "no-cache" @@ -2135,31 +2128,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14986" ], "x-ms-correlation-request-id": [ - "aaf0da8f-5487-4b1e-99c7-3d38c75a9479" + "10b45073-ea45-46d6-8f41-7780a6aea224" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185752Z:aaf0da8f-5487-4b1e-99c7-3d38c75a9479" + "SOUTHCENTRALUS:20150813T050617Z:10b45073-ea45-46d6-8f41-7780a6aea224" ], "Date": [ - "Thu, 06 Aug 2015 18:57:52 GMT" + "Thu, 13 Aug 2015 05:06:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2177,10 +2170,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "3568137a-847b-4a80-a1db-bc65fd80641f" + "d10fe696-9a72-44e4-8665-eec8e8ceb34e" ], "Cache-Control": [ "no-cache" @@ -2190,31 +2183,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14985" ], "x-ms-correlation-request-id": [ - "dfb9daea-992e-456c-aafe-8a956b771724" + "8ef47513-8f94-462f-87b4-61e19a729dfa" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185822Z:dfb9daea-992e-456c-aafe-8a956b771724" + "SOUTHCENTRALUS:20150813T050647Z:8ef47513-8f94-462f-87b4-61e19a729dfa" ], "Date": [ - "Thu, 06 Aug 2015 18:58:22 GMT" + "Thu, 13 Aug 2015 05:06:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2232,10 +2225,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "ebf78df3-c84c-4b46-ab3a-a70c4ffa2a28" + "e2008c39-0397-46c5-89d1-1c63644db02d" ], "Cache-Control": [ "no-cache" @@ -2245,31 +2238,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14984" ], "x-ms-correlation-request-id": [ - "d4fbe43c-fd8b-478f-ac62-85dd08b19910" + "de2bd18d-a827-41f2-bb8e-a7b5a871054f" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185852Z:d4fbe43c-fd8b-478f-ac62-85dd08b19910" + "SOUTHCENTRALUS:20150813T050718Z:de2bd18d-a827-41f2-bb8e-a7b5a871054f" ], "Date": [ - "Thu, 06 Aug 2015 18:58:52 GMT" + "Thu, 13 Aug 2015 05:07:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff6a7f1f-6902-441b-96a6-189d538f35e4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmY2YTdmMWYtNjkwMi00NDFiLTk2YTYtMTg5ZDUzOGYzNWU0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/0c7bbbe5-d5c8-4a2b-882f-7474f97844b8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGM3YmJiZTUtZDVjOC00YTJiLTg4MmYtNzQ3NGY5Nzg0NGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ff6a7f1f-6902-441b-96a6-189d538f35e4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-06T11:52:20.7871031-07:00\",\r\n \"endTime\": \"2015-08-06T11:59:06.6282639-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0c7bbbe5-d5c8-4a2b-882f-7474f97844b8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T22:01:13.9599241-07:00\",\r\n \"endTime\": \"2015-08-12T22:07:30.9153993-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2287,10 +2280,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "4f6618ba-4dea-4a88-8251-1bbcc5667193" + "6477a0cb-5012-47a4-b93b-8083a69f6f48" ], "Cache-Control": [ "no-cache" @@ -2300,25 +2293,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14983" ], "x-ms-correlation-request-id": [ - "10644abf-f4cd-4fd6-bea7-f8529643e40a" + "54316c7a-391c-4f5a-b921-d6cad5cd4259" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185923Z:10644abf-f4cd-4fd6-bea7-f8529643e40a" + "SOUTHCENTRALUS:20150813T050748Z:54316c7a-391c-4f5a-b921-d6cad5cd4259" ], "Date": [ - "Thu, 06 Aug 2015 18:59:22 GMT" + "Thu, 13 Aug 2015 05:07:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842/extensions/crptestps5842ext?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4NDIvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM1ODQyZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544/extensions/crptestps2544ext?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI1NDQvZXh0ZW5zaW9ucy9jcnB0ZXN0cHMyNTQ0ZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps5842\",\r\n \"storageAccountKey\": \"bKL8Ana+yg2UTaYIa2VueMPDwZL2M8b3wWNWV9ZPXAfH9jF+QXrXto4Vc6b2ohT6OcLYVPool308FOW1x7wlmg==\"\r\n }\r\n },\r\n \"name\": \"crptestps5842ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stocrptestps2544\",\r\n \"storageAccountKey\": \"jTyCrZNFvD6pyC6NS/rOMypjVGNU3qEewZSeMqxhZUZmf74TgfOlJDtkKpGrEAtWMalKThkMqRksc8SQUByTBg==\"\r\n }\r\n },\r\n \"name\": \"crptestps2544ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -2327,10 +2320,10 @@ "591" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842/extensions/crptestps5842ext\",\r\n \"name\": \"crptestps5842ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544/extensions/crptestps2544ext\",\r\n \"name\": \"crptestps2544ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ "582" @@ -2345,16 +2338,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "a500bb15-2fbb-40e2-a014-379a6f261814" + "39902e7b-ddc8-4157-8f97-4baf4bdc7288" ], "Cache-Control": [ "no-cache" @@ -2364,31 +2357,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "3bb36ce4-f444-4842-9604-60a442362deb" + "40622780-6b84-4319-a6a9-cf84f35f1c44" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185924Z:3bb36ce4-f444-4842-9604-60a442362deb" + "SOUTHCENTRALUS:20150813T050750Z:40622780-6b84-4319-a6a9-cf84f35f1c44" ], "Date": [ - "Thu, 06 Aug 2015 18:59:23 GMT" + "Thu, 13 Aug 2015 05:07:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2406,65 +2399,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "15494b4b-4d29-413b-949b-f20dd6710728" - ], - "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": [ - "f64d1ab0-056c-410d-9b03-74b3912411df" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T185924Z:f64d1ab0-056c-410d-9b03-74b3912411df" - ], - "Date": [ - "Thu, 06 Aug 2015 18:59:23 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" - ], - "x-ms-request-id": [ - "4d43a5f2-3b51-4be0-8bfc-01dfbe1bb04e" + "419d9420-7748-4f44-a695-d276ea72fcc8" ], "Cache-Control": [ "no-cache" @@ -2477,28 +2415,28 @@ "14982" ], "x-ms-correlation-request-id": [ - "2763aa9c-8bee-4019-9e5d-4e51f4e88b75" + "5e67549d-6c76-4505-bfe5-1c5af8b362a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T185954Z:2763aa9c-8bee-4019-9e5d-4e51f4e88b75" + "SOUTHCENTRALUS:20150813T050750Z:5e67549d-6c76-4505-bfe5-1c5af8b362a0" ], "Date": [ - "Thu, 06 Aug 2015 18:59:54 GMT" + "Thu, 13 Aug 2015 05:07:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2516,10 +2454,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "735685c6-df09-463c-bdf9-5dac93435309" + "2aae61ff-b8d1-4477-b1a7-3e27430274d3" ], "Cache-Control": [ "no-cache" @@ -2532,28 +2470,28 @@ "14981" ], "x-ms-correlation-request-id": [ - "d25b36a5-13d3-4fe1-b681-cb00079dc05f" + "a190475e-56d1-451f-ac08-95f5d9dd1272" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190024Z:d25b36a5-13d3-4fe1-b681-cb00079dc05f" + "SOUTHCENTRALUS:20150813T050820Z:a190475e-56d1-451f-ac08-95f5d9dd1272" ], "Date": [ - "Thu, 06 Aug 2015 19:00:23 GMT" + "Thu, 13 Aug 2015 05:08:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2571,10 +2509,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "b30ec7cd-c933-4751-9fea-f6ebce168f45" + "7253d6cf-58cd-40b5-8f93-0b8d4aeaee04" ], "Cache-Control": [ "no-cache" @@ -2587,28 +2525,28 @@ "14980" ], "x-ms-correlation-request-id": [ - "b5ac0838-eb06-435f-84d2-c5c37707e814" + "d902cbbd-7405-4665-8056-76e4e17bd4d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190054Z:b5ac0838-eb06-435f-84d2-c5c37707e814" + "SOUTHCENTRALUS:20150813T050851Z:d902cbbd-7405-4665-8056-76e4e17bd4d8" ], "Date": [ - "Thu, 06 Aug 2015 19:00:54 GMT" + "Thu, 13 Aug 2015 05:08:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2626,10 +2564,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "43d1c223-0702-4402-8d68-5e7186609969" + "fca1214c-90c8-4173-bf46-597a9e0900e6" ], "Cache-Control": [ "no-cache" @@ -2642,28 +2580,28 @@ "14979" ], "x-ms-correlation-request-id": [ - "33c74288-3119-4b1f-a073-275a0511aa6c" + "cbcfac12-b245-4ca2-8baa-a76f93bc8f9e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190124Z:33c74288-3119-4b1f-a073-275a0511aa6c" + "SOUTHCENTRALUS:20150813T050921Z:cbcfac12-b245-4ca2-8baa-a76f93bc8f9e" ], "Date": [ - "Thu, 06 Aug 2015 19:01:24 GMT" + "Thu, 13 Aug 2015 05:09:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2681,10 +2619,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "e304b69d-da93-41a3-95b8-f3cd5964e7d8" + "1158de9d-9d95-4cfe-a9ba-b18df6dec48e" ], "Cache-Control": [ "no-cache" @@ -2697,28 +2635,28 @@ "14978" ], "x-ms-correlation-request-id": [ - "a081abf1-5d6c-4301-9c30-688a58beaa12" + "0e4e7ecf-647f-454e-bf01-8deee3861d7a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190154Z:a081abf1-5d6c-4301-9c30-688a58beaa12" + "SOUTHCENTRALUS:20150813T050951Z:0e4e7ecf-647f-454e-bf01-8deee3861d7a" ], "Date": [ - "Thu, 06 Aug 2015 19:01:54 GMT" + "Thu, 13 Aug 2015 05:09:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2736,10 +2674,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "7e74eb5b-78a3-4491-8190-e01e9e68370a" + "ddcf3a7e-ed8d-4fb0-9d21-69434dc0b233" ], "Cache-Control": [ "no-cache" @@ -2752,28 +2690,28 @@ "14977" ], "x-ms-correlation-request-id": [ - "d66b8bb3-3cfe-4c9a-aadb-e6fd496ad193" + "810d4358-d22f-4d53-8ffa-27b0a1283843" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190225Z:d66b8bb3-3cfe-4c9a-aadb-e6fd496ad193" + "SOUTHCENTRALUS:20150813T051022Z:810d4358-d22f-4d53-8ffa-27b0a1283843" ], "Date": [ - "Thu, 06 Aug 2015 19:02:24 GMT" + "Thu, 13 Aug 2015 05:10:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2791,10 +2729,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "6e94914a-601a-45c9-b02f-6505f22bfa92" + "1f49282f-0e02-437d-a493-a957b9b5e710" ], "Cache-Control": [ "no-cache" @@ -2807,28 +2745,28 @@ "14976" ], "x-ms-correlation-request-id": [ - "ea5c848c-6295-4348-a5ac-bafe468e374a" + "5c2b7b70-02f2-4800-8af1-6ae537b111a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190255Z:ea5c848c-6295-4348-a5ac-bafe468e374a" + "SOUTHCENTRALUS:20150813T051052Z:5c2b7b70-02f2-4800-8af1-6ae537b111a4" ], "Date": [ - "Thu, 06 Aug 2015 19:02:54 GMT" + "Thu, 13 Aug 2015 05:10:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2846,10 +2784,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "4851b2d7-08a7-49f9-ab1b-ba76226d165b" + "7ffe7e0b-4299-415c-af6b-0d8cdf669b14" ], "Cache-Control": [ "no-cache" @@ -2862,28 +2800,28 @@ "14975" ], "x-ms-correlation-request-id": [ - "eb456c7e-3b6b-4ecf-adc1-384e5df4180c" + "61328a5f-9f96-4150-8d22-13ca978f6539" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190325Z:eb456c7e-3b6b-4ecf-adc1-384e5df4180c" + "SOUTHCENTRALUS:20150813T051122Z:61328a5f-9f96-4150-8d22-13ca978f6539" ], "Date": [ - "Thu, 06 Aug 2015 19:03:24 GMT" + "Thu, 13 Aug 2015 05:11:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2901,10 +2839,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "916b9cbc-af28-410a-8b3d-9ba07fffbf06" + "8d14a8ff-db5b-4a51-888e-c51a29504ea4" ], "Cache-Control": [ "no-cache" @@ -2917,28 +2855,28 @@ "14974" ], "x-ms-correlation-request-id": [ - "1fb437ad-ab24-47f5-97ad-7462b41f9327" + "6668d6d0-80ce-45ed-afd5-6e22c8b1fb63" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190355Z:1fb437ad-ab24-47f5-97ad-7462b41f9327" + "SOUTHCENTRALUS:20150813T051153Z:6668d6d0-80ce-45ed-afd5-6e22c8b1fb63" ], "Date": [ - "Thu, 06 Aug 2015 19:03:55 GMT" + "Thu, 13 Aug 2015 05:11:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2956,10 +2894,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "6b839028-c9e3-4855-ac1d-0a944d719b87" + "27fd4d0f-8aba-494a-82fb-d459337b9bc3" ], "Cache-Control": [ "no-cache" @@ -2972,28 +2910,28 @@ "14973" ], "x-ms-correlation-request-id": [ - "63e64641-bb5d-4404-9788-66cca325255e" + "6d5ff389-c853-4c3e-bb9d-c24fdec9371c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190425Z:63e64641-bb5d-4404-9788-66cca325255e" + "SOUTHCENTRALUS:20150813T051223Z:6d5ff389-c853-4c3e-bb9d-c24fdec9371c" ], "Date": [ - "Thu, 06 Aug 2015 19:04:24 GMT" + "Thu, 13 Aug 2015 05:12:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3011,10 +2949,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "5c112666-6ab5-4740-ada4-bc68b5cb439f" + "ed63178e-5f6c-436b-9248-13751239f713" ], "Cache-Control": [ "no-cache" @@ -3027,28 +2965,28 @@ "14972" ], "x-ms-correlation-request-id": [ - "2eccb2ff-d9c8-48ad-acf3-f72c7f80912d" + "40ef739f-91f5-43fc-8224-78f89ed6b154" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190455Z:2eccb2ff-d9c8-48ad-acf3-f72c7f80912d" + "SOUTHCENTRALUS:20150813T051253Z:40ef739f-91f5-43fc-8224-78f89ed6b154" ], "Date": [ - "Thu, 06 Aug 2015 19:04:55 GMT" + "Thu, 13 Aug 2015 05:12:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3066,10 +3004,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "81c7756e-7058-4f7c-ac20-ae0293772118" + "22cdee8f-3f64-42c6-918d-51db0a7c47dc" ], "Cache-Control": [ "no-cache" @@ -3082,28 +3020,28 @@ "14971" ], "x-ms-correlation-request-id": [ - "91d7caa5-2481-4a04-9430-171234c3a5ee" + "a80190bb-e2d6-4aca-b30c-eca73df74a97" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190525Z:91d7caa5-2481-4a04-9430-171234c3a5ee" + "SOUTHCENTRALUS:20150813T051324Z:a80190bb-e2d6-4aca-b30c-eca73df74a97" ], "Date": [ - "Thu, 06 Aug 2015 19:05:24 GMT" + "Thu, 13 Aug 2015 05:13:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3121,10 +3059,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "db23ce55-3d0a-46c1-9354-7f86aa3f3cd6" + "db1698e4-fb0b-4c9e-b780-31f4bde7b459" ], "Cache-Control": [ "no-cache" @@ -3137,28 +3075,28 @@ "14970" ], "x-ms-correlation-request-id": [ - "4022ddb1-a44a-4dda-9ef3-20b9b6510794" + "290fb6ef-3a95-440e-87f4-3fa1b9bfeba6" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190555Z:4022ddb1-a44a-4dda-9ef3-20b9b6510794" + "SOUTHCENTRALUS:20150813T051354Z:290fb6ef-3a95-440e-87f4-3fa1b9bfeba6" ], "Date": [ - "Thu, 06 Aug 2015 19:05:55 GMT" + "Thu, 13 Aug 2015 05:13:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3176,10 +3114,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "b005173c-a27b-45df-b662-fb8a2c787b22" + "53297b49-ee79-480b-98f2-b00d441c4d83" ], "Cache-Control": [ "no-cache" @@ -3192,28 +3130,28 @@ "14969" ], "x-ms-correlation-request-id": [ - "f51242d1-84e4-4382-89a0-8d1a6b045c80" + "f4d28f0a-beb0-4829-b80f-9d4d682fe1f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190626Z:f51242d1-84e4-4382-89a0-8d1a6b045c80" + "SOUTHCENTRALUS:20150813T051424Z:f4d28f0a-beb0-4829-b80f-9d4d682fe1f7" ], "Date": [ - "Thu, 06 Aug 2015 19:06:25 GMT" + "Thu, 13 Aug 2015 05:14:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3231,10 +3169,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "9cb5fac1-4708-466b-852a-23f93f0a4e49" + "b7787777-02a9-4feb-978c-3b563fa3a856" ], "Cache-Control": [ "no-cache" @@ -3247,28 +3185,28 @@ "14968" ], "x-ms-correlation-request-id": [ - "6afe32ae-849f-4703-8e21-5d8f3ce044fc" + "12e0c3e2-d4e4-4b77-b01e-61bfd7cb4b7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190656Z:6afe32ae-849f-4703-8e21-5d8f3ce044fc" + "SOUTHCENTRALUS:20150813T051454Z:12e0c3e2-d4e4-4b77-b01e-61bfd7cb4b7d" ], "Date": [ - "Thu, 06 Aug 2015 19:06:56 GMT" + "Thu, 13 Aug 2015 05:14:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3286,10 +3224,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "3a91b32a-8362-4bc7-9e54-0e9656890987" + "8695382d-2e6c-4411-a0a2-c0b3bb94d4e7" ], "Cache-Control": [ "no-cache" @@ -3302,28 +3240,28 @@ "14967" ], "x-ms-correlation-request-id": [ - "6d23616e-49cd-467d-bbc7-e6ac1ca30477" + "4e735df0-23b4-48d8-8db9-2288418ed07d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190726Z:6d23616e-49cd-467d-bbc7-e6ac1ca30477" + "SOUTHCENTRALUS:20150813T051525Z:4e735df0-23b4-48d8-8db9-2288418ed07d" ], "Date": [ - "Thu, 06 Aug 2015 19:07:25 GMT" + "Thu, 13 Aug 2015 05:15:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3341,10 +3279,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "c5bfb573-fab8-421c-9f06-3cbed2f59714" + "92e23e62-9d2a-4dd4-92ea-0c20999eb6b2" ], "Cache-Control": [ "no-cache" @@ -3357,28 +3295,28 @@ "14966" ], "x-ms-correlation-request-id": [ - "bbb07e96-fb1c-4a59-8334-dd032a643b23" + "591aceab-ab7b-4f6d-9499-6c3f0aad570e" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190756Z:bbb07e96-fb1c-4a59-8334-dd032a643b23" + "SOUTHCENTRALUS:20150813T051555Z:591aceab-ab7b-4f6d-9499-6c3f0aad570e" ], "Date": [ - "Thu, 06 Aug 2015 19:07:55 GMT" + "Thu, 13 Aug 2015 05:15:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3396,10 +3334,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "4835bd8a-3e89-4fab-9100-2ac30f182a11" + "0f416e53-f250-4f64-8425-4a5c93c9ed42" ], "Cache-Control": [ "no-cache" @@ -3412,28 +3350,28 @@ "14965" ], "x-ms-correlation-request-id": [ - "6272fce1-bf55-4d6f-a33d-254f7ba89741" + "7ca38eee-7779-42e7-a921-7ecb1f174e60" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190826Z:6272fce1-bf55-4d6f-a33d-254f7ba89741" + "SOUTHCENTRALUS:20150813T051625Z:7ca38eee-7779-42e7-a921-7ecb1f174e60" ], "Date": [ - "Thu, 06 Aug 2015 19:08:26 GMT" + "Thu, 13 Aug 2015 05:16:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3451,10 +3389,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "979700b7-bf28-480f-a771-da5b92e69b00" + "1b37d25b-723b-4ad2-9878-395be8ab3f99" ], "Cache-Control": [ "no-cache" @@ -3467,28 +3405,28 @@ "14964" ], "x-ms-correlation-request-id": [ - "2c4de44b-fe6b-4013-9fc5-0bb71fbfac96" + "5c4d9404-ff92-4e0c-8685-afa8cba9b8ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190856Z:2c4de44b-fe6b-4013-9fc5-0bb71fbfac96" + "SOUTHCENTRALUS:20150813T051656Z:5c4d9404-ff92-4e0c-8685-afa8cba9b8ba" ], "Date": [ - "Thu, 06 Aug 2015 19:08:56 GMT" + "Thu, 13 Aug 2015 05:16:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3506,10 +3444,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "07f4c93c-ca0b-4462-ae6a-a51728a43677" + "951ebc3f-8cc8-4b27-84cd-8dc9505a513b" ], "Cache-Control": [ "no-cache" @@ -3522,28 +3460,28 @@ "14963" ], "x-ms-correlation-request-id": [ - "570fcfd5-247c-406b-a921-af1f49cc0e9f" + "ad2cede0-d3ce-4f74-8706-3f9234757259" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190926Z:570fcfd5-247c-406b-a921-af1f49cc0e9f" + "SOUTHCENTRALUS:20150813T051726Z:ad2cede0-d3ce-4f74-8706-3f9234757259" ], "Date": [ - "Thu, 06 Aug 2015 19:09:25 GMT" + "Thu, 13 Aug 2015 05:17:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3561,10 +3499,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "b5cabf8f-fcaf-4a54-923c-b69894c33042" + "7d81afcb-36e1-4b47-ae1f-518d20fe72db" ], "Cache-Control": [ "no-cache" @@ -3577,28 +3515,28 @@ "14962" ], "x-ms-correlation-request-id": [ - "91091ef4-db37-4745-9d7d-b85a234b611c" + "09862bdc-fcb6-4076-926c-cf0761558fc8" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T190956Z:91091ef4-db37-4745-9d7d-b85a234b611c" + "SOUTHCENTRALUS:20150813T051756Z:09862bdc-fcb6-4076-926c-cf0761558fc8" ], "Date": [ - "Thu, 06 Aug 2015 19:09:56 GMT" + "Thu, 13 Aug 2015 05:17:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3616,10 +3554,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "b595d7b3-94ce-4947-8b18-a7aa4a5028e8" + "e4cfd079-8410-418c-937d-ce22a0e9c8a4" ], "Cache-Control": [ "no-cache" @@ -3632,28 +3570,28 @@ "14961" ], "x-ms-correlation-request-id": [ - "80cdf0b9-caf0-41bf-8d5c-e1de6356cab6" + "54ecdfb4-f4cb-475c-90d7-56290e3b520f" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191026Z:80cdf0b9-caf0-41bf-8d5c-e1de6356cab6" + "SOUTHCENTRALUS:20150813T051827Z:54ecdfb4-f4cb-475c-90d7-56290e3b520f" ], "Date": [ - "Thu, 06 Aug 2015 19:10:26 GMT" + "Thu, 13 Aug 2015 05:18:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3671,10 +3609,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "f66395d8-abf9-4c67-aa25-e0503a22bb54" + "f0f7554f-5b76-45e6-b076-7a68c3669882" ], "Cache-Control": [ "no-cache" @@ -3687,28 +3625,28 @@ "14960" ], "x-ms-correlation-request-id": [ - "405edbfe-c25d-4f09-b6a6-8ba55ae87333" + "42ad70e7-3347-4236-96d9-546805229ab4" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191057Z:405edbfe-c25d-4f09-b6a6-8ba55ae87333" + "SOUTHCENTRALUS:20150813T051857Z:42ad70e7-3347-4236-96d9-546805229ab4" ], "Date": [ - "Thu, 06 Aug 2015 19:10:56 GMT" + "Thu, 13 Aug 2015 05:18:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3726,10 +3664,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "56684c3a-f2ab-42eb-a531-4925bebb7c9f" + "0b2d4907-ca81-41f9-87db-e5a376aecec4" ], "Cache-Control": [ "no-cache" @@ -3742,28 +3680,28 @@ "14959" ], "x-ms-correlation-request-id": [ - "f4488a01-5301-4fbc-b3e6-4a3fc3852036" + "61bbb4e8-a0fe-4f08-83af-cbb355d9b804" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191127Z:f4488a01-5301-4fbc-b3e6-4a3fc3852036" + "SOUTHCENTRALUS:20150813T051927Z:61bbb4e8-a0fe-4f08-83af-cbb355d9b804" ], "Date": [ - "Thu, 06 Aug 2015 19:11:26 GMT" + "Thu, 13 Aug 2015 05:19:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3781,10 +3719,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "d4d69708-f01f-45c3-bbcc-b89b807fd9f5" + "a4a0f404-f31e-4d04-b4e3-40aa994202c6" ], "Cache-Control": [ "no-cache" @@ -3797,28 +3735,28 @@ "14958" ], "x-ms-correlation-request-id": [ - "2236da41-683c-4246-8b1c-fcf2512aaf1d" + "f60b7c80-3163-4374-ad1c-b277d25d07be" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191157Z:2236da41-683c-4246-8b1c-fcf2512aaf1d" + "SOUTHCENTRALUS:20150813T051957Z:f60b7c80-3163-4374-ad1c-b277d25d07be" ], "Date": [ - "Thu, 06 Aug 2015 19:11:56 GMT" + "Thu, 13 Aug 2015 05:19:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3836,10 +3774,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "efc3dc95-a635-46cd-98e4-fd64ae699d2a" + "b54fc0c3-b4f0-4262-8baf-53cd16f38bfe" ], "Cache-Control": [ "no-cache" @@ -3852,28 +3790,28 @@ "14957" ], "x-ms-correlation-request-id": [ - "31d8a5af-7af0-48c6-a857-3e4b651ea135" + "d834ff1b-d982-47d2-9ce1-9ae6e70fccd1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191227Z:31d8a5af-7af0-48c6-a857-3e4b651ea135" + "SOUTHCENTRALUS:20150813T052028Z:d834ff1b-d982-47d2-9ce1-9ae6e70fccd1" ], "Date": [ - "Thu, 06 Aug 2015 19:12:27 GMT" + "Thu, 13 Aug 2015 05:20:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3891,10 +3829,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "63f552b9-24cd-41e7-962e-bd7444396c3c" + "e749f856-0ff6-4794-8c0d-45d6f3541530" ], "Cache-Control": [ "no-cache" @@ -3907,28 +3845,28 @@ "14956" ], "x-ms-correlation-request-id": [ - "541e3232-5f53-4ad2-b408-30d78f51b2a6" + "8eb5128e-1308-4552-84d7-323e6f43a0b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191257Z:541e3232-5f53-4ad2-b408-30d78f51b2a6" + "SOUTHCENTRALUS:20150813T052058Z:8eb5128e-1308-4552-84d7-323e6f43a0b1" ], "Date": [ - "Thu, 06 Aug 2015 19:12:56 GMT" + "Thu, 13 Aug 2015 05:20:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3946,10 +3884,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "bcd1b133-3d4b-4d42-bb9c-4aa77a4122e2" + "74abc3f7-f97b-41ab-9de5-758fb8d76353" ], "Cache-Control": [ "no-cache" @@ -3962,28 +3900,28 @@ "14955" ], "x-ms-correlation-request-id": [ - "7c1309e1-de3f-4a98-a7c7-617b30dead3f" + "b3b8cae3-fde7-4ce1-b086-9a6ccec1d51c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191327Z:7c1309e1-de3f-4a98-a7c7-617b30dead3f" + "SOUTHCENTRALUS:20150813T052128Z:b3b8cae3-fde7-4ce1-b086-9a6ccec1d51c" ], "Date": [ - "Thu, 06 Aug 2015 19:13:27 GMT" + "Thu, 13 Aug 2015 05:21:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4001,10 +3939,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "d395dae7-aaeb-4ace-9000-57de6c5baf91" + "665873c6-f073-44eb-80b4-b546b9795455" ], "Cache-Control": [ "no-cache" @@ -4017,28 +3955,28 @@ "14954" ], "x-ms-correlation-request-id": [ - "31aa342f-369b-4613-93ae-56c5bae8596c" + "687a31b7-5545-4349-829d-a6fa07c14090" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191357Z:31aa342f-369b-4613-93ae-56c5bae8596c" + "SOUTHCENTRALUS:20150813T052159Z:687a31b7-5545-4349-829d-a6fa07c14090" ], "Date": [ - "Thu, 06 Aug 2015 19:13:57 GMT" + "Thu, 13 Aug 2015 05:21:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4056,10 +3994,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "6f4e232d-af49-4667-a4c8-8669b4405b09" + "627a6043-07af-43eb-a45c-e1908184233d" ], "Cache-Control": [ "no-cache" @@ -4072,31 +4010,31 @@ "14953" ], "x-ms-correlation-request-id": [ - "6c684a07-bf45-4e85-8c82-74268bf8d95b" + "9f5e7a20-b233-48d1-9ee5-013345a719e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191427Z:6c684a07-bf45-4e85-8c82-74268bf8d95b" + "SOUTHCENTRALUS:20150813T052229Z:9f5e7a20-b233-48d1-9ee5-013345a719e3" ], "Date": [ - "Thu, 06 Aug 2015 19:14:27 GMT" + "Thu, 13 Aug 2015 05:22:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a500bb15-2fbb-40e2-a014-379a6f261814?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTUwMGJiMTUtMmZiYi00MGUyLWEwMTQtMzc5YTZmMjYxODE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a500bb15-2fbb-40e2-a014-379a6f261814\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-06T11:59:23.5343971-07:00\",\r\n \"endTime\": \"2015-08-06T12:14:40.4660496-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4111,10 +4049,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "ab06e561-5c34-4839-887e-8639a097855b" + "9e9a4453-a388-407d-a8e3-e93eacd79b7b" ], "Cache-Control": [ "no-cache" @@ -4127,31 +4065,31 @@ "14952" ], "x-ms-correlation-request-id": [ - "1ea6bd9c-e3b3-4bb3-a7a3-dc238fb7183c" + "ff22bf0c-bc01-4cff-8558-8253d1dbef81" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191458Z:1ea6bd9c-e3b3-4bb3-a7a3-dc238fb7183c" + "SOUTHCENTRALUS:20150813T052259Z:ff22bf0c-bc01-4cff-8558-8253d1dbef81" ], "Date": [ - "Thu, 06 Aug 2015 19:14:57 GMT" + "Thu, 13 Aug 2015 05:22:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842/extensions/crptestps5842ext?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4NDIvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM1ODQyZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842/extensions/crptestps5842ext\",\r\n \"name\": \"crptestps5842ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "583" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4166,10 +4104,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "0d21959d-842a-4ab6-bd1b-6ec71383101f" + "27e54570-9fb1-4e9c-85c9-b798fd541f63" ], "Cache-Control": [ "no-cache" @@ -4182,31 +4120,31 @@ "14951" ], "x-ms-correlation-request-id": [ - "606deea1-4a9c-44c4-a9c4-b02b23bdd143" + "56fc8fd1-06e5-4634-a40f-1d18414e78d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191458Z:606deea1-4a9c-44c4-a9c4-b02b23bdd143" + "SOUTHCENTRALUS:20150813T052329Z:56fc8fd1-06e5-4634-a40f-1d18414e78d5" ], "Date": [ - "Thu, 06 Aug 2015 19:14:57 GMT" + "Thu, 13 Aug 2015 05:23:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842/extensions/crptestps5842ext?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4NDIvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM1ODQyZXh0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/39902e7b-ddc8-4157-8f97-4baf4bdc7288?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk5MDJlN2ItZGRjOC00MTU3LThmOTctNGJhZjRiZGM3Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"crptestps5842ext\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus/StdOut/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"\"\r\n },\r\n {\r\n \"code\": \"ComponentStatus/StdErr/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Finished executing command\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842/extensions/crptestps5842ext\",\r\n \"name\": \"crptestps5842ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"39902e7b-ddc8-4157-8f97-4baf4bdc7288\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T22:07:49.7905194-07:00\",\r\n \"endTime\": \"2015-08-12T22:23:42.6247912-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1381" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4221,10 +4159,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "9ead28e6-1ef9-43d7-914d-086781764a83" + "35d2f42a-a166-4d89-be21-fe7b26e5428c" ], "Cache-Control": [ "no-cache" @@ -4237,31 +4175,31 @@ "14950" ], "x-ms-correlation-request-id": [ - "8c8bf700-7cbd-415a-893b-407e44bce6f3" + "fdf63e66-a8e0-4f9d-bee6-b0519467c843" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191458Z:8c8bf700-7cbd-415a-893b-407e44bce6f3" + "SOUTHCENTRALUS:20150813T052400Z:fdf63e66-a8e0-4f9d-bee6-b0519467c843" ], "Date": [ - "Thu, 06 Aug 2015 19:14:57 GMT" + "Thu, 13 Aug 2015 05:24:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544/extensions/crptestps2544ext?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI1NDQvZXh0ZW5zaW9ucy9jcnB0ZXN0cHMyNTQ0ZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5842.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Network/networkInterfaces/niccrptestps5842\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842/extensions/crptestps5842ext\",\r\n \"name\": \"crptestps5842ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842\",\r\n \"name\": \"vmcrptestps5842\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544/extensions/crptestps2544ext\",\r\n \"name\": \"crptestps2544ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "2604" + "583" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4276,10 +4214,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "7c253c3c-f944-4128-a28f-f281150eeaa3" + "48e94e2b-8c33-493b-9f9f-cb5f822ff606" ], "Cache-Control": [ "no-cache" @@ -4292,31 +4230,34 @@ "14949" ], "x-ms-correlation-request-id": [ - "c52ad06a-a3ce-452b-a673-02be75460b1e" + "9445fd31-601b-462e-a784-4e0a36fb6ea2" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191458Z:c52ad06a-a3ce-452b-a673-02be75460b1e" + "SOUTHCENTRALUS:20150813T052400Z:9445fd31-601b-462e-a784-4e0a36fb6ea2" ], "Date": [ - "Thu, 06 Aug 2015 19:14:57 GMT" + "Thu, 13 Aug 2015 05:24:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5842/providers/Microsoft.Compute/virtualMachines/vmcrptestps5842/extensions/crptestps5842ext?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU4NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU4NDIvZXh0ZW5zaW9ucy9jcnB0ZXN0cHM1ODQyZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544/extensions/crptestps2544ext?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI1NDQvZXh0ZW5zaW9ucy9jcnB0ZXN0cHMyNTQ0ZXh0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"crptestps2544ext\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"substatuses\": [\r\n {\r\n \"code\": \"ComponentStatus/StdOut/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"\"\r\n },\r\n {\r\n \"code\": \"ComponentStatus/StdErr/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Finished executing command\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544/extensions/crptestps2544ext\",\r\n \"name\": \"crptestps2544ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "1381" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4324,57 +4265,51 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "bbfcc982-b5e0-412e-927e-fec51fe3c947" + "ab9adf53-85eb-4025-b486-3a03efb8d746" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" ], "x-ms-correlation-request-id": [ - "db0b9120-f913-433d-93ad-348bb079cd66" + "3b8bcbaa-0475-4d31-968b-fda8f9f868f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191458Z:db0b9120-f913-433d-93ad-348bb079cd66" + "SOUTHCENTRALUS:20150813T052400Z:3b8bcbaa-0475-4d31-968b-fda8f9f868f1" ], "Date": [ - "Thu, 06 Aug 2015 19:14:57 GMT" + "Thu, 13 Aug 2015 05:24:00 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2544.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Network/networkInterfaces/niccrptestps2544\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"fileUris\": [],\r\n \"commandToExecute\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544/extensions/crptestps2544ext\",\r\n \"name\": \"crptestps2544ext\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544\",\r\n \"name\": \"vmcrptestps2544\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "2604" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4389,10 +4324,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "9aa8e787-71e7-4e36-b08e-d21f001d2444" + "7011d8bb-4a23-44ce-962e-58fda75ab027" ], "Cache-Control": [ "no-cache" @@ -4402,37 +4337,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14947" ], "x-ms-correlation-request-id": [ - "ae11a2be-fd63-4496-bf32-c697a06ccd16" + "d0267389-f321-4c50-9af6-8636ba644849" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191458Z:ae11a2be-fd63-4496-bf32-c697a06ccd16" + "SOUTHCENTRALUS:20150813T052400Z:d0267389-f321-4c50-9af6-8636ba644849" ], "Date": [ - "Thu, 06 Aug 2015 19:14:57 GMT" + "Thu, 13 Aug 2015 05:24:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2544/providers/Microsoft.Compute/virtualMachines/vmcrptestps2544/extensions/crptestps2544ext?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI1NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI1NDQvZXh0ZW5zaW9ucy9jcnB0ZXN0cHMyNTQ0ZXh0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -4440,48 +4372,54 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "0fe3901a-34ff-4836-a2cd-1a1a9a42ba63" + "b2140117-4677-4bde-9575-358946a28ed9" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?monitor=true&api-version=2015-06-15" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "6a0b2707-a7e7-4249-b51e-cffcc6537bb4" + "7ae69129-f895-4b1e-b9c8-ca8e935374be" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191529Z:6a0b2707-a7e7-4249-b51e-cffcc6537bb4" + "SOUTHCENTRALUS:20150813T052401Z:7ae69129-f895-4b1e-b9c8-ca8e935374be" ], "Date": [ - "Thu, 06 Aug 2015 19:15:28 GMT" + "Thu, 13 Aug 2015 05:24:01 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4499,10 +4437,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "ac0b03f7-ac85-454b-b4f3-6e79d2a90a4d" + "b7264771-fe6d-4dfa-b121-836d7533ccf3" ], "Cache-Control": [ "no-cache" @@ -4515,28 +4453,28 @@ "14946" ], "x-ms-correlation-request-id": [ - "4939a7e8-d267-4c64-bdef-b0d268304a2b" + "f2115e4f-9032-4725-9b57-a73607a3dce0" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191559Z:4939a7e8-d267-4c64-bdef-b0d268304a2b" + "SOUTHCENTRALUS:20150813T052402Z:f2115e4f-9032-4725-9b57-a73607a3dce0" ], "Date": [ - "Thu, 06 Aug 2015 19:15:58 GMT" + "Thu, 13 Aug 2015 05:24:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4554,10 +4492,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "e7ba046e-41c8-4fd8-94a2-67fe5416e868" + "78f90d5e-5eeb-4511-946f-7ca22966a17b" ], "Cache-Control": [ "no-cache" @@ -4570,28 +4508,28 @@ "14945" ], "x-ms-correlation-request-id": [ - "da76b8c7-124f-4f64-bcfc-8d5ae68ca48c" + "ec1a2d10-3d36-4a63-bf95-9d21d268e1fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191629Z:da76b8c7-124f-4f64-bcfc-8d5ae68ca48c" + "SOUTHCENTRALUS:20150813T052432Z:ec1a2d10-3d36-4a63-bf95-9d21d268e1fe" ], "Date": [ - "Thu, 06 Aug 2015 19:16:28 GMT" + "Thu, 13 Aug 2015 05:24:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4609,10 +4547,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "5acf3580-0e30-4f72-b6a6-799615b87f56" + "7eae49f4-b2d6-4d8e-ae0c-3786507391ce" ], "Cache-Control": [ "no-cache" @@ -4625,28 +4563,28 @@ "14944" ], "x-ms-correlation-request-id": [ - "622d4906-f00f-43a2-91ac-8cced57a59c8" + "1b7bf1d1-35e1-4caf-95ec-02e3eec1e6ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191659Z:622d4906-f00f-43a2-91ac-8cced57a59c8" + "SOUTHCENTRALUS:20150813T052502Z:1b7bf1d1-35e1-4caf-95ec-02e3eec1e6ae" ], "Date": [ - "Thu, 06 Aug 2015 19:16:58 GMT" + "Thu, 13 Aug 2015 05:25:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4664,10 +4602,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "7a635516-d68c-4103-be05-80e89948609f" + "fd6bbf68-60ed-4ea9-bad0-353929daa7cc" ], "Cache-Control": [ "no-cache" @@ -4680,28 +4618,28 @@ "14943" ], "x-ms-correlation-request-id": [ - "aede5664-dfb3-4e96-9efb-672e187e13cb" + "df0e5a23-3f5f-4f82-82ff-355deda43dd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191729Z:aede5664-dfb3-4e96-9efb-672e187e13cb" + "SOUTHCENTRALUS:20150813T052532Z:df0e5a23-3f5f-4f82-82ff-355deda43dd3" ], "Date": [ - "Thu, 06 Aug 2015 19:17:29 GMT" + "Thu, 13 Aug 2015 05:25:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4719,10 +4657,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "e085d067-f6b8-4a64-b4f1-ef0eba6d6e86" + "d223ed6c-7598-4de7-9611-08c5710de746" ], "Cache-Control": [ "no-cache" @@ -4735,28 +4673,28 @@ "14942" ], "x-ms-correlation-request-id": [ - "be4acee9-7f8c-41c9-9e7e-d16ee69eedb5" + "0fadbe20-b659-4f7c-97e4-b58510838dec" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191759Z:be4acee9-7f8c-41c9-9e7e-d16ee69eedb5" + "SOUTHCENTRALUS:20150813T052603Z:0fadbe20-b659-4f7c-97e4-b58510838dec" ], "Date": [ - "Thu, 06 Aug 2015 19:17:59 GMT" + "Thu, 13 Aug 2015 05:26:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4774,10 +4712,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "30fe88a6-15c7-4c8f-9586-60152fccd56a" + "f96a7c32-481c-4cd5-9a3b-01c5afbb6996" ], "Cache-Control": [ "no-cache" @@ -4790,28 +4728,28 @@ "14941" ], "x-ms-correlation-request-id": [ - "fc3ae780-1f40-4eaf-b4bd-b24b09946869" + "ea8c7235-8e96-4c09-aa90-d2f5f0140c96" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191829Z:fc3ae780-1f40-4eaf-b4bd-b24b09946869" + "SOUTHCENTRALUS:20150813T052633Z:ea8c7235-8e96-4c09-aa90-d2f5f0140c96" ], "Date": [ - "Thu, 06 Aug 2015 19:18:28 GMT" + "Thu, 13 Aug 2015 05:26:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4829,10 +4767,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "638b3334-6a4c-40b0-b21a-c4263509c1cd" + "b137e20d-c06e-476e-985c-28ec6e5904f7" ], "Cache-Control": [ "no-cache" @@ -4845,28 +4783,28 @@ "14940" ], "x-ms-correlation-request-id": [ - "bea2f6e2-3814-4c28-a822-ae3557b73f51" + "9aae8c9d-338b-437f-8ec7-f27428c16bd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191859Z:bea2f6e2-3814-4c28-a822-ae3557b73f51" + "SOUTHCENTRALUS:20150813T052703Z:9aae8c9d-338b-437f-8ec7-f27428c16bd3" ], "Date": [ - "Thu, 06 Aug 2015 19:18:59 GMT" + "Thu, 13 Aug 2015 05:27:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4884,10 +4822,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "426f7f51-312d-4bd3-bc52-21862201a13b" + "183ee1b3-bc18-476a-8901-36aa83d26370" ], "Cache-Control": [ "no-cache" @@ -4900,31 +4838,31 @@ "14939" ], "x-ms-correlation-request-id": [ - "18004936-9856-4e13-b85e-be8632db9aa8" + "7d1cd8b0-f7ff-4146-a524-487fd4b0f185" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T191930Z:18004936-9856-4e13-b85e-be8632db9aa8" + "SOUTHCENTRALUS:20150813T052734Z:7d1cd8b0-f7ff-4146-a524-487fd4b0f185" ], "Date": [ - "Thu, 06 Aug 2015 19:19:29 GMT" + "Thu, 13 Aug 2015 05:27:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/bbfcc982-b5e0-412e-927e-fec51fe3c947?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmJmY2M5ODItYjVlMC00MTJlLTkyN2UtZmVjNTFmZTNjOTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"bbfcc982-b5e0-412e-927e-fec51fe3c947\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-06T12:14:58.4815595-07:00\",\r\n \"endTime\": \"2015-08-06T12:19:57.6515003-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4939,10 +4877,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130803225952481285" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "974550dd-d3e5-47f2-8b19-fb7c19f1d0cf" + "34b4f042-219e-4242-81ba-06c74795c6b7" ], "Cache-Control": [ "no-cache" @@ -4955,31 +4893,34 @@ "14938" ], "x-ms-correlation-request-id": [ - "feb2446e-51fe-4b1c-a325-40a695c4e6d8" + "70dd9f07-6d38-4789-a556-330493bce82c" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192000Z:feb2446e-51fe-4b1c-a325-40a695c4e6d8" + "SOUTHCENTRALUS:20150813T052804Z:70dd9f07-6d38-4789-a556-330493bce82c" ], "Date": [ - "Thu, 06 Aug 2015 19:19:59 GMT" + "Thu, 13 Aug 2015 05:28:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5842?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU4NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4987,107 +4928,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "0ceb771f-1168-41be-b387-ef9c7867d42f" - ], - "x-ms-correlation-request-id": [ - "0ceb771f-1168-41be-b387-ef9c7867d42f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T192001Z:0ceb771f-1168-41be-b387-ef9c7867d42f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Aug 2015 19:20:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "9d707c0c-d266-4561-bc4a-d1557c8b3112" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "12f1c1ac-ae2c-46c2-941b-4f94269a469c" + "14937" ], "x-ms-correlation-request-id": [ - "12f1c1ac-ae2c-46c2-941b-4f94269a469c" + "a55a00f0-3396-4a13-bf3a-d4751b472cf1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192001Z:12f1c1ac-ae2c-46c2-941b-4f94269a469c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "SOUTHCENTRALUS:20150813T052834Z:a55a00f0-3396-4a13-bf3a-d4751b472cf1" ], "Date": [ - "Thu, 06 Aug 2015 19:20:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Thu, 13 Aug 2015 05:28:34 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -5095,53 +4983,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "ea65c777-b8eb-4851-be91-be04f6c07670" + "f197b557-e52a-4343-9f06-430163e56747" ], - "x-ms-correlation-request-id": [ - "ea65c777-b8eb-4851-be91-be04f6c07670" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T192016Z:ea65c777-b8eb-4851-be91-be04f6c07670" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "2b69fefa-4638-4fe4-b24f-034ef10cf33a" ], - "Date": [ - "Thu, 06 Aug 2015 19:20:15 GMT" + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T052905Z:2b69fefa-4638-4fe4-b24f-034ef10cf33a" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 05:29:04 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b2140117-4677-4bde-9575-358946a28ed9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjIxNDAxMTctNDY3Ny00YmRlLTk1NzUtMzU4OTQ2YTI4ZWQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"b2140117-4677-4bde-9575-358946a28ed9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T22:24:01.6405478-07:00\",\r\n \"endTime\": \"2015-08-12T22:29:07.4393973-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -5149,45 +5038,43 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "8d8a7236-e699-46c3-97bd-5878b2360a41" + "16a1e532-9ae0-4596-910c-4e5711e58c9d" ], - "x-ms-correlation-request-id": [ - "8d8a7236-e699-46c3-97bd-5878b2360a41" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T192031Z:8d8a7236-e699-46c3-97bd-5878b2360a41" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "820a26d0-b2a5-4862-b22a-a21fcc6e3055" ], - "Date": [ - "Thu, 06 Aug 2015 19:20:30 GMT" + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T052935Z:820a26d0-b2a5-4862-b22a-a21fcc6e3055" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 05:29:34 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2544?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI1NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -5206,17 +5093,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "a45b2895-95a2-4d76-b2d9-aeb7b353c4c1" + "7695b227-7a5b-480a-8b82-2f39de64d275" ], "x-ms-correlation-request-id": [ - "a45b2895-95a2-4d76-b2d9-aeb7b353c4c1" + "7695b227-7a5b-480a-8b82-2f39de64d275" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192046Z:a45b2895-95a2-4d76-b2d9-aeb7b353c4c1" + "SOUTHCENTRALUS:20150813T052936Z:7695b227-7a5b-480a-8b82-2f39de64d275" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5225,17 +5112,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:20:46 GMT" + "Thu, 13 Aug 2015 05:29:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5264,13 +5151,13 @@ "14994" ], "x-ms-request-id": [ - "22cdb75d-ad77-45a6-ba56-8c7721c4352c" + "ffe6e354-16f8-4ffd-9609-637974d31e1d" ], "x-ms-correlation-request-id": [ - "22cdb75d-ad77-45a6-ba56-8c7721c4352c" + "ffe6e354-16f8-4ffd-9609-637974d31e1d" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192101Z:22cdb75d-ad77-45a6-ba56-8c7721c4352c" + "SOUTHCENTRALUS:20150813T052936Z:ffe6e354-16f8-4ffd-9609-637974d31e1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5279,17 +5166,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:21:00 GMT" + "Thu, 13 Aug 2015 05:29:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5318,13 +5205,13 @@ "14993" ], "x-ms-request-id": [ - "f5a18d73-cce2-485b-b3dc-78f8c706ca7d" + "d2859c66-3a3f-4b76-9942-8a067d887ff0" ], "x-ms-correlation-request-id": [ - "f5a18d73-cce2-485b-b3dc-78f8c706ca7d" + "d2859c66-3a3f-4b76-9942-8a067d887ff0" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192116Z:f5a18d73-cce2-485b-b3dc-78f8c706ca7d" + "SOUTHCENTRALUS:20150813T052952Z:d2859c66-3a3f-4b76-9942-8a067d887ff0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5333,17 +5220,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:21:15 GMT" + "Thu, 13 Aug 2015 05:29:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5372,13 +5259,13 @@ "14992" ], "x-ms-request-id": [ - "5b669a8b-a9ee-488f-98c9-022c72de13ce" + "266b52b6-0edc-4157-8488-9c422ed40437" ], "x-ms-correlation-request-id": [ - "5b669a8b-a9ee-488f-98c9-022c72de13ce" + "266b52b6-0edc-4157-8488-9c422ed40437" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192131Z:5b669a8b-a9ee-488f-98c9-022c72de13ce" + "SOUTHCENTRALUS:20150813T053007Z:266b52b6-0edc-4157-8488-9c422ed40437" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5387,17 +5274,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:21:31 GMT" + "Thu, 13 Aug 2015 05:30:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5426,13 +5313,13 @@ "14991" ], "x-ms-request-id": [ - "2e4b790d-6ee4-4a0d-af94-dc2747a6b235" + "4205e232-a93d-4055-8c81-0bdb7120d3fc" ], "x-ms-correlation-request-id": [ - "2e4b790d-6ee4-4a0d-af94-dc2747a6b235" + "4205e232-a93d-4055-8c81-0bdb7120d3fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192146Z:2e4b790d-6ee4-4a0d-af94-dc2747a6b235" + "SOUTHCENTRALUS:20150813T053022Z:4205e232-a93d-4055-8c81-0bdb7120d3fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5441,17 +5328,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:21:45 GMT" + "Thu, 13 Aug 2015 05:30:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5480,13 +5367,13 @@ "14990" ], "x-ms-request-id": [ - "9515527d-261e-4bb6-97ed-b08523f59530" + "90ac8350-8f3e-4b63-86f9-66b12a051eac" ], "x-ms-correlation-request-id": [ - "9515527d-261e-4bb6-97ed-b08523f59530" + "90ac8350-8f3e-4b63-86f9-66b12a051eac" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192201Z:9515527d-261e-4bb6-97ed-b08523f59530" + "SOUTHCENTRALUS:20150813T053037Z:90ac8350-8f3e-4b63-86f9-66b12a051eac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5495,17 +5382,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:22:01 GMT" + "Thu, 13 Aug 2015 05:30:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5534,13 +5421,13 @@ "14989" ], "x-ms-request-id": [ - "eb87b96d-a743-46f9-9e69-d0a6b7ca51be" + "aa69f7f8-4518-49c1-b2db-284be1939ae5" ], "x-ms-correlation-request-id": [ - "eb87b96d-a743-46f9-9e69-d0a6b7ca51be" + "aa69f7f8-4518-49c1-b2db-284be1939ae5" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192216Z:eb87b96d-a743-46f9-9e69-d0a6b7ca51be" + "SOUTHCENTRALUS:20150813T053052Z:aa69f7f8-4518-49c1-b2db-284be1939ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5549,17 +5436,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:22:16 GMT" + "Thu, 13 Aug 2015 05:30:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5588,13 +5475,13 @@ "14988" ], "x-ms-request-id": [ - "e17e6cb0-05ab-438e-a442-84bc706856c1" + "8b2c0ec5-e38d-4586-a157-c9fbf51a60d4" ], "x-ms-correlation-request-id": [ - "e17e6cb0-05ab-438e-a442-84bc706856c1" + "8b2c0ec5-e38d-4586-a157-c9fbf51a60d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192231Z:e17e6cb0-05ab-438e-a442-84bc706856c1" + "SOUTHCENTRALUS:20150813T053108Z:8b2c0ec5-e38d-4586-a157-c9fbf51a60d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5603,17 +5490,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:22:30 GMT" + "Thu, 13 Aug 2015 05:31:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5642,13 +5529,13 @@ "14987" ], "x-ms-request-id": [ - "8c286176-eed3-45a9-8957-ed858a75553e" + "30e266a5-3dd8-475b-83c1-580aa0fe9efd" ], "x-ms-correlation-request-id": [ - "8c286176-eed3-45a9-8957-ed858a75553e" + "30e266a5-3dd8-475b-83c1-580aa0fe9efd" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192246Z:8c286176-eed3-45a9-8957-ed858a75553e" + "SOUTHCENTRALUS:20150813T053123Z:30e266a5-3dd8-475b-83c1-580aa0fe9efd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5657,17 +5544,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:22:46 GMT" + "Thu, 13 Aug 2015 05:31:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5696,13 +5583,13 @@ "14986" ], "x-ms-request-id": [ - "a8aefcbf-26f4-47c3-aee9-92530956ef51" + "01f53ea2-452b-4a8e-a832-ba999396abc6" ], "x-ms-correlation-request-id": [ - "a8aefcbf-26f4-47c3-aee9-92530956ef51" + "01f53ea2-452b-4a8e-a832-ba999396abc6" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192301Z:a8aefcbf-26f4-47c3-aee9-92530956ef51" + "SOUTHCENTRALUS:20150813T053138Z:01f53ea2-452b-4a8e-a832-ba999396abc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5711,17 +5598,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:23:01 GMT" + "Thu, 13 Aug 2015 05:31:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5750,13 +5637,13 @@ "14985" ], "x-ms-request-id": [ - "35b73a07-4a95-45c0-b86a-40ac7d4762ca" + "b86575ee-4447-4709-b585-994699cee586" ], "x-ms-correlation-request-id": [ - "35b73a07-4a95-45c0-b86a-40ac7d4762ca" + "b86575ee-4447-4709-b585-994699cee586" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192317Z:35b73a07-4a95-45c0-b86a-40ac7d4762ca" + "SOUTHCENTRALUS:20150813T053153Z:b86575ee-4447-4709-b585-994699cee586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5765,17 +5652,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:23:16 GMT" + "Thu, 13 Aug 2015 05:31:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5804,13 +5691,13 @@ "14984" ], "x-ms-request-id": [ - "b007a8d0-62e2-4d67-b3de-7da4bbae59ee" + "c6e16690-1251-4e6e-a65c-b1ec3cedddd9" ], "x-ms-correlation-request-id": [ - "b007a8d0-62e2-4d67-b3de-7da4bbae59ee" + "c6e16690-1251-4e6e-a65c-b1ec3cedddd9" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192332Z:b007a8d0-62e2-4d67-b3de-7da4bbae59ee" + "SOUTHCENTRALUS:20150813T053208Z:c6e16690-1251-4e6e-a65c-b1ec3cedddd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5819,17 +5706,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:23:31 GMT" + "Thu, 13 Aug 2015 05:32:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5858,13 +5745,13 @@ "14983" ], "x-ms-request-id": [ - "abe40f1e-668d-4fe1-899f-a42e15f22e67" + "3be59594-283c-402b-b7f9-7eff88df44bc" ], "x-ms-correlation-request-id": [ - "abe40f1e-668d-4fe1-899f-a42e15f22e67" + "3be59594-283c-402b-b7f9-7eff88df44bc" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192347Z:abe40f1e-668d-4fe1-899f-a42e15f22e67" + "SOUTHCENTRALUS:20150813T053223Z:3be59594-283c-402b-b7f9-7eff88df44bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5873,17 +5760,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:23:46 GMT" + "Thu, 13 Aug 2015 05:32:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5912,13 +5799,13 @@ "14982" ], "x-ms-request-id": [ - "d93ba596-f271-4037-93b8-0d4dd3117256" + "a611b963-44b2-4474-af8a-0b77b6b5fcfb" ], "x-ms-correlation-request-id": [ - "d93ba596-f271-4037-93b8-0d4dd3117256" + "a611b963-44b2-4474-af8a-0b77b6b5fcfb" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192402Z:d93ba596-f271-4037-93b8-0d4dd3117256" + "SOUTHCENTRALUS:20150813T053239Z:a611b963-44b2-4474-af8a-0b77b6b5fcfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5927,17 +5814,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:24:02 GMT" + "Thu, 13 Aug 2015 05:32:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5966,13 +5853,13 @@ "14981" ], "x-ms-request-id": [ - "0d247dd4-110a-4e75-849e-91fb28ca988d" + "41a39bd1-fef4-47bb-ba61-b8b634cf2dfb" ], "x-ms-correlation-request-id": [ - "0d247dd4-110a-4e75-849e-91fb28ca988d" + "41a39bd1-fef4-47bb-ba61-b8b634cf2dfb" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192417Z:0d247dd4-110a-4e75-849e-91fb28ca988d" + "SOUTHCENTRALUS:20150813T053254Z:41a39bd1-fef4-47bb-ba61-b8b634cf2dfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5981,17 +5868,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:24:16 GMT" + "Thu, 13 Aug 2015 05:32:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6020,13 +5907,13 @@ "14980" ], "x-ms-request-id": [ - "f4b7d65e-c670-4ba8-bb1d-8d49f3da5cbd" + "ce94a1fd-ac9e-4d29-a3a3-5f5eea439df1" ], "x-ms-correlation-request-id": [ - "f4b7d65e-c670-4ba8-bb1d-8d49f3da5cbd" + "ce94a1fd-ac9e-4d29-a3a3-5f5eea439df1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192432Z:f4b7d65e-c670-4ba8-bb1d-8d49f3da5cbd" + "SOUTHCENTRALUS:20150813T053309Z:ce94a1fd-ac9e-4d29-a3a3-5f5eea439df1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6035,17 +5922,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:24:31 GMT" + "Thu, 13 Aug 2015 05:33:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6074,13 +5961,13 @@ "14979" ], "x-ms-request-id": [ - "c5a0c965-1290-4f3a-a697-b6edcebf29f3" + "5bf7b0bd-d2d1-4dc1-8b2f-065e04a70a43" ], "x-ms-correlation-request-id": [ - "c5a0c965-1290-4f3a-a697-b6edcebf29f3" + "5bf7b0bd-d2d1-4dc1-8b2f-065e04a70a43" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192447Z:c5a0c965-1290-4f3a-a697-b6edcebf29f3" + "SOUTHCENTRALUS:20150813T053324Z:5bf7b0bd-d2d1-4dc1-8b2f-065e04a70a43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6089,17 +5976,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:24:47 GMT" + "Thu, 13 Aug 2015 05:33:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6128,13 +6015,13 @@ "14978" ], "x-ms-request-id": [ - "ee2347f1-c8fd-44ef-a2b0-676b3e2b7079" + "163f14e3-59de-4261-8516-24c8f26f6d32" ], "x-ms-correlation-request-id": [ - "ee2347f1-c8fd-44ef-a2b0-676b3e2b7079" + "163f14e3-59de-4261-8516-24c8f26f6d32" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192502Z:ee2347f1-c8fd-44ef-a2b0-676b3e2b7079" + "SOUTHCENTRALUS:20150813T053339Z:163f14e3-59de-4261-8516-24c8f26f6d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6143,17 +6030,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:25:02 GMT" + "Thu, 13 Aug 2015 05:33:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6182,13 +6069,13 @@ "14977" ], "x-ms-request-id": [ - "1e3cbfab-38d9-4c8d-af8a-84039aee7943" + "5130519a-f3d0-49b3-b129-543159956e9a" ], "x-ms-correlation-request-id": [ - "1e3cbfab-38d9-4c8d-af8a-84039aee7943" + "5130519a-f3d0-49b3-b129-543159956e9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192517Z:1e3cbfab-38d9-4c8d-af8a-84039aee7943" + "SOUTHCENTRALUS:20150813T053354Z:5130519a-f3d0-49b3-b129-543159956e9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6197,17 +6084,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:25:17 GMT" + "Thu, 13 Aug 2015 05:33:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6236,13 +6123,13 @@ "14976" ], "x-ms-request-id": [ - "6246696f-f51c-4221-9bf8-08b3557afefc" + "2cffe202-a56e-4064-9af1-fb6f0818f9cc" ], "x-ms-correlation-request-id": [ - "6246696f-f51c-4221-9bf8-08b3557afefc" + "2cffe202-a56e-4064-9af1-fb6f0818f9cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192532Z:6246696f-f51c-4221-9bf8-08b3557afefc" + "SOUTHCENTRALUS:20150813T053410Z:2cffe202-a56e-4064-9af1-fb6f0818f9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6251,17 +6138,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:25:31 GMT" + "Thu, 13 Aug 2015 05:34:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6290,13 +6177,13 @@ "14975" ], "x-ms-request-id": [ - "e8a11366-9865-4dd0-9f6e-d65df01d5597" + "37ba553c-9299-43f6-a1b9-78918b9d26ae" ], "x-ms-correlation-request-id": [ - "e8a11366-9865-4dd0-9f6e-d65df01d5597" + "37ba553c-9299-43f6-a1b9-78918b9d26ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192547Z:e8a11366-9865-4dd0-9f6e-d65df01d5597" + "SOUTHCENTRALUS:20150813T053425Z:37ba553c-9299-43f6-a1b9-78918b9d26ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6305,17 +6192,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:25:47 GMT" + "Thu, 13 Aug 2015 05:34:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6344,13 +6231,13 @@ "14974" ], "x-ms-request-id": [ - "4b8a09d9-bb72-4153-81b3-d1761d359197" + "0341deb5-bd8a-4ac7-bd66-1e2d5f3fe9db" ], "x-ms-correlation-request-id": [ - "4b8a09d9-bb72-4153-81b3-d1761d359197" + "0341deb5-bd8a-4ac7-bd66-1e2d5f3fe9db" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192602Z:4b8a09d9-bb72-4153-81b3-d1761d359197" + "SOUTHCENTRALUS:20150813T053440Z:0341deb5-bd8a-4ac7-bd66-1e2d5f3fe9db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6359,17 +6246,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:26:02 GMT" + "Thu, 13 Aug 2015 05:34:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6398,13 +6285,13 @@ "14973" ], "x-ms-request-id": [ - "33272bde-5807-462c-8bda-b6def763fd4c" + "34b13269-66d6-47e7-8c9b-bb3e2b70bc29" ], "x-ms-correlation-request-id": [ - "33272bde-5807-462c-8bda-b6def763fd4c" + "34b13269-66d6-47e7-8c9b-bb3e2b70bc29" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192617Z:33272bde-5807-462c-8bda-b6def763fd4c" + "SOUTHCENTRALUS:20150813T053455Z:34b13269-66d6-47e7-8c9b-bb3e2b70bc29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6413,17 +6300,17 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:26:17 GMT" + "Thu, 13 Aug 2015 05:34:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TlRRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6445,71 +6332,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "14972" ], "x-ms-request-id": [ - "589680fa-b6d7-4d4f-9ef4-affc8b4493ab" - ], - "x-ms-correlation-request-id": [ - "589680fa-b6d7-4d4f-9ef4-affc8b4493ab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150806T192632Z:589680fa-b6d7-4d4f-9ef4-affc8b4493ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 06 Aug 2015 19:26:32 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1ODQyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT0RReUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-request-id": [ - "50b713a6-11c7-44f1-b4f2-e7fcb02c6274" + "330340f0-e2d0-4091-a679-7b10f7f974f1" ], "x-ms-correlation-request-id": [ - "50b713a6-11c7-44f1-b4f2-e7fcb02c6274" + "330340f0-e2d0-4091-a679-7b10f7f974f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150806T192648Z:50b713a6-11c7-44f1-b4f2-e7fcb02c6274" + "SOUTHCENTRALUS:20150813T053510Z:330340f0-e2d0-4091-a679-7b10f7f974f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6518,7 +6351,7 @@ "no-cache" ], "Date": [ - "Thu, 06 Aug 2015 19:26:47 GMT" + "Thu, 13 Aug 2015 05:35:10 GMT" ] }, "StatusCode": 200 @@ -6526,7 +6359,7 @@ ], "Names": { "Test-VirtualMachineExtensionUsingHashTable": [ - "crptestps5842" + "crptestps2544" ] }, "Variables": { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestAddNetworkInterface.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestAddNetworkInterface.json index 6fe0e9e05050..6fa67cf7f77c 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestAddNetworkInterface.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestAddNetworkInterface.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5248?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "20078559-5a3a-4896-98e5-7e49b0e1fe43" + ], + "x-ms-correlation-request-id": [ + "20078559-5a3a-4896-98e5-7e49b0e1fe43" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T183303Z:20078559-5a3a-4896-98e5-7e49b0e1fe43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:33:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps949?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk0OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "105" + "104" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14998" ], "x-ms-request-id": [ - "8cbcf5c0-7843-46e1-bc07-d29bdf36ce9d" + "7c6f33aa-a7eb-4039-9bca-fe8faef0365d" ], "x-ms-correlation-request-id": [ - "8cbcf5c0-7843-46e1-bc07-d29bdf36ce9d" + "7c6f33aa-a7eb-4039-9bca-fe8faef0365d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183830Z:8cbcf5c0-7843-46e1-bc07-d29bdf36ce9d" + "WESTUS:20150813T183303Z:7c6f33aa-a7eb-4039-9bca-fe8faef0365d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:38:30 GMT" + "Thu, 13 Aug 2015 18:33:02 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5248?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps949?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk0OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14997" ], "x-ms-request-id": [ - "57fccde9-9aba-4e6f-ac72-503b663da3f0" + "a03b3c27-878f-4c7a-ae71-199730eabfe1" ], "x-ms-correlation-request-id": [ - "57fccde9-9aba-4e6f-ac72-503b663da3f0" + "a03b3c27-878f-4c7a-ae71-199730eabfe1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184435Z:57fccde9-9aba-4e6f-ac72-503b663da3f0" + "WESTUS:20150813T184132Z:a03b3c27-878f-4c7a-ae71-199730eabfe1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:44:35 GMT" + "Thu, 13 Aug 2015 18:41:32 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5248?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps949?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk0OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248\",\r\n \"name\": \"crptestps5248\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949\",\r\n \"name\": \"crptestps949\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "7e3d757f-d121-4118-a92b-6eb56e86a7ea" + "2c897abd-74b7-4406-8439-fa699e697b6e" ], "x-ms-correlation-request-id": [ - "7e3d757f-d121-4118-a92b-6eb56e86a7ea" + "2c897abd-74b7-4406-8439-fa699e697b6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183830Z:7e3d757f-d121-4118-a92b-6eb56e86a7ea" + "WESTUS:20150813T183303Z:2c897abd-74b7-4406-8439-fa699e697b6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:38:30 GMT" + "Thu, 13 Aug 2015 18:33:02 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14997" ], "x-ms-request-id": [ - "84d370f0-99b1-425f-8e10-b105a6427937" + "5fd38376-ff89-4603-9738-a11f3a9d1ca2" ], "x-ms-correlation-request-id": [ - "84d370f0-99b1-425f-8e10-b105a6427937" + "5fd38376-ff89-4603-9738-a11f3a9d1ca2" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183830Z:84d370f0-99b1-425f-8e10-b105a6427937" + "WESTUS:20150813T183303Z:5fd38376-ff89-4603-9738-a11f3a9d1ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:38:30 GMT" + "Thu, 13 Aug 2015 18:33:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5248/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps949/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:247bdff9-a29d-4c13-85b8-cd0f5a0cbc5f" + "westus:06955c05-357e-4121-ae6b-9f272bfed1ce" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14999" ], "x-ms-correlation-request-id": [ - "daedbd64-6b4f-4e05-93b3-3fc3f9b1a508" + "d29ddb9c-b945-4659-83fc-6c5137f5f6c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183831Z:daedbd64-6b4f-4e05-93b3-3fc3f9b1a508" + "WESTUS:20150813T183304Z:d29ddb9c-b945-4659-83fc-6c5137f5f6c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:38:30 GMT" + "Thu, 13 Aug 2015 18:33:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualnetworks/vnetcrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHM5NDk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps949' under resource group 'crptestps949' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "a302cf2c-9828-43f7-b095-d129d25796fb" + "831f5ae1-4584-4909-a2de-90b0d75f1367" ], "x-ms-correlation-request-id": [ - "a302cf2c-9828-43f7-b095-d129d25796fb" + "831f5ae1-4584-4909-a2de-90b0d75f1367" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183831Z:a302cf2c-9828-43f7-b095-d129d25796fb" + "WESTUS:20150813T183305Z:831f5ae1-4584-4909-a2de-90b0d75f1367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:38:31 GMT" + "Thu, 13 Aug 2015 18:33:04 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualnetworks/vnetcrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHM5NDk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248\",\r\n \"etag\": \"W/\\\"aad71135-bfd9-4992-b0a3-fabecf6ffb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248/subnets/subnetcrptestps5248\",\r\n \"etag\": \"W/\\\"aad71135-bfd9-4992-b0a3-fabecf6ffb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949\",\r\n \"etag\": \"W/\\\"102064ff-f147-406c-a9ba-db5b4e72bfb3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"63f27853-4c06-4c40-8ded-154b10ea9168\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949/subnets/subnetcrptestps949\",\r\n \"etag\": \"W/\\\"102064ff-f147-406c-a9ba-db5b4e72bfb3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "f5353565-9b4c-418e-8a29-b3e6ae96fde9" + "ca52dbe4-a13c-4f68-be96-3ba47ba8c96c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"aad71135-bfd9-4992-b0a3-fabecf6ffb19\"" + "W/\"102064ff-f147-406c-a9ba-db5b4e72bfb3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-correlation-request-id": [ - "4d8de35d-7a14-441a-876d-22f5af831dc3" + "71b9ee0e-d098-4a70-b246-c335122262c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183832Z:4d8de35d-7a14-441a-876d-22f5af831dc3" + "WESTUS:20150813T183316Z:71b9ee0e-d098-4a70-b246-c335122262c0" ], "Date": [ - "Fri, 19 Jun 2015 18:38:32 GMT" + "Thu, 13 Aug 2015 18:33:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualnetworks/vnetcrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHM5NDk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248\",\r\n \"etag\": \"W/\\\"aad71135-bfd9-4992-b0a3-fabecf6ffb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248/subnets/subnetcrptestps5248\",\r\n \"etag\": \"W/\\\"aad71135-bfd9-4992-b0a3-fabecf6ffb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949\",\r\n \"etag\": \"W/\\\"102064ff-f147-406c-a9ba-db5b4e72bfb3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"63f27853-4c06-4c40-8ded-154b10ea9168\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949/subnets/subnetcrptestps949\",\r\n \"etag\": \"W/\\\"102064ff-f147-406c-a9ba-db5b4e72bfb3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "8f2aef7e-a9c8-483f-8024-67a5ab5efa53" + "77f88706-e727-4b55-b046-fccefe978bca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"aad71135-bfd9-4992-b0a3-fabecf6ffb19\"" + "W/\"102064ff-f147-406c-a9ba-db5b4e72bfb3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-correlation-request-id": [ - "5ed415c4-3631-423a-aa3b-eaa2d068f892" + "5eb6444d-c623-42a9-9289-ca611274de68" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183832Z:5ed415c4-3631-423a-aa3b-eaa2d068f892" + "WESTUS:20150813T183316Z:5eb6444d-c623-42a9-9289-ca611274de68" ], "Date": [ - "Fri, 19 Jun 2015 18:38:32 GMT" + "Thu, 13 Aug 2015 18:33:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualnetworks/vnetcrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHM5NDk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps5248\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps5248\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps949\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps949\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "502" + "500" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248\",\r\n \"etag\": \"W/\\\"e16913fb-faa1-4332-a0d0-209632802972\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248/subnets/subnetcrptestps5248\",\r\n \"etag\": \"W/\\\"e16913fb-faa1-4332-a0d0-209632802972\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949\",\r\n \"etag\": \"W/\\\"418757b7-c986-444f-a67d-fced68ec34c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"63f27853-4c06-4c40-8ded-154b10ea9168\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949/subnets/subnetcrptestps949\",\r\n \"etag\": \"W/\\\"418757b7-c986-444f-a67d-fced68ec34c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "965" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "79e65396-126f-4a5d-8068-96a9ec255736" + "997f094e-d752-4de3-bf30-d34a2d6bf80a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/79e65396-126f-4a5d-8068-96a9ec255736?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/997f094e-d752-4de3-bf30-d34a2d6bf80a?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -460,20 +508,75 @@ "1199" ], "x-ms-correlation-request-id": [ - "b807789f-2ea3-4a96-ada9-5871fc587eac" + "c93a23a2-1303-4969-954f-bf6e05c0205e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183832Z:b807789f-2ea3-4a96-ada9-5871fc587eac" + "WESTUS:20150813T183305Z:c93a23a2-1303-4969-954f-bf6e05c0205e" ], "Date": [ - "Fri, 19 Jun 2015 18:38:32 GMT" + "Thu, 13 Aug 2015 18:33:05 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/79e65396-126f-4a5d-8068-96a9ec255736?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzllNjUzOTYtMTI2Zi00YTVkLTgwNjgtOTZhOWVjMjU1NzM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/997f094e-d752-4de3-bf30-d34a2d6bf80a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk3ZjA5NGUtZDc1Mi00ZGUzLWJmMzAtZDM0YTJkNmJmODBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d43e7b3d-1d51-4073-9ed0-63c5cbea78dc" + ], + "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": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "f62bd720-4973-4b7a-abe9-b7d7f55c1453" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T183306Z:f62bd720-4973-4b7a-abe9-b7d7f55c1453" + ], + "Date": [ + "Thu, 13 Aug 2015 18:33:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/997f094e-d752-4de3-bf30-d34a2d6bf80a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk3ZjA5NGUtZDc1Mi00ZGUzLWJmMzAtZDM0YTJkNmJmODBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "1b1043a8-e3e6-402f-9db7-1896ddb9612f" + "9e11d87c-2dd2-4994-89c0-112225de6e46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-correlation-request-id": [ - "324f1e41-fcc5-4e42-9b72-f8d76530cf67" + "9e6719d8-5330-42f3-a03a-2409f6bdc625" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183832Z:324f1e41-fcc5-4e42-9b72-f8d76530cf67" + "WESTUS:20150813T183316Z:9e6719d8-5330-42f3-a03a-2409f6bdc625" ], "Date": [ - "Fri, 19 Jun 2015 18:38:32 GMT" + "Thu, 13 Aug 2015 18:33:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHM5NDkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps949' under resource group 'crptestps949' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "ba0ed5ac-2182-4b2b-91ed-c9d598c90219" + "3984e90e-39a6-407d-9904-56264d32a1ee" ], "x-ms-correlation-request-id": [ - "ba0ed5ac-2182-4b2b-91ed-c9d598c90219" + "3984e90e-39a6-407d-9904-56264d32a1ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183832Z:ba0ed5ac-2182-4b2b-91ed-c9d598c90219" + "WESTUS:20150813T183316Z:3984e90e-39a6-407d-9904-56264d32a1ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +672,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:38:32 GMT" + "Thu, 13 Aug 2015 18:33:15 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHM5NDkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248\",\r\n \"etag\": \"W/\\\"bb188765-f1f6-4c06-994d-ec6bb699a78f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5248\",\r\n \"fqdn\": \"pubipcrptestps5248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949\",\r\n \"etag\": \"W/\\\"e9d0ea5a-f3ec-4786-bd88-c2b4d707e277\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f4f8d0d-3dd1-435c-b7c0-5652bef22dc8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps949\",\r\n \"fqdn\": \"pubipcrptestps949.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "611" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "31675408-e8a9-4d04-bd95-4c81127e27b8" + "e121b1a4-993d-4ff7-a024-fbb545a76284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"bb188765-f1f6-4c06-994d-ec6bb699a78f\"" + "W/\"e9d0ea5a-f3ec-4786-bd88-c2b4d707e277\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14985" ], "x-ms-correlation-request-id": [ - "353066c6-f00e-4f7c-ac7f-c3ace4b4f2d5" + "325f8116-e685-440b-a3a8-771f6495cadf" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183833Z:353066c6-f00e-4f7c-ac7f-c3ace4b4f2d5" + "WESTUS:20150813T183327Z:325f8116-e685-440b-a3a8-771f6495cadf" ], "Date": [ - "Fri, 19 Jun 2015 18:38:33 GMT" + "Thu, 13 Aug 2015 18:33:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHM5NDkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248\",\r\n \"etag\": \"W/\\\"bb188765-f1f6-4c06-994d-ec6bb699a78f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5248\",\r\n \"fqdn\": \"pubipcrptestps5248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949\",\r\n \"etag\": \"W/\\\"e9d0ea5a-f3ec-4786-bd88-c2b4d707e277\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f4f8d0d-3dd1-435c-b7c0-5652bef22dc8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps949\",\r\n \"fqdn\": \"pubipcrptestps949.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "611" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "a7911d34-a4b1-44ea-8647-108ba86d8b93" + "30342af5-aa38-4483-a189-3a1f69385a11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +766,47 @@ "no-cache" ], "ETag": [ - "W/\"bb188765-f1f6-4c06-994d-ec6bb699a78f\"" + "W/\"e9d0ea5a-f3ec-4786-bd88-c2b4d707e277\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14984" ], "x-ms-correlation-request-id": [ - "4607e145-ca11-4119-a5c7-cac202318ea9" + "9e292dd1-72eb-4d72-9b64-46108be39771" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183833Z:4607e145-ca11-4119-a5c7-cac202318ea9" + "WESTUS:20150813T183327Z:9e292dd1-72eb-4d72-9b64-46108be39771" ], "Date": [ - "Fri, 19 Jun 2015 18:38:33 GMT" + "Thu, 13 Aug 2015 18:33:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHM5NDkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5248\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps5248\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps949\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps949\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "256" + "254" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248\",\r\n \"etag\": \"W/\\\"604ff33f-8728-4e5a-bc55-69b2004fba16\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5248\",\r\n \"fqdn\": \"pubipcrptestps5248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949\",\r\n \"etag\": \"W/\\\"db216e29-d976-42e9-b873-9016519fbdec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7f4f8d0d-3dd1-435c-b7c0-5652bef22dc8\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps949\",\r\n \"fqdn\": \"pubipcrptestps949.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "554" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "54f5e229-3e9e-42b8-bb80-39e1d0184078" + "501c1f26-a14e-496a-a559-ab14e212e28f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/54f5e229-3e9e-42b8-bb80-39e1d0184078?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/501c1f26-a14e-496a-a559-ab14e212e28f?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -737,20 +840,75 @@ "1198" ], "x-ms-correlation-request-id": [ - "6ce20bd3-a5df-4417-951e-0b6bb2b04920" + "04af28c1-92e1-4a65-bb8b-b24f1b97bd23" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183833Z:6ce20bd3-a5df-4417-951e-0b6bb2b04920" + "WESTUS:20150813T183317Z:04af28c1-92e1-4a65-bb8b-b24f1b97bd23" ], "Date": [ - "Fri, 19 Jun 2015 18:38:33 GMT" + "Thu, 13 Aug 2015 18:33:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/54f5e229-3e9e-42b8-bb80-39e1d0184078?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTRmNWUyMjktM2U5ZS00MmI4LWJiODAtMzllMWQwMTg0MDc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/501c1f26-a14e-496a-a559-ab14e212e28f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTAxYzFmMjYtYTE0ZS00OTZhLWE1NTktYWIxNGUyMTJlMjhmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4c9bda7e-2f52-4434-9c8b-169d119ab218" + ], + "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": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "e7cb791a-bdd0-4e47-a488-e52c89da2aa3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T183317Z:e7cb791a-bdd0-4e47-a488-e52c89da2aa3" + ], + "Date": [ + "Thu, 13 Aug 2015 18:33:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/501c1f26-a14e-496a-a559-ab14e212e28f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTAxYzFmMjYtYTE0ZS00OTZhLWE1NTktYWIxNGUyMTJlMjhmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +934,7 @@ "no-cache" ], "x-ms-request-id": [ - "9db32574-5aa0-4a18-bebd-ea1ae26f6e4e" + "c9f7fe27-5eec-4d06-a9cc-a453fb9c4479" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +947,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14986" ], "x-ms-correlation-request-id": [ - "f15a6c2d-00d5-4dfe-ab48-6d1e78d5fbf9" + "62bbe893-d236-4b7a-ac1a-0e1033985b5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183833Z:f15a6c2d-00d5-4dfe-ab48-6d1e78d5fbf9" + "WESTUS:20150813T183327Z:62bbe893-d236-4b7a-ac1a-0e1033985b5b" ], "Date": [ - "Fri, 19 Jun 2015 18:38:33 GMT" + "Thu, 13 Aug 2015 18:33:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljY3JwdGVzdHBzOTQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,10 +971,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps949' under resource group 'crptestps949' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "167" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,13 +989,13 @@ "gateway" ], "x-ms-request-id": [ - "f488191f-974e-47f7-987b-ded3c211c144" + "ba30ddbf-4ecf-4f71-a04e-f972a2cb8c75" ], "x-ms-correlation-request-id": [ - "f488191f-974e-47f7-987b-ded3c211c144" + "ba30ddbf-4ecf-4f71-a04e-f972a2cb8c75" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183833Z:f488191f-974e-47f7-987b-ded3c211c144" + "WESTUS:20150813T183327Z:ba30ddbf-4ecf-4f71-a04e-f972a2cb8c75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +1004,14 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:38:33 GMT" + "Thu, 13 Aug 2015 18:33:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljY3JwdGVzdHBzOTQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248\",\r\n \"etag\": \"W/\\\"efb11b0e-7d08-4b96-aebc-a5684868dd60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"efb11b0e-7d08-4b96-aebc-a5684868dd60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248/subnets/subnetcrptestps5248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949\",\r\n \"etag\": \"W/\\\"3f70059d-43e4-4f44-b784-2d535e527372\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"983c2832-1d2b-4b19-88a2-c79b9f8d9093\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3f70059d-43e4-4f44-b784-2d535e527372\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949/subnets/subnetcrptestps949\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "1552ad0c-a32e-4c48-8dbf-fd8e0aebeae8" + "687b34fb-e445-4bcb-8697-2a508c872953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,47 +1043,47 @@ "no-cache" ], "ETag": [ - "W/\"efb11b0e-7d08-4b96-aebc-a5684868dd60\"" + "W/\"3f70059d-43e4-4f44-b784-2d535e527372\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14981" ], "x-ms-correlation-request-id": [ - "e56e20e9-2847-411c-ae5f-6043a75835c5" + "ee785780-54c4-4160-9916-a80c9a277da1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183834Z:e56e20e9-2847-411c-ae5f-6043a75835c5" + "WESTUS:20150813T183328Z:ee785780-54c4-4160-9916-a80c9a277da1" ], "Date": [ - "Fri, 19 Jun 2015 18:38:34 GMT" + "Thu, 13 Aug 2015 18:33:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljY3JwdGVzdHBzOTQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248/subnets/subnetcrptestps5248\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"niccrptestps5248\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949/subnets/subnetcrptestps949\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps949\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "863" + "891" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248\",\r\n \"etag\": \"W/\\\"efb11b0e-7d08-4b96-aebc-a5684868dd60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"efb11b0e-7d08-4b96-aebc-a5684868dd60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248/subnets/subnetcrptestps5248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949\",\r\n \"etag\": \"W/\\\"3f70059d-43e4-4f44-b784-2d535e527372\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"983c2832-1d2b-4b19-88a2-c79b9f8d9093\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3f70059d-43e4-4f44-b784-2d535e527372\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949/subnets/subnetcrptestps949\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -937,10 +1095,10 @@ "no-cache" ], "x-ms-request-id": [ - "df7d853f-7a65-464b-87fd-4da34af4d688" + "9ab459b6-027d-44f8-ae8f-a808d15cc312" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/df7d853f-7a65-464b-87fd-4da34af4d688?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/9ab459b6-027d-44f8-ae8f-a808d15cc312?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -956,20 +1114,20 @@ "1197" ], "x-ms-correlation-request-id": [ - "b53c3aa9-5c85-4303-a2ae-3729a81e5180" + "923fbd85-df16-4a32-91f3-4f8c3d1aff27" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183834Z:b53c3aa9-5c85-4303-a2ae-3729a81e5180" + "WESTUS:20150813T183328Z:923fbd85-df16-4a32-91f3-4f8c3d1aff27" ], "Date": [ - "Fri, 19 Jun 2015 18:38:34 GMT" + "Thu, 13 Aug 2015 18:33:27 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/df7d853f-7a65-464b-87fd-4da34af4d688?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGY3ZDg1M2YtN2E2NS00NjRiLTg3ZmQtNGRhMzRhZjRkNjg4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/9ab459b6-027d-44f8-ae8f-a808d15cc312?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWFiNDU5YjYtMDI3ZC00NGY4LWFlOGYtYTgwOGQxNWNjMzEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -995,7 +1153,7 @@ "no-cache" ], "x-ms-request-id": [ - "06393372-9123-426b-a563-7eac7224c77c" + "fc5ce086-1118-4adb-8631-f0df34dd9a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14982" ], "x-ms-correlation-request-id": [ - "26bd8c24-4f29-41c9-a947-be58811e02f9" + "0d8dee41-7f03-4ddc-aed2-efc92e5bdea1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183834Z:26bd8c24-4f29-41c9-a947-be58811e02f9" + "WESTUS:20150813T183328Z:0d8dee41-7f03-4ddc-aed2-efc92e5bdea1" ], "Date": [ - "Fri, 19 Jun 2015 18:38:34 GMT" + "Thu, 13 Aug 2015 18:33:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1032,10 +1190,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"niccrptestps5248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248\",\r\n \"etag\": \"W/\\\"efb11b0e-7d08-4b96-aebc-a5684868dd60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"efb11b0e-7d08-4b96-aebc-a5684868dd60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5248/subnets/subnetcrptestps5248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"niccrptestps949\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949\",\r\n \"etag\": \"W/\\\"3f70059d-43e4-4f44-b784-2d535e527372\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"983c2832-1d2b-4b19-88a2-c79b9f8d9093\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3f70059d-43e4-4f44-b784-2d535e527372\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps949\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/virtualNetworks/vnetcrptestps949/subnets/subnetcrptestps949\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1466" + "1559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,7 +1205,7 @@ "no-cache" ], "x-ms-request-id": [ - "a419d6c1-37c1-4f49-b579-ee65d8b7dea6" + "4215fb6d-ff13-42e6-b43e-064ab52aeae7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1060,23 +1218,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14980" ], "x-ms-correlation-request-id": [ - "5cf9809d-320a-4335-a5bf-4e47f3ce8f64" + "79133af7-1d3f-473a-90c0-96d7b9a3797a" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183834Z:5cf9809d-320a-4335-a5bf-4e47f3ce8f64" + "WESTUS:20150813T183328Z:79133af7-1d3f-473a-90c0-96d7b9a3797a" ], "Date": [ - "Fri, 19 Jun 2015 18:38:34 GMT" + "Thu, 13 Aug 2015 18:33:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Storage/storageAccounts/stocrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1MjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Storage/storageAccounts/stocrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3Rwczk0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1087,7 +1245,7 @@ "88" ], "x-ms-client-request-id": [ - "b0fe59c3-ba66-4ecb-bc4d-d5078b929cf3" + "5a8aade0-8322-4a42-a06a-e7031430d7d6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1111,13 +1269,13 @@ "25" ], "x-ms-request-id": [ - "c6278efe-3c12-4b3b-8083-ab3c3255cdee" + "0930b298-e9fc-41f7-aa6e-e07316160d7b" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c6278efe-3c12-4b3b-8083-ab3c3255cdee?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/0930b298-e9fc-41f7-aa6e-e07316160d7b?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1127,28 +1285,28 @@ "1199" ], "x-ms-correlation-request-id": [ - "c51f439a-8a7f-4301-8945-ad6eb1de3786" + "d28ede19-56a0-46c0-8bf8-8ef39d0e9bc3" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183836Z:c51f439a-8a7f-4301-8945-ad6eb1de3786" + "WESTUS:20150813T183331Z:d28ede19-56a0-46c0-8bf8-8ef39d0e9bc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 18:38:36 GMT" + "Thu, 13 Aug 2015 18:33:31 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c6278efe-3c12-4b3b-8083-ab3c3255cdee?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M2Mjc4ZWZlLTNjMTItNGIzYi04MDgzLWFiM2MzMjU1Y2RlZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/0930b298-e9fc-41f7-aa6e-e07316160d7b?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA5MzBiMjk4LWU5ZmMtNDFmNy1hYTZlLWUwNzMxNjE2MGQ3Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c722452d-c6e5-4c0b-a684-5e2450a69f55" + "19b1fc79-3f41-4286-af45-71a19f85a38b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1172,13 +1330,13 @@ "25" ], "x-ms-request-id": [ - "a8496ff0-2424-4f7c-b112-54a45836e3b9" + "83b2d6d8-10c5-48c4-a262-d88c76e48ede" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c6278efe-3c12-4b3b-8083-ab3c3255cdee?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/0930b298-e9fc-41f7-aa6e-e07316160d7b?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1188,28 +1346,28 @@ "14999" ], "x-ms-correlation-request-id": [ - "2066da0c-4afd-4ee2-bd14-07c8c7723cc5" + "d126b3b6-cf4c-4bef-84ef-82d4d5103810" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183836Z:2066da0c-4afd-4ee2-bd14-07c8c7723cc5" + "WESTUS:20150813T183331Z:d126b3b6-cf4c-4bef-84ef-82d4d5103810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 18:38:36 GMT" + "Thu, 13 Aug 2015 18:33:31 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c6278efe-3c12-4b3b-8083-ab3c3255cdee?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M2Mjc4ZWZlLTNjMTItNGIzYi04MDgzLWFiM2MzMjU1Y2RlZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/0930b298-e9fc-41f7-aa6e-e07316160d7b?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA5MzBiMjk4LWU5ZmMtNDFmNy1hYTZlLWUwNzMxNjE2MGQ3Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3d32e06-f661-422c-ad44-61347ac51d16" + "c192d371-ba43-4134-bab8-239899d88acb" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,7 +1388,7 @@ "no-cache" ], "x-ms-request-id": [ - "3f906a26-a329-45cb-9e11-aea8b34fbc0c" + "c6fb47c5-7aaa-4686-8b59-577f4d7ea1f9" ], "Cache-Control": [ "no-cache" @@ -1243,37 +1401,37 @@ "14998" ], "x-ms-correlation-request-id": [ - "8633accf-3a63-411c-ac64-fdbbe9596464" + "54a7b2c3-424c-46e6-aaed-3ba0d87b5cc5" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183901Z:8633accf-3a63-411c-ac64-fdbbe9596464" + "WESTUS:20150813T183356Z:54a7b2c3-424c-46e6-aaed-3ba0d87b5cc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 18:39:01 GMT" + "Thu, 13 Aug 2015 18:33:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Storage/storageAccounts/stocrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1MjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Storage/storageAccounts/stocrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3Rwczk0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb0d25bd-b242-4eae-b206-41c37c5d95dc" + "96637f2d-f1c1-43ee-aad6-d78f284e1dd9" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Storage/storageAccounts/stocrptestps5248\",\r\n \"name\": \"stocrptestps5248\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5248.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5248.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5248.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-19T18:38:35.4130108Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Storage/storageAccounts/stocrptestps949\",\r\n \"name\": \"stocrptestps949\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps949.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps949.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps949.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T18:33:29.4998269Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "678" + "672" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1285,7 +1443,7 @@ "no-cache" ], "x-ms-request-id": [ - "9cc071c2-a617-4198-950a-8c80f4349473" + "5ed0f336-03dc-4ffb-9554-db9e6ae575a0" ], "Cache-Control": [ "no-cache" @@ -1298,37 +1456,37 @@ "14997" ], "x-ms-correlation-request-id": [ - "e8cb188c-a298-45da-a0fa-8be856e81114" + "a83e494d-cfef-4d8f-8953-138c3dbb623e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183902Z:e8cb188c-a298-45da-a0fa-8be856e81114" + "WESTUS:20150813T183356Z:a83e494d-cfef-4d8f-8953-138c3dbb623e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 18:39:01 GMT" + "Thu, 13 Aug 2015 18:33:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Storage/storageAccounts/stocrptestps5248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1MjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Storage/storageAccounts/stocrptestps949?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3Rwczk0OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6bb40bb-43df-4694-976e-753265ef0f59" + "5c676e0a-0a60-4dfb-bee6-83508e4cdc7e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Storage/storageAccounts/stocrptestps5248\",\r\n \"name\": \"stocrptestps5248\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5248.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5248.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5248.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-19T18:38:35.4130108Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Storage/storageAccounts/stocrptestps949\",\r\n \"name\": \"stocrptestps949\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps949.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps949.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps949.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T18:33:29.4998269Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "678" + "672" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1340,7 +1498,7 @@ "no-cache" ], "x-ms-request-id": [ - "0442ec8c-3bf4-4dd5-b466-7a71597e8c91" + "93c9e65d-50ef-4ba9-a7b7-f483099bdcd9" ], "Cache-Control": [ "no-cache" @@ -1353,16 +1511,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "4990eb03-416a-41a2-a080-b3779a46e9c6" + "4348bba5-b8c8-4da5-a882-4715cb8a44fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183902Z:4990eb03-416a-41a2-a080-b3779a46e9c6" + "WESTUS:20150813T183357Z:4348bba5-b8c8-4da5-a882-4715cb8a44fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 19 Jun 2015 18:39:01 GMT" + "Thu, 13 Aug 2015 18:33:56 GMT" ] }, "StatusCode": 200 @@ -1374,13 +1532,13 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "46147" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1395,7 +1553,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "acf748b2-1927-4cb9-9b35-dad66021951a" + "6c89ed6e-e007-4ea1-9e04-1f600ea76828" ], "Cache-Control": [ "no-cache" @@ -1405,16 +1563,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14942" ], "x-ms-correlation-request-id": [ - "487354ed-cada-4f3d-b377-f2a4ae95c194" + "bf552bff-9f3b-4502-bfa0-711460bc91cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183902Z:487354ed-cada-4f3d-b377-f2a4ae95c194" + "WESTUS:20150813T183358Z:bf552bff-9f3b-4502-bfa0-711460bc91cd" ], "Date": [ - "Fri, 19 Jun 2015 18:39:02 GMT" + "Thu, 13 Aug 2015 18:33:57 GMT" ] }, "StatusCode": 200 @@ -1426,7 +1584,7 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", @@ -1447,7 +1605,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72d6670e-6ea0-4a0b-85ec-e418743ebace" + "749b8293-d0a9-4197-b11a-e03c4f43903e" ], "Cache-Control": [ "no-cache" @@ -1457,16 +1615,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14941" ], "x-ms-correlation-request-id": [ - "423ddeb7-7f32-4b23-9c39-b69806b18212" + "28ef28b8-8f08-4b79-9615-381071379b5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183902Z:423ddeb7-7f32-4b23-9c39-b69806b18212" + "WESTUS:20150813T183358Z:28ef28b8-8f08-4b79-9615-381071379b5f" ], "Date": [ - "Fri, 19 Jun 2015 18:39:02 GMT" + "Thu, 13 Aug 2015 18:33:57 GMT" ] }, "StatusCode": 200 @@ -1478,13 +1636,13 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1499,7 +1657,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f8b163d-7384-4499-a8e0-87d64ea2c9f1" + "26a02969-7090-4741-b44e-e0ebdd36427d" ], "Cache-Control": [ "no-cache" @@ -1509,16 +1667,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14940" ], "x-ms-correlation-request-id": [ - "7655b201-0cb3-48f3-a23b-dd60699abe31" + "ae671e49-f1e5-4410-8a55-b1591316909d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183903Z:7655b201-0cb3-48f3-a23b-dd60699abe31" + "WESTUS:20150813T183358Z:ae671e49-f1e5-4410-8a55-b1591316909d" ], "Date": [ - "Fri, 19 Jun 2015 18:39:02 GMT" + "Thu, 13 Aug 2015 18:33:58 GMT" ] }, "StatusCode": 200 @@ -1530,13 +1688,13 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "870" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1551,7 +1709,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2067b54-4c54-45f1-96d8-d4c20834ed2b" + "725fd250-482b-4e08-ac5b-6b889a777fb5" ], "Cache-Control": [ "no-cache" @@ -1561,31 +1719,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14939" ], "x-ms-correlation-request-id": [ - "b2c59cfe-b416-4ea3-acbc-79e48f3e3be1" + "32780ec9-03d3-4708-886f-fa5e800f2005" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183903Z:b2c59cfe-b416-4ea3-acbc-79e48f3e3be1" + "WESTUS:20150813T183358Z:32780ec9-03d3-4708-886f-fa5e800f2005" ], "Date": [ - "Fri, 19 Jun 2015 18:39:02 GMT" + "Thu, 13 Aug 2015 18:33:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1603,7 +1761,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed33caa6-3919-40b9-91c7-d0d091835146" + "0c88dead-67e7-4fc6-bf72-f6b1483135c4" ], "Cache-Control": [ "no-cache" @@ -1613,40 +1771,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14938" ], "x-ms-correlation-request-id": [ - "38263f1c-dfd7-4de6-bc10-976e480e510f" + "fa7945b1-10db-4d66-8431-03b1cfe1650c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183903Z:38263f1c-dfd7-4de6-bc10-976e480e510f" + "WESTUS:20150813T183358Z:fa7945b1-10db-4d66-8431-03b1cfe1650c" ], "Date": [ - "Fri, 19 Jun 2015 18:39:02 GMT" + "Thu, 13 Aug 2015 18:33:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Compute/virtualMachines/vmcrptestps5248?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Compute/virtualMachines/vmcrptestps949?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzOTQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5248.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps5248\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5248\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps949.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps949\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps949\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1099" + "1094" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5248.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Compute/virtualMachines/vmcrptestps5248\",\r\n \"name\": \"vmcrptestps5248\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps949.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Compute/virtualMachines/vmcrptestps949\",\r\n \"name\": \"vmcrptestps949\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1353" + "1347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1658,13 +1816,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "859025f4-ec6e-4447-b6f2-4e17804f32ec" + "b358bd76-58d3-4b27-96c9-a8d98181ef7c" ], "Cache-Control": [ "no-cache" @@ -1674,31 +1835,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "07fd2591-9ade-4302-931b-8291932d010a" + "6ef3c4c3-5482-4e0a-a558-3a0a89016e00" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183904Z:07fd2591-9ade-4302-931b-8291932d010a" + "WESTUS:20150813T183400Z:6ef3c4c3-5482-4e0a-a558-3a0a89016e00" ], "Date": [ - "Fri, 19 Jun 2015 18:39:03 GMT" + "Thu, 13 Aug 2015 18:33:59 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1715,8 +1876,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "7e4415b7-7c9b-4b19-99a4-11ecfcb9e849" + "9e9341b4-4605-4e9c-9acd-e0082dbba822" ], "Cache-Control": [ "no-cache" @@ -1726,31 +1890,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14937" ], "x-ms-correlation-request-id": [ - "85e7f9ac-57eb-4ffb-a06f-8c67d183bba6" + "1b6da033-d894-444a-aece-463718b64bdb" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183904Z:85e7f9ac-57eb-4ffb-a06f-8c67d183bba6" + "WESTUS:20150813T183400Z:1b6da033-d894-444a-aece-463718b64bdb" ], "Date": [ - "Fri, 19 Jun 2015 18:39:03 GMT" + "Thu, 13 Aug 2015 18:34:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1767,8 +1931,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "b81bc525-e56f-4c10-a8fd-2b3c7e036889" + "faad9223-bf60-435d-8b6b-3a4b563f7eae" ], "Cache-Control": [ "no-cache" @@ -1778,31 +1945,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14934" ], "x-ms-correlation-request-id": [ - "38ede696-6657-4014-8b73-6ef166de69ef" + "c3d33571-d1db-42b6-96a5-01532bbecd2d" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T183934Z:38ede696-6657-4014-8b73-6ef166de69ef" + "WESTUS:20150813T183430Z:c3d33571-d1db-42b6-96a5-01532bbecd2d" ], "Date": [ - "Fri, 19 Jun 2015 18:39:34 GMT" + "Thu, 13 Aug 2015 18:34:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1819,8 +1986,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "d6da7b43-681d-47b2-8d0f-e8abcd6b6eb2" + "e686d085-31ce-46b2-bd2c-f4d6c9e73d09" ], "Cache-Control": [ "no-cache" @@ -1830,31 +2000,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14933" ], "x-ms-correlation-request-id": [ - "9e788e6c-23bf-437d-9d10-0cd2af09c24f" + "5e5e8cf7-98fe-45fd-a39e-25d971374066" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184004Z:9e788e6c-23bf-437d-9d10-0cd2af09c24f" + "WESTUS:20150813T183500Z:5e5e8cf7-98fe-45fd-a39e-25d971374066" ], "Date": [ - "Fri, 19 Jun 2015 18:40:03 GMT" + "Thu, 13 Aug 2015 18:34:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1871,8 +2041,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "99c21aa7-5762-411d-ab4a-bdf5892bdd3f" + "6f9f10ec-0e12-4d38-86c8-5b6f35472a35" ], "Cache-Control": [ "no-cache" @@ -1882,31 +2055,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14930" ], "x-ms-correlation-request-id": [ - "9260d9c4-1ceb-4158-9bda-80b160d6d7b3" + "7134b69b-16d4-4a03-9f5b-10e9b2437bb4" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184034Z:9260d9c4-1ceb-4158-9bda-80b160d6d7b3" + "WESTUS:20150813T183530Z:7134b69b-16d4-4a03-9f5b-10e9b2437bb4" ], "Date": [ - "Fri, 19 Jun 2015 18:40:34 GMT" + "Thu, 13 Aug 2015 18:35:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1923,8 +2096,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "63ae0ed7-3458-47fc-bdc1-5b8d07cfc8d2" + "9c0f5204-a2b5-4c9b-84b5-307d8c80bac6" ], "Cache-Control": [ "no-cache" @@ -1934,31 +2110,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14929" ], "x-ms-correlation-request-id": [ - "e274c7aa-fbf2-464f-968c-ccdb2add0316" + "76be8f44-5085-4226-8d2d-6f89d82fbc90" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184104Z:e274c7aa-fbf2-464f-968c-ccdb2add0316" + "WESTUS:20150813T183601Z:76be8f44-5085-4226-8d2d-6f89d82fbc90" ], "Date": [ - "Fri, 19 Jun 2015 18:41:04 GMT" + "Thu, 13 Aug 2015 18:36:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1975,8 +2151,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "ae9c304d-7e7f-47bb-ada4-5af6fd9f271b" + "05add3b7-7103-4b2e-b5dd-6dae18cc112f" ], "Cache-Control": [ "no-cache" @@ -1986,31 +2165,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14927" ], "x-ms-correlation-request-id": [ - "bcf0db08-8783-4c17-9f38-0691eaf25afd" + "f7f6ea71-8850-4dc4-981f-0b8a53405536" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184134Z:bcf0db08-8783-4c17-9f38-0691eaf25afd" + "WESTUS:20150813T183631Z:f7f6ea71-8850-4dc4-981f-0b8a53405536" ], "Date": [ - "Fri, 19 Jun 2015 18:41:34 GMT" + "Thu, 13 Aug 2015 18:36:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2027,8 +2206,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "383f0ed8-65c5-4cc1-95e6-dc7ab03d6a25" + "3c89cb21-f7b5-4b1d-b209-7227a3baaec4" ], "Cache-Control": [ "no-cache" @@ -2038,31 +2220,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14926" ], "x-ms-correlation-request-id": [ - "db807600-51f1-408e-b0e9-a87e1327ab1c" + "dd14183b-6c66-451d-a97f-9045a7fdab1c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184205Z:db807600-51f1-408e-b0e9-a87e1327ab1c" + "WESTUS:20150813T183701Z:dd14183b-6c66-451d-a97f-9045a7fdab1c" ], "Date": [ - "Fri, 19 Jun 2015 18:42:04 GMT" + "Thu, 13 Aug 2015 18:37:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2079,8 +2261,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "039a0446-1dab-4761-80d4-5868e060b354" + "7fcf1a81-2836-4c12-a6bd-f5cec009a715" ], "Cache-Control": [ "no-cache" @@ -2090,31 +2275,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14924" ], "x-ms-correlation-request-id": [ - "b0b86562-b3b1-44ae-8f75-b493e97bfaeb" + "00438a8c-ba5d-4985-ba6e-87e4615dd7f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184235Z:b0b86562-b3b1-44ae-8f75-b493e97bfaeb" + "WESTUS:20150813T183731Z:00438a8c-ba5d-4985-ba6e-87e4615dd7f1" ], "Date": [ - "Fri, 19 Jun 2015 18:42:35 GMT" + "Thu, 13 Aug 2015 18:37:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2131,8 +2316,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "189b6ca0-3238-435b-bc98-ea9789ae56e5" + "721d3955-72e9-432d-b290-fd4997faa5f9" ], "Cache-Control": [ "no-cache" @@ -2142,31 +2330,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14923" ], "x-ms-correlation-request-id": [ - "adf6688e-beb0-4a92-b5a2-9401279eb1a9" + "12dce470-1bf4-41c7-ad71-742edd1d2310" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184305Z:adf6688e-beb0-4a92-b5a2-9401279eb1a9" + "WESTUS:20150813T183801Z:12dce470-1bf4-41c7-ad71-742edd1d2310" ], "Date": [ - "Fri, 19 Jun 2015 18:43:04 GMT" + "Thu, 13 Aug 2015 18:38:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2183,8 +2371,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "d387f9a7-60c0-4c45-b81a-cc4b296a57c4" + "dfa01f06-9754-4200-a127-a47be7fa9632" ], "Cache-Control": [ "no-cache" @@ -2194,31 +2385,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14921" ], "x-ms-correlation-request-id": [ - "2a0e8de4-4b1f-41bd-92d4-d12a26720911" + "1d1931fc-58d6-44fe-a859-b7459d2af5e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184335Z:2a0e8de4-4b1f-41bd-92d4-d12a26720911" + "WESTUS:20150813T183831Z:1d1931fc-58d6-44fe-a859-b7459d2af5e9" ], "Date": [ - "Fri, 19 Jun 2015 18:43:35 GMT" + "Thu, 13 Aug 2015 18:38:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2235,8 +2426,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "7dd6ccf2-f28f-4faa-99ba-d1a0894828a5" + "db399e29-8c42-4a3a-868b-e419e7310ad8" ], "Cache-Control": [ "no-cache" @@ -2246,34 +2440,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14920" ], "x-ms-correlation-request-id": [ - "a3376b99-21d7-46bc-b1cb-f55ee2331cbc" + "7de874e9-5597-4ee6-b30b-546dbf57695b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184405Z:a3376b99-21d7-46bc-b1cb-f55ee2331cbc" + "WESTUS:20150813T183901Z:7de874e9-5597-4ee6-b30b-546dbf57695b" ], "Date": [ - "Fri, 19 Jun 2015 18:44:04 GMT" + "Thu, 13 Aug 2015 18:39:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/859025f4-ec6e-4447-b6f2-4e17804f32ec?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU5MDI1ZjQtZWM2ZS00NDQ3LWI2ZjItNGUxNzgwNGYzMmVjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"859025f4-ec6e-4447-b6f2-4e17804f32ec\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-19T11:39:03.4925409-07:00\",\r\n \"endTime\": \"2015-06-19T11:44:10.654693-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2287,8 +2481,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "9ef7d1ad-11fb-421d-867d-c32fcac7a7f6" + "e10ce4fa-7d87-4894-8c0f-62bd33337d30" ], "Cache-Control": [ "no-cache" @@ -2298,34 +2495,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14917" ], "x-ms-correlation-request-id": [ - "daa9e196-a68e-433e-8f18-6ead56d764b0" + "574e972b-a185-4b81-b9f2-db7bff9bb54c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184435Z:daa9e196-a68e-433e-8f18-6ead56d764b0" + "WESTUS:20150813T183931Z:574e972b-a185-4b81-b9f2-db7bff9bb54c" ], "Date": [ - "Fri, 19 Jun 2015 18:44:34 GMT" + "Thu, 13 Aug 2015 18:39:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Compute/virtualMachines/vmcrptestps5248?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczUyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5248.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Network/networkInterfaces/niccrptestps5248\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5248/providers/Microsoft.Compute/virtualMachines/vmcrptestps5248\",\r\n \"name\": \"vmcrptestps5248\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1354" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2339,8 +2536,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "b47e7362-36cf-4e49-a766-9023e431f8a7" + "d5e98970-27b3-4664-98d0-9812c0854284" ], "Cache-Control": [ "no-cache" @@ -2350,34 +2550,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14916" ], "x-ms-correlation-request-id": [ - "2dd4bec9-c427-48b9-8027-01576645994a" + "ffedc617-38a0-425d-b31a-94c98577ed7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184435Z:2dd4bec9-c427-48b9-8027-01576645994a" + "WESTUS:20150813T184002Z:ffedc617-38a0-425d-b31a-94c98577ed7b" ], "Date": [ - "Fri, 19 Jun 2015 18:44:34 GMT" + "Thu, 13 Aug 2015 18:40:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5248?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczUyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2385,53 +2588,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "cde99161-165f-490f-8404-1542fc0ef742" + "c17fa781-edee-4f3c-bb4d-732dbe695728" ], - "x-ms-correlation-request-id": [ - "cde99161-165f-490f-8404-1542fc0ef742" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150619T184436Z:cde99161-165f-490f-8404-1542fc0ef742" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "066fdb30-f0d9-498d-a65d-6ce6f96772a5" ], - "Date": [ - "Fri, 19 Jun 2015 18:44:35 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T184032Z:066fdb30-f0d9-498d-a65d-6ce6f96772a5" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 18:40:31 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2439,20 +2643,506 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "119d99ae-9700-4db7-a2b4-f4bda7eb7445" + "a273c2ec-1cde-403c-90fc-9cd87cd8fe82" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" ], "x-ms-correlation-request-id": [ - "119d99ae-9700-4db7-a2b4-f4bda7eb7445" + "bebbc9d9-37c3-415a-a662-90a90f7264c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184436Z:119d99ae-9700-4db7-a2b4-f4bda7eb7445" + "WESTUS:20150813T184102Z:bebbc9d9-37c3-415a-a662-90a90f7264c5" + ], + "Date": [ + "Thu, 13 Aug 2015 18:41:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b358bd76-58d3-4b27-96c9-a8d98181ef7c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjM1OGJkNzYtNThkMy00YjI3LTk2YzktYThkOTgxODFlZjdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b358bd76-58d3-4b27-96c9-a8d98181ef7c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T11:33:59.2274714-07:00\",\r\n \"endTime\": \"2015-08-13T11:41:11.3506608-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "fd903f6b-c7c4-489f-a247-517f8795558d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "f9117a3d-caa7-4e6f-a204-c6e74977a4f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184132Z:f9117a3d-caa7-4e6f-a204-c6e74977a4f3" + ], + "Date": [ + "Thu, 13 Aug 2015 18:41:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Compute/virtualMachines/vmcrptestps949?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzOTQ5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps949.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Network/networkInterfaces/niccrptestps949\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps949/providers/Microsoft.Compute/virtualMachines/vmcrptestps949\",\r\n \"name\": \"vmcrptestps949\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1348" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "cd815910-acef-4cee-a107-2fb429118683" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "605f53f8-2a68-4c84-9608-2e4b1013eed7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184132Z:605f53f8-2a68-4c84-9608-2e4b1013eed7" + ], + "Date": [ + "Thu, 13 Aug 2015 18:41:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps949?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk0OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "4253c5a0-4ec6-41de-a886-0a1517090a2b" + ], + "x-ms-correlation-request-id": [ + "4253c5a0-4ec6-41de-a886-0a1517090a2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184132Z:4253c5a0-4ec6-41de-a886-0a1517090a2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:41:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "c639d983-497f-42da-9de5-9d5ec8df329b" + ], + "x-ms-correlation-request-id": [ + "c639d983-497f-42da-9de5-9d5ec8df329b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184132Z:c639d983-497f-42da-9de5-9d5ec8df329b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:41:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "ed2c3391-827d-4f23-a5ae-000e79f2685b" + ], + "x-ms-correlation-request-id": [ + "ed2c3391-827d-4f23-a5ae-000e79f2685b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184147Z:ed2c3391-827d-4f23-a5ae-000e79f2685b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:41:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "00a9a60f-5895-4cdf-8105-51996c0fd91f" + ], + "x-ms-correlation-request-id": [ + "00a9a60f-5895-4cdf-8105-51996c0fd91f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184202Z:00a9a60f-5895-4cdf-8105-51996c0fd91f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:42:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "ca4bc0c0-f3c8-405f-9c43-719dde3098b0" + ], + "x-ms-correlation-request-id": [ + "ca4bc0c0-f3c8-405f-9c43-719dde3098b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184217Z:ca4bc0c0-f3c8-405f-9c43-719dde3098b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:42:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "32d6999a-afdf-47d7-b04b-d88094a7b583" + ], + "x-ms-correlation-request-id": [ + "32d6999a-afdf-47d7-b04b-d88094a7b583" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184232Z:32d6999a-afdf-47d7-b04b-d88094a7b583" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:42:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.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": [ + "9bb0fd00-6085-474a-9594-56ead71ba56d" + ], + "x-ms-correlation-request-id": [ + "9bb0fd00-6085-474a-9594-56ead71ba56d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184248Z:9bb0fd00-6085-474a-9594-56ead71ba56d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2461,17 +3151,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:44:35 GMT" + "Thu, 13 Aug 2015 18:42:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2497,16 +3187,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14990" ], "x-ms-request-id": [ - "74035469-8b5f-4b7a-8bf1-69a3824668b8" + "767d9d94-dbe5-4f8c-b346-40ee76959183" ], "x-ms-correlation-request-id": [ - "74035469-8b5f-4b7a-8bf1-69a3824668b8" + "767d9d94-dbe5-4f8c-b346-40ee76959183" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184451Z:74035469-8b5f-4b7a-8bf1-69a3824668b8" + "WESTUS:20150813T184303Z:767d9d94-dbe5-4f8c-b346-40ee76959183" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2515,17 +3205,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:44:51 GMT" + "Thu, 13 Aug 2015 18:43:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2551,16 +3241,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14989" ], "x-ms-request-id": [ - "717d17ba-c66d-4154-89ea-90e8f471cc12" + "71feb93d-e945-497b-b39a-2edaadecae99" ], "x-ms-correlation-request-id": [ - "717d17ba-c66d-4154-89ea-90e8f471cc12" + "71feb93d-e945-497b-b39a-2edaadecae99" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184506Z:717d17ba-c66d-4154-89ea-90e8f471cc12" + "WESTUS:20150813T184318Z:71feb93d-e945-497b-b39a-2edaadecae99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2569,17 +3259,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:45:05 GMT" + "Thu, 13 Aug 2015 18:43:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2605,16 +3295,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14988" ], "x-ms-request-id": [ - "d5039f7e-3fa2-40d6-aeac-7a5e5bf50584" + "e4ccbbcf-b05e-4aad-b16a-10ec28e89b17" ], "x-ms-correlation-request-id": [ - "d5039f7e-3fa2-40d6-aeac-7a5e5bf50584" + "e4ccbbcf-b05e-4aad-b16a-10ec28e89b17" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184521Z:d5039f7e-3fa2-40d6-aeac-7a5e5bf50584" + "WESTUS:20150813T184333Z:e4ccbbcf-b05e-4aad-b16a-10ec28e89b17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2623,17 +3313,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:45:20 GMT" + "Thu, 13 Aug 2015 18:43:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2659,16 +3349,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14987" ], "x-ms-request-id": [ - "8efc18e1-217a-4a4a-8135-7967dbce5f4e" + "655d6548-9d67-4836-846a-726ef7cc5d6c" ], "x-ms-correlation-request-id": [ - "8efc18e1-217a-4a4a-8135-7967dbce5f4e" + "655d6548-9d67-4836-846a-726ef7cc5d6c" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184536Z:8efc18e1-217a-4a4a-8135-7967dbce5f4e" + "WESTUS:20150813T184348Z:655d6548-9d67-4836-846a-726ef7cc5d6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2677,17 +3367,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:45:35 GMT" + "Thu, 13 Aug 2015 18:43:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2713,16 +3403,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14986" ], "x-ms-request-id": [ - "d5751f68-ae79-4515-be81-03b1a7b41615" + "ef409ecb-a2b4-4332-a668-e7a5848c5fbe" ], "x-ms-correlation-request-id": [ - "d5751f68-ae79-4515-be81-03b1a7b41615" + "ef409ecb-a2b4-4332-a668-e7a5848c5fbe" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184551Z:d5751f68-ae79-4515-be81-03b1a7b41615" + "WESTUS:20150813T184403Z:ef409ecb-a2b4-4332-a668-e7a5848c5fbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2731,17 +3421,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:45:51 GMT" + "Thu, 13 Aug 2015 18:44:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2767,16 +3457,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14985" ], "x-ms-request-id": [ - "7cffa9ae-0f3f-481d-816b-e5854029131f" + "f77a0a3f-408a-45d5-8125-6a8dbb1f8a74" ], "x-ms-correlation-request-id": [ - "7cffa9ae-0f3f-481d-816b-e5854029131f" + "f77a0a3f-408a-45d5-8125-6a8dbb1f8a74" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184606Z:7cffa9ae-0f3f-481d-816b-e5854029131f" + "WESTUS:20150813T184418Z:f77a0a3f-408a-45d5-8125-6a8dbb1f8a74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2785,17 +3475,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:46:06 GMT" + "Thu, 13 Aug 2015 18:44:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,16 +3511,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14984" ], "x-ms-request-id": [ - "38cecd82-46c8-4772-815f-b0010b1113ca" + "f39dda24-8f89-4b7a-ab3b-8b7d6ba7f176" ], "x-ms-correlation-request-id": [ - "38cecd82-46c8-4772-815f-b0010b1113ca" + "f39dda24-8f89-4b7a-ab3b-8b7d6ba7f176" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184621Z:38cecd82-46c8-4772-815f-b0010b1113ca" + "WESTUS:20150813T184433Z:f39dda24-8f89-4b7a-ab3b-8b7d6ba7f176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2839,17 +3529,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:46:20 GMT" + "Thu, 13 Aug 2015 18:44:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2875,16 +3565,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14983" ], "x-ms-request-id": [ - "1a6b7e1b-a28d-449c-9cb4-66503da455eb" + "52d3d286-2d92-458b-b0a3-68d237ac2107" ], "x-ms-correlation-request-id": [ - "1a6b7e1b-a28d-449c-9cb4-66503da455eb" + "52d3d286-2d92-458b-b0a3-68d237ac2107" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184636Z:1a6b7e1b-a28d-449c-9cb4-66503da455eb" + "WESTUS:20150813T184448Z:52d3d286-2d92-458b-b0a3-68d237ac2107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2893,17 +3583,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:46:36 GMT" + "Thu, 13 Aug 2015 18:44:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2929,16 +3619,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14982" ], "x-ms-request-id": [ - "6caee019-615d-4e07-9a20-59fa65cc37ae" + "72987021-b9e9-4564-bea5-87b8cbd12ca7" ], "x-ms-correlation-request-id": [ - "6caee019-615d-4e07-9a20-59fa65cc37ae" + "72987021-b9e9-4564-bea5-87b8cbd12ca7" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184651Z:6caee019-615d-4e07-9a20-59fa65cc37ae" + "WESTUS:20150813T184503Z:72987021-b9e9-4564-bea5-87b8cbd12ca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2947,17 +3637,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:46:51 GMT" + "Thu, 13 Aug 2015 18:45:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2983,16 +3673,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14981" ], "x-ms-request-id": [ - "60c15f8a-10fd-459d-af38-8eba9ab62bea" + "fa62fd82-d5ed-48de-adf9-1e331aaee815" ], "x-ms-correlation-request-id": [ - "60c15f8a-10fd-459d-af38-8eba9ab62bea" + "fa62fd82-d5ed-48de-adf9-1e331aaee815" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184706Z:60c15f8a-10fd-459d-af38-8eba9ab62bea" + "WESTUS:20150813T184518Z:fa62fd82-d5ed-48de-adf9-1e331aaee815" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3001,17 +3691,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:47:06 GMT" + "Thu, 13 Aug 2015 18:45:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3037,16 +3727,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14980" ], "x-ms-request-id": [ - "023e5eaf-14cc-4053-bf6d-442586ac7560" + "f9400129-ff8f-4b92-9e41-f1962e031040" ], "x-ms-correlation-request-id": [ - "023e5eaf-14cc-4053-bf6d-442586ac7560" + "f9400129-ff8f-4b92-9e41-f1962e031040" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184722Z:023e5eaf-14cc-4053-bf6d-442586ac7560" + "WESTUS:20150813T184533Z:f9400129-ff8f-4b92-9e41-f1962e031040" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3055,17 +3745,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:47:21 GMT" + "Thu, 13 Aug 2015 18:45:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3091,16 +3781,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14979" ], "x-ms-request-id": [ - "fd10e095-4453-4b1e-8f23-b66698fa361a" + "3343e955-b0fe-49ca-9934-0ceb66db1998" ], "x-ms-correlation-request-id": [ - "fd10e095-4453-4b1e-8f23-b66698fa361a" + "3343e955-b0fe-49ca-9934-0ceb66db1998" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184737Z:fd10e095-4453-4b1e-8f23-b66698fa361a" + "WESTUS:20150813T184548Z:3343e955-b0fe-49ca-9934-0ceb66db1998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3109,17 +3799,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:47:36 GMT" + "Thu, 13 Aug 2015 18:45:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3145,16 +3835,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14978" ], "x-ms-request-id": [ - "c2c23713-85e7-444f-95ef-45f6563d1f30" + "9b542dc3-b8d7-418e-a9b0-9c71cdbd5a1e" ], "x-ms-correlation-request-id": [ - "c2c23713-85e7-444f-95ef-45f6563d1f30" + "9b542dc3-b8d7-418e-a9b0-9c71cdbd5a1e" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184752Z:c2c23713-85e7-444f-95ef-45f6563d1f30" + "WESTUS:20150813T184603Z:9b542dc3-b8d7-418e-a9b0-9c71cdbd5a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3163,17 +3853,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:47:51 GMT" + "Thu, 13 Aug 2015 18:46:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3199,16 +3889,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14977" ], "x-ms-request-id": [ - "b551148f-2993-4f30-96e1-f7f42ec1c26d" + "5c5f4268-8c84-4733-8142-a45ce1c0a406" ], "x-ms-correlation-request-id": [ - "b551148f-2993-4f30-96e1-f7f42ec1c26d" + "5c5f4268-8c84-4733-8142-a45ce1c0a406" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184807Z:b551148f-2993-4f30-96e1-f7f42ec1c26d" + "WESTUS:20150813T184618Z:5c5f4268-8c84-4733-8142-a45ce1c0a406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3217,17 +3907,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:48:06 GMT" + "Thu, 13 Aug 2015 18:46:18 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3253,16 +3943,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14976" ], "x-ms-request-id": [ - "088e2ad7-3e87-462d-9cdd-5fa34801d897" + "30837166-6ba7-4278-8bb6-71bbbb1ca034" ], "x-ms-correlation-request-id": [ - "088e2ad7-3e87-462d-9cdd-5fa34801d897" + "30837166-6ba7-4278-8bb6-71bbbb1ca034" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184822Z:088e2ad7-3e87-462d-9cdd-5fa34801d897" + "WESTUS:20150813T184634Z:30837166-6ba7-4278-8bb6-71bbbb1ca034" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3271,17 +3961,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:48:22 GMT" + "Thu, 13 Aug 2015 18:46:33 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3307,16 +3997,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14975" ], "x-ms-request-id": [ - "73e874d1-a053-4877-86dc-908812c19993" + "36be58fe-0382-4e7c-888a-84bb044f5864" ], "x-ms-correlation-request-id": [ - "73e874d1-a053-4877-86dc-908812c19993" + "36be58fe-0382-4e7c-888a-84bb044f5864" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184837Z:73e874d1-a053-4877-86dc-908812c19993" + "WESTUS:20150813T184649Z:36be58fe-0382-4e7c-888a-84bb044f5864" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3325,17 +4015,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:48:36 GMT" + "Thu, 13 Aug 2015 18:46:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3361,16 +4051,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14974" ], "x-ms-request-id": [ - "2551a39e-7400-4218-a707-e6e3ce0ff02b" + "990960bc-4bef-420c-88f0-787fba684162" ], "x-ms-correlation-request-id": [ - "2551a39e-7400-4218-a707-e6e3ce0ff02b" + "990960bc-4bef-420c-88f0-787fba684162" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184852Z:2551a39e-7400-4218-a707-e6e3ce0ff02b" + "WESTUS:20150813T184704Z:990960bc-4bef-420c-88f0-787fba684162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3379,17 +4069,17 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:48:51 GMT" + "Thu, 13 Aug 2015 18:47:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3411,17 +4101,233 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14973" + ], + "x-ms-request-id": [ + "a8433842-e452-4159-8846-dc957df49b5d" + ], + "x-ms-correlation-request-id": [ + "a8433842-e452-4159-8846-dc957df49b5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184719Z:a8433842-e452-4159-8846-dc957df49b5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:47:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "07bac373-60d5-43f8-987a-348e34d40212" + ], + "x-ms-correlation-request-id": [ + "07bac373-60d5-43f8-987a-348e34d40212" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184734Z:07bac373-60d5-43f8-987a-348e34d40212" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:47:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "18e7cf68-cb36-449a-a318-a5e735551330" + ], + "x-ms-correlation-request-id": [ + "18e7cf68-cb36-449a-a318-a5e735551330" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184749Z:18e7cf68-cb36-449a-a318-a5e735551330" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:47:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "ecdc7995-dc9b-4022-9cb9-242ed0e90781" + ], + "x-ms-correlation-request-id": [ + "ecdc7995-dc9b-4022-9cb9-242ed0e90781" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184804Z:ecdc7995-dc9b-4022-9cb9-242ed0e90781" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:48:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TkRrdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" ], "x-ms-request-id": [ - "120bfa40-b1ac-48d6-a92c-f4149308d12c" + "f0ee5f8a-e6c1-480e-8fa8-a206793c61bf" ], "x-ms-correlation-request-id": [ - "120bfa40-b1ac-48d6-a92c-f4149308d12c" + "f0ee5f8a-e6c1-480e-8fa8-a206793c61bf" ], "x-ms-routing-request-id": [ - "WESTUS:20150619T184907Z:120bfa40-b1ac-48d6-a92c-f4149308d12c" + "WESTUS:20150813T184819Z:f0ee5f8a-e6c1-480e-8fa8-a206793c61bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3430,7 +4336,7 @@ "no-cache" ], "Date": [ - "Fri, 19 Jun 2015 18:49:07 GMT" + "Thu, 13 Aug 2015 18:48:18 GMT" ] }, "StatusCode": 200 @@ -3438,7 +4344,7 @@ ], "Names": { "Test-AddNetworkInterface": [ - "crptestps5248" + "crptestps949" ] }, "Variables": { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestSingleNetworkInterfaceDnsSettings.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestSingleNetworkInterfaceDnsSettings.json index b7aa4266805d..4729963dbd53 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestSingleNetworkInterfaceDnsSettings.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestSingleNetworkInterfaceDnsSettings.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9839?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTgzOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "3b05698d-120a-4e52-a709-77adc5761c8f" + ], + "x-ms-correlation-request-id": [ + "3b05698d-120a-4e52-a709-77adc5761c8f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T191335Z:3b05698d-120a-4e52-a709-77adc5761c8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 19:13:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1344?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14932" ], "x-ms-request-id": [ - "273264c1-f703-4727-95d7-d64901d90f2a" + "aecdf16f-57e6-45bc-8533-2278d711448a" ], "x-ms-correlation-request-id": [ - "273264c1-f703-4727-95d7-d64901d90f2a" + "aecdf16f-57e6-45bc-8533-2278d711448a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223215Z:273264c1-f703-4727-95d7-d64901d90f2a" + "WESTUS:20150813T191335Z:aecdf16f-57e6-45bc-8533-2278d711448a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:32:15 GMT" + "Thu, 13 Aug 2015 19:13:34 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9839?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTgzOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1344?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14929" ], "x-ms-request-id": [ - "2e6395aa-43ac-4087-8f0b-38fdbdadd2b4" + "2ab1a755-3cfb-4f63-94a2-a813c60c21e8" ], "x-ms-correlation-request-id": [ - "2e6395aa-43ac-4087-8f0b-38fdbdadd2b4" + "2ab1a755-3cfb-4f63-94a2-a813c60c21e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224358Z:2e6395aa-43ac-4087-8f0b-38fdbdadd2b4" + "WESTUS:20150813T192536Z:2ab1a755-3cfb-4f63-94a2-a813c60c21e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:43:57 GMT" + "Thu, 13 Aug 2015 19:25:35 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9839?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTgzOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1344?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839\",\r\n \"name\": \"pstestrg9839\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344\",\r\n \"name\": \"crptestps1344\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "8a8068a7-b094-40dd-b555-776d7668a4f7" + "31fab3e3-4b0c-4e98-92f1-a4a04d5d786e" ], "x-ms-correlation-request-id": [ - "8a8068a7-b094-40dd-b555-776d7668a4f7" + "31fab3e3-4b0c-4e98-92f1-a4a04d5d786e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223215Z:8a8068a7-b094-40dd-b555-776d7668a4f7" + "WESTUS:20150813T191336Z:31fab3e3-4b0c-4e98-92f1-a4a04d5d786e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:32:15 GMT" + "Thu, 13 Aug 2015 19:13:35 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14931" ], "x-ms-request-id": [ - "b18744a9-e29b-46fc-a709-5a7e155446fc" + "fd8e3e09-e584-4fc5-9d3a-5569b6652bc9" ], "x-ms-correlation-request-id": [ - "b18744a9-e29b-46fc-a709-5a7e155446fc" + "fd8e3e09-e584-4fc5-9d3a-5569b6652bc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223215Z:b18744a9-e29b-46fc-a709-5a7e155446fc" + "WESTUS:20150813T191336Z:fd8e3e09-e584-4fc5-9d3a-5569b6652bc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:32:15 GMT" + "Thu, 13 Aug 2015 19:13:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9839/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1344/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:42adb3bd-7546-434a-84fc-314654fcc67c" + "westus:31c11861-842d-45de-be92-86a875f699e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14972" ], "x-ms-correlation-request-id": [ - "b253bd4d-fb04-4db6-9f20-2448e5388ae6" + "5f9702f8-5538-401a-a00e-52438a204432" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223212Z:b253bd4d-fb04-4db6-9f20-2448e5388ae6" + "WESTUS:20150813T191336Z:5f9702f8-5538-401a-a00e-52438a204432" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:32:12 GMT" + "Thu, 13 Aug 2015 19:13:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzk4Mzk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTM0ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps1344' under resource group 'crptestps1344' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "e6fd2a5e-9bb9-4f7a-9bf1-a65af2eff7ff" + "d68c4910-feec-41a1-8961-d82a7e656f8b" ], "x-ms-correlation-request-id": [ - "e6fd2a5e-9bb9-4f7a-9bf1-a65af2eff7ff" + "d68c4910-feec-41a1-8961-d82a7e656f8b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223214Z:e6fd2a5e-9bb9-4f7a-9bf1-a65af2eff7ff" + "WESTUS:20150813T191337Z:d68c4910-feec-41a1-8961-d82a7e656f8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:32:14 GMT" + "Thu, 13 Aug 2015 19:13:37 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzk4Mzk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTM0ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839\",\r\n \"etag\": \"W/\\\"4df7d300-7e5a-480c-812f-afc297d7a784\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839/subnets/subnetpstestrg9839\",\r\n \"etag\": \"W/\\\"4df7d300-7e5a-480c-812f-afc297d7a784\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344\",\r\n \"etag\": \"W/\\\"934c42b0-dcb4-4d0e-8fbd-24d4840ef580\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"038b4500-83b9-44cb-8ac8-8c3a22cce2e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344/subnets/subnetcrptestps1344\",\r\n \"etag\": \"W/\\\"934c42b0-dcb4-4d0e-8fbd-24d4840ef580\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "00906ab0-07d7-46c8-bb8d-3f2a5956e8c5" + "d9a6a156-ba52-404c-929a-d28f51ce40ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"4df7d300-7e5a-480c-812f-afc297d7a784\"" + "W/\"934c42b0-dcb4-4d0e-8fbd-24d4840ef580\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14962" ], "x-ms-correlation-request-id": [ - "724aec3e-ce8a-49fc-955d-c95cf3583972" + "781483af-aab8-4d23-9ac9-83b5a8cd7717" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223215Z:724aec3e-ce8a-49fc-955d-c95cf3583972" + "WESTUS:20150813T191348Z:781483af-aab8-4d23-9ac9-83b5a8cd7717" ], "Date": [ - "Tue, 28 Apr 2015 22:32:15 GMT" + "Thu, 13 Aug 2015 19:13:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzk4Mzk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTM0ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839\",\r\n \"etag\": \"W/\\\"4df7d300-7e5a-480c-812f-afc297d7a784\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839/subnets/subnetpstestrg9839\",\r\n \"etag\": \"W/\\\"4df7d300-7e5a-480c-812f-afc297d7a784\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344\",\r\n \"etag\": \"W/\\\"934c42b0-dcb4-4d0e-8fbd-24d4840ef580\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"038b4500-83b9-44cb-8ac8-8c3a22cce2e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344/subnets/subnetcrptestps1344\",\r\n \"etag\": \"W/\\\"934c42b0-dcb4-4d0e-8fbd-24d4840ef580\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "a7686d84-3844-4a07-83b5-73bb997442f1" + "ef756b4c-867a-46dc-acd9-94dcdc71eee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"4df7d300-7e5a-480c-812f-afc297d7a784\"" + "W/\"934c42b0-dcb4-4d0e-8fbd-24d4840ef580\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14961" ], "x-ms-correlation-request-id": [ - "a5607a7b-b7f0-47a8-ba77-37c2daf7d4b8" + "1eb44fe3-5d67-4610-9181-98863a3f2858" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223215Z:a5607a7b-b7f0-47a8-ba77-37c2daf7d4b8" + "WESTUS:20150813T191348Z:1eb44fe3-5d67-4610-9181-98863a3f2858" ], "Date": [ - "Tue, 28 Apr 2015 22:32:15 GMT" + "Thu, 13 Aug 2015 19:13:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzk4Mzk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTM0ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg9839\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg9839\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps1344\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps1344\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839\",\r\n \"etag\": \"W/\\\"112b8be0-86b3-4660-95b6-2bfe93fb3eb6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839/subnets/subnetpstestrg9839\",\r\n \"etag\": \"W/\\\"112b8be0-86b3-4660-95b6-2bfe93fb3eb6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344\",\r\n \"etag\": \"W/\\\"13af398a-a732-4985-8c61-1631dbacebc8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"038b4500-83b9-44cb-8ac8-8c3a22cce2e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344/subnets/subnetcrptestps1344\",\r\n \"etag\": \"W/\\\"13af398a-a732-4985-8c61-1631dbacebc8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "0607d092-0ccb-4e80-95eb-168cf72e9127" + "479b6e20-e045-4eb0-b2fa-0538aae023ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0607d092-0ccb-4e80-95eb-168cf72e9127?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/479b6e20-e045-4eb0-b2fa-0538aae023ef?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -460,20 +508,75 @@ "1197" ], "x-ms-correlation-request-id": [ - "6cc6178a-509e-47f8-9b88-be50c5122b63" + "589bc21b-7fc2-4ffe-a499-bbab1c08387d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223215Z:6cc6178a-509e-47f8-9b88-be50c5122b63" + "WESTUS:20150813T191337Z:589bc21b-7fc2-4ffe-a499-bbab1c08387d" ], "Date": [ - "Tue, 28 Apr 2015 22:32:15 GMT" + "Thu, 13 Aug 2015 19:13:37 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0607d092-0ccb-4e80-95eb-168cf72e9127?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDYwN2QwOTItMGNjYi00ZTgwLTk1ZWItMTY4Y2Y3MmU5MTI3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/479b6e20-e045-4eb0-b2fa-0538aae023ef?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDc5YjZlMjAtZTA0NS00ZWIwLWIyZmEtMDUzOGFhZTAyM2VmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30b2beae-b4bc-4c14-86bc-23301ab4e1ee" + ], + "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": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "49f53a80-c475-47c1-bd99-66b6b8fe4d13" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T191338Z:49f53a80-c475-47c1-bd99-66b6b8fe4d13" + ], + "Date": [ + "Thu, 13 Aug 2015 19:13:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/479b6e20-e045-4eb0-b2fa-0538aae023ef?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDc5YjZlMjAtZTA0NS00ZWIwLWIyZmEtMDUzOGFhZTAyM2VmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "6558632f-ed3d-46c3-b4f6-31d09697145b" + "6fcfcfca-5ffa-47d5-875d-e9754fb6dc09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14963" ], "x-ms-correlation-request-id": [ - "ed53d032-6c29-4864-848e-323558ae4339" + "41ce3f3a-3fc2-4af0-b12b-869fdc623988" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223215Z:ed53d032-6c29-4864-848e-323558ae4339" + "WESTUS:20150813T191348Z:41ce3f3a-3fc2-4af0-b12b-869fdc623988" ], "Date": [ - "Tue, 28 Apr 2015 22:32:15 GMT" + "Thu, 13 Aug 2015 19:13:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzk4MzkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTM0NC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps1344' under resource group 'crptestps1344' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "e23138da-bf84-4e80-88b4-452ff156bb7e" + "2848deb2-540a-4de8-b461-6e8e71fa3a40" ], "x-ms-correlation-request-id": [ - "e23138da-bf84-4e80-88b4-452ff156bb7e" + "2848deb2-540a-4de8-b461-6e8e71fa3a40" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223215Z:e23138da-bf84-4e80-88b4-452ff156bb7e" + "WESTUS:20150813T191348Z:2848deb2-540a-4de8-b461-6e8e71fa3a40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +672,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:32:15 GMT" + "Thu, 13 Aug 2015 19:13:48 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzk4MzkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTM0NC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839\",\r\n \"etag\": \"W/\\\"ceaf0d62-8539-46cb-b269-0d2d2e6a6d7f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9839\",\r\n \"fqdn\": \"pubippstestrg9839.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344\",\r\n \"etag\": \"W/\\\"3cfc3c08-7f90-491b-bba8-cdda55b37b73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7bce23f1-f631-4ae6-a0d8-92f004c1cdde\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1344\",\r\n \"fqdn\": \"pubipcrptestps1344.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "8538c126-7c16-42c2-a4a3-0b06b4d7deb9" + "b4d3e9e7-dc89-49d8-811a-37bed7d0ba72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"ceaf0d62-8539-46cb-b269-0d2d2e6a6d7f\"" + "W/\"3cfc3c08-7f90-491b-bba8-cdda55b37b73\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14957" ], "x-ms-correlation-request-id": [ - "2aaa49d3-05a5-4d83-9c10-45142340c64b" + "ab2e94e9-ad70-46cc-9401-043b0092ea3d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223217Z:2aaa49d3-05a5-4d83-9c10-45142340c64b" + "WESTUS:20150813T191359Z:ab2e94e9-ad70-46cc-9401-043b0092ea3d" ], "Date": [ - "Tue, 28 Apr 2015 22:32:16 GMT" + "Thu, 13 Aug 2015 19:13:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzk4MzkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTM0NC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839\",\r\n \"etag\": \"W/\\\"ceaf0d62-8539-46cb-b269-0d2d2e6a6d7f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9839\",\r\n \"fqdn\": \"pubippstestrg9839.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344\",\r\n \"etag\": \"W/\\\"3cfc3c08-7f90-491b-bba8-cdda55b37b73\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7bce23f1-f631-4ae6-a0d8-92f004c1cdde\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1344\",\r\n \"fqdn\": \"pubipcrptestps1344.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "6932004b-ecf0-4039-a3ec-b776ba8d1807" + "2eed72fc-96a5-470a-94fd-9a08a880ae80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +766,47 @@ "no-cache" ], "ETag": [ - "W/\"ceaf0d62-8539-46cb-b269-0d2d2e6a6d7f\"" + "W/\"3cfc3c08-7f90-491b-bba8-cdda55b37b73\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14956" ], "x-ms-correlation-request-id": [ - "84524c13-3ffa-49fb-8a62-2c5c85f8670e" + "f2a00959-cc3a-40ff-87dc-876e8b3a3bfb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223217Z:84524c13-3ffa-49fb-8a62-2c5c85f8670e" + "WESTUS:20150813T191359Z:f2a00959-cc3a-40ff-87dc-876e8b3a3bfb" ], "Date": [ - "Tue, 28 Apr 2015 22:32:16 GMT" + "Thu, 13 Aug 2015 19:13:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzk4MzkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTM0NC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9839\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg9839\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1344\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps1344\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "254" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839\",\r\n \"etag\": \"W/\\\"e908f5ae-200d-4ad2-85b7-ce93a42fdbed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9839\",\r\n \"fqdn\": \"pubippstestrg9839.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344\",\r\n \"etag\": \"W/\\\"11fc3460-035c-40b2-8e4e-17ca86a694fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7bce23f1-f631-4ae6-a0d8-92f004c1cdde\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1344\",\r\n \"fqdn\": \"pubipcrptestps1344.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "0d04461d-80e6-46b0-901f-899d0dc1ca1b" + "7a290dd3-b775-4460-8e25-c8e9d51442cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0d04461d-80e6-46b0-901f-899d0dc1ca1b?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/7a290dd3-b775-4460-8e25-c8e9d51442cf?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -737,20 +840,75 @@ "1196" ], "x-ms-correlation-request-id": [ - "1047df74-6fc6-4617-bf83-9af7ef969652" + "1e11b944-547f-45b7-8d14-81d8ca6a3aca" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223216Z:1047df74-6fc6-4617-bf83-9af7ef969652" + "WESTUS:20150813T191349Z:1e11b944-547f-45b7-8d14-81d8ca6a3aca" ], "Date": [ - "Tue, 28 Apr 2015 22:32:16 GMT" + "Thu, 13 Aug 2015 19:13:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0d04461d-80e6-46b0-901f-899d0dc1ca1b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQwNDQ2MWQtODBlNi00NmIwLTkwMWYtODk5ZDBkYzFjYTFiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/7a290dd3-b775-4460-8e25-c8e9d51442cf?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2EyOTBkZDMtYjc3NS00NDYwLThlMjUtYzhlOWQ1MTQ0MmNmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fae2c94c-da17-44c5-bcee-dc76877d186f" + ], + "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": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "5e884128-2d44-4ce3-8f04-40bbf4132297" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T191349Z:5e884128-2d44-4ce3-8f04-40bbf4132297" + ], + "Date": [ + "Thu, 13 Aug 2015 19:13:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/7a290dd3-b775-4460-8e25-c8e9d51442cf?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2EyOTBkZDMtYjc3NS00NDYwLThlMjUtYzhlOWQ1MTQ0MmNmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +934,7 @@ "no-cache" ], "x-ms-request-id": [ - "1729db50-ec46-481b-b348-c958f4e377fd" + "03765b81-3269-483a-b7df-e0bb1f7c2656" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +947,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14958" ], "x-ms-correlation-request-id": [ - "c0f5f20b-1912-4055-a891-5b01f7efb587" + "8e5d866b-b721-4e3f-bec7-ee0e20031907" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223217Z:c0f5f20b-1912-4055-a891-5b01f7efb587" + "WESTUS:20150813T191359Z:8e5d866b-b721-4e3f-bec7-ee0e20031907" ], "Date": [ - "Tue, 28 Apr 2015 22:32:16 GMT" + "Thu, 13 Aug 2015 19:13:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5ODM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,10 +971,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps1344' under resource group 'crptestps1344' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,13 +989,13 @@ "gateway" ], "x-ms-request-id": [ - "1544563a-416e-4c36-89ba-39b5c888d694" + "8cc106f8-69d1-4a2d-955d-860299e93c07" ], "x-ms-correlation-request-id": [ - "1544563a-416e-4c36-89ba-39b5c888d694" + "8cc106f8-69d1-4a2d-955d-860299e93c07" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223217Z:1544563a-416e-4c36-89ba-39b5c888d694" + "WESTUS:20150813T191359Z:8cc106f8-69d1-4a2d-955d-860299e93c07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +1004,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:32:16 GMT" + "Thu, 13 Aug 2015 19:13:58 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5ODM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839\",\r\n \"etag\": \"W/\\\"528b6162-861e-443d-8bff-9bda3c94b195\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"528b6162-861e-443d-8bff-9bda3c94b195\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839/subnets/subnetpstestrg9839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344\",\r\n \"etag\": \"W/\\\"d4e42719-b15c-4d64-a5f0-e9d77eb45eba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"415e789a-bb60-49a0-a750-c0b50d037711\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d4e42719-b15c-4d64-a5f0-e9d77eb45eba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344/subnets/subnetcrptestps1344\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1358" + "1463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "db4a52bc-c69e-4746-a822-978424fc35ba" + "93a0b8e7-3a29-413e-8749-69fcf7e701a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +1043,30 @@ "no-cache" ], "ETag": [ - "W/\"528b6162-861e-443d-8bff-9bda3c94b195\"" + "W/\"d4e42719-b15c-4d64-a5f0-e9d77eb45eba\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14953" ], "x-ms-correlation-request-id": [ - "d79ac2ab-3418-4332-a097-830f2761bb3b" + "54634b63-a19f-434b-be20-4a26002fd610" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223218Z:d79ac2ab-3418-4332-a097-830f2761bb3b" + "WESTUS:20150813T191400Z:54634b63-a19f-434b-be20-4a26002fd610" ], "Date": [ - "Tue, 28 Apr 2015 22:32:17 GMT" + "Thu, 13 Aug 2015 19:13:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5ODM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +1074,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839\",\r\n \"etag\": \"W/\\\"528b6162-861e-443d-8bff-9bda3c94b195\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"528b6162-861e-443d-8bff-9bda3c94b195\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839/subnets/subnetpstestrg9839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344\",\r\n \"etag\": \"W/\\\"d4e42719-b15c-4d64-a5f0-e9d77eb45eba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"415e789a-bb60-49a0-a750-c0b50d037711\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d4e42719-b15c-4d64-a5f0-e9d77eb45eba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344/subnets/subnetcrptestps1344\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1358" + "1463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +1089,7 @@ "no-cache" ], "x-ms-request-id": [ - "778d5de4-7705-4d45-9304-e1998f0e8229" + "89c6a179-05b9-4cc2-8f5e-4f6eb153d4ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,30 +1098,30 @@ "no-cache" ], "ETag": [ - "W/\"528b6162-861e-443d-8bff-9bda3c94b195\"" + "W/\"d4e42719-b15c-4d64-a5f0-e9d77eb45eba\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14952" ], "x-ms-correlation-request-id": [ - "67229cf5-5744-470e-9ce3-24447c9abf77" + "bf99a209-7958-4cae-94d3-96bc3fda0720" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223218Z:67229cf5-5744-470e-9ce3-24447c9abf77" + "WESTUS:20150813T191400Z:bf99a209-7958-4cae-94d3-96bc3fda0720" ], "Date": [ - "Tue, 28 Apr 2015 22:32:17 GMT" + "Thu, 13 Aug 2015 19:13:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5ODM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +1129,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839\",\r\n \"etag\": \"W/\\\"e1ddeb48-3071-4d5e-8ce7-195e87391253\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e1ddeb48-3071-4d5e-8ce7-195e87391253\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839/subnets/subnetpstestrg9839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n },\r\n \"macAddress\": \"00-0D-3A-31-56-5B\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Compute/virtualMachines/vmpstestrg9839\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344\",\r\n \"etag\": \"W/\\\"986d79e4-ddfc-4bc6-a6e3-dc3088562e31\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"415e789a-bb60-49a0-a750-c0b50d037711\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"986d79e4-ddfc-4bc6-a6e3-dc3088562e31\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344/subnets/subnetcrptestps1344\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n },\r\n \"macAddress\": \"00-0D-3A-31-43-03\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Compute/virtualMachines/vmcrptestps1344\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1667" + "1774" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +1144,7 @@ "no-cache" ], "x-ms-request-id": [ - "4d4e3e44-a75c-48c5-9e73-557067049d6e" + "8bd56b2d-541c-46f4-a843-cc58eb2c6608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,47 +1153,47 @@ "no-cache" ], "ETag": [ - "W/\"e1ddeb48-3071-4d5e-8ce7-195e87391253\"" + "W/\"986d79e4-ddfc-4bc6-a6e3-dc3088562e31\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14930" ], "x-ms-correlation-request-id": [ - "5aa441e1-9a39-4d17-8f90-589796151eb7" + "8757f7e0-2929-44f7-b4dd-10c5065c7afb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224118Z:5aa441e1-9a39-4d17-8f90-589796151eb7" + "WESTUS:20150813T192305Z:8757f7e0-2929-44f7-b4dd-10c5065c7afb" ], "Date": [ - "Tue, 28 Apr 2015 22:41:17 GMT" + "Thu, 13 Aug 2015 19:23:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5ODM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839/subnets/subnetpstestrg9839\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg9839\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344/subnets/subnetcrptestps1344\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps1344\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "971" + "1011" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg9839\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839\",\r\n \"etag\": \"W/\\\"528b6162-861e-443d-8bff-9bda3c94b195\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"528b6162-861e-443d-8bff-9bda3c94b195\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9839\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9839/subnets/subnetpstestrg9839\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1344\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344\",\r\n \"etag\": \"W/\\\"d4e42719-b15c-4d64-a5f0-e9d77eb45eba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"415e789a-bb60-49a0-a750-c0b50d037711\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d4e42719-b15c-4d64-a5f0-e9d77eb45eba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1344\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1344/subnets/subnetcrptestps1344\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1358" + "1463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,10 +1205,10 @@ "no-cache" ], "x-ms-request-id": [ - "b7d1e434-1b8a-4581-acc5-72a12b5a65f4" + "c5d7904d-d261-4b78-bd00-ee802b4d04ba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/b7d1e434-1b8a-4581-acc5-72a12b5a65f4?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c5d7904d-d261-4b78-bd00-ee802b4d04ba?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1066,20 +1224,20 @@ "1195" ], "x-ms-correlation-request-id": [ - "55741332-b790-4930-b3f5-a24bf6d1ab31" + "dada6d92-5e69-4702-bb3c-ae318ba69fdb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223218Z:55741332-b790-4930-b3f5-a24bf6d1ab31" + "WESTUS:20150813T191359Z:dada6d92-5e69-4702-bb3c-ae318ba69fdb" ], "Date": [ - "Tue, 28 Apr 2015 22:32:17 GMT" + "Thu, 13 Aug 2015 19:13:59 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/b7d1e434-1b8a-4581-acc5-72a12b5a65f4?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdkMWU0MzQtMWI4YS00NTgxLWFjYzUtNzJhMTJiNWE2NWY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c5d7904d-d261-4b78-bd00-ee802b4d04ba?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzVkNzkwNGQtZDI2MS00Yjc4LWJkMDAtZWU4MDJiNGQwNGJhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1105,7 +1263,7 @@ "no-cache" ], "x-ms-request-id": [ - "e4bf7f8a-78a0-469a-8197-28f363e28af0" + "a88ce1f3-7a94-42b0-83ae-fafe97473bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1276,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14954" ], "x-ms-correlation-request-id": [ - "c0b8f718-d892-44e0-b4db-6d38fcbc6b31" + "e2605d4e-148c-406d-91b6-34eeae5b1d11" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223218Z:c0b8f718-d892-44e0-b4db-6d38fcbc6b31" + "WESTUS:20150813T191400Z:e2605d4e-148c-406d-91b6-34eeae5b1d11" ], "Date": [ - "Tue, 28 Apr 2015 22:32:17 GMT" + "Thu, 13 Aug 2015 19:13:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Storage/storageAccounts/stopstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTgzOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Storage/storageAccounts/stocrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMzQ0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1145,7 +1303,7 @@ "88" ], "x-ms-client-request-id": [ - "fd1fff44-645c-4ce3-9627-0a32fa601af9" + "d089e426-0425-4617-b77e-0e94ac397690" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1169,13 +1327,13 @@ "25" ], "x-ms-request-id": [ - "bd736ab8-4268-45f8-b1bd-9192afca9e76" + "716f50a4-96a7-4779-86a5-72009fcc2273" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/bd736ab8-4268-45f8-b1bd-9192afca9e76?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/716f50a4-96a7-4779-86a5-72009fcc2273?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1185,28 +1343,28 @@ "1197" ], "x-ms-correlation-request-id": [ - "089a4aa4-e7f9-4161-84ae-b9afe4718326" + "bbae8c6a-cdcd-4b1b-84f4-614f270d543f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223220Z:089a4aa4-e7f9-4161-84ae-b9afe4718326" + "WESTUS:20150813T191402Z:bbae8c6a-cdcd-4b1b-84f4-614f270d543f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:32:19 GMT" + "Thu, 13 Aug 2015 19:14:02 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/bd736ab8-4268-45f8-b1bd-9192afca9e76?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2JkNzM2YWI4LTQyNjgtNDVmOC1iMWJkLTkxOTJhZmNhOWU3Nj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/716f50a4-96a7-4779-86a5-72009fcc2273?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzcxNmY1MGE0LTk2YTctNDc3OS04NmE1LTcyMDA5ZmNjMjI3Mz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f363d3e1-bea1-4614-a72f-3b5273c02a9b" + "e82619fd-a34a-4659-97cc-5f93ed4eb9f3" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,44 +1388,44 @@ "25" ], "x-ms-request-id": [ - "a50de5e7-b13c-4bfc-b883-bb2b5ec377ec" + "fe473c27-9799-47d0-9ed4-1af7fe891ada" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/bd736ab8-4268-45f8-b1bd-9192afca9e76?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/716f50a4-96a7-4779-86a5-72009fcc2273?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14881" ], "x-ms-correlation-request-id": [ - "5d3f8de9-bee8-4eb9-95de-510eb2670328" + "33d846d0-d5f8-4d02-857f-bd4d6709eec4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223220Z:5d3f8de9-bee8-4eb9-95de-510eb2670328" + "WESTUS:20150813T191402Z:33d846d0-d5f8-4d02-857f-bd4d6709eec4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:32:19 GMT" + "Thu, 13 Aug 2015 19:14:02 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/bd736ab8-4268-45f8-b1bd-9192afca9e76?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2JkNzM2YWI4LTQyNjgtNDVmOC1iMWJkLTkxOTJhZmNhOWU3Nj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/716f50a4-96a7-4779-86a5-72009fcc2273?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzcxNmY1MGE0LTk2YTctNDc3OS04NmE1LTcyMDA5ZmNjMjI3Mz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df8c79ba-8a94-491c-8b70-d4a6d63207bf" + "cbf355db-6829-4629-aabf-f1dec7131f95" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1288,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "edc16a1c-58bb-4464-a6a5-d64646fc9d9e" + "4c2c2690-9753-440a-bea6-801e582ba2c4" ], "Cache-Control": [ "no-cache" @@ -1298,40 +1456,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14880" ], "x-ms-correlation-request-id": [ - "0e6665e0-46d0-4b52-aac4-037b7404f21c" + "7dfb1f2a-3c95-4b2e-a56c-2c2d81bd7b50" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223246Z:0e6665e0-46d0-4b52-aac4-037b7404f21c" + "WESTUS:20150813T191428Z:7dfb1f2a-3c95-4b2e-a56c-2c2d81bd7b50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:32:45 GMT" + "Thu, 13 Aug 2015 19:14:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Storage/storageAccounts/stopstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTgzOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Storage/storageAccounts/stocrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMzQ0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dd357ae-f977-4414-82be-703b68ef82ae" + "c7f84764-a967-443c-9e32-5c519e2fc286" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Storage/storageAccounts/stopstestrg9839\",\r\n \"name\": \"stopstestrg9839\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg9839.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9839.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9839.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T22:32:10.7602927Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Storage/storageAccounts/stocrptestps1344\",\r\n \"name\": \"stocrptestps1344\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1344.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1344.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1344.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T19:14:01.0309597Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1343,7 +1501,7 @@ "no-cache" ], "x-ms-request-id": [ - "9eb79eec-03ae-45b3-8dcb-896bc5db859c" + "8e470553-c304-4e41-9330-2ace54572f9c" ], "Cache-Control": [ "no-cache" @@ -1353,40 +1511,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14879" ], "x-ms-correlation-request-id": [ - "1e568240-3b59-4069-9f96-05ceeb471c5c" + "08c6b26b-a240-42d7-ba38-be7a688650e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223246Z:1e568240-3b59-4069-9f96-05ceeb471c5c" + "WESTUS:20150813T191428Z:08c6b26b-a240-42d7-ba38-be7a688650e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:32:45 GMT" + "Thu, 13 Aug 2015 19:14:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Storage/storageAccounts/stopstestrg9839?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTgzOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Storage/storageAccounts/stocrptestps1344?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMzQ0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f7e8efd-3a1b-4fa9-a5ae-1c807272e358" + "55d2b7db-9548-4e6b-a296-5d6f601ba096" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Storage/storageAccounts/stopstestrg9839\",\r\n \"name\": \"stopstestrg9839\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg9839.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9839.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9839.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T22:32:10.7602927Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Storage/storageAccounts/stocrptestps1344\",\r\n \"name\": \"stocrptestps1344\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1344.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1344.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1344.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T19:14:01.0309597Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,7 +1556,7 @@ "no-cache" ], "x-ms-request-id": [ - "c1709b78-3db1-47cf-9e5e-dd60108f0134" + "7136adf4-a4c1-424a-9429-fc529376cc95" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1566,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14878" ], "x-ms-correlation-request-id": [ - "0ad09769-6fd3-4602-988e-c3acbc11006e" + "23405b77-1cb6-4516-93d2-243415ae1033" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223246Z:0ad09769-6fd3-4602-988e-c3acbc11006e" + "WESTUS:20150813T191428Z:23405b77-1cb6-4516-93d2-243415ae1033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:32:46 GMT" + "Thu, 13 Aug 2015 19:14:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1453,7 +1611,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a748b06-4340-4e84-a3a4-33423a638a17" + "931c3b77-5c1d-48b2-a0e5-1e07e7c23d38" ], "Cache-Control": [ "no-cache" @@ -1463,31 +1621,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14971" ], "x-ms-correlation-request-id": [ - "a2cc13c6-4a16-4866-b16d-579ade18d939" + "ea89c8ef-51e9-4f91-aec1-6be5ef833d2e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223244Z:a2cc13c6-4a16-4866-b16d-579ade18d939" + "WESTUS:20150813T191428Z:ea89c8ef-51e9-4f91-aec1-6be5ef833d2e" ], "Date": [ - "Tue, 28 Apr 2015 22:32:43 GMT" + "Thu, 13 Aug 2015 19:14:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1505,7 +1663,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b96fc0c2-b40b-46e5-af11-61ac1d7ef176" + "655e671e-c466-41ab-8854-cc33f2ee14e2" ], "Cache-Control": [ "no-cache" @@ -1515,34 +1673,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14970" ], "x-ms-correlation-request-id": [ - "91551e64-d21b-4423-b71c-2897c7774463" + "6795383d-3da2-4e5d-a11b-493fde265661" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223244Z:91551e64-d21b-4423-b71c-2897c7774463" + "WESTUS:20150813T191428Z:6795383d-3da2-4e5d-a11b-493fde265661" ], "Date": [ - "Tue, 28 Apr 2015 22:32:43 GMT" + "Thu, 13 Aug 2015 19:14:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,7 +1715,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a44c678-16d9-4896-8674-f85b24d6d231" + "ad7fc0ac-ef9c-416b-8f81-5630506f92bf" ], "Cache-Control": [ "no-cache" @@ -1567,34 +1725,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14969" ], "x-ms-correlation-request-id": [ - "a22b5687-7dc6-4d2d-a134-e5fdb7ce3554" + "8162d4a8-8c8b-4d25-8b12-a6bb6bc415b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223244Z:a22b5687-7dc6-4d2d-a134-e5fdb7ce3554" + "WESTUS:20150813T191429Z:8162d4a8-8c8b-4d25-8b12-a6bb6bc415b9" ], "Date": [ - "Tue, 28 Apr 2015 22:32:44 GMT" + "Thu, 13 Aug 2015 19:14:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1609,7 +1767,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23d1eb7a-3edb-4f4f-90ff-ba48fe91964c" + "8402f7b3-dce1-41ec-9d77-1d52df0f8e7a" ], "Cache-Control": [ "no-cache" @@ -1619,31 +1777,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14968" ], "x-ms-correlation-request-id": [ - "e1c0bfa7-e1f3-465e-aedc-d73e9d2aceb2" + "a5559e32-f436-4c75-bf62-2de1a7baf1f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223245Z:e1c0bfa7-e1f3-465e-aedc-d73e9d2aceb2" + "WESTUS:20150813T191429Z:a5559e32-f436-4c75-bf62-2de1a7baf1f1" ], "Date": [ - "Tue, 28 Apr 2015 22:32:44 GMT" + "Thu, 13 Aug 2015 19:14:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1661,7 +1819,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73fbdfb5-de0e-43b3-a638-06444821b254" + "61d71775-54c6-456a-896e-626bc661030f" ], "Cache-Control": [ "no-cache" @@ -1671,40 +1829,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14967" ], "x-ms-correlation-request-id": [ - "7c1fe2cd-e10e-4e5c-9abf-2f8375dc89af" + "82c5e800-ea2a-4796-9d8f-e88129b175a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223245Z:7c1fe2cd-e10e-4e5c-9abf-2f8375dc89af" + "WESTUS:20150813T191429Z:82c5e800-ea2a-4796-9d8f-e88129b175a3" ], "Date": [ - "Tue, 28 Apr 2015 22:32:44 GMT" + "Thu, 13 Aug 2015 19:14:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Compute/virtualMachines/vmpstestrg9839?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc5ODM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Compute/virtualMachines/vmcrptestps1344?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg9839.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg9839\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg9839\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1344.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps1344\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps1344\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1068" + "1058" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg9839.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Compute/virtualMachines/vmpstestrg9839\",\r\n \"name\": \"vmpstestrg9839\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1344.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Compute/virtualMachines/vmcrptestps1344\",\r\n \"name\": \"vmcrptestps1344\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1348" + "1339" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1716,13 +1874,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "a900b1bf-c514-4831-8754-b39a9da2379e" + "dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e" ], "Cache-Control": [ "no-cache" @@ -1732,31 +1893,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-correlation-request-id": [ - "3f3333f2-8648-47ef-8069-73b74e3f496d" + "bfaa36cb-ad02-44be-9258-13682207320a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223245Z:3f3333f2-8648-47ef-8069-73b74e3f496d" + "WESTUS:20150813T191429Z:bfaa36cb-ad02-44be-9258-13682207320a" ], "Date": [ - "Tue, 28 Apr 2015 22:32:45 GMT" + "Thu, 13 Aug 2015 19:14:29 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1773,8 +1934,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "cdc41cc1-b8c9-444a-a643-360f0ae028d0" + "3ca78015-2120-486b-aa8a-281b92b25dae" ], "Cache-Control": [ "no-cache" @@ -1784,31 +1948,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14966" ], "x-ms-correlation-request-id": [ - "3d697ff6-92c4-4156-ab5a-25e7859baa8e" + "9b9c4b1c-2b1e-4b2a-9a1c-2489f5a88b9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223246Z:3d697ff6-92c4-4156-ab5a-25e7859baa8e" + "WESTUS:20150813T191430Z:9b9c4b1c-2b1e-4b2a-9a1c-2489f5a88b9a" ], "Date": [ - "Tue, 28 Apr 2015 22:32:45 GMT" + "Thu, 13 Aug 2015 19:14:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1825,8 +1989,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "5c50dba4-4511-477d-b9df-1609fada21b2" + "0b7f00c6-11c5-4ae8-aab0-7af465efd1ba" ], "Cache-Control": [ "no-cache" @@ -1836,31 +2003,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14965" ], "x-ms-correlation-request-id": [ - "38d5462e-c4cd-471e-a939-dab4e2ecf219" + "618fccac-5dc9-42de-9a9a-5d6a3dcbcee8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223316Z:38d5462e-c4cd-471e-a939-dab4e2ecf219" + "WESTUS:20150813T191500Z:618fccac-5dc9-42de-9a9a-5d6a3dcbcee8" ], "Date": [ - "Tue, 28 Apr 2015 22:33:15 GMT" + "Thu, 13 Aug 2015 19:14:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1877,8 +2044,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "e2bb7fa2-8555-4542-beac-454cc0066c69" + "beedead8-99c9-4d72-8be9-b87d0c64c0fc" ], "Cache-Control": [ "no-cache" @@ -1888,31 +2058,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14964" ], "x-ms-correlation-request-id": [ - "b33ea26e-d053-418e-b3d7-e499918e934a" + "585d2058-32c7-4074-9606-b6956522745d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223346Z:b33ea26e-d053-418e-b3d7-e499918e934a" + "WESTUS:20150813T191530Z:585d2058-32c7-4074-9606-b6956522745d" ], "Date": [ - "Tue, 28 Apr 2015 22:33:46 GMT" + "Thu, 13 Aug 2015 19:15:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1929,8 +2099,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "7b8ff42f-80c3-4027-896f-2f6b6a36259f" + "a8775840-71fa-42cd-8805-a146a306d07f" ], "Cache-Control": [ "no-cache" @@ -1940,31 +2113,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14963" ], "x-ms-correlation-request-id": [ - "ef0bf1ee-9054-4036-93e4-b42e3a0a9dcf" + "303f75e8-3324-4abf-b0e7-a05c737565ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223416Z:ef0bf1ee-9054-4036-93e4-b42e3a0a9dcf" + "WESTUS:20150813T191600Z:303f75e8-3324-4abf-b0e7-a05c737565ae" ], "Date": [ - "Tue, 28 Apr 2015 22:34:15 GMT" + "Thu, 13 Aug 2015 19:15:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1981,8 +2154,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "f2a56241-fc86-4420-ab66-721befc587b3" + "fb110038-e83b-427c-8812-daebc9458f16" ], "Cache-Control": [ "no-cache" @@ -1992,31 +2168,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14962" ], "x-ms-correlation-request-id": [ - "c3ac8548-8002-4f49-99e8-e25798d6746d" + "4785135c-489b-41b1-a266-b095db661aa3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223446Z:c3ac8548-8002-4f49-99e8-e25798d6746d" + "WESTUS:20150813T191630Z:4785135c-489b-41b1-a266-b095db661aa3" ], "Date": [ - "Tue, 28 Apr 2015 22:34:46 GMT" + "Thu, 13 Aug 2015 19:16:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2033,8 +2209,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "3a6e4ebb-4745-4872-9ff9-269e08600af5" + "c275964a-06a0-4c04-8568-91ac766c39a6" ], "Cache-Control": [ "no-cache" @@ -2044,31 +2223,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14961" ], "x-ms-correlation-request-id": [ - "52230e64-a347-4b12-819a-cef7bc7ccf89" + "74dbf9f5-ec56-4b09-95c6-5edc2f31e26c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223516Z:52230e64-a347-4b12-819a-cef7bc7ccf89" + "WESTUS:20150813T191700Z:74dbf9f5-ec56-4b09-95c6-5edc2f31e26c" ], "Date": [ - "Tue, 28 Apr 2015 22:35:15 GMT" + "Thu, 13 Aug 2015 19:17:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2085,8 +2264,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "842e008f-f0e2-458e-9dfd-0eb705aa9df3" + "e5da6f64-b8d4-4bc3-a740-af1abb0ba3cf" ], "Cache-Control": [ "no-cache" @@ -2096,31 +2278,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14960" ], "x-ms-correlation-request-id": [ - "9fc33e18-e613-4702-8dff-bfc2d51601bb" + "36ec83fa-7fd0-427e-a933-512c274262bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223546Z:9fc33e18-e613-4702-8dff-bfc2d51601bb" + "WESTUS:20150813T191730Z:36ec83fa-7fd0-427e-a933-512c274262bb" ], "Date": [ - "Tue, 28 Apr 2015 22:35:46 GMT" + "Thu, 13 Aug 2015 19:17:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2137,8 +2319,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "f2d99b7b-e90a-46ac-902b-982a10594d67" + "137bbb34-f351-4915-a54d-fed7ad0f2c74" ], "Cache-Control": [ "no-cache" @@ -2148,31 +2333,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14959" ], "x-ms-correlation-request-id": [ - "86e8270a-9e58-4e5c-a460-129b64858d10" + "33bdd3a8-d60c-4844-9671-7f9a824cdb25" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223616Z:86e8270a-9e58-4e5c-a460-129b64858d10" + "WESTUS:20150813T191800Z:33bdd3a8-d60c-4844-9671-7f9a824cdb25" ], "Date": [ - "Tue, 28 Apr 2015 22:36:16 GMT" + "Thu, 13 Aug 2015 19:18:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2189,8 +2374,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "26f2238f-87d1-4c1e-8c90-a2e2adcb3921" + "86973d1c-622d-41e3-a93e-3d84d4f4bd17" ], "Cache-Control": [ "no-cache" @@ -2200,31 +2388,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14958" ], "x-ms-correlation-request-id": [ - "1ea8d96a-8f2c-4964-861c-f40e141f673b" + "064c86b5-ff74-4445-8682-e6ff9e0fdfb9" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223646Z:1ea8d96a-8f2c-4964-861c-f40e141f673b" + "WESTUS:20150813T191830Z:064c86b5-ff74-4445-8682-e6ff9e0fdfb9" ], "Date": [ - "Tue, 28 Apr 2015 22:36:46 GMT" + "Thu, 13 Aug 2015 19:18:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2241,8 +2429,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "07408d5d-5869-41e2-a527-9af676352082" + "9cd7bddf-079c-450b-8263-8e9b3fe4f98e" ], "Cache-Control": [ "no-cache" @@ -2252,31 +2443,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14957" ], "x-ms-correlation-request-id": [ - "a84dbc58-44c5-44b0-869f-95833b20e1f7" + "5e3090c6-05de-4d1d-a9f5-d92d98e3f292" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223716Z:a84dbc58-44c5-44b0-869f-95833b20e1f7" + "WESTUS:20150813T191903Z:5e3090c6-05de-4d1d-a9f5-d92d98e3f292" ], "Date": [ - "Tue, 28 Apr 2015 22:37:16 GMT" + "Thu, 13 Aug 2015 19:19:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2293,8 +2484,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "51297133-f0a3-406d-a809-365f9faa8e7c" + "f65d7ab9-7af6-4d00-a90e-fc40c5b7b9ed" ], "Cache-Control": [ "no-cache" @@ -2304,31 +2498,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14956" ], "x-ms-correlation-request-id": [ - "6b572545-7105-43b1-a27d-df2967fbc7c2" + "b11c35d7-0435-4354-abf6-f64776b49b6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223746Z:6b572545-7105-43b1-a27d-df2967fbc7c2" + "WESTUS:20150813T191934Z:b11c35d7-0435-4354-abf6-f64776b49b6e" ], "Date": [ - "Tue, 28 Apr 2015 22:37:46 GMT" + "Thu, 13 Aug 2015 19:19:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2345,8 +2539,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "85013877-4cab-4435-b63c-7c348ffbd312" + "cd0ef126-994f-4d7b-af1f-127bf6bab85e" ], "Cache-Control": [ "no-cache" @@ -2356,31 +2553,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14955" ], "x-ms-correlation-request-id": [ - "dee936f7-f489-4295-9995-516146e0ca85" + "9fd2cf22-89a3-4a28-ad2b-45ff957e086b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223817Z:dee936f7-f489-4295-9995-516146e0ca85" + "WESTUS:20150813T192004Z:9fd2cf22-89a3-4a28-ad2b-45ff957e086b" ], "Date": [ - "Tue, 28 Apr 2015 22:38:16 GMT" + "Thu, 13 Aug 2015 19:20:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2397,8 +2594,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "ef922fc2-74dc-4f8c-b463-c5a3fe879b6e" + "a3010ea4-df21-4824-9f83-b32140fbd11c" ], "Cache-Control": [ "no-cache" @@ -2408,31 +2608,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14954" ], "x-ms-correlation-request-id": [ - "8e63eca7-beaf-4f17-bbb2-5d2bfe43c1bc" + "addabc89-9d9f-4b2f-8539-f515b2432ebb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223847Z:8e63eca7-beaf-4f17-bbb2-5d2bfe43c1bc" + "WESTUS:20150813T192034Z:addabc89-9d9f-4b2f-8539-f515b2432ebb" ], "Date": [ - "Tue, 28 Apr 2015 22:38:46 GMT" + "Thu, 13 Aug 2015 19:20:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2449,8 +2649,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "fda8976a-a39e-4375-bc01-d491691f09c9" + "f9ca10f1-7d33-4b4a-b67c-467abbef8e15" ], "Cache-Control": [ "no-cache" @@ -2460,31 +2663,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14953" ], "x-ms-correlation-request-id": [ - "40c3b4d8-b179-4efb-9d48-812d5c0cfb94" + "0ba1ad51-6de1-4f1b-8765-6e51893a329d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223917Z:40c3b4d8-b179-4efb-9d48-812d5c0cfb94" + "WESTUS:20150813T192104Z:0ba1ad51-6de1-4f1b-8765-6e51893a329d" ], "Date": [ - "Tue, 28 Apr 2015 22:39:16 GMT" + "Thu, 13 Aug 2015 19:21:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2501,8 +2704,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "053ef56e-c634-4d67-b81d-c330a647a311" + "9cef7762-a8e5-4d73-81ff-f2b944f4d9e0" ], "Cache-Control": [ "no-cache" @@ -2512,31 +2718,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14952" ], "x-ms-correlation-request-id": [ - "3cfafe4a-72e3-4985-b492-0efcee1e2fe6" + "32474e7f-0cd4-4a2e-8aaf-ac50f76b05e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223947Z:3cfafe4a-72e3-4985-b492-0efcee1e2fe6" + "WESTUS:20150813T192134Z:32474e7f-0cd4-4a2e-8aaf-ac50f76b05e3" ], "Date": [ - "Tue, 28 Apr 2015 22:39:46 GMT" + "Thu, 13 Aug 2015 19:21:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2553,8 +2759,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "4f036575-0d79-4fcd-aef0-9a11f2317ddf" + "211e5fc0-09a4-4acc-afa1-6f33edd3416a" ], "Cache-Control": [ "no-cache" @@ -2564,31 +2773,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14951" ], "x-ms-correlation-request-id": [ - "50a8d8a0-1b30-45a0-8b8e-da76760c58c6" + "4cb4665e-c4eb-4712-8f4f-af17768d8e18" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224017Z:50a8d8a0-1b30-45a0-8b8e-da76760c58c6" + "WESTUS:20150813T192204Z:4cb4665e-c4eb-4712-8f4f-af17768d8e18" ], "Date": [ - "Tue, 28 Apr 2015 22:40:17 GMT" + "Thu, 13 Aug 2015 19:22:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2605,8 +2814,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "3ad8538f-13b9-4fb2-99b2-6750966c5881" + "6bb26475-c14a-41df-b61e-27c6f22929b7" ], "Cache-Control": [ "no-cache" @@ -2616,31 +2828,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14950" ], "x-ms-correlation-request-id": [ - "c44af649-950d-4198-b6f8-f2197ce58225" + "cfbcc27f-0cb4-4acb-9aaf-cc9e4ec06d7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224047Z:c44af649-950d-4198-b6f8-f2197ce58225" + "WESTUS:20150813T192234Z:cfbcc27f-0cb4-4acb-9aaf-cc9e4ec06d7d" ], "Date": [ - "Tue, 28 Apr 2015 22:40:47 GMT" + "Thu, 13 Aug 2015 19:22:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a900b1bf-c514-4831-8754-b39a9da2379e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTkwMGIxYmYtYzUxNC00ODMxLTg3NTQtYjM5YTlkYTIzNzllP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZjN2Q1ZmQtYmZiYi00YmZiLWFmMDctMmYyODQ0YWMxZjdlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a900b1bf-c514-4831-8754-b39a9da2379e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T15:32:41.3589982-07:00\",\r\n \"endTime\": \"2015-04-28T15:40:53.5308558-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dfc7d5fd-bfbb-4bfb-af07-2f2844ac1f7e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T12:14:29.6128626-07:00\",\r\n \"endTime\": \"2015-08-13T12:23:04.2042189-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2657,8 +2869,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "159eacb5-bfd5-419f-aae7-978f3a768fb4" + "235d69d4-1c6a-41a1-ab75-535b79f7a35f" ], "Cache-Control": [ "no-cache" @@ -2668,34 +2883,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14949" ], "x-ms-correlation-request-id": [ - "d10450de-ecab-47f2-9b22-27f4ae40a963" + "d4a350e7-9ef7-446b-bfaf-f7799695b343" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224117Z:d10450de-ecab-47f2-9b22-27f4ae40a963" + "WESTUS:20150813T192304Z:d4a350e7-9ef7-446b-bfaf-f7799695b343" ], "Date": [ - "Tue, 28 Apr 2015 22:41:17 GMT" + "Thu, 13 Aug 2015 19:23:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Compute/virtualMachines/vmpstestrg9839?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc5ODM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Compute/virtualMachines/vmcrptestps1344?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg9839.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Network/networkInterfaces/nicpstestrg9839\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Compute/virtualMachines/vmpstestrg9839\",\r\n \"name\": \"vmpstestrg9839\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1344.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Network/networkInterfaces/niccrptestps1344\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Compute/virtualMachines/vmcrptestps1344\",\r\n \"name\": \"vmcrptestps1344\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1349" + "1340" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2709,8 +2924,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "d6df9a6c-8713-4492-9fe7-986b3d421b17" + "084c96f0-fd00-4ba8-b82b-6d31ff656eab" ], "Cache-Control": [ "no-cache" @@ -2720,28 +2938,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14948" ], "x-ms-correlation-request-id": [ - "b3a023b3-a0f6-4712-bf84-ddbf3724dd0a" + "edfcfd00-486f-4135-a932-a602000e51ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224117Z:b3a023b3-a0f6-4712-bf84-ddbf3724dd0a" + "WESTUS:20150813T192304Z:edfcfd00-486f-4135-a932-a602000e51ba" ], "Date": [ - "Tue, 28 Apr 2015 22:41:17 GMT" + "Thu, 13 Aug 2015 19:23:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9839/providers/Microsoft.Compute/virtualMachines/vmpstestrg9839?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTgzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc5ODM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1344/providers/Microsoft.Compute/virtualMachines/vmcrptestps1344?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -2756,53 +2974,56 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5b434b85-5fd4-4388-aafa-7b509d2f855d?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/43192ded-a917-4c5d-81d9-92bd4ad15b38?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "5b434b85-5fd4-4388-aafa-7b509d2f855d" + "43192ded-a917-4c5d-81d9-92bd4ad15b38" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5b434b85-5fd4-4388-aafa-7b509d2f855d?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/43192ded-a917-4c5d-81d9-92bd4ad15b38?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "4610f529-b00d-45fa-b234-de85415e18e9" + "f9a2fcc6-059c-46b7-829a-e9d6f4d16d73" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224118Z:4610f529-b00d-45fa-b234-de85415e18e9" + "WESTUS:20150813T192305Z:f9a2fcc6-059c-46b7-829a-e9d6f4d16d73" ], "Date": [ - "Tue, 28 Apr 2015 22:41:18 GMT" + "Thu, 13 Aug 2015 19:23:04 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5b434b85-5fd4-4388-aafa-7b509d2f855d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWI0MzRiODUtNWZkNC00Mzg4LWFhZmEtN2I1MDlkMmY4NTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/43192ded-a917-4c5d-81d9-92bd4ad15b38?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDMxOTJkZWQtYTkxNy00YzVkLTgxZDktOTJiZDRhZDE1YjM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5b434b85-5fd4-4388-aafa-7b509d2f855d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:41:14.0933452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"43192ded-a917-4c5d-81d9-92bd4ad15b38\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:23:05.469898-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2816,8 +3037,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "9f12744e-1d53-4743-a910-69a7a2061a68" + "af110a73-46b4-41e8-b4ad-ef6bc483ed96" ], "Cache-Control": [ "no-cache" @@ -2827,34 +3051,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14947" ], "x-ms-correlation-request-id": [ - "be17f8cf-f35b-4a03-addb-6406a9a965a8" + "983cbcee-25ef-421c-a364-d23b9f93d171" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224118Z:be17f8cf-f35b-4a03-addb-6406a9a965a8" + "WESTUS:20150813T192305Z:983cbcee-25ef-421c-a364-d23b9f93d171" ], "Date": [ - "Tue, 28 Apr 2015 22:41:18 GMT" + "Thu, 13 Aug 2015 19:23:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5b434b85-5fd4-4388-aafa-7b509d2f855d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWI0MzRiODUtNWZkNC00Mzg4LWFhZmEtN2I1MDlkMmY4NTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/43192ded-a917-4c5d-81d9-92bd4ad15b38?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDMxOTJkZWQtYTkxNy00YzVkLTgxZDktOTJiZDRhZDE1YjM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5b434b85-5fd4-4388-aafa-7b509d2f855d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:41:14.0933452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"43192ded-a917-4c5d-81d9-92bd4ad15b38\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:23:05.469898-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2868,8 +3092,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "9a5ae427-31aa-400e-ae7f-ffe12a168671" + "926f9df9-c82c-4369-b539-d9b58e613a47" ], "Cache-Control": [ "no-cache" @@ -2879,34 +3106,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14946" ], "x-ms-correlation-request-id": [ - "ea30420e-bcf1-4258-87b2-c41c961ea1cf" + "5a182f60-1174-4cad-b6da-8596dd134ae8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224148Z:ea30420e-bcf1-4258-87b2-c41c961ea1cf" + "WESTUS:20150813T192335Z:5a182f60-1174-4cad-b6da-8596dd134ae8" ], "Date": [ - "Tue, 28 Apr 2015 22:41:47 GMT" + "Thu, 13 Aug 2015 19:23:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5b434b85-5fd4-4388-aafa-7b509d2f855d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWI0MzRiODUtNWZkNC00Mzg4LWFhZmEtN2I1MDlkMmY4NTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/43192ded-a917-4c5d-81d9-92bd4ad15b38?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDMxOTJkZWQtYTkxNy00YzVkLTgxZDktOTJiZDRhZDE1YjM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5b434b85-5fd4-4388-aafa-7b509d2f855d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:41:14.0933452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"43192ded-a917-4c5d-81d9-92bd4ad15b38\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:23:05.469898-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2920,8 +3147,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "312562e0-2436-43ff-9061-a7851af2a94b" + "42bbbb4b-dba2-476a-b603-666441c8c940" ], "Cache-Control": [ "no-cache" @@ -2931,34 +3161,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14945" ], "x-ms-correlation-request-id": [ - "e966c2a4-7f96-45ff-afa2-ae771d6eae52" + "ac063584-40fe-48ae-ba2c-81b670bdc86c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224218Z:e966c2a4-7f96-45ff-afa2-ae771d6eae52" + "WESTUS:20150813T192405Z:ac063584-40fe-48ae-ba2c-81b670bdc86c" ], "Date": [ - "Tue, 28 Apr 2015 22:42:18 GMT" + "Thu, 13 Aug 2015 19:24:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5b434b85-5fd4-4388-aafa-7b509d2f855d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWI0MzRiODUtNWZkNC00Mzg4LWFhZmEtN2I1MDlkMmY4NTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/43192ded-a917-4c5d-81d9-92bd4ad15b38?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDMxOTJkZWQtYTkxNy00YzVkLTgxZDktOTJiZDRhZDE1YjM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5b434b85-5fd4-4388-aafa-7b509d2f855d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:41:14.0933452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"43192ded-a917-4c5d-81d9-92bd4ad15b38\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:23:05.469898-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2972,8 +3202,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "6dc43d87-e429-4e8c-a909-20546fdb4c46" + "5e9f3334-e58e-4091-ac63-84953dc2b24b" ], "Cache-Control": [ "no-cache" @@ -2983,34 +3216,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14944" ], "x-ms-correlation-request-id": [ - "1b77f16d-f272-4f0b-9794-fb775d26982b" + "ff7e1b4b-2e3c-4f94-a08f-cf44f2e0ff12" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224249Z:1b77f16d-f272-4f0b-9794-fb775d26982b" + "WESTUS:20150813T192436Z:ff7e1b4b-2e3c-4f94-a08f-cf44f2e0ff12" ], "Date": [ - "Tue, 28 Apr 2015 22:42:48 GMT" + "Thu, 13 Aug 2015 19:24:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5b434b85-5fd4-4388-aafa-7b509d2f855d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWI0MzRiODUtNWZkNC00Mzg4LWFhZmEtN2I1MDlkMmY4NTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/43192ded-a917-4c5d-81d9-92bd4ad15b38?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDMxOTJkZWQtYTkxNy00YzVkLTgxZDktOTJiZDRhZDE1YjM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5b434b85-5fd4-4388-aafa-7b509d2f855d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:41:14.0933452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"43192ded-a917-4c5d-81d9-92bd4ad15b38\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:23:05.469898-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3024,8 +3257,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "c330ca57-ba7b-48ad-b8bc-6339c2b40de2" + "29c863a3-024e-4617-85c0-d7834eef0ccf" ], "Cache-Control": [ "no-cache" @@ -3035,34 +3271,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14943" ], "x-ms-correlation-request-id": [ - "5fdb04b6-e261-459e-9539-902f42a24d81" + "f19ed129-708c-4c26-a255-bc6efcddd9fa" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224319Z:5fdb04b6-e261-459e-9539-902f42a24d81" + "WESTUS:20150813T192506Z:f19ed129-708c-4c26-a255-bc6efcddd9fa" ], "Date": [ - "Tue, 28 Apr 2015 22:43:18 GMT" + "Thu, 13 Aug 2015 19:25:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/5b434b85-5fd4-4388-aafa-7b509d2f855d?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWI0MzRiODUtNWZkNC00Mzg4LWFhZmEtN2I1MDlkMmY4NTVkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/43192ded-a917-4c5d-81d9-92bd4ad15b38?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDMxOTJkZWQtYTkxNy00YzVkLTgxZDktOTJiZDRhZDE1YjM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"5b434b85-5fd4-4388-aafa-7b509d2f855d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T15:41:14.0933452-07:00\",\r\n \"endTime\": \"2015-04-28T15:43:15.7964795-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"43192ded-a917-4c5d-81d9-92bd4ad15b38\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T12:23:05.469898-07:00\",\r\n \"endTime\": \"2015-08-13T12:25:28.2859731-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3076,8 +3312,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "e902a0fb-f132-4940-97c9-4822de85809e" + "33edb8af-66b3-4153-9010-c7ac2c35bb96" ], "Cache-Control": [ "no-cache" @@ -3087,23 +3326,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14942" ], "x-ms-correlation-request-id": [ - "9b211802-5637-479d-bcc8-6adb61789f35" + "96559b8a-c4c1-4f25-ba25-1bbc0eb9f119" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224349Z:9b211802-5637-479d-bcc8-6adb61789f35" + "WESTUS:20150813T192536Z:96559b8a-c4c1-4f25-ba25-1bbc0eb9f119" ], "Date": [ - "Tue, 28 Apr 2015 22:43:48 GMT" + "Thu, 13 Aug 2015 19:25:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9839?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTgzOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1344?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -3126,880 +3365,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "59191d75-de8f-47a0-a09e-738b3b84b03d" - ], - "x-ms-correlation-request-id": [ - "59191d75-de8f-47a0-a09e-738b3b84b03d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224359Z:59191d75-de8f-47a0-a09e-738b3b84b03d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:43:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "82f1f927-330a-4bde-858c-3633900854cf" - ], - "x-ms-correlation-request-id": [ - "82f1f927-330a-4bde-858c-3633900854cf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224359Z:82f1f927-330a-4bde-858c-3633900854cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:43:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "87d84dc6-e2f3-4317-b2af-0b2e04358bde" - ], - "x-ms-correlation-request-id": [ - "87d84dc6-e2f3-4317-b2af-0b2e04358bde" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224414Z:87d84dc6-e2f3-4317-b2af-0b2e04358bde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:44:13 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-request-id": [ - "9f6aa09a-1016-4027-8687-3f7cc7834fb4" - ], - "x-ms-correlation-request-id": [ - "9f6aa09a-1016-4027-8687-3f7cc7834fb4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224429Z:9f6aa09a-1016-4027-8687-3f7cc7834fb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:44:29 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-request-id": [ - "360efb9f-b50c-4ec2-9ce8-53d01a9ed575" - ], - "x-ms-correlation-request-id": [ - "360efb9f-b50c-4ec2-9ce8-53d01a9ed575" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224444Z:360efb9f-b50c-4ec2-9ce8-53d01a9ed575" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:44:43 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-request-id": [ - "a0e7c747-a0c2-4353-beb7-7d44c5da556f" - ], - "x-ms-correlation-request-id": [ - "a0e7c747-a0c2-4353-beb7-7d44c5da556f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224459Z:a0e7c747-a0c2-4353-beb7-7d44c5da556f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:44:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "51a65f58-99e3-4b1f-9e23-2423e6cb7060" - ], - "x-ms-correlation-request-id": [ - "51a65f58-99e3-4b1f-9e23-2423e6cb7060" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224514Z:51a65f58-99e3-4b1f-9e23-2423e6cb7060" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:45:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "17d93c70-ba04-4c4a-9601-6d4d6c62357e" - ], - "x-ms-correlation-request-id": [ - "17d93c70-ba04-4c4a-9601-6d4d6c62357e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224529Z:17d93c70-ba04-4c4a-9601-6d4d6c62357e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:45:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "03b79bd4-aea8-4323-9f85-12b2debd8676" - ], - "x-ms-correlation-request-id": [ - "03b79bd4-aea8-4323-9f85-12b2debd8676" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224544Z:03b79bd4-aea8-4323-9f85-12b2debd8676" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:45:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "11968a7b-c91e-40de-a9b5-8c924e5c20b5" - ], - "x-ms-correlation-request-id": [ - "11968a7b-c91e-40de-a9b5-8c924e5c20b5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224559Z:11968a7b-c91e-40de-a9b5-8c924e5c20b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:45:59 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "601697d0-4691-437d-a5f7-06164089491c" - ], - "x-ms-correlation-request-id": [ - "601697d0-4691-437d-a5f7-06164089491c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224614Z:601697d0-4691-437d-a5f7-06164089491c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:46:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "02a2edaa-850b-470f-b035-93a282a6d9a0" - ], - "x-ms-correlation-request-id": [ - "02a2edaa-850b-470f-b035-93a282a6d9a0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224629Z:02a2edaa-850b-470f-b035-93a282a6d9a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:46:29 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "49707bb7-2b11-4bb2-ab55-19096ab89cd0" - ], - "x-ms-correlation-request-id": [ - "49707bb7-2b11-4bb2-ab55-19096ab89cd0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224645Z:49707bb7-2b11-4bb2-ab55-19096ab89cd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:46:44 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "6e100374-6bc1-4d1f-87ce-76ac8fbdf0a7" - ], - "x-ms-correlation-request-id": [ - "6e100374-6bc1-4d1f-87ce-76ac8fbdf0a7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224700Z:6e100374-6bc1-4d1f-87ce-76ac8fbdf0a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:46:59 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-request-id": [ - "e3cbe72e-dafd-4b23-92ed-60f45f4e7430" - ], - "x-ms-correlation-request-id": [ - "e3cbe72e-dafd-4b23-92ed-60f45f4e7430" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224715Z:e3cbe72e-dafd-4b23-92ed-60f45f4e7430" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:47:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "b3589a53-fd69-4d23-86c5-54b51d21a309" - ], - "x-ms-correlation-request-id": [ - "b3589a53-fd69-4d23-86c5-54b51d21a309" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T224730Z:b3589a53-fd69-4d23-86c5-54b51d21a309" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:47:29 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "1192" ], "x-ms-request-id": [ - "cf86a9a7-0ba8-4340-8e1b-628cadccc3be" + "b0c90c58-86cc-4a30-a281-fa057bc79dfe" ], "x-ms-correlation-request-id": [ - "cf86a9a7-0ba8-4340-8e1b-628cadccc3be" + "b0c90c58-86cc-4a30-a281-fa057bc79dfe" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224745Z:cf86a9a7-0ba8-4340-8e1b-628cadccc3be" + "WESTUS:20150813T192536Z:b0c90c58-86cc-4a30-a281-fa057bc79dfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4008,17 +3383,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:47:44 GMT" + "Thu, 13 Aug 2015 19:25:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4044,16 +3419,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14928" ], "x-ms-request-id": [ - "a7e728af-5988-4dbd-8a21-5f519ea3adb5" + "6c9a14fe-8b77-49be-b0d7-9b1d71946145" ], "x-ms-correlation-request-id": [ - "a7e728af-5988-4dbd-8a21-5f519ea3adb5" + "6c9a14fe-8b77-49be-b0d7-9b1d71946145" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224800Z:a7e728af-5988-4dbd-8a21-5f519ea3adb5" + "WESTUS:20150813T192536Z:6c9a14fe-8b77-49be-b0d7-9b1d71946145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4062,17 +3437,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:48:00 GMT" + "Thu, 13 Aug 2015 19:25:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4098,16 +3473,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14927" ], "x-ms-request-id": [ - "84f9fe8f-92dc-4138-b020-c115a30d4b96" + "23843a3e-1862-4b82-b33c-e322889d36f7" ], "x-ms-correlation-request-id": [ - "84f9fe8f-92dc-4138-b020-c115a30d4b96" + "23843a3e-1862-4b82-b33c-e322889d36f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224815Z:84f9fe8f-92dc-4138-b020-c115a30d4b96" + "WESTUS:20150813T192551Z:23843a3e-1862-4b82-b33c-e322889d36f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4116,17 +3491,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:48:15 GMT" + "Thu, 13 Aug 2015 19:25:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4152,16 +3527,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14926" ], "x-ms-request-id": [ - "1ff4ff09-7f70-4a8c-bfbe-6f63092fd597" + "51a68072-4300-4d53-8595-4bb9a802e6b3" ], "x-ms-correlation-request-id": [ - "1ff4ff09-7f70-4a8c-bfbe-6f63092fd597" + "51a68072-4300-4d53-8595-4bb9a802e6b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224830Z:1ff4ff09-7f70-4a8c-bfbe-6f63092fd597" + "WESTUS:20150813T192606Z:51a68072-4300-4d53-8595-4bb9a802e6b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4170,17 +3545,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:48:29 GMT" + "Thu, 13 Aug 2015 19:26:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4206,16 +3581,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14925" ], "x-ms-request-id": [ - "d8cf6458-d388-432d-ba68-ad3cfabb4f9b" + "ff2ac268-37db-492b-aff4-20fc69b753eb" ], "x-ms-correlation-request-id": [ - "d8cf6458-d388-432d-ba68-ad3cfabb4f9b" + "ff2ac268-37db-492b-aff4-20fc69b753eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224845Z:d8cf6458-d388-432d-ba68-ad3cfabb4f9b" + "WESTUS:20150813T192621Z:ff2ac268-37db-492b-aff4-20fc69b753eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4224,17 +3599,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:48:45 GMT" + "Thu, 13 Aug 2015 19:26:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4260,16 +3635,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14924" ], "x-ms-request-id": [ - "bf8c88c7-5589-45f0-aaf7-3d5d735fe31a" + "6dcb5bb3-09db-4a14-9eed-e94bcd769e24" ], "x-ms-correlation-request-id": [ - "bf8c88c7-5589-45f0-aaf7-3d5d735fe31a" + "6dcb5bb3-09db-4a14-9eed-e94bcd769e24" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224900Z:bf8c88c7-5589-45f0-aaf7-3d5d735fe31a" + "WESTUS:20150813T192636Z:6dcb5bb3-09db-4a14-9eed-e94bcd769e24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4278,17 +3653,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:48:59 GMT" + "Thu, 13 Aug 2015 19:26:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4314,16 +3689,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14923" ], "x-ms-request-id": [ - "5abadd29-0713-4946-a1ec-4989fe6e1479" + "6e0fba15-487c-4662-9af8-60bca492c829" ], "x-ms-correlation-request-id": [ - "5abadd29-0713-4946-a1ec-4989fe6e1479" + "6e0fba15-487c-4662-9af8-60bca492c829" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224915Z:5abadd29-0713-4946-a1ec-4989fe6e1479" + "WESTUS:20150813T192651Z:6e0fba15-487c-4662-9af8-60bca492c829" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4332,17 +3707,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:49:14 GMT" + "Thu, 13 Aug 2015 19:26:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4368,16 +3743,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14922" ], "x-ms-request-id": [ - "b543fad8-c147-4e2e-8c1b-8ff3338d1e2d" + "a13dea4e-4f95-4d9f-a686-39cd4196ffca" ], "x-ms-correlation-request-id": [ - "b543fad8-c147-4e2e-8c1b-8ff3338d1e2d" + "a13dea4e-4f95-4d9f-a686-39cd4196ffca" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224930Z:b543fad8-c147-4e2e-8c1b-8ff3338d1e2d" + "WESTUS:20150813T192707Z:a13dea4e-4f95-4d9f-a686-39cd4196ffca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4386,17 +3761,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:49:30 GMT" + "Thu, 13 Aug 2015 19:27:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk4MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems0TXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpRMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4419,16 +3794,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14921" ], "x-ms-request-id": [ - "ce4e0662-b97f-4dd8-a482-17da321c71e4" + "9c8fd579-eb38-466f-8ec4-b13ba8720c4d" ], "x-ms-correlation-request-id": [ - "ce4e0662-b97f-4dd8-a482-17da321c71e4" + "9c8fd579-eb38-466f-8ec4-b13ba8720c4d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T224945Z:ce4e0662-b97f-4dd8-a482-17da321c71e4" + "WESTUS:20150813T192722Z:9c8fd579-eb38-466f-8ec4-b13ba8720c4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4437,7 +3812,7 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:49:45 GMT" + "Thu, 13 Aug 2015 19:27:21 GMT" ] }, "StatusCode": 200 @@ -4445,12 +3820,12 @@ ], "Names": { "Test-SingleNetworkInterfaceDnsSettings": [ - "pstestrg9839" + "crptestps1344" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineMultipleNetworkInterface.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineMultipleNetworkInterface.json index e4ec08b38c0b..e174e91f4e31 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineMultipleNetworkInterface.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineMultipleNetworkInterface.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1924?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "3594dbf7-20fa-4f49-8786-0176d62a0ec8" + ], + "x-ms-correlation-request-id": [ + "3594dbf7-20fa-4f49-8786-0176d62a0ec8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T184908Z:3594dbf7-20fa-4f49-8786-0176d62a0ec8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 18:49:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2054?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14978" ], "x-ms-request-id": [ - "564cdf32-b815-47fe-9f3b-17b997d1f92d" + "3d2cc977-b133-40a1-a83d-a750ddac5e9f" ], "x-ms-correlation-request-id": [ - "564cdf32-b815-47fe-9f3b-17b997d1f92d" + "3d2cc977-b133-40a1-a83d-a750ddac5e9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215251Z:564cdf32-b815-47fe-9f3b-17b997d1f92d" + "WESTUS:20150813T184908Z:3d2cc977-b133-40a1-a83d-a750ddac5e9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:52:50 GMT" + "Thu, 13 Aug 2015 18:49:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1924?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2054?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14972" ], "x-ms-request-id": [ - "964171c8-4929-4434-9308-cfbb6a401bad" + "1b4b62e1-6977-458f-85ff-cb723d2cd827" ], "x-ms-correlation-request-id": [ - "964171c8-4929-4434-9308-cfbb6a401bad" + "1b4b62e1-6977-458f-85ff-cb723d2cd827" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221620Z:964171c8-4929-4434-9308-cfbb6a401bad" + "WESTUS:20150813T185847Z:1b4b62e1-6977-458f-85ff-cb723d2cd827" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:16:20 GMT" + "Thu, 13 Aug 2015 18:58:46 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1924?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2054?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924\",\r\n \"name\": \"pstestrg1924\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054\",\r\n \"name\": \"crptestps2054\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "1149d23f-8ba5-4e59-b099-e335129ba5b7" + "f2f8112e-4de9-4c75-8f18-06726fe6e0e0" ], "x-ms-correlation-request-id": [ - "1149d23f-8ba5-4e59-b099-e335129ba5b7" + "f2f8112e-4de9-4c75-8f18-06726fe6e0e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215251Z:1149d23f-8ba5-4e59-b099-e335129ba5b7" + "WESTUS:20150813T184909Z:f2f8112e-4de9-4c75-8f18-06726fe6e0e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:52:50 GMT" + "Thu, 13 Aug 2015 18:49:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14977" ], "x-ms-request-id": [ - "63c1ac90-48e4-4444-b867-d3c8634fe35e" + "558d12d0-88bd-4372-ae30-72fc4fa5d060" ], "x-ms-correlation-request-id": [ - "63c1ac90-48e4-4444-b867-d3c8634fe35e" + "558d12d0-88bd-4372-ae30-72fc4fa5d060" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215251Z:63c1ac90-48e4-4444-b867-d3c8634fe35e" + "WESTUS:20150813T184909Z:558d12d0-88bd-4372-ae30-72fc4fa5d060" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:52:51 GMT" + "Thu, 13 Aug 2015 18:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1924/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2054/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1a40af41-25cb-46f9-acb3-3ea1cb90fa22" + "westus:46a249eb-231e-47af-bf19-29278b910413" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14898" ], "x-ms-correlation-request-id": [ - "7779b1dc-5105-4b65-9af3-5b21f89e35cd" + "5bc5e124-a2d4-43b6-bc98-5ece6704669d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215255Z:7779b1dc-5105-4b65-9af3-5b21f89e35cd" + "WESTUS:20150813T184909Z:5bc5e124-a2d4-43b6-bc98-5ece6704669d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:52:55 GMT" + "Thu, 13 Aug 2015 18:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzE5MjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjA1ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps2054' under resource group 'crptestps2054' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "1f76f93b-7e21-4ff3-b19e-5721e0190257" + "5c8d94d9-d8c1-4a6b-87f1-b08c25fdb146" ], "x-ms-correlation-request-id": [ - "1f76f93b-7e21-4ff3-b19e-5721e0190257" + "5c8d94d9-d8c1-4a6b-87f1-b08c25fdb146" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215252Z:1f76f93b-7e21-4ff3-b19e-5721e0190257" + "WESTUS:20150813T184910Z:5c8d94d9-d8c1-4a6b-87f1-b08c25fdb146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:52:52 GMT" + "Thu, 13 Aug 2015 18:49:09 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzE5MjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjA1ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924\",\r\n \"etag\": \"W/\\\"1d3e21fc-7bad-4d38-b8fa-9134cdde8e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\",\r\n \"etag\": \"W/\\\"1d3e21fc-7bad-4d38-b8fa-9134cdde8e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054\",\r\n \"etag\": \"W/\\\"e3d0143a-37b6-4d04-bb6b-4ff59f67ab37\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04973237-83a3-4bd3-a361-f465c61a5f58\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\",\r\n \"etag\": \"W/\\\"e3d0143a-37b6-4d04-bb6b-4ff59f67ab37\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "03a41f8c-e9ad-4814-857a-a610da82b1fa" + "c6dd3586-3f29-4ff7-b452-dd691a028b9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"1d3e21fc-7bad-4d38-b8fa-9134cdde8e36\"" + "W/\"e3d0143a-37b6-4d04-bb6b-4ff59f67ab37\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14974" ], "x-ms-correlation-request-id": [ - "267da26e-aa20-45ed-b7be-4ece0fddc411" + "1fc7ebc6-77e7-416d-84c2-8fc8857b90e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215253Z:267da26e-aa20-45ed-b7be-4ece0fddc411" + "WESTUS:20150813T184910Z:1fc7ebc6-77e7-416d-84c2-8fc8857b90e8" ], "Date": [ - "Tue, 28 Apr 2015 21:52:53 GMT" + "Thu, 13 Aug 2015 18:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzE5MjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjA1ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924\",\r\n \"etag\": \"W/\\\"1d3e21fc-7bad-4d38-b8fa-9134cdde8e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\",\r\n \"etag\": \"W/\\\"1d3e21fc-7bad-4d38-b8fa-9134cdde8e36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054\",\r\n \"etag\": \"W/\\\"e3d0143a-37b6-4d04-bb6b-4ff59f67ab37\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04973237-83a3-4bd3-a361-f465c61a5f58\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\",\r\n \"etag\": \"W/\\\"e3d0143a-37b6-4d04-bb6b-4ff59f67ab37\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "61c36bd3-455d-434c-98ca-b67137ba2855" + "aeaad1f8-a0d1-4b85-834d-12f6088a037e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"1d3e21fc-7bad-4d38-b8fa-9134cdde8e36\"" + "W/\"e3d0143a-37b6-4d04-bb6b-4ff59f67ab37\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14973" ], "x-ms-correlation-request-id": [ - "394fe4bc-3143-4cea-9631-3a035271d085" + "7f37d005-1c67-4e1f-adf8-104f2d6e3591" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215253Z:394fe4bc-3143-4cea-9631-3a035271d085" + "WESTUS:20150813T184910Z:7f37d005-1c67-4e1f-adf8-104f2d6e3591" ], "Date": [ - "Tue, 28 Apr 2015 21:52:53 GMT" + "Thu, 13 Aug 2015 18:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzE5MjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjA1ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg1924\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg1924\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps2054\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps2054\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924\",\r\n \"etag\": \"W/\\\"36306d29-b0df-450e-b83e-d7fc00a283e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\",\r\n \"etag\": \"W/\\\"36306d29-b0df-450e-b83e-d7fc00a283e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054\",\r\n \"etag\": \"W/\\\"447ce61b-2de8-4250-bc94-e242caaf3f26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"04973237-83a3-4bd3-a361-f465c61a5f58\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\",\r\n \"etag\": \"W/\\\"447ce61b-2de8-4250-bc94-e242caaf3f26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "2459c836-5e31-4854-ac76-1443c0601e59" + "8f2d7a74-1653-4129-a469-754ac10bcb57" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/2459c836-5e31-4854-ac76-1443c0601e59?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/8f2d7a74-1653-4129-a469-754ac10bcb57?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -460,20 +508,20 @@ "1195" ], "x-ms-correlation-request-id": [ - "1555da55-76d4-4b1a-9d8a-bb00d8961232" + "ee211708-cc5e-4082-9cc2-8062cc4eed2d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215253Z:1555da55-76d4-4b1a-9d8a-bb00d8961232" + "WESTUS:20150813T184910Z:ee211708-cc5e-4082-9cc2-8062cc4eed2d" ], "Date": [ - "Tue, 28 Apr 2015 21:52:53 GMT" + "Thu, 13 Aug 2015 18:49:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/2459c836-5e31-4854-ac76-1443c0601e59?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjQ1OWM4MzYtNWUzMS00ODU0LWFjNzYtMTQ0M2MwNjAxZTU5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/8f2d7a74-1653-4129-a469-754ac10bcb57?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGYyZDdhNzQtMTY1My00MTI5LWE0NjktNzU0YWMxMGJjYjU3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "596ce1a3-203c-464b-908c-30635acee97f" + "b4af6de3-5be9-4389-91f5-f1f3e3b6559a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14975" ], "x-ms-correlation-request-id": [ - "837ea012-aef4-4bb7-aff6-d6e906060f00" + "b1a4c219-7c6c-4d94-9a3c-3e267f0bb31e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215253Z:837ea012-aef4-4bb7-aff6-d6e906060f00" + "WESTUS:20150813T184910Z:b1a4c219-7c6c-4d94-9a3c-3e267f0bb31e" ], "Date": [ - "Tue, 28 Apr 2015 21:52:53 GMT" + "Thu, 13 Aug 2015 18:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic1crptestps2054' under resource group 'crptestps2054' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "170" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "cd5ff2d3-534b-413c-b7c3-cb4e38407c78" + "8be5c927-0234-41ca-9e4d-37e8c25a727c" ], "x-ms-correlation-request-id": [ - "cd5ff2d3-534b-413c-b7c3-cb4e38407c78" + "8be5c927-0234-41ca-9e4d-37e8c25a727c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215253Z:cd5ff2d3-534b-413c-b7c3-cb4e38407c78" + "WESTUS:20150813T184910Z:8be5c927-0234-41ca-9e4d-37e8c25a727c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +617,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:52:53 GMT" + "Thu, 13 Aug 2015 18:49:10 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +632,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1pstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924\",\r\n \"etag\": \"W/\\\"0c0aeeef-6e96-4a07-a333-295ecb3c55eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0c0aeeef-6e96-4a07-a333-295ecb3c55eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054\",\r\n \"etag\": \"W/\\\"68deee68-e5e9-4488-b817-2b9f77d73533\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab8b9e34-2a5d-41c8-86bf-ef03ea8f31d4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"68deee68-e5e9-4488-b817-2b9f77d73533\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1092" + "1195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "aa4596ea-32b8-4a96-b9c3-6f76c9c99c15" + "f5baeb4e-d181-4a47-89a8-17668534c59e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +656,30 @@ "no-cache" ], "ETag": [ - "W/\"0c0aeeef-6e96-4a07-a333-295ecb3c55eb\"" + "W/\"68deee68-e5e9-4488-b817-2b9f77d73533\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14970" ], "x-ms-correlation-request-id": [ - "13b597de-9b30-44f7-b63c-a39d6bea04a5" + "ae59f561-945c-4d8d-83f3-eb196ffae46d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215254Z:13b597de-9b30-44f7-b63c-a39d6bea04a5" + "WESTUS:20150813T184911Z:ae59f561-945c-4d8d-83f3-eb196ffae46d" ], "Date": [ - "Tue, 28 Apr 2015 21:52:54 GMT" + "Thu, 13 Aug 2015 18:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1pstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924\",\r\n \"etag\": \"W/\\\"bbb65d28-598a-40a5-a9f2-1000ab2f24bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bbb65d28-598a-40a5-a9f2-1000ab2f24bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-31-85-57\",\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Compute/virtualMachines/vmpstestrg1924\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054\",\r\n \"etag\": \"W/\\\"99233c52-fda0-4175-8ee8-7b52138c6ce2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab8b9e34-2a5d-41c8-86bf-ef03ea8f31d4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"99233c52-fda0-4175-8ee8-7b52138c6ce2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-33-7A-7F\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Compute/virtualMachines/vmcrptestps2054\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1342" + "1447" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "afe3234c-3c0f-4dcf-b2ae-71a498798ce8" + "4d467b63-b91f-4201-8adc-99cb7107759d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +711,47 @@ "no-cache" ], "ETag": [ - "W/\"bbb65d28-598a-40a5-a9f2-1000ab2f24bc\"" + "W/\"99233c52-fda0-4175-8ee8-7b52138c6ce2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14896" ], "x-ms-correlation-request-id": [ - "e4278aa1-3db2-4cb3-9adf-5e31fe540fb7" + "f8de4e29-f0e6-4600-9100-899d3ee0d0a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221354Z:e4278aa1-3db2-4cb3-9adf-5e31fe540fb7" + "WESTUS:20150813T185615Z:f8de4e29-f0e6-4600-9100-899d3ee0d0a1" ], "Date": [ - "Tue, 28 Apr 2015 22:13:54 GMT" + "Thu, 13 Aug 2015 18:56:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzFjcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic1pstestrg1924\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"nic1crptestps2054\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "647" + "685" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1pstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924\",\r\n \"etag\": \"W/\\\"0c0aeeef-6e96-4a07-a333-295ecb3c55eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0c0aeeef-6e96-4a07-a333-295ecb3c55eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1crptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054\",\r\n \"etag\": \"W/\\\"68deee68-e5e9-4488-b817-2b9f77d73533\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab8b9e34-2a5d-41c8-86bf-ef03ea8f31d4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"68deee68-e5e9-4488-b817-2b9f77d73533\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1092" + "1195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,10 +763,10 @@ "no-cache" ], "x-ms-request-id": [ - "aecd00cc-716d-4fab-afca-964fd8bba272" + "e373821e-7b0b-437c-b610-1c163557f5fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/aecd00cc-716d-4fab-afca-964fd8bba272?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e373821e-7b0b-437c-b610-1c163557f5fd?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,20 +782,20 @@ "1194" ], "x-ms-correlation-request-id": [ - "31a615cf-897d-4fc9-a71e-30b38333f557" + "6f52995c-bf22-412d-9647-1f5970bf645d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215254Z:31a615cf-897d-4fc9-a71e-30b38333f557" + "WESTUS:20150813T184911Z:6f52995c-bf22-412d-9647-1f5970bf645d" ], "Date": [ - "Tue, 28 Apr 2015 21:52:54 GMT" + "Thu, 13 Aug 2015 18:49:11 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/aecd00cc-716d-4fab-afca-964fd8bba272?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWVjZDAwY2MtNzE2ZC00ZmFiLWFmY2EtOTY0ZmQ4YmJhMjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e373821e-7b0b-437c-b610-1c163557f5fd?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3MzgyMWUtN2IwYi00MzdjLWI2MTAtMWMxNjM1NTdmNWZkP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -773,7 +821,7 @@ "no-cache" ], "x-ms-request-id": [ - "60ae384a-4bd2-4281-b472-c10210b6f47b" + "a94f7469-807e-4123-a839-83128369008b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -786,23 +834,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14971" ], "x-ms-correlation-request-id": [ - "86a740ba-202b-44ea-89f0-5bf16dcefce9" + "d14226f3-b4d5-4a84-b367-04502ea247ea" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215254Z:86a740ba-202b-44ea-89f0-5bf16dcefce9" + "WESTUS:20150813T184911Z:d14226f3-b4d5-4a84-b367-04502ea247ea" ], "Date": [ - "Tue, 28 Apr 2015 21:52:54 GMT" + "Thu, 13 Aug 2015 18:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzJjcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -810,10 +858,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic2crptestps2054' under resource group 'crptestps2054' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "170" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,13 +876,13 @@ "gateway" ], "x-ms-request-id": [ - "9c849ceb-e6e9-45f5-98a1-3d508d5968d5" + "f1552f90-2dfb-4815-901a-184886219243" ], "x-ms-correlation-request-id": [ - "9c849ceb-e6e9-45f5-98a1-3d508d5968d5" + "f1552f90-2dfb-4815-901a-184886219243" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215254Z:9c849ceb-e6e9-45f5-98a1-3d508d5968d5" + "WESTUS:20150813T184911Z:f1552f90-2dfb-4815-901a-184886219243" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -843,14 +891,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:52:54 GMT" + "Thu, 13 Aug 2015 18:49:11 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzJjcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -858,10 +906,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic2pstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924\",\r\n \"etag\": \"W/\\\"2416ee2d-3b43-4967-8073-1cebd7aa718f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2416ee2d-3b43-4967-8073-1cebd7aa718f\\\"\",\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/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic2crptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054\",\r\n \"etag\": \"W/\\\"02ee79c2-f42d-4755-bc9f-47119ad2867b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d68e517-0453-41d5-a8b9-35c2da80951e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"02ee79c2-f42d-4755-bc9f-47119ad2867b\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1092" + "1195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,7 +921,7 @@ "no-cache" ], "x-ms-request-id": [ - "67d56cf7-7d3b-4b83-839e-325dea78986a" + "461791ad-d310-4f4a-83a5-f19ab701302c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -882,30 +930,30 @@ "no-cache" ], "ETag": [ - "W/\"2416ee2d-3b43-4967-8073-1cebd7aa718f\"" + "W/\"02ee79c2-f42d-4755-bc9f-47119ad2867b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14967" ], "x-ms-correlation-request-id": [ - "2a8861a1-2875-4c47-9aa7-79ee942df8a7" + "aeeb1bb8-f7e7-4d68-af53-b1785ad2656d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215255Z:2a8861a1-2875-4c47-9aa7-79ee942df8a7" + "WESTUS:20150813T184912Z:aeeb1bb8-f7e7-4d68-af53-b1785ad2656d" ], "Date": [ - "Tue, 28 Apr 2015 21:52:55 GMT" + "Thu, 13 Aug 2015 18:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzJjcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,10 +961,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic2pstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924\",\r\n \"etag\": \"W/\\\"ab2f8b13-4096-4030-bb79-6f21ee8fa349\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ab2f8b13-4096-4030-bb79-6f21ee8fa349\\\"\",\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/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-31-88-F5\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Compute/virtualMachines/vmpstestrg1924\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic2crptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054\",\r\n \"etag\": \"W/\\\"5ad49294-0aed-4089-bb72-220aa54d8f0b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d68e517-0453-41d5-a8b9-35c2da80951e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5ad49294-0aed-4089-bb72-220aa54d8f0b\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-33-77-49\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Compute/virtualMachines/vmcrptestps2054\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1341" + "1446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -928,7 +976,7 @@ "no-cache" ], "x-ms-request-id": [ - "ad11cf46-3b17-4a5d-bafd-59ca766b7288" + "7e015662-a896-4f5d-86bb-5345d8940e88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,47 +985,47 @@ "no-cache" ], "ETag": [ - "W/\"ab2f8b13-4096-4030-bb79-6f21ee8fa349\"" + "W/\"5ad49294-0aed-4089-bb72-220aa54d8f0b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14895" ], "x-ms-correlation-request-id": [ - "cc29e82b-c049-458f-8c83-d1173c8424e0" + "96415e65-1757-4784-b089-b070cd29c794" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221354Z:cc29e82b-c049-458f-8c83-d1173c8424e0" + "WESTUS:20150813T185615Z:96415e65-1757-4784-b089-b070cd29c794" ], "Date": [ - "Tue, 28 Apr 2015 22:13:54 GMT" + "Thu, 13 Aug 2015 18:56:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzJjcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic2pstestrg1924\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"nic2crptestps2054\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "647" + "685" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic2pstestrg1924\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924\",\r\n \"etag\": \"W/\\\"2416ee2d-3b43-4967-8073-1cebd7aa718f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2416ee2d-3b43-4967-8073-1cebd7aa718f\\\"\",\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/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1924/subnets/subnetpstestrg1924\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic2crptestps2054\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054\",\r\n \"etag\": \"W/\\\"02ee79c2-f42d-4755-bc9f-47119ad2867b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d68e517-0453-41d5-a8b9-35c2da80951e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"02ee79c2-f42d-4755-bc9f-47119ad2867b\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2054/subnets/subnetcrptestps2054\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1092" + "1195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -989,10 +1037,10 @@ "no-cache" ], "x-ms-request-id": [ - "1d7c1f20-3cf1-4c36-b139-a93708c2b2dc" + "6340556b-235a-409f-b74b-4c9fe4336aff" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/1d7c1f20-3cf1-4c36-b139-a93708c2b2dc?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/6340556b-235a-409f-b74b-4c9fe4336aff?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,20 +1056,20 @@ "1193" ], "x-ms-correlation-request-id": [ - "0fc5e5a9-d22c-4809-9e13-8ed0b4504a19" + "6468bb8f-0931-4640-8f1a-61ddea8482ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215255Z:0fc5e5a9-d22c-4809-9e13-8ed0b4504a19" + "WESTUS:20150813T184912Z:6468bb8f-0931-4640-8f1a-61ddea8482ef" ], "Date": [ - "Tue, 28 Apr 2015 21:52:55 GMT" + "Thu, 13 Aug 2015 18:49:12 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/1d7c1f20-3cf1-4c36-b139-a93708c2b2dc?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWQ3YzFmMjAtM2NmMS00YzM2LWIxMzktYTkzNzA4YzJiMmRjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/6340556b-235a-409f-b74b-4c9fe4336aff?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjM0MDU1NmItMjM1YS00MDlmLWI3NGItNGM5ZmU0MzM2YWZmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1047,7 +1095,7 @@ "no-cache" ], "x-ms-request-id": [ - "5fe91981-5da7-49a7-88b8-b1e50bc6923d" + "c095c63e-30a2-4ffb-9a82-582d6abedf46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1060,23 +1108,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14968" ], "x-ms-correlation-request-id": [ - "6b0b588f-15d2-4f60-a43d-a834ba44eaae" + "0be0e9fd-ef28-4f92-9f9e-7171d242e182" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215255Z:6b0b588f-15d2-4f60-a43d-a834ba44eaae" + "WESTUS:20150813T184912Z:0be0e9fd-ef28-4f92-9f9e-7171d242e182" ], "Date": [ - "Tue, 28 Apr 2015 21:52:55 GMT" + "Thu, 13 Aug 2015 18:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Storage/storageAccounts/stopstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Storage/storageAccounts/stocrptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1087,7 +1135,7 @@ "88" ], "x-ms-client-request-id": [ - "9dfc24c3-50b5-43d0-96b0-44c542fcc2d2" + "f37316eb-c7df-4c0d-bf34-3d29b7aea771" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1111,44 +1159,44 @@ "25" ], "x-ms-request-id": [ - "0ecd3edd-8c46-4af2-a1ea-216cae9773d4" + "a2de81fe-6d0c-495c-ae19-b4757e0049cd" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0ecd3edd-8c46-4af2-a1ea-216cae9773d4?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/a2de81fe-6d0c-495c-ae19-b4757e0049cd?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "5228db17-67c3-4166-9517-e98da691e864" + "f67204c0-2fe3-4a12-8895-7ccc1ea347ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215259Z:5228db17-67c3-4166-9517-e98da691e864" + "WESTUS:20150813T184915Z:f67204c0-2fe3-4a12-8895-7ccc1ea347ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:52:58 GMT" + "Thu, 13 Aug 2015 18:49:15 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0ecd3edd-8c46-4af2-a1ea-216cae9773d4?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBlY2QzZWRkLThjNDYtNGFmMi1hMWVhLTIxNmNhZTk3NzNkND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/a2de81fe-6d0c-495c-ae19-b4757e0049cd?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2EyZGU4MWZlLTZkMGMtNDk1Yy1hZTE5LWI0NzU3ZTAwNDljZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc8f4abb-346b-4951-b33d-5fe5bd34bce7" + "448719df-6a4a-452f-8bfb-649fbaee1ab9" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1172,44 +1220,44 @@ "25" ], "x-ms-request-id": [ - "b1dcb6ea-f631-41aa-9915-a811ffd216a6" + "52f08edd-fbcd-4880-8131-5c50e3873ef2" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0ecd3edd-8c46-4af2-a1ea-216cae9773d4?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/a2de81fe-6d0c-495c-ae19-b4757e0049cd?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14968" ], "x-ms-correlation-request-id": [ - "f0517730-6481-4456-adb3-2c460eae7f3c" + "66258c2e-56b8-4cf3-957a-a6999089878a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215259Z:f0517730-6481-4456-adb3-2c460eae7f3c" + "WESTUS:20150813T184916Z:66258c2e-56b8-4cf3-957a-a6999089878a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:52:59 GMT" + "Thu, 13 Aug 2015 18:49:16 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0ecd3edd-8c46-4af2-a1ea-216cae9773d4?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBlY2QzZWRkLThjNDYtNGFmMi1hMWVhLTIxNmNhZTk3NzNkND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/a2de81fe-6d0c-495c-ae19-b4757e0049cd?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2EyZGU4MWZlLTZkMGMtNDk1Yy1hZTE5LWI0NzU3ZTAwNDljZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd892c21-6b44-4cf7-8f31-e4135572e9bc" + "7f527f1d-d35f-4eec-b7e3-3dae060bbf9e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,7 +1278,7 @@ "no-cache" ], "x-ms-request-id": [ - "fdc826fa-2c0d-4d97-8813-913b0d8928cf" + "086091ba-4235-44a6-8da5-679eb9bfc640" ], "Cache-Control": [ "no-cache" @@ -1240,40 +1288,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14967" ], "x-ms-correlation-request-id": [ - "451349ad-e605-42a7-8928-91af70875267" + "085754fa-221c-4a0c-ace7-0f4e158965f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215324Z:451349ad-e605-42a7-8928-91af70875267" + "WESTUS:20150813T184941Z:085754fa-221c-4a0c-ace7-0f4e158965f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:53:24 GMT" + "Thu, 13 Aug 2015 18:49:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Storage/storageAccounts/stopstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Storage/storageAccounts/stocrptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70554d21-5d5e-431f-b362-78018648fa41" + "4194945d-4d5f-497d-b0a4-c9db7d4951e9" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Storage/storageAccounts/stopstestrg1924\",\r\n \"name\": \"stopstestrg1924\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg1924.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1924.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1924.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T21:52:45.7768169Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Storage/storageAccounts/stocrptestps2054\",\r\n \"name\": \"stocrptestps2054\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2054.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2054.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2054.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T18:49:13.1525326Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1285,7 +1333,7 @@ "no-cache" ], "x-ms-request-id": [ - "2b49453e-0660-425c-93ea-0fffdec15c25" + "7c927735-df84-4e14-8d59-52c6e5cdf877" ], "Cache-Control": [ "no-cache" @@ -1295,40 +1343,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14966" ], "x-ms-correlation-request-id": [ - "4024916e-54e5-4ea3-acae-513a7111109b" + "60c048a7-ef49-4270-bb51-06297192215c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215325Z:4024916e-54e5-4ea3-acae-513a7111109b" + "WESTUS:20150813T184941Z:60c048a7-ef49-4270-bb51-06297192215c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:53:24 GMT" + "Thu, 13 Aug 2015 18:49:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Storage/storageAccounts/stopstestrg1924?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Storage/storageAccounts/stocrptestps2054?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyMDU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d342bf6d-e05b-4d48-8a4d-483ce11a1123" + "2dcd12bd-0169-408a-88eb-379ac1d1b0cb" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Storage/storageAccounts/stopstestrg1924\",\r\n \"name\": \"stopstestrg1924\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg1924.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1924.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1924.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T21:52:45.7768169Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Storage/storageAccounts/stocrptestps2054\",\r\n \"name\": \"stocrptestps2054\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2054.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2054.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2054.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T18:49:13.1525326Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1340,7 +1388,7 @@ "no-cache" ], "x-ms-request-id": [ - "0356e264-837d-4da1-a813-a70b06fb3d9d" + "4a023bb1-c9b8-4f3f-b916-5fd50f72c051" ], "Cache-Control": [ "no-cache" @@ -1350,37 +1398,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14965" ], "x-ms-correlation-request-id": [ - "d08d2331-0d2e-43fe-9f76-88b3eba06d8b" + "290cf363-bece-43c1-9892-7c887e0bd58c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215325Z:d08d2331-0d2e-43fe-9f76-88b3eba06d8b" + "WESTUS:20150813T184942Z:290cf363-bece-43c1-9892-7c887e0bd58c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:53:24 GMT" + "Thu, 13 Aug 2015 18:49:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1395,7 +1443,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28cdba5f-8045-4618-be52-10e1c4c81c27" + "6665473d-9fb1-4239-b4ac-79046b12348c" ], "Cache-Control": [ "no-cache" @@ -1405,31 +1453,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "14998" ], "x-ms-correlation-request-id": [ - "0c79d33e-590c-4e01-a01d-269bec7407ec" + "969f971d-9f18-49cb-8ae6-4541def963c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215327Z:0c79d33e-590c-4e01-a01d-269bec7407ec" + "WESTUS:20150813T184942Z:969f971d-9f18-49cb-8ae6-4541def963c3" ], "Date": [ - "Tue, 28 Apr 2015 21:53:26 GMT" + "Thu, 13 Aug 2015 18:49:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1447,7 +1495,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27e8d304-01ca-41c3-ac2f-49e740f83f7d" + "4cf59b20-2489-4ec3-aa7c-03725376f9cc" ], "Cache-Control": [ "no-cache" @@ -1457,34 +1505,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" + "14997" ], "x-ms-correlation-request-id": [ - "1b30eeec-c118-440f-a3d7-6a242e8b3dc4" + "31f92598-9067-4364-b5bf-df6d48c4f69f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215327Z:1b30eeec-c118-440f-a3d7-6a242e8b3dc4" + "WESTUS:20150813T184942Z:31f92598-9067-4364-b5bf-df6d48c4f69f" ], "Date": [ - "Tue, 28 Apr 2015 21:53:27 GMT" + "Thu, 13 Aug 2015 18:49:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1499,7 +1547,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c04b28d6-aef0-47aa-b4b1-8373a9dd69d2" + "954b02bc-60a6-4478-ab7a-97d72b1d45f5" ], "Cache-Control": [ "no-cache" @@ -1509,34 +1557,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "14996" ], "x-ms-correlation-request-id": [ - "e5ebac64-3a0b-400a-8749-c0cb6e86f510" + "e253e3fb-c800-4f4c-97c3-f050af35933d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215327Z:e5ebac64-3a0b-400a-8749-c0cb6e86f510" + "WESTUS:20150813T184943Z:e253e3fb-c800-4f4c-97c3-f050af35933d" ], "Date": [ - "Tue, 28 Apr 2015 21:53:27 GMT" + "Thu, 13 Aug 2015 18:49:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1551,7 +1599,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2444e02a-8bd1-4c01-88a2-a59be31814cf" + "69a08726-50e6-4e82-94e0-b5212002818a" ], "Cache-Control": [ "no-cache" @@ -1561,31 +1609,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" + "14995" ], "x-ms-correlation-request-id": [ - "fa9f8bc3-0d55-4647-a030-47fa6f77ff43" + "6b6cf131-8ef4-4f5f-ac59-904af2926412" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215327Z:fa9f8bc3-0d55-4647-a030-47fa6f77ff43" + "WESTUS:20150813T184943Z:6b6cf131-8ef4-4f5f-ac59-904af2926412" ], "Date": [ - "Tue, 28 Apr 2015 21:53:27 GMT" + "Thu, 13 Aug 2015 18:49:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1603,7 +1651,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2cff99b0-705d-483b-bfe5-4379cdab68c4" + "3dc8541f-ae43-44fa-9b35-8eb69a5f29ab" ], "Cache-Control": [ "no-cache" @@ -1613,40 +1661,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" + "14994" ], "x-ms-correlation-request-id": [ - "ed3d6237-b0d3-4382-9495-6b22c7b92ed5" + "ac0fb3b7-da83-47b8-9e9a-b9560880f77c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215327Z:ed3d6237-b0d3-4382-9495-6b22c7b92ed5" + "WESTUS:20150813T184943Z:ac0fb3b7-da83-47b8-9e9a-b9560880f77c" ], "Date": [ - "Tue, 28 Apr 2015 21:53:27 GMT" + "Thu, 13 Aug 2015 18:49:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Compute/virtualMachines/vmpstestrg1924?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxOTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Compute/virtualMachines/vmcrptestps2054?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIwNTQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1924.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg1924\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg1924\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2054.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps2054\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps2054\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1366" + "1358" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1924.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Compute/virtualMachines/vmpstestrg1924\",\r\n \"name\": \"vmpstestrg1924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2054.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Compute/virtualMachines/vmcrptestps2054\",\r\n \"name\": \"vmcrptestps2054\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1546" + "1539" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1658,13 +1706,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "98b14cee-54c3-4bf7-a56b-0bdd3ff56495" + "b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4" ], "Cache-Control": [ "no-cache" @@ -1674,34 +1725,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "f362fdd8-f284-45d5-903b-0487ce50f389" + "1b2514fb-4d18-43ff-b18e-bc70aaa6790e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215328Z:f362fdd8-f284-45d5-903b-0487ce50f389" + "WESTUS:20150813T184944Z:1b2514fb-4d18-43ff-b18e-bc70aaa6790e" ], "Date": [ - "Tue, 28 Apr 2015 21:53:28 GMT" + "Thu, 13 Aug 2015 18:49:44 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1715,60 +1766,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "5b8716d1-e6cb-4e5e-8961-18e9c81b089b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" - ], - "x-ms-correlation-request-id": [ - "ab2638aa-b6df-4bdd-b299-033e419a1ac8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T215328Z:ab2638aa-b6df-4bdd-b299-033e419a1ac8" - ], - "Date": [ - "Tue, 28 Apr 2015 21:53:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "e277ffe6-538b-4cfa-9e47-6b1b93d49d93" + "91f92621-646e-4efc-a292-f20ec3ce2f29" ], "Cache-Control": [ "no-cache" @@ -1778,34 +1780,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "14993" ], "x-ms-correlation-request-id": [ - "f817a574-f4f8-4c13-9ada-e331f0865e08" + "3358a109-2dba-418d-837a-315eca4e16a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215358Z:f817a574-f4f8-4c13-9ada-e331f0865e08" + "WESTUS:20150813T184944Z:3358a109-2dba-418d-837a-315eca4e16a7" ], "Date": [ - "Tue, 28 Apr 2015 21:53:58 GMT" + "Thu, 13 Aug 2015 18:49:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1819,60 +1821,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "d18a75df-b8a7-4b21-a0cf-fed2831cc3fe" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" - ], - "x-ms-correlation-request-id": [ - "dfd3f7ec-1c51-4c57-86c9-d50264aa4ec6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T215428Z:dfd3f7ec-1c51-4c57-86c9-d50264aa4ec6" - ], - "Date": [ - "Tue, 28 Apr 2015 21:54:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "4833ec0c-9b56-4a02-a3d1-9de6a5206c50" + "626ccbff-336b-415c-91af-c00e4da5aa3d" ], "Cache-Control": [ "no-cache" @@ -1882,34 +1835,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "14992" ], "x-ms-correlation-request-id": [ - "918a75d4-b4fd-4ac7-bdfd-105016ff96ac" + "4f5056ad-295e-4e61-8203-bbd1f647112d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215459Z:918a75d4-b4fd-4ac7-bdfd-105016ff96ac" + "WESTUS:20150813T185014Z:4f5056ad-295e-4e61-8203-bbd1f647112d" ], "Date": [ - "Tue, 28 Apr 2015 21:54:58 GMT" + "Thu, 13 Aug 2015 18:50:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,60 +1876,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "c0ee9620-9705-4c2e-91b3-f1b908b4084c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" - ], - "x-ms-correlation-request-id": [ - "ad132193-7a6f-403d-9ce6-ede2b217a48d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T215529Z:ad132193-7a6f-403d-9ce6-ede2b217a48d" - ], - "Date": [ - "Tue, 28 Apr 2015 21:55:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "4561e0fd-5e38-4ac5-9421-1567046a49b1" + "cb32df41-de9f-4d09-9c32-82758a20c87b" ], "Cache-Control": [ "no-cache" @@ -1986,34 +1890,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "14991" ], "x-ms-correlation-request-id": [ - "f50ac3cc-b2ce-4631-89fd-2e1a4c3ed223" + "cc37b0ee-c520-4760-b8e4-2d84d082c3a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215559Z:f50ac3cc-b2ce-4631-89fd-2e1a4c3ed223" + "WESTUS:20150813T185044Z:cc37b0ee-c520-4760-b8e4-2d84d082c3a7" ], "Date": [ - "Tue, 28 Apr 2015 21:55:59 GMT" + "Thu, 13 Aug 2015 18:50:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2027,8 +1931,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "84e533d3-63a7-48ac-a4e8-e663fd494646" + "87991854-3c8f-40a8-a777-08dad7d2d83d" ], "Cache-Control": [ "no-cache" @@ -2038,34 +1945,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "14990" ], "x-ms-correlation-request-id": [ - "2240049c-29f3-4dcd-963e-e20986748375" + "419d1379-61c2-4be1-829f-3d5ddc8234ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215629Z:2240049c-29f3-4dcd-963e-e20986748375" + "WESTUS:20150813T185114Z:419d1379-61c2-4be1-829f-3d5ddc8234ce" ], "Date": [ - "Tue, 28 Apr 2015 21:56:28 GMT" + "Thu, 13 Aug 2015 18:51:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2079,8 +1986,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "f0e7d42a-9a48-41f3-9c7b-26747fede168" + "5bf27978-8404-4998-bd6e-1dbf7eb3294f" ], "Cache-Control": [ "no-cache" @@ -2090,34 +2000,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" + "14989" ], "x-ms-correlation-request-id": [ - "3c55bc4f-16b7-4998-b457-3702f1aaa94d" + "9ad76ec9-a24f-4562-8977-6946a85b7717" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215659Z:3c55bc4f-16b7-4998-b457-3702f1aaa94d" + "WESTUS:20150813T185144Z:9ad76ec9-a24f-4562-8977-6946a85b7717" ], "Date": [ - "Tue, 28 Apr 2015 21:56:59 GMT" + "Thu, 13 Aug 2015 18:51:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2131,8 +2041,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "ffa57ca3-aa0a-431a-a366-4f95b07c42eb" + "8bbcfc76-e541-4d9f-8d42-eaf751ab1d09" ], "Cache-Control": [ "no-cache" @@ -2142,34 +2055,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" + "14988" ], "x-ms-correlation-request-id": [ - "5ebd0efe-e392-4273-851a-63b69ce2d457" + "ea163c4c-4c2c-4e1b-be6a-bc1653e5b54e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215729Z:5ebd0efe-e392-4273-851a-63b69ce2d457" + "WESTUS:20150813T185214Z:ea163c4c-4c2c-4e1b-be6a-bc1653e5b54e" ], "Date": [ - "Tue, 28 Apr 2015 21:57:28 GMT" + "Thu, 13 Aug 2015 18:52:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2183,8 +2096,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "6ee16f5b-2a11-4908-bd02-24990432cbb9" + "4f35de3c-1bf6-4b76-b051-9ccb5ef3cce6" ], "Cache-Control": [ "no-cache" @@ -2194,34 +2110,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "14987" ], "x-ms-correlation-request-id": [ - "da3dd7ac-1ad5-425e-9fc2-24ef75b44a2c" + "1cb6f07e-bbda-40a0-8d51-563a41a04012" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215759Z:da3dd7ac-1ad5-425e-9fc2-24ef75b44a2c" + "WESTUS:20150813T185244Z:1cb6f07e-bbda-40a0-8d51-563a41a04012" ], "Date": [ - "Tue, 28 Apr 2015 21:57:59 GMT" + "Thu, 13 Aug 2015 18:52:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,8 +2151,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "c3b8700f-f7c4-41a6-9b24-f87928703886" + "3ccc094e-7a85-4f29-8450-7ee218fe3108" ], "Cache-Control": [ "no-cache" @@ -2246,34 +2165,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "14986" ], "x-ms-correlation-request-id": [ - "c49c14db-40e2-4a07-8149-0d3773275590" + "cb11d679-371f-481d-87fb-e0c1a9a366c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215829Z:c49c14db-40e2-4a07-8149-0d3773275590" + "WESTUS:20150813T185315Z:cb11d679-371f-481d-87fb-e0c1a9a366c4" ], "Date": [ - "Tue, 28 Apr 2015 21:58:29 GMT" + "Thu, 13 Aug 2015 18:53:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2287,8 +2206,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "07245743-8ecf-4c54-a8c5-9fbd6352047d" + "97e51614-acd5-44c4-8e1b-707367af076a" ], "Cache-Control": [ "no-cache" @@ -2298,34 +2220,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "14985" ], "x-ms-correlation-request-id": [ - "0bfb2e07-6b0a-4139-b74e-a1e4860966cc" + "9c1cfbf3-5766-4f0c-9cec-8b30aabcfe11" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215859Z:0bfb2e07-6b0a-4139-b74e-a1e4860966cc" + "WESTUS:20150813T185345Z:9c1cfbf3-5766-4f0c-9cec-8b30aabcfe11" ], "Date": [ - "Tue, 28 Apr 2015 21:58:59 GMT" + "Thu, 13 Aug 2015 18:53:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2339,8 +2261,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "ef6fe3b7-494a-4901-b99f-6ea9a5dc4f8b" + "14b8895e-18d8-4b60-8ad7-e2715d8509cf" ], "Cache-Control": [ "no-cache" @@ -2350,34 +2275,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "14984" ], "x-ms-correlation-request-id": [ - "c9896971-9df8-431d-b859-e9efe7b189d0" + "d02afad7-8687-426f-a225-e2190c7a5663" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215929Z:c9896971-9df8-431d-b859-e9efe7b189d0" + "WESTUS:20150813T185415Z:d02afad7-8687-426f-a225-e2190c7a5663" ], "Date": [ - "Tue, 28 Apr 2015 21:59:29 GMT" + "Thu, 13 Aug 2015 18:54:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2391,8 +2316,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "9e1b2559-02ac-47a7-ac7f-242a1ef39be6" + "644e7e1f-ea3e-4663-ac8e-1033ebd87f59" ], "Cache-Control": [ "no-cache" @@ -2402,34 +2330,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "14983" ], "x-ms-correlation-request-id": [ - "fa6627a4-3a8b-4752-8284-bfea8ac37462" + "76a1166a-cc07-4258-ac05-26ad7cb6d175" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220000Z:fa6627a4-3a8b-4752-8284-bfea8ac37462" + "WESTUS:20150813T185445Z:76a1166a-cc07-4258-ac05-26ad7cb6d175" ], "Date": [ - "Tue, 28 Apr 2015 22:00:00 GMT" + "Thu, 13 Aug 2015 18:54:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2443,8 +2371,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "cab212cd-8ad9-44b8-9ef8-a059eb5b7d42" + "f75f6cb0-764d-496a-b1db-21b43ae9a84c" ], "Cache-Control": [ "no-cache" @@ -2454,34 +2385,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "14982" ], "x-ms-correlation-request-id": [ - "c8f8f334-08ab-45b4-86dc-747db2848b0b" + "e362ce1f-78f3-4790-9a5a-8ae2125d1930" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220030Z:c8f8f334-08ab-45b4-86dc-747db2848b0b" + "WESTUS:20150813T185515Z:e362ce1f-78f3-4790-9a5a-8ae2125d1930" ], "Date": [ - "Tue, 28 Apr 2015 22:00:29 GMT" + "Thu, 13 Aug 2015 18:55:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2495,8 +2426,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "9fa12c88-5d34-4eb1-b3de-3cfee87122ab" + "3bf7cef6-1a73-44f7-b396-31bf2a39f0fa" ], "Cache-Control": [ "no-cache" @@ -2506,34 +2440,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "14981" ], "x-ms-correlation-request-id": [ - "d4b31690-7a44-4479-a546-206429fb8647" + "3e17185d-11bf-4f9b-a547-4f12a8145001" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220100Z:d4b31690-7a44-4479-a546-206429fb8647" + "WESTUS:20150813T185545Z:3e17185d-11bf-4f9b-a547-4f12a8145001" ], "Date": [ - "Tue, 28 Apr 2015 22:00:59 GMT" + "Thu, 13 Aug 2015 18:55:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjNhMWZiYmMtYTE2MS00YWZlLTg2OTEtMDBhZTBkNWJiM2U0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"b3a1fbbc-a161-4afe-8691-00ae0d5bb3e4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T11:49:43.8045008-07:00\",\r\n \"endTime\": \"2015-08-13T11:56:12.4419919-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2547,8 +2481,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "c01967c9-a0cb-4cde-b907-5750705e1cd4" + "42f3f989-0e50-435d-b999-f45a0d0ddc47" ], "Cache-Control": [ "no-cache" @@ -2558,34 +2495,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" + "14980" ], "x-ms-correlation-request-id": [ - "cc706392-8e36-411d-b73b-1de88d07e51c" + "d495b0cb-8078-440b-bf9e-1897df4f19f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220130Z:cc706392-8e36-411d-b73b-1de88d07e51c" + "WESTUS:20150813T185615Z:d495b0cb-8078-440b-bf9e-1897df4f19f4" ], "Date": [ - "Tue, 28 Apr 2015 22:01:30 GMT" + "Thu, 13 Aug 2015 18:56:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Compute/virtualMachines/vmcrptestps2054?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIwNTQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2054.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic1crptestps2054\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Network/networkInterfaces/nic2crptestps2054\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Compute/virtualMachines/vmcrptestps2054\",\r\n \"name\": \"vmcrptestps2054\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2599,8 +2536,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "4057c515-4de4-43f1-ae5e-4081bfcfd3fc" + "dc576d8c-85bb-4ca0-8644-b4e636f2c158" ], "Cache-Control": [ "no-cache" @@ -2610,37 +2550,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "14979" ], "x-ms-correlation-request-id": [ - "b16ba4a1-ca77-4fed-a799-538031c5a2df" + "37dd7b5c-0b77-4348-b387-47a0fcb86df0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220200Z:b16ba4a1-ca77-4fed-a799-538031c5a2df" + "WESTUS:20150813T185615Z:37dd7b5c-0b77-4348-b387-47a0fcb86df0" ], "Date": [ - "Tue, 28 Apr 2015 22:01:59 GMT" + "Thu, 13 Aug 2015 18:56:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2054/providers/Microsoft.Compute/virtualMachines/vmcrptestps2054?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczIwNTQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2648,48 +2585,57 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/51a94f4a-19ae-4858-a4df-9a451e9c4a9c?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "b6a2b62d-f7ec-4bba-982a-a48ed0edc032" + "51a94f4a-19ae-4858-a4df-9a451e9c4a9c" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/51a94f4a-19ae-4858-a4df-9a451e9c4a9c?monitor=true&api-version=2015-06-15" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "a4ca2dba-7180-4b97-9585-fe1d4229e1c8" + "30d565e1-2931-440c-95b6-ca654f55126a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220230Z:a4ca2dba-7180-4b97-9585-fe1d4229e1c8" + "WESTUS:20150813T185616Z:30d565e1-2931-440c-95b6-ca654f55126a" ], "Date": [ - "Tue, 28 Apr 2015 22:02:30 GMT" + "Thu, 13 Aug 2015 18:56:15 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/51a94f4a-19ae-4858-a4df-9a451e9c4a9c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFhOTRmNGEtMTlhZS00ODU4LWE0ZGYtOWE0NTFlOWM0YTljP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"51a94f4a-19ae-4858-a4df-9a451e9c4a9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:56:16.3951844-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2703,8 +2649,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "0ab3f52f-6382-44f8-964d-e6515a23c13a" + "68795b29-f09f-4e96-8252-150dd6e738a8" ], "Cache-Control": [ "no-cache" @@ -2714,34 +2663,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "14978" ], "x-ms-correlation-request-id": [ - "f431fc64-1e71-44c5-b936-7bddbb5a6f58" + "bedff43a-77bc-465e-a9a2-bb3b4a73aaba" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220300Z:f431fc64-1e71-44c5-b936-7bddbb5a6f58" + "WESTUS:20150813T185616Z:bedff43a-77bc-465e-a9a2-bb3b4a73aaba" ], "Date": [ - "Tue, 28 Apr 2015 22:03:00 GMT" + "Thu, 13 Aug 2015 18:56:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/51a94f4a-19ae-4858-a4df-9a451e9c4a9c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFhOTRmNGEtMTlhZS00ODU4LWE0ZGYtOWE0NTFlOWM0YTljP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"51a94f4a-19ae-4858-a4df-9a451e9c4a9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:56:16.3951844-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2755,8 +2704,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "cbf9075f-3a24-4e53-9d3c-9b6ebfed07f1" + "c6491a00-b843-4ffb-8cf0-fa8a29275dbf" ], "Cache-Control": [ "no-cache" @@ -2766,34 +2718,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "14977" ], "x-ms-correlation-request-id": [ - "c1791edb-719e-4084-b754-ca6f1dd2a479" + "29cc7d0a-39d2-4161-b72e-0b726bc28d18" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220330Z:c1791edb-719e-4084-b754-ca6f1dd2a479" + "WESTUS:20150813T185646Z:29cc7d0a-39d2-4161-b72e-0b726bc28d18" ], "Date": [ - "Tue, 28 Apr 2015 22:03:29 GMT" + "Thu, 13 Aug 2015 18:56:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/51a94f4a-19ae-4858-a4df-9a451e9c4a9c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFhOTRmNGEtMTlhZS00ODU4LWE0ZGYtOWE0NTFlOWM0YTljP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"51a94f4a-19ae-4858-a4df-9a451e9c4a9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:56:16.3951844-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2807,8 +2759,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "34e00f1d-0bf4-495e-99cc-89c29046f70c" + "d41ecdec-f9bc-4d0c-825b-fe6b60e0a6a5" ], "Cache-Control": [ "no-cache" @@ -2818,34 +2773,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "14976" ], "x-ms-correlation-request-id": [ - "2d47c891-6b7c-4859-8467-3ae3b25fa9b2" + "24540126-b9da-4fe9-825d-32a80d8fe998" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220400Z:2d47c891-6b7c-4859-8467-3ae3b25fa9b2" + "WESTUS:20150813T185716Z:24540126-b9da-4fe9-825d-32a80d8fe998" ], "Date": [ - "Tue, 28 Apr 2015 22:04:00 GMT" + "Thu, 13 Aug 2015 18:57:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/51a94f4a-19ae-4858-a4df-9a451e9c4a9c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFhOTRmNGEtMTlhZS00ODU4LWE0ZGYtOWE0NTFlOWM0YTljP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"51a94f4a-19ae-4858-a4df-9a451e9c4a9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:56:16.3951844-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2859,8 +2814,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "64aa0562-ff1b-4aea-bf91-a27cf46fc888" + "d31ee261-97c9-4668-9c72-fcf22637a664" ], "Cache-Control": [ "no-cache" @@ -2870,34 +2828,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "14975" ], "x-ms-correlation-request-id": [ - "9ff6c94f-eadf-4c10-93af-23c3459f64bf" + "86291013-e796-40f0-a6ef-530ce2630495" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220430Z:9ff6c94f-eadf-4c10-93af-23c3459f64bf" + "WESTUS:20150813T185747Z:86291013-e796-40f0-a6ef-530ce2630495" ], "Date": [ - "Tue, 28 Apr 2015 22:04:29 GMT" + "Thu, 13 Aug 2015 18:57:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/51a94f4a-19ae-4858-a4df-9a451e9c4a9c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFhOTRmNGEtMTlhZS00ODU4LWE0ZGYtOWE0NTFlOWM0YTljP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"51a94f4a-19ae-4858-a4df-9a451e9c4a9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T11:56:16.3951844-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2911,8 +2869,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "fcc33cec-d6f6-4b31-8017-2210f3605c2c" + "92b3e68c-9e0b-4098-9804-c74c223001a2" ], "Cache-Control": [ "no-cache" @@ -2922,34 +2883,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "14974" ], "x-ms-correlation-request-id": [ - "16f467a4-377c-4090-846f-5c7bab17a6d5" + "f8fb4595-12da-4432-984b-fcf441c2bf80" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220500Z:16f467a4-377c-4090-846f-5c7bab17a6d5" + "WESTUS:20150813T185817Z:f8fb4595-12da-4432-984b-fcf441c2bf80" ], "Date": [ - "Tue, 28 Apr 2015 22:05:00 GMT" + "Thu, 13 Aug 2015 18:58:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/51a94f4a-19ae-4858-a4df-9a451e9c4a9c?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFhOTRmNGEtMTlhZS00ODU4LWE0ZGYtOWE0NTFlOWM0YTljP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"51a94f4a-19ae-4858-a4df-9a451e9c4a9c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T11:56:16.3951844-07:00\",\r\n \"endTime\": \"2015-08-13T11:58:18.9459981-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2963,8 +2924,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "e2ad1dfe-998e-465a-8089-48974834099e" + "594fe5df-c591-4f0e-8986-d4c8ef43547f" ], "Cache-Control": [ "no-cache" @@ -2974,37 +2938,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "14973" ], "x-ms-correlation-request-id": [ - "ac0ca26f-d7fd-4b4e-93a8-eb10d1e461ea" + "ebd83c3f-6fef-4471-b751-f5f95e5163ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T220530Z:ac0ca26f-d7fd-4b4e-93a8-eb10d1e461ea" + "WESTUS:20150813T185847Z:ebd83c3f-6fef-4471-b751-f5f95e5163ca" ], "Date": [ - "Tue, 28 Apr 2015 22:05:30 GMT" + "Thu, 13 Aug 2015 18:58:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2054?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3012,1430 +2973,20 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8d53c320-3719-4496-bd11-b39f30980a2a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" - ], - "x-ms-correlation-request-id": [ - "a7ea060a-46ca-4cfb-87a2-0acf2965e6a6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T220614Z:a7ea060a-46ca-4cfb-87a2-0acf2965e6a6" - ], - "Date": [ - "Tue, 28 Apr 2015 22:06:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1b4cedcf-71a5-40f7-a5f8-30175e40bf73" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-correlation-request-id": [ - "c0eb88d3-ac75-44cd-8177-e0205a18f399" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T220644Z:c0eb88d3-ac75-44cd-8177-e0205a18f399" - ], - "Date": [ - "Tue, 28 Apr 2015 22:06:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "329d96e3-3fc7-4344-87ed-1033782dd040" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-correlation-request-id": [ - "ab0ea5ec-c1c2-498f-a9f4-bc797a540595" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T220715Z:ab0ea5ec-c1c2-498f-a9f4-bc797a540595" - ], - "Date": [ - "Tue, 28 Apr 2015 22:07:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "cded19b5-1eb3-4d4c-a527-c2e172beae3d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" - ], - "x-ms-correlation-request-id": [ - "f0ac13f6-6977-4578-9f99-c77f88706b17" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T220745Z:f0ac13f6-6977-4578-9f99-c77f88706b17" - ], - "Date": [ - "Tue, 28 Apr 2015 22:07:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a16097b9-8f91-49df-950b-4dbbad9df246" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" - ], - "x-ms-correlation-request-id": [ - "4c2464f7-791d-4c0d-8602-6975f4936a31" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T220815Z:4c2464f7-791d-4c0d-8602-6975f4936a31" - ], - "Date": [ - "Tue, 28 Apr 2015 22:08:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1f37b4b0-dbe6-4761-962f-25bdb55ba5c1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" - ], - "x-ms-correlation-request-id": [ - "dedc1327-7591-4c0f-9f75-995fd6e63e14" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T220845Z:dedc1327-7591-4c0f-9f75-995fd6e63e14" - ], - "Date": [ - "Tue, 28 Apr 2015 22:08:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "d146b38a-4901-4be7-a7ec-be011af5497c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-correlation-request-id": [ - "9ed6deb6-90b3-4b1b-9e49-ac1d1bab27e5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T220915Z:9ed6deb6-90b3-4b1b-9e49-ac1d1bab27e5" - ], - "Date": [ - "Tue, 28 Apr 2015 22:09:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "d3c765e9-d1e6-4928-9daa-b6f66f7c0626" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-correlation-request-id": [ - "cbaac83b-72d5-453e-8b89-0d277b2b1fcc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T220945Z:cbaac83b-72d5-453e-8b89-0d277b2b1fcc" - ], - "Date": [ - "Tue, 28 Apr 2015 22:09:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "80a0f3ff-ca81-4416-ada1-4d3b6d5fb31a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-correlation-request-id": [ - "33b12237-e129-430d-8ade-2af737904c9e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221015Z:33b12237-e129-430d-8ade-2af737904c9e" - ], - "Date": [ - "Tue, 28 Apr 2015 22:10:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f78836ba-448c-4e45-a90b-084c41c706b2" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-correlation-request-id": [ - "061b5da1-ff68-44e2-8df7-9d642e91e50f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221045Z:061b5da1-ff68-44e2-8df7-9d642e91e50f" - ], - "Date": [ - "Tue, 28 Apr 2015 22:10:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1baa13cc-a38e-4ac4-9ba3-4d774799c1ce" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-correlation-request-id": [ - "fc65bcd4-bf48-49e7-9f10-fbdcda3dd26b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221116Z:fc65bcd4-bf48-49e7-9f10-fbdcda3dd26b" - ], - "Date": [ - "Tue, 28 Apr 2015 22:11:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1813d4f5-5d2b-4eb5-8448-b8ee989e5f13" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-correlation-request-id": [ - "1a5134bb-de6c-4d28-a8be-c4b06610747b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221146Z:1a5134bb-de6c-4d28-a8be-c4b06610747b" - ], - "Date": [ - "Tue, 28 Apr 2015 22:11:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "5beb8d9c-f9f4-4b36-8fa9-7cf5551ca53b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-correlation-request-id": [ - "89f644c0-82c4-47d5-a43b-cccc750ef4ab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221217Z:89f644c0-82c4-47d5-a43b-cccc750ef4ab" - ], - "Date": [ - "Tue, 28 Apr 2015 22:12:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "039ced4d-d6bd-4c05-a76f-8ef7f9b78aab" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-correlation-request-id": [ - "4acc516e-71e8-4500-b7bb-cb940e9ffcd5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221247Z:4acc516e-71e8-4500-b7bb-cb940e9ffcd5" - ], - "Date": [ - "Tue, 28 Apr 2015 22:12:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e544f5a4-88a5-4502-a266-6817f25dfaf1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" - ], - "x-ms-correlation-request-id": [ - "1504d246-dcf3-4dbf-90dd-7311d37801cf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221317Z:1504d246-dcf3-4dbf-90dd-7311d37801cf" - ], - "Date": [ - "Tue, 28 Apr 2015 22:13:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/98b14cee-54c3-4bf7-a56b-0bdd3ff56495?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOThiMTRjZWUtNTRjMy00YmY3LWE1NmItMGJkZDNmZjU2NDk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"98b14cee-54c3-4bf7-a56b-0bdd3ff56495\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-04-28T14:53:16.169449-07:00\",\r\n \"endTime\": \"2015-04-28T15:13:25.0611828-07:00\",\r\n \"error\": {\r\n \"code\": \"OSProvisioningTimedOut\",\r\n \"message\": \"OS Provisioning for VM 'vmpstestrg1924' did not finish in the allotted time. The VM may still finish provisioning successfully. Please check provisioning state later.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "431" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "d69a4068-17b7-45a6-b0ef-c0f79dfb8b76" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-correlation-request-id": [ - "eb1653bc-caf4-499f-996c-0357c6f3905f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221347Z:eb1653bc-caf4-499f-996c-0357c6f3905f" - ], - "Date": [ - "Tue, 28 Apr 2015 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Compute/virtualMachines/vmpstestrg1924?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxOTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1924.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic1pstestrg1924\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Network/networkInterfaces/nic2pstestrg1924\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Compute/virtualMachines/vmpstestrg1924\",\r\n \"name\": \"vmpstestrg1924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1544" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a1ef5f60-e18b-4276-a333-dcdcf91e1bfa" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-correlation-request-id": [ - "8e6b058e-ecd9-4008-b737-ef0572e28f58" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221347Z:8e6b058e-ecd9-4008-b737-ef0572e28f58" - ], - "Date": [ - "Tue, 28 Apr 2015 22:13:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1924/providers/Microsoft.Compute/virtualMachines/vmpstestrg1924?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxOTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/e4d82e85-78ea-4628-9f9a-5a62bc554b79?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e4d82e85-78ea-4628-9f9a-5a62bc554b79" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/e4d82e85-78ea-4628-9f9a-5a62bc554b79?monitor=true&api-version=2015-06-15" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "58070213-2c26-42d8-97fb-1769633330ef" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221349Z:58070213-2c26-42d8-97fb-1769633330ef" - ], - "Date": [ - "Tue, 28 Apr 2015 22:13:49 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/e4d82e85-78ea-4628-9f9a-5a62bc554b79?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTRkODJlODUtNzhlYS00NjI4LTlmOWEtNWE2MmJjNTU0Yjc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e4d82e85-78ea-4628-9f9a-5a62bc554b79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:13:42.6862015-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "327b9f1e-d538-4a73-81ec-16bc6bbd9f72" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-correlation-request-id": [ - "4f7e5b78-0f4c-4e20-a5c3-8431c0382425" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221349Z:4f7e5b78-0f4c-4e20-a5c3-8431c0382425" - ], - "Date": [ - "Tue, 28 Apr 2015 22:13:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/e4d82e85-78ea-4628-9f9a-5a62bc554b79?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTRkODJlODUtNzhlYS00NjI4LTlmOWEtNWE2MmJjNTU0Yjc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e4d82e85-78ea-4628-9f9a-5a62bc554b79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:13:42.6862015-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "dcd0148e-e4b6-476b-9924-6f631624bebe" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-correlation-request-id": [ - "305130b1-36aa-4455-9a6d-d30ac182a08f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221419Z:305130b1-36aa-4455-9a6d-d30ac182a08f" - ], - "Date": [ - "Tue, 28 Apr 2015 22:14:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/e4d82e85-78ea-4628-9f9a-5a62bc554b79?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTRkODJlODUtNzhlYS00NjI4LTlmOWEtNWE2MmJjNTU0Yjc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e4d82e85-78ea-4628-9f9a-5a62bc554b79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:13:42.6862015-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "850a4ff4-4a8e-476b-af54-ced2baefe49b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-correlation-request-id": [ - "be8062be-7ffc-472f-92d6-e934aacece17" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221449Z:be8062be-7ffc-472f-92d6-e934aacece17" - ], - "Date": [ - "Tue, 28 Apr 2015 22:14:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/e4d82e85-78ea-4628-9f9a-5a62bc554b79?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTRkODJlODUtNzhlYS00NjI4LTlmOWEtNWE2MmJjNTU0Yjc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e4d82e85-78ea-4628-9f9a-5a62bc554b79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:13:42.6862015-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1f35e8fc-fc6e-41e0-909b-1b440cc8cad9" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-correlation-request-id": [ - "b928f413-09be-4e93-8d2c-1f8356b7b670" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221519Z:b928f413-09be-4e93-8d2c-1f8356b7b670" - ], - "Date": [ - "Tue, 28 Apr 2015 22:15:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/e4d82e85-78ea-4628-9f9a-5a62bc554b79?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTRkODJlODUtNzhlYS00NjI4LTlmOWEtNWE2MmJjNTU0Yjc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e4d82e85-78ea-4628-9f9a-5a62bc554b79\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:13:42.6862015-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "dddbf3c1-e988-4cb4-b0c2-18f51e44e7b6" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-correlation-request-id": [ - "98f27043-d70d-45b8-83ef-b8784b1083a3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221549Z:98f27043-d70d-45b8-83ef-b8784b1083a3" - ], - "Date": [ - "Tue, 28 Apr 2015 22:15:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/e4d82e85-78ea-4628-9f9a-5a62bc554b79?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTRkODJlODUtNzhlYS00NjI4LTlmOWEtNWE2MmJjNTU0Yjc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e4d82e85-78ea-4628-9f9a-5a62bc554b79\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T15:13:42.6862015-07:00\",\r\n \"endTime\": \"2015-04-28T15:15:45.2334024-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "97f56a59-e044-49c7-964c-9d39efb97e31" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" - ], - "x-ms-correlation-request-id": [ - "078569d0-0294-4ed3-9a64-95884941571e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221620Z:078569d0-0294-4ed3-9a64-95884941571e" - ], - "Date": [ - "Tue, 28 Apr 2015 22:16:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1924?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTkyND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "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" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "66f240f6-e676-44d7-a470-d27682a36c9f" - ], - "x-ms-correlation-request-id": [ - "66f240f6-e676-44d7-a470-d27682a36c9f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221621Z:66f240f6-e676-44d7-a470-d27682a36c9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:16:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-request-id": [ - "86d95257-d0d5-4f93-aced-886efb668c70" - ], - "x-ms-correlation-request-id": [ - "86d95257-d0d5-4f93-aced-886efb668c70" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221621Z:86d95257-d0d5-4f93-aced-886efb668c70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:16:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" - ], - "x-ms-request-id": [ - "fe6b116e-ef89-4a98-aced-8b5c470f41f4" - ], - "x-ms-correlation-request-id": [ - "fe6b116e-ef89-4a98-aced-8b5c470f41f4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T221636Z:fe6b116e-ef89-4a98-aced-8b5c470f41f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:16:36 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "1197" ], "x-ms-request-id": [ - "2d60a609-60be-4245-a99b-5eaf59e6620d" + "8729c7f7-0777-4d3b-9449-ec65249a2983" ], "x-ms-correlation-request-id": [ - "2d60a609-60be-4245-a99b-5eaf59e6620d" + "8729c7f7-0777-4d3b-9449-ec65249a2983" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221651Z:2d60a609-60be-4245-a99b-5eaf59e6620d" + "WESTUS:20150813T185847Z:8729c7f7-0777-4d3b-9449-ec65249a2983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4444,17 +2995,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:16:50 GMT" + "Thu, 13 Aug 2015 18:58:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURVMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4480,16 +3031,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14971" ], "x-ms-request-id": [ - "917412af-aeb1-46e0-8a3a-039b985e8706" + "13b2f3a8-79ff-4f1a-bb6c-d75936dbfb94" ], "x-ms-correlation-request-id": [ - "917412af-aeb1-46e0-8a3a-039b985e8706" + "13b2f3a8-79ff-4f1a-bb6c-d75936dbfb94" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221706Z:917412af-aeb1-46e0-8a3a-039b985e8706" + "WESTUS:20150813T185847Z:13b2f3a8-79ff-4f1a-bb6c-d75936dbfb94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4498,17 +3049,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:17:05 GMT" + "Thu, 13 Aug 2015 18:58:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURVMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4534,16 +3085,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14970" ], "x-ms-request-id": [ - "6350674c-ed5f-4ccd-a966-4334272356e0" + "70f8fb34-5084-4213-8cac-026f1452d51a" ], "x-ms-correlation-request-id": [ - "6350674c-ed5f-4ccd-a966-4334272356e0" + "70f8fb34-5084-4213-8cac-026f1452d51a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221721Z:6350674c-ed5f-4ccd-a966-4334272356e0" + "WESTUS:20150813T185902Z:70f8fb34-5084-4213-8cac-026f1452d51a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4552,17 +3103,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:17:21 GMT" + "Thu, 13 Aug 2015 18:59:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURVMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4588,16 +3139,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14969" ], "x-ms-request-id": [ - "5484fb4f-bfd4-4c92-af07-11d49fda68fd" + "81ad40d5-be01-4b29-99d8-9263fae353f6" ], "x-ms-correlation-request-id": [ - "5484fb4f-bfd4-4c92-af07-11d49fda68fd" + "81ad40d5-be01-4b29-99d8-9263fae353f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221736Z:5484fb4f-bfd4-4c92-af07-11d49fda68fd" + "WESTUS:20150813T185917Z:81ad40d5-be01-4b29-99d8-9263fae353f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4606,17 +3157,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:17:36 GMT" + "Thu, 13 Aug 2015 18:59:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURVMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4642,16 +3193,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14968" ], "x-ms-request-id": [ - "998a2e53-6799-4d2c-acaf-42ca6631ac9e" + "7e3a987d-b9a2-4b6e-bef1-56907bf17980" ], "x-ms-correlation-request-id": [ - "998a2e53-6799-4d2c-acaf-42ca6631ac9e" + "7e3a987d-b9a2-4b6e-bef1-56907bf17980" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221751Z:998a2e53-6799-4d2c-acaf-42ca6631ac9e" + "WESTUS:20150813T185932Z:7e3a987d-b9a2-4b6e-bef1-56907bf17980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4660,17 +3211,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:17:51 GMT" + "Thu, 13 Aug 2015 18:59:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURVMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,16 +3247,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14967" ], "x-ms-request-id": [ - "8f289774-153c-4f69-88c8-c00410785b2b" + "51e9f507-4a34-4009-9a48-220be191bb4c" ], "x-ms-correlation-request-id": [ - "8f289774-153c-4f69-88c8-c00410785b2b" + "51e9f507-4a34-4009-9a48-220be191bb4c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221807Z:8f289774-153c-4f69-88c8-c00410785b2b" + "WESTUS:20150813T185947Z:51e9f507-4a34-4009-9a48-220be191bb4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4714,17 +3265,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:18:06 GMT" + "Thu, 13 Aug 2015 18:59:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURVMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4750,16 +3301,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14966" ], "x-ms-request-id": [ - "f5cabfc6-8d86-42cd-bf44-b71f2a87201b" + "5bc12a36-06f3-4b19-bcf2-33cd97da5c26" ], "x-ms-correlation-request-id": [ - "f5cabfc6-8d86-42cd-bf44-b71f2a87201b" + "5bc12a36-06f3-4b19-bcf2-33cd97da5c26" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221822Z:f5cabfc6-8d86-42cd-bf44-b71f2a87201b" + "WESTUS:20150813T190002Z:5bc12a36-06f3-4b19-bcf2-33cd97da5c26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4768,17 +3319,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:18:21 GMT" + "Thu, 13 Aug 2015 19:00:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURVMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,16 +3355,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14965" ], "x-ms-request-id": [ - "de64271f-f003-4bf5-a492-cd93c7fa1c84" + "8abf0bfe-fda7-4065-81d1-e4aaf0485d1b" ], "x-ms-correlation-request-id": [ - "de64271f-f003-4bf5-a492-cd93c7fa1c84" + "8abf0bfe-fda7-4065-81d1-e4aaf0485d1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221837Z:de64271f-f003-4bf5-a492-cd93c7fa1c84" + "WESTUS:20150813T190017Z:8abf0bfe-fda7-4065-81d1-e4aaf0485d1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4822,17 +3373,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:18:36 GMT" + "Thu, 13 Aug 2015 19:00:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE5MjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekU1TWpRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURVMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4855,16 +3406,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14964" ], "x-ms-request-id": [ - "4a609b37-b018-41f4-8278-cd087892369c" + "aa39b5c3-1ebc-4b16-a52b-10a1644fbb78" ], "x-ms-correlation-request-id": [ - "4a609b37-b018-41f4-8278-cd087892369c" + "aa39b5c3-1ebc-4b16-a52b-10a1644fbb78" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221852Z:4a609b37-b018-41f4-8278-cd087892369c" + "WESTUS:20150813T190033Z:aa39b5c3-1ebc-4b16-a52b-10a1644fbb78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4873,7 +3424,7 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:18:52 GMT" + "Thu, 13 Aug 2015 19:00:32 GMT" ] }, "StatusCode": 200 @@ -4881,12 +3432,12 @@ ], "Names": { "Test-MultipleNetworkInterface": [ - "pstestrg1924" + "crptestps2054" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineSingleNetworkInterface.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineSingleNetworkInterface.json index ca25e48ed92a..f01a29935823 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineSingleNetworkInterface.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineSingleNetworkInterface.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5528?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTUyOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-request-id": [ + "d8f1c90a-b4b8-43fc-8f3f-8aa7ccd6c8e3" + ], + "x-ms-correlation-request-id": [ + "d8f1c90a-b4b8-43fc-8f3f-8aa7ccd6c8e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T190123Z:d8f1c90a-b4b8-43fc-8f3f-8aa7ccd6c8e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 19:01:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps6105?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14891" ], "x-ms-request-id": [ - "d24ba364-4b01-4dd1-9660-bdd0367e0755" + "ae332ab8-9022-4656-a4b8-a72894a92597" ], "x-ms-correlation-request-id": [ - "d24ba364-4b01-4dd1-9660-bdd0367e0755" + "ae332ab8-9022-4656-a4b8-a72894a92597" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221928Z:d24ba364-4b01-4dd1-9660-bdd0367e0755" + "WESTUS:20150813T190123Z:ae332ab8-9022-4656-a4b8-a72894a92597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:19:28 GMT" + "Thu, 13 Aug 2015 19:01:23 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5528?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTUyOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps6105?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14994" ], "x-ms-request-id": [ - "5a5641f8-89bf-487f-996c-576966966a41" + "c3268045-09fc-4705-8152-6aec1386d33d" ], "x-ms-correlation-request-id": [ - "5a5641f8-89bf-487f-996c-576966966a41" + "c3268045-09fc-4705-8152-6aec1386d33d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222841Z:5a5641f8-89bf-487f-996c-576966966a41" + "WESTUS:20150813T191100Z:c3268045-09fc-4705-8152-6aec1386d33d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:28:41 GMT" + "Thu, 13 Aug 2015 19:10:59 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5528?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTUyOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps6105?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528\",\r\n \"name\": \"pstestrg5528\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105\",\r\n \"name\": \"crptestps6105\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,13 +178,13 @@ "1198" ], "x-ms-request-id": [ - "5fe87b50-d1c1-4102-b38f-1c25c002c6d5" + "068f0d63-b4b5-4324-b413-5c94b9075fcb" ], "x-ms-correlation-request-id": [ - "5fe87b50-d1c1-4102-b38f-1c25c002c6d5" + "068f0d63-b4b5-4324-b413-5c94b9075fcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221928Z:5fe87b50-d1c1-4102-b38f-1c25c002c6d5" + "WESTUS:20150813T190124Z:068f0d63-b4b5-4324-b413-5c94b9075fcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:19:28 GMT" + "Thu, 13 Aug 2015 19:01:23 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14890" ], "x-ms-request-id": [ - "92fb8b81-acfc-4fdf-b3b2-a3849bd3caaa" + "5d8fc106-a102-4fff-a1fe-cbd3897760b9" ], "x-ms-correlation-request-id": [ - "92fb8b81-acfc-4fdf-b3b2-a3849bd3caaa" + "5d8fc106-a102-4fff-a1fe-cbd3897760b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221929Z:92fb8b81-acfc-4fdf-b3b2-a3849bd3caaa" + "WESTUS:20150813T190124Z:5d8fc106-a102-4fff-a1fe-cbd3897760b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:19:28 GMT" + "Thu, 13 Aug 2015 19:01:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5528/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps6105/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a5ff3b76-63fc-4aab-994f-f0f2b0f2223c" + "westus:804f8b92-1624-447e-8a1e-f9f64c83bf11" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14995" ], "x-ms-correlation-request-id": [ - "ccad7f79-0862-484f-bf06-2457c2acc1d8" + "b47ac6a2-b3f8-44b2-96d9-eef1e4215653" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221930Z:ccad7f79-0862-484f-bf06-2457c2acc1d8" + "WESTUS:20150813T190124Z:b47ac6a2-b3f8-44b2-96d9-eef1e4215653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:19:30 GMT" + "Thu, 13 Aug 2015 19:01:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU1Mjg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjEwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps6105' under resource group 'crptestps6105' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "826052f5-2e9f-4f04-8d7d-5e805afb44ad" + "3554cf5d-fea8-4034-bfb6-94151445ce1b" ], "x-ms-correlation-request-id": [ - "826052f5-2e9f-4f04-8d7d-5e805afb44ad" + "3554cf5d-fea8-4034-bfb6-94151445ce1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221953Z:826052f5-2e9f-4f04-8d7d-5e805afb44ad" + "WESTUS:20150813T190124Z:3554cf5d-fea8-4034-bfb6-94151445ce1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:19:53 GMT" + "Thu, 13 Aug 2015 19:01:24 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU1Mjg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjEwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528\",\r\n \"etag\": \"W/\\\"1c4f8ae2-395a-4b1a-a0c7-077012a648f1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528/subnets/subnetpstestrg5528\",\r\n \"etag\": \"W/\\\"1c4f8ae2-395a-4b1a-a0c7-077012a648f1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105\",\r\n \"etag\": \"W/\\\"c1ba3e38-a41b-4c65-a891-5926883854e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1f8e4933-0918-48df-9f0e-b69dd15e8419\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105/subnets/subnetcrptestps6105\",\r\n \"etag\": \"W/\\\"c1ba3e38-a41b-4c65-a891-5926883854e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "f1faa333-f22e-4a6b-b36b-715d6d9b452e" + "f6cc3027-2054-4c99-84af-e02f1afb3406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"1c4f8ae2-395a-4b1a-a0c7-077012a648f1\"" + "W/\"c1ba3e38-a41b-4c65-a891-5926883854e7\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14994" ], "x-ms-correlation-request-id": [ - "60efd4c1-e758-4726-9eef-42ab27f9cd08" + "0c1cba74-b687-4411-957f-a0ee920c3afe" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221954Z:60efd4c1-e758-4726-9eef-42ab27f9cd08" + "WESTUS:20150813T190125Z:0c1cba74-b687-4411-957f-a0ee920c3afe" ], "Date": [ - "Tue, 28 Apr 2015 22:19:53 GMT" + "Thu, 13 Aug 2015 19:01:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU1Mjg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjEwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528\",\r\n \"etag\": \"W/\\\"1c4f8ae2-395a-4b1a-a0c7-077012a648f1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528/subnets/subnetpstestrg5528\",\r\n \"etag\": \"W/\\\"1c4f8ae2-395a-4b1a-a0c7-077012a648f1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105\",\r\n \"etag\": \"W/\\\"c1ba3e38-a41b-4c65-a891-5926883854e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1f8e4933-0918-48df-9f0e-b69dd15e8419\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105/subnets/subnetcrptestps6105\",\r\n \"etag\": \"W/\\\"c1ba3e38-a41b-4c65-a891-5926883854e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "590723e7-2def-4a4d-8b2c-d968b8b6b9f3" + "c53b9fcb-a2a5-49d2-8d27-bb614cdc1541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"1c4f8ae2-395a-4b1a-a0c7-077012a648f1\"" + "W/\"c1ba3e38-a41b-4c65-a891-5926883854e7\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14993" ], "x-ms-correlation-request-id": [ - "f8b758ba-deee-46a3-8ff5-c11fea1baf86" + "59180b3a-c61a-4cf7-af7c-1e8616939aa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221954Z:f8b758ba-deee-46a3-8ff5-c11fea1baf86" + "WESTUS:20150813T190125Z:59180b3a-c61a-4cf7-af7c-1e8616939aa5" ], "Date": [ - "Tue, 28 Apr 2015 22:19:53 GMT" + "Thu, 13 Aug 2015 19:01:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU1Mjg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualnetworks/vnetcrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNjEwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg5528\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg5528\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps6105\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps6105\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528\",\r\n \"etag\": \"W/\\\"ffbf32b8-42ed-485c-bb9f-68926a1e640e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528/subnets/subnetpstestrg5528\",\r\n \"etag\": \"W/\\\"ffbf32b8-42ed-485c-bb9f-68926a1e640e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105\",\r\n \"etag\": \"W/\\\"e84f601c-e8d1-4fb2-aeb9-4f8bab863add\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1f8e4933-0918-48df-9f0e-b69dd15e8419\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105/subnets/subnetcrptestps6105\",\r\n \"etag\": \"W/\\\"e84f601c-e8d1-4fb2-aeb9-4f8bab863add\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "14e23e66-318f-406c-9a22-1f148a588869" + "3ae8d7a3-6c58-47b2-a582-fb001853441c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/14e23e66-318f-406c-9a22-1f148a588869?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/3ae8d7a3-6c58-47b2-a582-fb001853441c?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "d00f5711-772f-4bc4-b701-1a3e4fb4c09b" + "cef9469f-12f8-4b5b-af0f-2ff3e28003b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221954Z:d00f5711-772f-4bc4-b701-1a3e4fb4c09b" + "WESTUS:20150813T190125Z:cef9469f-12f8-4b5b-af0f-2ff3e28003b2" ], "Date": [ - "Tue, 28 Apr 2015 22:19:53 GMT" + "Thu, 13 Aug 2015 19:01:24 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/14e23e66-318f-406c-9a22-1f148a588869?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRlMjNlNjYtMzE4Zi00MDZjLTlhMjItMWYxNDhhNTg4ODY5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/3ae8d7a3-6c58-47b2-a582-fb001853441c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2FlOGQ3YTMtNmM1OC00N2IyLWE1ODItZmIwMDE4NTM0NDFjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "5a2dff3f-ece1-4610-9a33-a54c92a0809a" + "1d157399-23e5-47ca-8f7c-153fec9f2551" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14995" ], "x-ms-correlation-request-id": [ - "5ae0ceee-6369-42b4-ba5e-88354525a69a" + "7f9b946b-a53b-4501-97d0-17d1aa6ec570" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221954Z:5ae0ceee-6369-42b4-ba5e-88354525a69a" + "WESTUS:20150813T190125Z:7f9b946b-a53b-4501-97d0-17d1aa6ec570" ], "Date": [ - "Tue, 28 Apr 2015 22:19:53 GMT" + "Thu, 13 Aug 2015 19:01:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU1MjgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjEwNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps6105' under resource group 'crptestps6105' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "7b68a137-0d59-47a0-88b8-e97788dde8c8" + "77380702-cace-4843-b3e7-16c0ec039f78" ], "x-ms-correlation-request-id": [ - "7b68a137-0d59-47a0-88b8-e97788dde8c8" + "77380702-cace-4843-b3e7-16c0ec039f78" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221954Z:7b68a137-0d59-47a0-88b8-e97788dde8c8" + "WESTUS:20150813T190125Z:77380702-cace-4843-b3e7-16c0ec039f78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +617,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:19:54 GMT" + "Thu, 13 Aug 2015 19:01:25 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU1MjgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjEwNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +632,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528\",\r\n \"etag\": \"W/\\\"82da5ce2-db62-4c63-93a9-219137850a34\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5528\",\r\n \"fqdn\": \"pubippstestrg5528.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105\",\r\n \"etag\": \"W/\\\"8c8d0373-8362-43ee-a612-63eca03192fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3680a322-7c9b-4f41-b31a-fb2b81246362\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6105\",\r\n \"fqdn\": \"pubipcrptestps6105.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "515010f9-b456-4e6d-8b76-89433d8f9433" + "49c623a4-f362-4914-84c1-246100333183" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +656,30 @@ "no-cache" ], "ETag": [ - "W/\"82da5ce2-db62-4c63-93a9-219137850a34\"" + "W/\"8c8d0373-8362-43ee-a612-63eca03192fd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14990" ], "x-ms-correlation-request-id": [ - "b5aa9a35-b228-4b41-ae58-45258a96216d" + "29e181e0-a748-44b5-b33a-82f9a5a0653f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221955Z:b5aa9a35-b228-4b41-ae58-45258a96216d" + "WESTUS:20150813T190126Z:29e181e0-a748-44b5-b33a-82f9a5a0653f" ], "Date": [ - "Tue, 28 Apr 2015 22:19:55 GMT" + "Thu, 13 Aug 2015 19:01:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU1MjgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjEwNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528\",\r\n \"etag\": \"W/\\\"82da5ce2-db62-4c63-93a9-219137850a34\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5528\",\r\n \"fqdn\": \"pubippstestrg5528.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105\",\r\n \"etag\": \"W/\\\"8c8d0373-8362-43ee-a612-63eca03192fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3680a322-7c9b-4f41-b31a-fb2b81246362\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6105\",\r\n \"fqdn\": \"pubipcrptestps6105.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "4219923b-46de-4723-aa99-b9ed4d14f5eb" + "8fe3db75-b0d4-4393-bedf-1b2a23d7079d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +711,47 @@ "no-cache" ], "ETag": [ - "W/\"82da5ce2-db62-4c63-93a9-219137850a34\"" + "W/\"8c8d0373-8362-43ee-a612-63eca03192fd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14989" ], "x-ms-correlation-request-id": [ - "a1035ddd-b86a-4b31-a258-021b1828e28e" + "5df85529-6711-41a0-865c-f4f4b52dde93" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221956Z:a1035ddd-b86a-4b31-a258-021b1828e28e" + "WESTUS:20150813T190126Z:5df85529-6711-41a0-865c-f4f4b52dde93" ], "Date": [ - "Tue, 28 Apr 2015 22:19:55 GMT" + "Thu, 13 Aug 2015 19:01:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU1MjgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNjEwNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5528\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg5528\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6105\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps6105\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "254" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528\",\r\n \"etag\": \"W/\\\"7adb445a-0a87-415f-9f11-b40f61bd1c24\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5528\",\r\n \"fqdn\": \"pubippstestrg5528.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105\",\r\n \"etag\": \"W/\\\"cdbf26f5-5ad5-42dc-97db-b0f62d0904c9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3680a322-7c9b-4f41-b31a-fb2b81246362\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps6105\",\r\n \"fqdn\": \"pubipcrptestps6105.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +766,10 @@ "10" ], "x-ms-request-id": [ - "a6be32b4-d535-4c4a-9d51-f0fbb09010f7" + "99fcc63b-30f7-40bf-97e1-2e7706fa9fe4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a6be32b4-d535-4c4a-9d51-f0fbb09010f7?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/99fcc63b-30f7-40bf-97e1-2e7706fa9fe4?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +782,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "71b24f68-7cfb-4444-b12e-905fef19575a" + "850b4cf0-af22-4835-9c86-e97fe0f0e267" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221955Z:71b24f68-7cfb-4444-b12e-905fef19575a" + "WESTUS:20150813T190126Z:850b4cf0-af22-4835-9c86-e97fe0f0e267" ], "Date": [ - "Tue, 28 Apr 2015 22:19:54 GMT" + "Thu, 13 Aug 2015 19:01:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a6be32b4-d535-4c4a-9d51-f0fbb09010f7?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiZTMyYjQtZDUzNS00YzRhLTlkNTEtZjBmYmIwOTAxMGY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/99fcc63b-30f7-40bf-97e1-2e7706fa9fe4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTlmY2M2M2ItMzBmNy00MGJmLTk3ZTEtMmU3NzA2ZmE5ZmU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +824,7 @@ "no-cache" ], "x-ms-request-id": [ - "d67729b6-7e89-4d68-8349-ae86acd18727" + "0c3e4a56-3187-4b34-8913-b9267282c127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14991" ], "x-ms-correlation-request-id": [ - "983d302d-1766-42a0-a644-53a8433a60c1" + "65a4fb62-edda-47b4-a3f9-509cdbc93ad2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221955Z:983d302d-1766-42a0-a644-53a8433a60c1" + "WESTUS:20150813T190126Z:65a4fb62-edda-47b4-a3f9-509cdbc93ad2" ], "Date": [ - "Tue, 28 Apr 2015 22:19:55 GMT" + "Thu, 13 Aug 2015 19:01:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,10 +861,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps6105' under resource group 'crptestps6105' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,13 +879,13 @@ "gateway" ], "x-ms-request-id": [ - "8f7ae444-924c-48dc-801e-8b597d1043ec" + "79bb963c-4f01-48ab-8d86-9227ba790caa" ], "x-ms-correlation-request-id": [ - "8f7ae444-924c-48dc-801e-8b597d1043ec" + "79bb963c-4f01-48ab-8d86-9227ba790caa" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221956Z:8f7ae444-924c-48dc-801e-8b597d1043ec" + "WESTUS:20150813T190126Z:79bb963c-4f01-48ab-8d86-9227ba790caa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +894,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:19:55 GMT" + "Thu, 13 Aug 2015 19:01:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +909,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528\",\r\n \"etag\": \"W/\\\"6e68c346-2941-4f1d-953c-e4a5fc0b7080\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"6e68c346-2941-4f1d-953c-e4a5fc0b7080\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528/subnets/subnetpstestrg5528\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105\",\r\n \"etag\": \"W/\\\"a4a3d552-8cff-406b-9983-e51796d65450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef304458-e09f-46b3-8110-3852e4334039\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a4a3d552-8cff-406b-9983-e51796d65450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105/subnets/subnetcrptestps6105\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +924,7 @@ "no-cache" ], "x-ms-request-id": [ - "288c1927-2d89-47d9-bb13-ba19b1a327c1" + "d1a18872-50bf-482b-b03e-b1f83cb67033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +933,30 @@ "no-cache" ], "ETag": [ - "W/\"6e68c346-2941-4f1d-953c-e4a5fc0b7080\"" + "W/\"a4a3d552-8cff-406b-9983-e51796d65450\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14986" ], "x-ms-correlation-request-id": [ - "04423564-6e92-4bbe-b73b-cb8803f893ae" + "baf4c3e4-485c-498a-82f2-0dcdb9cd34d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221957Z:04423564-6e92-4bbe-b73b-cb8803f893ae" + "WESTUS:20150813T190127Z:baf4c3e4-485c-498a-82f2-0dcdb9cd34d0" ], "Date": [ - "Tue, 28 Apr 2015 22:19:56 GMT" + "Thu, 13 Aug 2015 19:01:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528\",\r\n \"etag\": \"W/\\\"6e68c346-2941-4f1d-953c-e4a5fc0b7080\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"6e68c346-2941-4f1d-953c-e4a5fc0b7080\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528/subnets/subnetpstestrg5528\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105\",\r\n \"etag\": \"W/\\\"a4a3d552-8cff-406b-9983-e51796d65450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef304458-e09f-46b3-8110-3852e4334039\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a4a3d552-8cff-406b-9983-e51796d65450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105/subnets/subnetcrptestps6105\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "ab6ef13e-0ddb-4fbf-9ff0-4f08e53a4417" + "4cc740a6-28f3-4c72-92a7-d4fc82ee694e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,30 +988,30 @@ "no-cache" ], "ETag": [ - "W/\"6e68c346-2941-4f1d-953c-e4a5fc0b7080\"" + "W/\"a4a3d552-8cff-406b-9983-e51796d65450\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14985" ], "x-ms-correlation-request-id": [ - "f3965f85-0cbf-43b2-9232-0baef1b3e661" + "1aa3993c-7b6c-4fdd-abfe-52713ef17d72" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221957Z:f3965f85-0cbf-43b2-9232-0baef1b3e661" + "WESTUS:20150813T190127Z:1aa3993c-7b6c-4fdd-abfe-52713ef17d72" ], "Date": [ - "Tue, 28 Apr 2015 22:19:56 GMT" + "Thu, 13 Aug 2015 19:01:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528\",\r\n \"etag\": \"W/\\\"3c07dd17-ae78-4a6c-8e40-b9409b40c497\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3c07dd17-ae78-4a6c-8e40-b9409b40c497\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528/subnets/subnetpstestrg5528\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-31-53-FC\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Compute/virtualMachines/vmpstestrg5528\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105\",\r\n \"etag\": \"W/\\\"4962daab-a3ef-4f9c-bd37-4ea9d54c4767\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef304458-e09f-46b3-8110-3852e4334039\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4962daab-a3ef-4f9c-bd37-4ea9d54c4767\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105/subnets/subnetcrptestps6105\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-31-2D-D2\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Compute/virtualMachines/vmcrptestps6105\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1549" + "1656" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "62441c81-8462-47a6-8702-3a986de32bb9" + "eaf11d1c-6432-471f-8aa6-c48d08691fda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,47 +1043,47 @@ "no-cache" ], "ETag": [ - "W/\"3c07dd17-ae78-4a6c-8e40-b9409b40c497\"" + "W/\"4962daab-a3ef-4f9c-bd37-4ea9d54c4767\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14966" ], "x-ms-correlation-request-id": [ - "a5834c7f-a703-4309-a205-383c5ba67ecc" + "6ddd6ea4-1370-4383-85cd-74f7fd41d4eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222557Z:a5834c7f-a703-4309-a205-383c5ba67ecc" + "WESTUS:20150813T190829Z:6ddd6ea4-1370-4383-85cd-74f7fd41d4eb" ], "Date": [ - "Tue, 28 Apr 2015 22:25:57 GMT" + "Thu, 13 Aug 2015 19:08:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528/subnets/subnetpstestrg5528\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg5528\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105/subnets/subnetcrptestps6105\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps6105\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "857" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5528\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528\",\r\n \"etag\": \"W/\\\"6e68c346-2941-4f1d-953c-e4a5fc0b7080\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"6e68c346-2941-4f1d-953c-e4a5fc0b7080\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5528\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5528/subnets/subnetpstestrg5528\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps6105\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105\",\r\n \"etag\": \"W/\\\"a4a3d552-8cff-406b-9983-e51796d65450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef304458-e09f-46b3-8110-3852e4334039\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a4a3d552-8cff-406b-9983-e51796d65450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps6105\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/virtualNetworks/vnetcrptestps6105/subnets/subnetcrptestps6105\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,10 +1095,10 @@ "no-cache" ], "x-ms-request-id": [ - "3d474633-ae88-42ef-b76e-127e8ccfbd65" + "3e010a2f-eeaf-4281-a815-c72b4667557a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/3d474633-ae88-42ef-b76e-127e8ccfbd65?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/3e010a2f-eeaf-4281-a815-c72b4667557a?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "eec07f5a-4c9b-435c-98ec-e91daeb5f9b9" + "986eda65-25b0-46a0-a6ee-abd059e05876" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221957Z:eec07f5a-4c9b-435c-98ec-e91daeb5f9b9" + "WESTUS:20150813T190127Z:986eda65-25b0-46a0-a6ee-abd059e05876" ], "Date": [ - "Tue, 28 Apr 2015 22:19:56 GMT" + "Thu, 13 Aug 2015 19:01:27 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/3d474633-ae88-42ef-b76e-127e8ccfbd65?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2Q0NzQ2MzMtYWU4OC00MmVmLWI3NmUtMTI3ZThjY2ZiZDY1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/3e010a2f-eeaf-4281-a815-c72b4667557a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2UwMTBhMmYtZWVhZi00MjgxLWE4MTUtYzcyYjQ2Njc1NTdhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1105,7 +1153,7 @@ "no-cache" ], "x-ms-request-id": [ - "f0425357-1bed-41ce-95c5-c1e46c4adea7" + "5af21d99-0cd6-476b-95e3-91af8630b9f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14987" ], "x-ms-correlation-request-id": [ - "df7c6c18-74e3-4839-b5de-2cd491951784" + "94fcd32d-3939-46a5-b4f5-39cc7c88970d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221957Z:df7c6c18-74e3-4839-b5de-2cd491951784" + "WESTUS:20150813T190127Z:94fcd32d-3939-46a5-b4f5-39cc7c88970d" ], "Date": [ - "Tue, 28 Apr 2015 22:19:56 GMT" + "Thu, 13 Aug 2015 19:01:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Storage/storageAccounts/stopstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTUyOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Storage/storageAccounts/stocrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1145,7 +1193,7 @@ "88" ], "x-ms-client-request-id": [ - "ddd84587-bf2a-4457-9702-169e39986a58" + "8b03092e-1c42-45e3-a02d-c57ad7da7e4a" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1169,44 +1217,44 @@ "25" ], "x-ms-request-id": [ - "62602985-6f56-4f32-92e2-60999d6bf20e" + "8df00331-855d-4305-a19f-b1fb469b3da2" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/62602985-6f56-4f32-92e2-60999d6bf20e?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/8df00331-855d-4305-a19f-b1fb469b3da2?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "7470fe2d-ffe4-408e-9853-6711ac848c27" + "2385e3c2-77a1-4856-8d70-c4d81329a228" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221934Z:7470fe2d-ffe4-408e-9853-6711ac848c27" + "WESTUS:20150813T190129Z:2385e3c2-77a1-4856-8d70-c4d81329a228" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:19:34 GMT" + "Thu, 13 Aug 2015 19:01:29 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/62602985-6f56-4f32-92e2-60999d6bf20e?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzYyNjAyOTg1LTZmNTYtNGYzMi05MmUyLTYwOTk5ZDZiZjIwZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/8df00331-855d-4305-a19f-b1fb469b3da2?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhkZjAwMzMxLTg1NWQtNDMwNS1hMTlmLWIxZmI0NjliM2RhMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3db30121-a74c-44bd-bba8-ea1ac3b11350" + "ff7d0e52-08f6-4450-bb38-fdadbf067016" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,44 +1278,44 @@ "25" ], "x-ms-request-id": [ - "ab5a29e6-1e5f-4a74-96a0-ea2ee0d8cbcd" + "f6c4d9d1-c60c-4b97-a4f8-c0b266abbbdb" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/62602985-6f56-4f32-92e2-60999d6bf20e?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/8df00331-855d-4305-a19f-b1fb469b3da2?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14963" ], "x-ms-correlation-request-id": [ - "aa4c4124-5097-419b-9034-21fd3a85a9ce" + "0b8f6b96-6ca5-40a0-95af-dec6c466acaf" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T221935Z:aa4c4124-5097-419b-9034-21fd3a85a9ce" + "WESTUS:20150813T190129Z:0b8f6b96-6ca5-40a0-95af-dec6c466acaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:19:35 GMT" + "Thu, 13 Aug 2015 19:01:29 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/62602985-6f56-4f32-92e2-60999d6bf20e?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzYyNjAyOTg1LTZmNTYtNGYzMi05MmUyLTYwOTk5ZDZiZjIwZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/8df00331-855d-4305-a19f-b1fb469b3da2?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhkZjAwMzMxLTg1NWQtNDMwNS1hMTlmLWIxZmI0NjliM2RhMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea7189e0-9056-4447-89d1-f104323765c6" + "f825cf02-2846-43b3-a7b0-7ea48fb80b28" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1288,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "f9bd0f42-09a0-4b68-9cf6-695d7cfa0de4" + "8b29966a-2c30-4695-b34e-51a10d688ad7" ], "Cache-Control": [ "no-cache" @@ -1298,40 +1346,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14962" ], "x-ms-correlation-request-id": [ - "444fda42-66f1-4e22-9bfb-dc31e8bf271d" + "cbcbab9c-061e-49bd-a2c5-a984f3b4e5e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222000Z:444fda42-66f1-4e22-9bfb-dc31e8bf271d" + "WESTUS:20150813T190154Z:cbcbab9c-061e-49bd-a2c5-a984f3b4e5e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:20:00 GMT" + "Thu, 13 Aug 2015 19:01:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Storage/storageAccounts/stopstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTUyOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Storage/storageAccounts/stocrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e76d693-3e0e-4a1d-9264-ad9ff86d1b71" + "27a09d85-1a74-41d0-9fe9-a1fe4f0c2c57" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Storage/storageAccounts/stopstestrg5528\",\r\n \"name\": \"stopstestrg5528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5528.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5528.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5528.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T22:19:25.297342Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Storage/storageAccounts/stocrptestps6105\",\r\n \"name\": \"stocrptestps6105\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6105.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps6105.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps6105.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T19:01:28.0838333Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1343,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "e67ae62f-bd90-447e-bd7f-6c6187d3e439" + "187f87ab-4e84-472c-9331-c413870ae51c" ], "Cache-Control": [ "no-cache" @@ -1353,40 +1401,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14961" ], "x-ms-correlation-request-id": [ - "44f67da7-9c8c-469d-8d50-6254cd2ffd51" + "0ee3e03a-bacf-4a35-ba28-69c7a20e1c6f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222000Z:44f67da7-9c8c-469d-8d50-6254cd2ffd51" + "WESTUS:20150813T190155Z:0ee3e03a-bacf-4a35-ba28-69c7a20e1c6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:20:00 GMT" + "Thu, 13 Aug 2015 19:01:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Storage/storageAccounts/stopstestrg5528?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTUyOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Storage/storageAccounts/stocrptestps6105?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM2MTA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ae1a6b6-ec7e-4f18-976b-7a6c706111e5" + "c8691dbb-7d5a-4092-97de-73625f04073e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Storage/storageAccounts/stopstestrg5528\",\r\n \"name\": \"stopstestrg5528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5528.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5528.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5528.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T22:19:25.297342Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Storage/storageAccounts/stocrptestps6105\",\r\n \"name\": \"stocrptestps6105\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps6105.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps6105.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps6105.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T19:01:28.0838333Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "26d7e038-4d48-4d01-801d-280ab3d7f6e3" + "f7660cc2-ad2a-4194-9f8a-e3b1a9e704af" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1456,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14960" ], "x-ms-correlation-request-id": [ - "958e0ace-33ce-485b-9ebb-e0a1bb7a7d5c" + "509fdc59-cbd0-40ca-9816-a69484487346" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222000Z:958e0ace-33ce-485b-9ebb-e0a1bb7a7d5c" + "WESTUS:20150813T190155Z:509fdc59-cbd0-40ca-9816-a69484487346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 22:20:00 GMT" + "Thu, 13 Aug 2015 19:01:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1453,7 +1501,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a38cc2d-e95c-409d-8679-9f4b5f2e1bb5" + "16e638f4-ab02-4967-827c-154a254d4a58" ], "Cache-Control": [ "no-cache" @@ -1463,31 +1511,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14959" ], "x-ms-correlation-request-id": [ - "3e825bc3-9bac-4d61-94ca-a3078f71ea77" + "239e0588-218b-449d-b2a3-9d7533f2d039" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222007Z:3e825bc3-9bac-4d61-94ca-a3078f71ea77" + "WESTUS:20150813T190155Z:239e0588-218b-449d-b2a3-9d7533f2d039" ], "Date": [ - "Tue, 28 Apr 2015 22:20:06 GMT" + "Thu, 13 Aug 2015 19:01:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1505,7 +1553,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc903d7d-6e73-43e0-ad87-c1d2c0939efe" + "123dc38f-8d0d-47bd-acbc-1325a62b81b6" ], "Cache-Control": [ "no-cache" @@ -1515,34 +1563,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14958" ], "x-ms-correlation-request-id": [ - "0a9dcd3e-61fc-41ef-8f0f-eeac93dfa67d" + "a3b15733-1eed-4129-b5b7-a9603b25bc64" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222007Z:0a9dcd3e-61fc-41ef-8f0f-eeac93dfa67d" + "WESTUS:20150813T190155Z:a3b15733-1eed-4129-b5b7-a9603b25bc64" ], "Date": [ - "Tue, 28 Apr 2015 22:20:06 GMT" + "Thu, 13 Aug 2015 19:01:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,7 +1605,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25bf084a-990f-44f4-bbfd-42ddfb58b092" + "0b778cac-1334-45e8-9dc2-8eb9f9d13c61" ], "Cache-Control": [ "no-cache" @@ -1567,34 +1615,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14957" ], "x-ms-correlation-request-id": [ - "71d48558-8f6d-4c1c-ad04-c1edc7eeccdf" + "33a75bce-fe6d-4406-bccc-91aa1558ae16" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222007Z:71d48558-8f6d-4c1c-ad04-c1edc7eeccdf" + "WESTUS:20150813T190156Z:33a75bce-fe6d-4406-bccc-91aa1558ae16" ], "Date": [ - "Tue, 28 Apr 2015 22:20:07 GMT" + "Thu, 13 Aug 2015 19:01:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1609,7 +1657,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2822118a-e388-4e80-9e23-a3d0fc22ed18" + "0d8edd17-78c3-4874-b786-95742f392ec9" ], "Cache-Control": [ "no-cache" @@ -1619,31 +1667,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14956" ], "x-ms-correlation-request-id": [ - "7cdd586a-6bcb-4dba-848d-a38768f80f42" + "565b48f0-2f5e-45a4-ad5c-df00ecc7c0bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222008Z:7cdd586a-6bcb-4dba-848d-a38768f80f42" + "WESTUS:20150813T190156Z:565b48f0-2f5e-45a4-ad5c-df00ecc7c0bb" ], "Date": [ - "Tue, 28 Apr 2015 22:20:07 GMT" + "Thu, 13 Aug 2015 19:01:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1661,7 +1709,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8abafc5-59c6-4bde-bb49-4cb2ff741994" + "74be0761-6e89-49ed-b0bb-6050fe80e1ac" ], "Cache-Control": [ "no-cache" @@ -1671,40 +1719,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14955" ], "x-ms-correlation-request-id": [ - "e095eb4c-2fe1-43b8-acd7-5c03981115a7" + "4176093c-dd20-4a6e-b77b-009cf3e6a02e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222008Z:e095eb4c-2fe1-43b8-acd7-5c03981115a7" + "WESTUS:20150813T190156Z:4176093c-dd20-4a6e-b77b-009cf3e6a02e" ], "Date": [ - "Tue, 28 Apr 2015 22:20:07 GMT" + "Thu, 13 Aug 2015 19:01:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Compute/virtualMachines/vmpstestrg5528?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Compute/virtualMachines/vmcrptestps6105?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5528.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg5528\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg5528\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6105.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps6105\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps6105\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1068" + "1058" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5528.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Compute/virtualMachines/vmpstestrg5528\",\r\n \"name\": \"vmpstestrg5528\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6105.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Compute/virtualMachines/vmcrptestps6105\",\r\n \"name\": \"vmcrptestps6105\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1348" + "1339" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1716,13 +1764,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "01e5fadd-9940-4a86-b4c4-9ebe3b88f97a" + "3431ce65-3a9a-40c6-89e2-c72e690e5f8d" ], "Cache-Control": [ "no-cache" @@ -1732,31 +1783,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "c3068d02-a58b-4331-9c54-d3a2815f36ca" + "67c291a8-04a0-44fd-b716-5d97d90b4866" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222008Z:c3068d02-a58b-4331-9c54-d3a2815f36ca" + "WESTUS:20150813T190157Z:67c291a8-04a0-44fd-b716-5d97d90b4866" ], "Date": [ - "Tue, 28 Apr 2015 22:20:07 GMT" + "Thu, 13 Aug 2015 19:01:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1773,8 +1824,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "1f44c8a1-624d-4aa7-a33b-11a0bc70c91d" + "0ff14ae7-297b-4d7d-9754-ad24ca5f0b88" ], "Cache-Control": [ "no-cache" @@ -1784,31 +1838,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14954" ], "x-ms-correlation-request-id": [ - "f4cbd08e-580f-4ac2-ae23-f2d149898c8a" + "852a5c5d-b042-4615-9534-9bd7b06c17c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222008Z:f4cbd08e-580f-4ac2-ae23-f2d149898c8a" + "WESTUS:20150813T190157Z:852a5c5d-b042-4615-9534-9bd7b06c17c6" ], "Date": [ - "Tue, 28 Apr 2015 22:20:08 GMT" + "Thu, 13 Aug 2015 19:01:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1825,8 +1879,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "10b67fc5-bd89-431b-bc8c-ff6c035a1f72" + "0805afab-e95e-4653-80b7-ea1d4a70c24b" ], "Cache-Control": [ "no-cache" @@ -1836,31 +1893,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14953" ], "x-ms-correlation-request-id": [ - "e54f9c83-72f8-4ad0-b073-d311149e2472" + "176e3c70-a9ae-4849-9462-c51e17bec042" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222039Z:e54f9c83-72f8-4ad0-b073-d311149e2472" + "WESTUS:20150813T190227Z:176e3c70-a9ae-4849-9462-c51e17bec042" ], "Date": [ - "Tue, 28 Apr 2015 22:20:38 GMT" + "Thu, 13 Aug 2015 19:02:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1877,8 +1934,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "44a6d4d8-f9e2-4636-9928-6fe0bcd252b3" + "ca471a8c-e242-498a-b3cf-9e9a77718706" ], "Cache-Control": [ "no-cache" @@ -1888,31 +1948,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14952" ], "x-ms-correlation-request-id": [ - "8a6779f8-f997-4c51-9069-8aa39f40bc3e" + "fab7aecb-b107-4303-a11f-c9ddffc6f301" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222109Z:8a6779f8-f997-4c51-9069-8aa39f40bc3e" + "WESTUS:20150813T190257Z:fab7aecb-b107-4303-a11f-c9ddffc6f301" ], "Date": [ - "Tue, 28 Apr 2015 22:21:08 GMT" + "Thu, 13 Aug 2015 19:02:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1929,8 +1989,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "6d4a2d3b-9fb0-46e1-9f1c-890021534bdd" + "a2827a85-3461-428c-9a2a-8fd43051cafb" ], "Cache-Control": [ "no-cache" @@ -1940,31 +2003,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14951" ], "x-ms-correlation-request-id": [ - "f42000d4-9398-4c64-abf2-67a77609a78b" + "4dc37973-c597-45e4-a1b2-4d70e3d8d0b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222139Z:f42000d4-9398-4c64-abf2-67a77609a78b" + "WESTUS:20150813T190327Z:4dc37973-c597-45e4-a1b2-4d70e3d8d0b0" ], "Date": [ - "Tue, 28 Apr 2015 22:21:38 GMT" + "Thu, 13 Aug 2015 19:03:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1981,8 +2044,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "11825d76-bbff-4d7e-a3d0-653796e621e1" + "c0b54e9b-c6f2-4771-ae54-2a7285d47961" ], "Cache-Control": [ "no-cache" @@ -1992,31 +2058,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14950" ], "x-ms-correlation-request-id": [ - "32209742-cca3-48b9-a3d6-b64c511f138c" + "5fc83524-0e41-48ff-9ef8-305d4a78623b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222209Z:32209742-cca3-48b9-a3d6-b64c511f138c" + "WESTUS:20150813T190357Z:5fc83524-0e41-48ff-9ef8-305d4a78623b" ], "Date": [ - "Tue, 28 Apr 2015 22:22:09 GMT" + "Thu, 13 Aug 2015 19:03:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2033,8 +2099,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "88657800-3a6f-4f0b-8332-d6e85a50f635" + "467283f8-bfc2-4cd8-8523-4257d852f5c4" ], "Cache-Control": [ "no-cache" @@ -2044,31 +2113,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14949" ], "x-ms-correlation-request-id": [ - "0f641c70-dc3c-4acf-9678-6a94161723e8" + "e54ba03c-995d-44a4-9437-aecb528e3245" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222239Z:0f641c70-dc3c-4acf-9678-6a94161723e8" + "WESTUS:20150813T190428Z:e54ba03c-995d-44a4-9437-aecb528e3245" ], "Date": [ - "Tue, 28 Apr 2015 22:22:38 GMT" + "Thu, 13 Aug 2015 19:04:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2085,8 +2154,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "ff5ab2af-ec35-4a19-a495-90d0999833ce" + "07158db0-4f8c-491c-9139-8cb89f765b1e" ], "Cache-Control": [ "no-cache" @@ -2096,31 +2168,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14948" ], "x-ms-correlation-request-id": [ - "b7ed8ba6-bafe-41a6-a162-a717856c0054" + "abca9b36-f042-488c-b024-1012ab4926df" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222309Z:b7ed8ba6-bafe-41a6-a162-a717856c0054" + "WESTUS:20150813T190458Z:abca9b36-f042-488c-b024-1012ab4926df" ], "Date": [ - "Tue, 28 Apr 2015 22:23:08 GMT" + "Thu, 13 Aug 2015 19:04:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2137,8 +2209,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "383bcc24-7523-464d-9184-ef013f9c9d0e" + "eb094edc-e314-4013-b1d0-8358fec66798" ], "Cache-Control": [ "no-cache" @@ -2148,31 +2223,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14947" ], "x-ms-correlation-request-id": [ - "4c3a1856-f471-4b78-85e3-ad19d59f252a" + "e878dfc9-f2f7-4c14-92f8-350e06dea9a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222339Z:4c3a1856-f471-4b78-85e3-ad19d59f252a" + "WESTUS:20150813T190528Z:e878dfc9-f2f7-4c14-92f8-350e06dea9a7" ], "Date": [ - "Tue, 28 Apr 2015 22:23:39 GMT" + "Thu, 13 Aug 2015 19:05:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2189,8 +2264,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "3bef4e5b-a045-4a12-a5c2-1dd78db12815" + "e733bd80-4c37-44bb-8711-9cfa672a5342" ], "Cache-Control": [ "no-cache" @@ -2200,31 +2278,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14946" ], "x-ms-correlation-request-id": [ - "541d16db-a49c-4342-80ba-9fd24e8441d4" + "2b9760a8-c9d6-47da-b8eb-483a030abc09" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222409Z:541d16db-a49c-4342-80ba-9fd24e8441d4" + "WESTUS:20150813T190558Z:2b9760a8-c9d6-47da-b8eb-483a030abc09" ], "Date": [ - "Tue, 28 Apr 2015 22:24:09 GMT" + "Thu, 13 Aug 2015 19:05:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2241,8 +2319,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "d09bec85-9006-4801-bddb-130d5252f7ea" + "d82f709d-38f3-4236-a40f-e02c56b70dbe" ], "Cache-Control": [ "no-cache" @@ -2252,31 +2333,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14945" ], "x-ms-correlation-request-id": [ - "3a68a4e3-8231-4548-aa90-c22f7c19e078" + "aa934ec3-a0c0-4dd3-b302-b9d68627e3b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222439Z:3a68a4e3-8231-4548-aa90-c22f7c19e078" + "WESTUS:20150813T190628Z:aa934ec3-a0c0-4dd3-b302-b9d68627e3b5" ], "Date": [ - "Tue, 28 Apr 2015 22:24:39 GMT" + "Thu, 13 Aug 2015 19:06:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2293,8 +2374,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "c16fb4ad-818c-47f8-8035-84cb0577aa4f" + "59bbebcf-e10c-4a6c-aa93-68c68c10a7c6" ], "Cache-Control": [ "no-cache" @@ -2304,34 +2388,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14944" ], "x-ms-correlation-request-id": [ - "9c3d1da6-5cd8-446b-b0ec-cacb0b471408" + "57ba404b-76cd-4fa2-b64a-bd6bda59ae14" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222509Z:9c3d1da6-5cd8-446b-b0ec-cacb0b471408" + "WESTUS:20150813T190658Z:57ba404b-76cd-4fa2-b64a-bd6bda59ae14" ], "Date": [ - "Tue, 28 Apr 2015 22:25:09 GMT" + "Thu, 13 Aug 2015 19:06:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/01e5fadd-9940-4a86-b4c4-9ebe3b88f97a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFlNWZhZGQtOTk0MC00YTg2LWI0YzQtOWViZTNiODhmOTdhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"01e5fadd-9940-4a86-b4c4-9ebe3b88f97a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T15:19:56.2495917-07:00\",\r\n \"endTime\": \"2015-04-28T15:24:58.4996225-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2345,8 +2429,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "9b29293f-1965-41d0-b2f0-3658c17e7968" + "a86ccac9-e738-4670-a1f6-c1adf34b1c38" ], "Cache-Control": [ "no-cache" @@ -2356,34 +2443,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14943" ], "x-ms-correlation-request-id": [ - "e58fe2bd-3e7a-49ec-84e3-33b681492043" + "826f13ee-7b55-4938-be11-fbf5293ecf5a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222540Z:e58fe2bd-3e7a-49ec-84e3-33b681492043" + "WESTUS:20150813T190728Z:826f13ee-7b55-4938-be11-fbf5293ecf5a" ], "Date": [ - "Tue, 28 Apr 2015 22:25:39 GMT" + "Thu, 13 Aug 2015 19:07:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Compute/virtualMachines/vmpstestrg5528?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5528.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Network/networkInterfaces/nicpstestrg5528\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Compute/virtualMachines/vmpstestrg5528\",\r\n \"name\": \"vmpstestrg5528\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1349" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2397,8 +2484,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "b78de650-f64f-410f-be2e-53bc368dbc3e" + "dacc1581-9c19-4ca5-87ee-5e57f56c11a2" ], "Cache-Control": [ "no-cache" @@ -2408,34 +2498,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14942" ], "x-ms-correlation-request-id": [ - "eb3c60ce-107e-4227-857e-9cd2b47b15b4" + "f5554aaa-922d-40a6-96e2-b91f5b29f803" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222540Z:eb3c60ce-107e-4227-857e-9cd2b47b15b4" + "WESTUS:20150813T190758Z:f5554aaa-922d-40a6-96e2-b91f5b29f803" ], "Date": [ - "Tue, 28 Apr 2015 22:25:39 GMT" + "Thu, 13 Aug 2015 19:07:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5528/providers/Microsoft.Compute/virtualMachines/vmpstestrg5528?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3431ce65-3a9a-40c6-89e2-c72e690e5f8d?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzQzMWNlNjUtM2E5YS00MGM2LTg5ZTItYzcyZTY5MGU1ZjhkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"3431ce65-3a9a-40c6-89e2-c72e690e5f8d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T12:01:56.7186324-07:00\",\r\n \"endTime\": \"2015-08-13T12:08:20.0096521-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2443,54 +2536,51 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "aa99635b-2c30-4642-86ef-8ef4b82fb139" + "3a9c97ec-610f-4089-b1cd-5b5d5b134eb3" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" ], "x-ms-correlation-request-id": [ - "cce69844-2785-4830-8087-f2d67121a171" + "fa9065d5-8f01-445a-b3fb-fa162f811808" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222540Z:cce69844-2785-4830-8087-f2d67121a171" + "WESTUS:20150813T190828Z:fa9065d5-8f01-445a-b3fb-fa162f811808" ], "Date": [ - "Tue, 28 Apr 2015 22:25:40 GMT" + "Thu, 13 Aug 2015 19:08:28 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE5OTYzNWItMmMzMC00NjQyLTg2ZWYtOGVmNGI4MmZiMTM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Compute/virtualMachines/vmcrptestps6105?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"aa99635b-2c30-4642-86ef-8ef4b82fb139\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:25:28.483981-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps6105.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Network/networkInterfaces/niccrptestps6105\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Compute/virtualMachines/vmcrptestps6105\",\r\n \"name\": \"vmcrptestps6105\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "140" + "1340" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2504,8 +2594,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "bb3c6435-82b9-4edb-b1d2-a974ddd06301" + "2b90fcc8-bc0b-4770-9602-32fba4b73ed1" ], "Cache-Control": [ "no-cache" @@ -2515,37 +2608,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14940" ], "x-ms-correlation-request-id": [ - "2342d8ac-6cc5-4cc0-881d-95927a9682a7" + "18303cdd-6895-4625-a6c0-2fc5d11052ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222540Z:2342d8ac-6cc5-4cc0-881d-95927a9682a7" + "WESTUS:20150813T190829Z:18303cdd-6895-4625-a6c0-2fc5d11052ed" ], "Date": [ - "Tue, 28 Apr 2015 22:25:40 GMT" + "Thu, 13 Aug 2015 19:08:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE5OTYzNWItMmMzMC00NjQyLTg2ZWYtOGVmNGI4MmZiMTM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps6105/providers/Microsoft.Compute/virtualMachines/vmcrptestps6105?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"aa99635b-2c30-4642-86ef-8ef4b82fb139\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:25:28.483981-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "140" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2553,45 +2643,54 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/266ab27e-94e2-4eb9-b0d6-838056eed9c8?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "dd44663e-849d-4276-9217-aa7450623afa" + "266ab27e-94e2-4eb9-b0d6-838056eed9c8" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/266ab27e-94e2-4eb9-b0d6-838056eed9c8?monitor=true&api-version=2015-06-15" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" ], "x-ms-correlation-request-id": [ - "f1037eac-5c18-43b0-9412-3864c9784917" + "8ce6e582-0c9d-47f7-a678-d6e81b023b61" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222611Z:f1037eac-5c18-43b0-9412-3864c9784917" + "WESTUS:20150813T190829Z:8ce6e582-0c9d-47f7-a678-d6e81b023b61" ], "Date": [ - "Tue, 28 Apr 2015 22:26:10 GMT" + "Thu, 13 Aug 2015 19:08:28 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE5OTYzNWItMmMzMC00NjQyLTg2ZWYtOGVmNGI4MmZiMTM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/266ab27e-94e2-4eb9-b0d6-838056eed9c8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjY2YWIyN2UtOTRlMi00ZWI5LWIwZDYtODM4MDU2ZWVkOWM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"aa99635b-2c30-4642-86ef-8ef4b82fb139\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:25:28.483981-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"266ab27e-94e2-4eb9-b0d6-838056eed9c8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:08:29.463076-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "140" @@ -2608,8 +2707,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "97bd2acc-260d-4ef8-a5bc-f7f2d842f8dc" + "66aa31eb-5469-4d82-b94d-4f086306d5ec" ], "Cache-Control": [ "no-cache" @@ -2619,31 +2721,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14939" ], "x-ms-correlation-request-id": [ - "3a751bd4-b060-4cda-b2f7-2d6226d3fe9a" + "43374735-8475-476d-ac7f-3e07a8343bbd" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222641Z:3a751bd4-b060-4cda-b2f7-2d6226d3fe9a" + "WESTUS:20150813T190829Z:43374735-8475-476d-ac7f-3e07a8343bbd" ], "Date": [ - "Tue, 28 Apr 2015 22:26:40 GMT" + "Thu, 13 Aug 2015 19:08:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE5OTYzNWItMmMzMC00NjQyLTg2ZWYtOGVmNGI4MmZiMTM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/266ab27e-94e2-4eb9-b0d6-838056eed9c8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjY2YWIyN2UtOTRlMi00ZWI5LWIwZDYtODM4MDU2ZWVkOWM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"aa99635b-2c30-4642-86ef-8ef4b82fb139\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:25:28.483981-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"266ab27e-94e2-4eb9-b0d6-838056eed9c8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:08:29.463076-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "140" @@ -2660,8 +2762,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "d8361d77-d7da-4831-8ac1-c30a49cd070d" + "ce7953b4-6daa-4cd5-a5e6-6e8b680a759a" ], "Cache-Control": [ "no-cache" @@ -2671,31 +2776,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14938" ], "x-ms-correlation-request-id": [ - "474dd6ac-5dd3-4c0c-8776-46f5d4c4a865" + "d5f1e198-0c22-4545-9f1c-ce21c331cd4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222711Z:474dd6ac-5dd3-4c0c-8776-46f5d4c4a865" + "WESTUS:20150813T190859Z:d5f1e198-0c22-4545-9f1c-ce21c331cd4f" ], "Date": [ - "Tue, 28 Apr 2015 22:27:11 GMT" + "Thu, 13 Aug 2015 19:08:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE5OTYzNWItMmMzMC00NjQyLTg2ZWYtOGVmNGI4MmZiMTM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/266ab27e-94e2-4eb9-b0d6-838056eed9c8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjY2YWIyN2UtOTRlMi00ZWI5LWIwZDYtODM4MDU2ZWVkOWM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"aa99635b-2c30-4642-86ef-8ef4b82fb139\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:25:28.483981-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"266ab27e-94e2-4eb9-b0d6-838056eed9c8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:08:29.463076-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "140" @@ -2712,8 +2817,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "60231580-1b0a-49a5-8632-1ed432844ebf" + "0deb57a0-65e1-4e08-b1ce-85635cd723a9" ], "Cache-Control": [ "no-cache" @@ -2723,31 +2831,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14937" ], "x-ms-correlation-request-id": [ - "b13206cb-fb04-4356-8464-721843151070" + "9624b7a6-3be3-45bc-9764-1867d295e842" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222741Z:b13206cb-fb04-4356-8464-721843151070" + "WESTUS:20150813T190930Z:9624b7a6-3be3-45bc-9764-1867d295e842" ], "Date": [ - "Tue, 28 Apr 2015 22:27:41 GMT" + "Thu, 13 Aug 2015 19:09:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE5OTYzNWItMmMzMC00NjQyLTg2ZWYtOGVmNGI4MmZiMTM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/266ab27e-94e2-4eb9-b0d6-838056eed9c8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjY2YWIyN2UtOTRlMi00ZWI5LWIwZDYtODM4MDU2ZWVkOWM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"aa99635b-2c30-4642-86ef-8ef4b82fb139\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T15:25:28.483981-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"266ab27e-94e2-4eb9-b0d6-838056eed9c8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:08:29.463076-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "140" @@ -2764,8 +2872,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "48d4079e-b222-4d26-b194-c92396645753" + "0bb87100-2aef-4a7c-99e8-986c16df5762" ], "Cache-Control": [ "no-cache" @@ -2775,34 +2886,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14936" ], "x-ms-correlation-request-id": [ - "fde75aae-fff6-4b67-b431-793343c0e87a" + "daa193c4-47b3-4406-8d87-0642e49f0e24" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222811Z:fde75aae-fff6-4b67-b431-793343c0e87a" + "WESTUS:20150813T191000Z:daa193c4-47b3-4406-8d87-0642e49f0e24" ], "Date": [ - "Tue, 28 Apr 2015 22:28:11 GMT" + "Thu, 13 Aug 2015 19:09:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/aa99635b-2c30-4642-86ef-8ef4b82fb139?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE5OTYzNWItMmMzMC00NjQyLTg2ZWYtOGVmNGI4MmZiMTM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/266ab27e-94e2-4eb9-b0d6-838056eed9c8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjY2YWIyN2UtOTRlMi00ZWI5LWIwZDYtODM4MDU2ZWVkOWM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"aa99635b-2c30-4642-86ef-8ef4b82fb139\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T15:25:28.483981-07:00\",\r\n \"endTime\": \"2015-04-28T15:28:00.2027442-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"266ab27e-94e2-4eb9-b0d6-838056eed9c8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T12:08:29.463076-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2816,8 +2927,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "d0ee6560-44c4-46b6-8108-63b669638cda" + "20e7b0f4-a21f-4fa1-b087-7316557137f9" ], "Cache-Control": [ "no-cache" @@ -2827,142 +2941,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14935" ], "x-ms-correlation-request-id": [ - "955e6fd4-9b2b-4dd9-beaa-169ce1bbeda3" + "096822f2-ed86-405d-a33a-cea951ce5197" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222841Z:955e6fd4-9b2b-4dd9-beaa-169ce1bbeda3" + "WESTUS:20150813T191030Z:096822f2-ed86-405d-a33a-cea951ce5197" ], "Date": [ - "Tue, 28 Apr 2015 22:28:41 GMT" + "Thu, 13 Aug 2015 19:10:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5528?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTUyOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "8955bd71-e5d4-46b7-96bc-9cbf963fb420" - ], - "x-ms-correlation-request-id": [ - "8955bd71-e5d4-46b7-96bc-9cbf963fb420" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T222841Z:8955bd71-e5d4-46b7-96bc-9cbf963fb420" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:28:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/266ab27e-94e2-4eb9-b0d6-838056eed9c8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjY2YWIyN2UtOTRlMi00ZWI5LWIwZDYtODM4MDU2ZWVkOWM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"266ab27e-94e2-4eb9-b0d6-838056eed9c8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T12:08:29.463076-07:00\",\r\n \"endTime\": \"2015-08-13T12:10:32.3724774-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" - ], - "x-ms-request-id": [ - "834f4443-6042-424b-afe1-7cbbc64412df" - ], - "x-ms-correlation-request-id": [ - "834f4443-6042-424b-afe1-7cbbc64412df" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T222842Z:834f4443-6042-424b-afe1-7cbbc64412df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:28:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" + "190" ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2970,153 +2979,43 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" - ], - "x-ms-request-id": [ - "f761187c-6fc7-4bd2-97bc-062af5e0410b" - ], - "x-ms-correlation-request-id": [ - "f761187c-6fc7-4bd2-97bc-062af5e0410b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T222857Z:f761187c-6fc7-4bd2-97bc-062af5e0410b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 22:28:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "b62bc58a-12bb-4439-8747-49f5464412b4" - ], - "x-ms-correlation-request-id": [ - "b62bc58a-12bb-4439-8747-49f5464412b4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T222912Z:b62bc58a-12bb-4439-8747-49f5464412b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f7404bfb-087d-4fc2-b444-37f0159948e9" ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 28 Apr 2015 22:29:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" - ], - "x-ms-request-id": [ - "3a04642d-fa5f-4f8b-9f64-dc18ccf8d797" + "14934" ], "x-ms-correlation-request-id": [ - "3a04642d-fa5f-4f8b-9f64-dc18ccf8d797" + "a772f336-f152-4f6e-9ebe-87fdb960e5b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222927Z:3a04642d-fa5f-4f8b-9f64-dc18ccf8d797" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150813T191100Z:a772f336-f152-4f6e-9ebe-87fdb960e5b7" ], "Date": [ - "Tue, 28 Apr 2015 22:29:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Thu, 13 Aug 2015 19:10:59 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps6105?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYxMDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3135,17 +3034,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "a5584220-c406-43bf-aef1-cfeb921ecdef" + "f78d7b9b-758b-44e9-8feb-65c54f31f7ab" ], "x-ms-correlation-request-id": [ - "a5584220-c406-43bf-aef1-cfeb921ecdef" + "f78d7b9b-758b-44e9-8feb-65c54f31f7ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222942Z:a5584220-c406-43bf-aef1-cfeb921ecdef" + "WESTUS:20150813T191100Z:f78d7b9b-758b-44e9-8feb-65c54f31f7ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3154,17 +3053,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:29:42 GMT" + "Thu, 13 Aug 2015 19:11:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3190,16 +3089,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14993" ], "x-ms-request-id": [ - "5e0d3362-e683-4637-a6e9-1825eec62bbc" + "7d29d910-d8ea-4e60-9646-960d27b4b68d" ], "x-ms-correlation-request-id": [ - "5e0d3362-e683-4637-a6e9-1825eec62bbc" + "7d29d910-d8ea-4e60-9646-960d27b4b68d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T222957Z:5e0d3362-e683-4637-a6e9-1825eec62bbc" + "WESTUS:20150813T191100Z:7d29d910-d8ea-4e60-9646-960d27b4b68d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3208,17 +3107,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:29:56 GMT" + "Thu, 13 Aug 2015 19:11:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3244,16 +3143,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "14992" ], "x-ms-request-id": [ - "2fd459e5-76f1-4a12-a2ac-ca51f8f0bc1e" + "a76a925b-9218-4905-bace-022ecfb9657f" ], "x-ms-correlation-request-id": [ - "2fd459e5-76f1-4a12-a2ac-ca51f8f0bc1e" + "a76a925b-9218-4905-bace-022ecfb9657f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223012Z:2fd459e5-76f1-4a12-a2ac-ca51f8f0bc1e" + "WESTUS:20150813T191115Z:a76a925b-9218-4905-bace-022ecfb9657f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3262,17 +3161,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:30:11 GMT" + "Thu, 13 Aug 2015 19:11:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3298,16 +3197,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "14991" ], "x-ms-request-id": [ - "5c88c3a3-0948-4ea7-b69f-319639a80e9d" + "45635a59-9dbe-49a5-afe5-6d3889b59b2f" ], "x-ms-correlation-request-id": [ - "5c88c3a3-0948-4ea7-b69f-319639a80e9d" + "45635a59-9dbe-49a5-afe5-6d3889b59b2f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223027Z:5c88c3a3-0948-4ea7-b69f-319639a80e9d" + "WESTUS:20150813T191130Z:45635a59-9dbe-49a5-afe5-6d3889b59b2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3316,17 +3215,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:30:27 GMT" + "Thu, 13 Aug 2015 19:11:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3352,16 +3251,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "14990" ], "x-ms-request-id": [ - "2b17c2fe-44c8-49e1-84ef-870c5c7f4feb" + "048513cc-7219-4b01-b86a-51fbd3846402" ], "x-ms-correlation-request-id": [ - "2b17c2fe-44c8-49e1-84ef-870c5c7f4feb" + "048513cc-7219-4b01-b86a-51fbd3846402" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223042Z:2b17c2fe-44c8-49e1-84ef-870c5c7f4feb" + "WESTUS:20150813T191145Z:048513cc-7219-4b01-b86a-51fbd3846402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3370,17 +3269,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:30:42 GMT" + "Thu, 13 Aug 2015 19:11:45 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3406,16 +3305,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "14989" ], "x-ms-request-id": [ - "1906ba20-a018-4d6d-adfc-9c9c7994add5" + "9a4e414c-f4b3-4523-be94-97987d935cf1" ], "x-ms-correlation-request-id": [ - "1906ba20-a018-4d6d-adfc-9c9c7994add5" + "9a4e414c-f4b3-4523-be94-97987d935cf1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223057Z:1906ba20-a018-4d6d-adfc-9c9c7994add5" + "WESTUS:20150813T191200Z:9a4e414c-f4b3-4523-be94-97987d935cf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3424,17 +3323,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:30:57 GMT" + "Thu, 13 Aug 2015 19:12:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3460,16 +3359,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" + "14988" ], "x-ms-request-id": [ - "911223b8-45a4-48e1-9ef2-0ef7d07d0518" + "6c9df71d-3118-4113-9e33-16001d68fde7" ], "x-ms-correlation-request-id": [ - "911223b8-45a4-48e1-9ef2-0ef7d07d0518" + "6c9df71d-3118-4113-9e33-16001d68fde7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223112Z:911223b8-45a4-48e1-9ef2-0ef7d07d0518" + "WESTUS:20150813T191215Z:6c9df71d-3118-4113-9e33-16001d68fde7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3478,17 +3377,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:31:12 GMT" + "Thu, 13 Aug 2015 19:12:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3514,16 +3413,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" + "14987" ], "x-ms-request-id": [ - "5ccef21d-2351-4e64-9034-9b9d546019e9" + "b285145a-2ef1-4137-8130-83e343894940" ], "x-ms-correlation-request-id": [ - "5ccef21d-2351-4e64-9034-9b9d546019e9" + "b285145a-2ef1-4137-8130-83e343894940" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223127Z:5ccef21d-2351-4e64-9034-9b9d546019e9" + "WESTUS:20150813T191231Z:b285145a-2ef1-4137-8130-83e343894940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3532,17 +3431,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:31:26 GMT" + "Thu, 13 Aug 2015 19:12:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU1MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUxTWpndFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2MTA1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTVRBMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3565,16 +3464,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "14986" ], "x-ms-request-id": [ - "4d19a3d6-fb93-44e3-96e9-cd29f8d15a27" + "7489072f-50e9-4649-ad9d-b091b9944f31" ], "x-ms-correlation-request-id": [ - "4d19a3d6-fb93-44e3-96e9-cd29f8d15a27" + "7489072f-50e9-4649-ad9d-b091b9944f31" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T223142Z:4d19a3d6-fb93-44e3-96e9-cd29f8d15a27" + "WESTUS:20150813T191246Z:7489072f-50e9-4649-ad9d-b091b9944f31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3583,7 +3482,7 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 22:31:42 GMT" + "Thu, 13 Aug 2015 19:12:45 GMT" ] }, "StatusCode": 200 @@ -3591,12 +3490,12 @@ ], "Names": { "Test-SingleNetworkInterface": [ - "pstestrg5528" + "crptestps6105" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestGetVMSizeFromAllLocations.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestGetVMSizeFromAllLocations.json index 9719f469ae0f..71061be3b373 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestGetVMSizeFromAllLocations.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestGetVMSizeFromAllLocations.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.batch\",\r\n \"namespace\": \"microsoft.batch\",\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.classicstorage\",\r\n \"namespace\": \"microsoft.classicstorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\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 \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "53549" + "68651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14990" ], "x-ms-request-id": [ - "6cb25fbc-c7ec-4b97-8ecc-6d323954e824" + "7f706d04-69b9-4311-87d0-16fdea515e37" ], "x-ms-correlation-request-id": [ - "6cb25fbc-c7ec-4b97-8ecc-6d323954e824" + "7f706d04-69b9-4311-87d0-16fdea515e37" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163133Z:6cb25fbc-c7ec-4b97-8ecc-6d323954e824" + "WESTUS:20150813T082537Z:7f706d04-69b9-4311-87d0-16fdea515e37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,25 +43,25 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 16:31:33 GMT" + "Thu, 13 Aug 2015 08:25:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7296" + "4651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -75,8 +75,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "bc9c7ae8-272f-468c-91ab-42b5442bf96b_130801066311891697" + ], "x-ms-request-id": [ - "609a8498-aa0b-4ca6-9c00-6422866bc5b1" + "1979ab52-9132-434b-a7c4-fa65ee7774ba" ], "Cache-Control": [ "no-cache" @@ -86,31 +89,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "12851" ], "x-ms-correlation-request-id": [ - "dab3392f-014f-41a4-8088-c01d0dbc3bf0" + "bafeced9-8568-4cc7-aba3-299ea6b7abd6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163134Z:dab3392f-014f-41a4-8088-c01d0dbc3bf0" + "WESTUS:20150813T082538Z:bafeced9-8568-4cc7-aba3-299ea6b7abd6" ], "Date": [ - "Thu, 18 Jun 2015 16:31:34 GMT" + "Thu, 13 Aug 2015 08:25:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastus2/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "6888" @@ -127,8 +130,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "f32c78f0-60d9-428a-be63-235fe491c22c_130831987903386157" + ], "x-ms-request-id": [ - "6483f0c7-42e1-4d2c-9481-f72aaedbbfc5" + "43e57505-876c-420e-9e55-c836813ece8c" ], "Cache-Control": [ "no-cache" @@ -138,28 +144,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "12850" ], "x-ms-correlation-request-id": [ - "7772d853-55b9-4edf-b7e3-1b941359982e" + "0bbab21e-8a3b-445f-96ad-de21baf4f821" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163156Z:7772d853-55b9-4edf-b7e3-1b941359982e" + "WESTUS:20150813T082538Z:0bbab21e-8a3b-445f-96ad-de21baf4f821" ], "Date": [ - "Thu, 18 Jun 2015 16:31:55 GMT" + "Thu, 13 Aug 2015 08:25:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", @@ -179,8 +185,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "d0527235-e8d2-468a-928d-e2893fbea167" + "89eb6b2e-4dbd-47b9-9325-ea6931563c9b" ], "Cache-Control": [ "no-cache" @@ -190,34 +199,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "12849" ], "x-ms-correlation-request-id": [ - "1f507717-ce1d-4512-bcd1-23bb3047fde2" + "d4fefe45-5e88-4086-bc0e-f257e7263597" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163156Z:1f507717-ce1d-4512-bcd1-23bb3047fde2" + "WESTUS:20150813T082538Z:d4fefe45-5e88-4086-bc0e-f257e7263597" ], "Date": [ - "Thu, 18 Jun 2015 16:31:55 GMT" + "Thu, 13 Aug 2015 08:25:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westeurope/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/centralus/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7296" + "4243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,8 +240,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "556823be-0713-45cd-b39f-3c30a9a955bf_130777629349865194" + ], "x-ms-request-id": [ - "efdfec0c-0179-411d-b99d-5d0cdc2dfb94" + "b37c85e0-12dc-4712-98df-f34c180fb474" ], "Cache-Control": [ "no-cache" @@ -242,34 +254,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "12848" ], "x-ms-correlation-request-id": [ - "4152f481-b66e-4292-90eb-13898068212a" + "60f0c437-2197-4e7a-a644-54121f2cc439" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163157Z:4152f481-b66e-4292-90eb-13898068212a" + "WESTUS:20150813T082539Z:60f0c437-2197-4e7a-a644-54121f2cc439" ], "Date": [ - "Thu, 18 Jun 2015 16:31:56 GMT" + "Thu, 13 Aug 2015 08:25:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southcentralus/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4243" + "4651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,8 +295,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "673f534b-84a6-43d2-97dc-4f70930289ca_130831335508658094" + ], "x-ms-request-id": [ - "fc8ffa33-0647-4e7e-a4fc-085a15a6c723" + "85825b17-df69-4e9f-ac1d-1282e0478727" ], "Cache-Control": [ "no-cache" @@ -294,34 +309,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "12847" ], "x-ms-correlation-request-id": [ - "018a4736-7c2a-4b12-ba8c-532ac77851c5" + "d00efa89-c76c-4b55-8350-ed3917451470" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163158Z:018a4736-7c2a-4b12-ba8c-532ac77851c5" + "WESTUS:20150813T082539Z:d00efa89-c76c-4b55-8350-ed3917451470" ], "Date": [ - "Thu, 18 Jun 2015 16:31:57 GMT" + "Thu, 13 Aug 2015 08:25:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southeastasia/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/northeurope/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhldXJvcGUvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5867" + "4651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -335,8 +350,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "4ece37a1-6ab8-42f3-912c-7edd7e63b853_130800712970610927" + ], "x-ms-request-id": [ - "366de37d-0f1a-40cf-8f11-4942a6731a59" + "0d7ec703-ec62-49e3-b328-7e84661e058f" ], "Cache-Control": [ "no-cache" @@ -346,34 +364,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "12846" ], "x-ms-correlation-request-id": [ - "3bf32894-aafc-41fd-bcff-f07c786e2c69" + "cf4891bc-1313-46bf-889c-241b326282d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163159Z:3bf32894-aafc-41fd-bcff-f07c786e2c69" + "WESTUS:20150813T082540Z:cf4891bc-1313-46bf-889c-241b326282d8" ], "Date": [ - "Thu, 18 Jun 2015 16:31:59 GMT" + "Thu, 13 Aug 2015 08:25:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/japaneast/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvamFwYW5lYXN0L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westeurope/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGV1cm9wZS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4651" + "6275" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,8 +405,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "308a2a55-2f9a-413f-b371-a3aa6ba8d63f_130834650030641204" + ], "x-ms-request-id": [ - "ed37b11c-9cd8-43cc-9b10-c4428a953209" + "d1bae808-043b-4e0e-aad6-1a7ae36ccc67" ], "Cache-Control": [ "no-cache" @@ -398,34 +419,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "12845" ], "x-ms-correlation-request-id": [ - "e06f6c1d-446b-45d5-9a76-8874eda5e579" + "9fb8acce-e3a1-4ec7-9813-b7097a200e93" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163200Z:e06f6c1d-446b-45d5-9a76-8874eda5e579" + "WESTUS:20150813T082541Z:9fb8acce-e3a1-4ec7-9813-b7097a200e93" ], "Date": [ - "Thu, 18 Jun 2015 16:31:59 GMT" + "Thu, 13 Aug 2015 08:25:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/japanwest/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvamFwYW53ZXN0L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5867" + "4243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -439,8 +460,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "d7932b2f-46d7-442a-af05-4c43a51e3008_130764570174823330" + ], "x-ms-request-id": [ - "e9e77194-9311-4b6d-84ec-1ddfa60cec4f" + "a75add79-03f3-46f6-9bb2-1b2ad076dd72" ], "Cache-Control": [ "no-cache" @@ -450,34 +474,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "12844" ], "x-ms-correlation-request-id": [ - "4bbd633d-29e7-4ddf-8642-95ca8fffd345" + "84da6695-dbcf-4d12-9a07-9cf8f353e5e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163201Z:4bbd633d-29e7-4ddf-8642-95ca8fffd345" + "WESTUS:20150813T082542Z:84da6695-dbcf-4d12-9a07-9cf8f353e5e5" ], "Date": [ - "Thu, 18 Jun 2015 16:32:00 GMT" + "Thu, 13 Aug 2015 08:25:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/northcentralus/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvbm9ydGhjZW50cmFsdXMvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS92bVNpemVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4651" + "5867" ], "Content-Type": [ "application/json; charset=utf-8" @@ -492,10 +516,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9962732c-067e-473d-be67-2611ea543ba7_130776809985995485" + "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074" ], "x-ms-request-id": [ - "692e580c-b1d5-4677-be4a-eedc7586d2ae" + "5aa82108-d54f-40c5-b5e8-c8b90a322d3f" ], "Cache-Control": [ "no-cache" @@ -505,31 +529,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "12843" ], "x-ms-correlation-request-id": [ - "c3a7d36b-8a18-4e6d-854c-d5e0ca621509" + "bc7e2201-d5c7-47db-9fe6-d44d6d8fb9cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163202Z:c3a7d36b-8a18-4e6d-854c-d5e0ca621509" + "WESTUS:20150813T082543Z:bc7e2201-d5c7-47db-9fe6-d44d6d8fb9cd" ], "Date": [ - "Thu, 18 Jun 2015 16:32:01 GMT" + "Thu, 13 Aug 2015 08:25:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/southcentralus/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/japaneast/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvamFwYW5lYXN0L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "4651" @@ -546,8 +570,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b81f86c1-6442-4046-b9e6-6f462ff27d5c_130800854051207533" + ], "x-ms-request-id": [ - "4728112e-853e-499f-b14d-0cc6a72d8eb2" + "7d39ed33-4ece-48de-b8f0-3473882e3db8" ], "Cache-Control": [ "no-cache" @@ -557,34 +584,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "12842" ], "x-ms-correlation-request-id": [ - "7be013e6-64f6-4ae2-954d-62c31a5785d7" + "816e51a0-53bf-4246-9e76-ceb3887bba0c" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163203Z:7be013e6-64f6-4ae2-954d-62c31a5785d7" + "WESTUS:20150813T082544Z:816e51a0-53bf-4246-9e76-ceb3887bba0c" ], "Date": [ - "Thu, 18 Jun 2015 16:32:03 GMT" + "Thu, 13 Aug 2015 08:25:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/centralus/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/japanwest/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvamFwYW53ZXN0L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4243" + "5867" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,10 +626,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cd803578-e8dd-47a1-9165-3668d1bdb4a3_130777629577381717" + "614ac244-ae5a-4fdb-a75a-547a9500980d_130800866788070844" ], "x-ms-request-id": [ - "107508e1-e8f1-456e-ae05-88fe2b1ab234" + "24349a5b-2457-48c3-be18-c31d45ba87e8" ], "Cache-Control": [ "no-cache" @@ -612,16 +639,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "12841" ], "x-ms-correlation-request-id": [ - "745425d7-a201-4452-a0cd-0f54b9007f8b" + "3105a20b-8885-4275-9936-5544a3f33e45" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T163205Z:745425d7-a201-4452-a0cd-0f54b9007f8b" + "WESTUS:20150813T082545Z:3105a20b-8885-4275-9936-5544a3f33e45" ], "Date": [ - "Thu, 18 Jun 2015 16:32:04 GMT" + "Thu, 13 Aug 2015 08:25:44 GMT" ] }, "StatusCode": 200 @@ -629,8 +656,8 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestLinuxVirtualMachine.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestLinuxVirtualMachine.json index 5082289236b8..1aff9232a082 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestLinuxVirtualMachine.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestLinuxVirtualMachine.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5683?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "59e1afc8-51cc-4741-a679-127abcdfacc4" + ], + "x-ms-correlation-request-id": [ + "59e1afc8-51cc-4741-a679-127abcdfacc4" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T060358Z:59e1afc8-51cc-4741-a679-127abcdfacc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 06:03:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7817?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14995" ], "x-ms-request-id": [ - "6f0fe70f-5db1-49b9-8d4c-84c1ae35e5d6" + "5f7bcc54-837d-4938-88c2-0d815a4d3a00" ], "x-ms-correlation-request-id": [ - "6f0fe70f-5db1-49b9-8d4c-84c1ae35e5d6" + "5f7bcc54-837d-4938-88c2-0d815a4d3a00" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222013Z:6f0fe70f-5db1-49b9-8d4c-84c1ae35e5d6" + "SOUTHCENTRALUS:20150813T060358Z:5f7bcc54-837d-4938-88c2-0d815a4d3a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:20:13 GMT" + "Thu, 13 Aug 2015 06:03:58 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5683?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7817?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14999" ], "x-ms-request-id": [ - "7e93af07-e941-4220-b7e6-2062262d3ced" + "25c50029-d6c4-4101-b8e4-3960a14651dd" ], "x-ms-correlation-request-id": [ - "7e93af07-e941-4220-b7e6-2062262d3ced" + "25c50029-d6c4-4101-b8e4-3960a14651dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222717Z:7e93af07-e941-4220-b7e6-2062262d3ced" + "SOUTHCENTRALUS:20150813T061115Z:25c50029-d6c4-4101-b8e4-3960a14651dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:27:16 GMT" + "Thu, 13 Aug 2015 06:11:15 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5683?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7817?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683\",\r\n \"name\": \"crptestps5683\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817\",\r\n \"name\": \"crptestps7817\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "963862fe-9b57-4c42-a2ef-df2a211e977c" + "104f5de9-0b8f-4eb5-8c96-85e81eddcd5a" ], "x-ms-correlation-request-id": [ - "963862fe-9b57-4c42-a2ef-df2a211e977c" + "104f5de9-0b8f-4eb5-8c96-85e81eddcd5a" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222013Z:963862fe-9b57-4c42-a2ef-df2a211e977c" + "SOUTHCENTRALUS:20150813T060359Z:104f5de9-0b8f-4eb5-8c96-85e81eddcd5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:20:13 GMT" + "Thu, 13 Aug 2015 06:03:59 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14994" ], "x-ms-request-id": [ - "c4aa61f9-59fa-4b81-81e0-0801c5479645" + "7388f868-df05-4374-9860-42d429d73453" ], "x-ms-correlation-request-id": [ - "c4aa61f9-59fa-4b81-81e0-0801c5479645" + "7388f868-df05-4374-9860-42d429d73453" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222014Z:c4aa61f9-59fa-4b81-81e0-0801c5479645" + "SOUTHCENTRALUS:20150813T060359Z:7388f868-df05-4374-9860-42d429d73453" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:20:13 GMT" + "Thu, 13 Aug 2015 06:03:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5683/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7817/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:8aa5e94c-f347-4b16-b02d-7552a31bf66c" + "brazilus:3e79d3ef-50f5-4c14-8852-c9750ee066d8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14770" + "14998" ], "x-ms-correlation-request-id": [ - "74d0cbfb-9794-45e5-a9aa-d870e8e91d2e" + "e87380ca-2d0f-4338-a639-335d74ef1e2d" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222014Z:74d0cbfb-9794-45e5-a9aa-d870e8e91d2e" + "SOUTHCENTRALUS:20150813T060359Z:e87380ca-2d0f-4338-a639-335d74ef1e2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:20:14 GMT" + "Thu, 13 Aug 2015 06:03:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTY4Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzgxNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps7817' under resource group 'crptestps7817' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "48fc8045-a21a-433a-aae4-55e2668d6f81" + "951628f9-359a-419e-a1fc-b9f155e8fa0b" ], "x-ms-correlation-request-id": [ - "48fc8045-a21a-433a-aae4-55e2668d6f81" + "951628f9-359a-419e-a1fc-b9f155e8fa0b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222015Z:48fc8045-a21a-433a-aae4-55e2668d6f81" + "SOUTHCENTRALUS:20150813T060400Z:951628f9-359a-419e-a1fc-b9f155e8fa0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:20:15 GMT" + "Thu, 13 Aug 2015 06:03:59 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTY4Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzgxNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683\",\r\n \"etag\": \"W/\\\"52d7b74d-1bb2-4d8e-9ae4-a505d24d695c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683/subnets/subnetcrptestps5683\",\r\n \"etag\": \"W/\\\"52d7b74d-1bb2-4d8e-9ae4-a505d24d695c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817\",\r\n \"etag\": \"W/\\\"7c784c84-b336-4715-8b6e-42e326776b36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6bf87bf3-c0e7-4df1-80b0-e4ad417961bc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817/subnets/subnetcrptestps7817\",\r\n \"etag\": \"W/\\\"7c784c84-b336-4715-8b6e-42e326776b36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "0d5641a1-8bdc-4cd2-9606-2cc86194c4ef" + "bc6549cc-2b23-48d0-b766-4a191d5f844b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"52d7b74d-1bb2-4d8e-9ae4-a505d24d695c\"" + "W/\"7c784c84-b336-4715-8b6e-42e326776b36\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "14985" ], "x-ms-correlation-request-id": [ - "73e99ad4-b61e-4e5b-9226-9eb0be0352ed" + "5a24663e-d449-4cb4-a61d-d39faf92e975" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222026Z:73e99ad4-b61e-4e5b-9226-9eb0be0352ed" + "SOUTHCENTRALUS:20150813T060402Z:5a24663e-d449-4cb4-a61d-d39faf92e975" ], "Date": [ - "Thu, 18 Jun 2015 22:20:25 GMT" + "Thu, 13 Aug 2015 06:04:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTY4Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzgxNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683\",\r\n \"etag\": \"W/\\\"52d7b74d-1bb2-4d8e-9ae4-a505d24d695c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683/subnets/subnetcrptestps5683\",\r\n \"etag\": \"W/\\\"52d7b74d-1bb2-4d8e-9ae4-a505d24d695c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817\",\r\n \"etag\": \"W/\\\"7c784c84-b336-4715-8b6e-42e326776b36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6bf87bf3-c0e7-4df1-80b0-e4ad417961bc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817/subnets/subnetcrptestps7817\",\r\n \"etag\": \"W/\\\"7c784c84-b336-4715-8b6e-42e326776b36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "9dff7c60-0170-4288-b29a-79c6866415b6" + "eb84a066-57e9-4826-8a80-87312e914472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"52d7b74d-1bb2-4d8e-9ae4-a505d24d695c\"" + "W/\"7c784c84-b336-4715-8b6e-42e326776b36\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" + "14984" ], "x-ms-correlation-request-id": [ - "240a8be8-1971-4b0a-928b-d1d16e0385da" + "3c8300b0-c8f1-4634-94cd-5a798b11d288" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222026Z:240a8be8-1971-4b0a-928b-d1d16e0385da" + "SOUTHCENTRALUS:20150813T060402Z:3c8300b0-c8f1-4634-94cd-5a798b11d288" ], "Date": [ - "Thu, 18 Jun 2015 22:20:25 GMT" + "Thu, 13 Aug 2015 06:04:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTY4Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualnetworks/vnetcrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNzgxNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps5683\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps5683\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps7817\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps7817\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -423,10 +471,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683\",\r\n \"etag\": \"W/\\\"f24a739a-65a1-4ede-920b-e7b2da1c6fee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683/subnets/subnetcrptestps5683\",\r\n \"etag\": \"W/\\\"f24a739a-65a1-4ede-920b-e7b2da1c6fee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817\",\r\n \"etag\": \"W/\\\"2268792f-2ef3-48eb-b5c4-3bcb54d3c142\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6bf87bf3-c0e7-4df1-80b0-e4ad417961bc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817/subnets/subnetcrptestps7817\",\r\n \"etag\": \"W/\\\"2268792f-2ef3-48eb-b5c4-3bcb54d3c142\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "965" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "20321f81-d190-475b-88b4-495131a2bdcd" + "5ddbd254-5523-4b6c-8df1-f9d71a8db299" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/20321f81-d190-475b-88b4-495131a2bdcd?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/5ddbd254-5523-4b6c-8df1-f9d71a8db299?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,78 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "3bb63120-7e03-459a-8531-d05138dc8ad1" + "77c8cb1c-a4fe-410f-ad72-2b6aacdf49b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222015Z:3bb63120-7e03-459a-8531-d05138dc8ad1" + "SOUTHCENTRALUS:20150813T060401Z:77c8cb1c-a4fe-410f-ad72-2b6aacdf49b1" ], "Date": [ - "Thu, 18 Jun 2015 22:20:15 GMT" + "Thu, 13 Aug 2015 06:04:00 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/20321f81-d190-475b-88b4-495131a2bdcd?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjAzMjFmODEtZDE5MC00NzViLTg4YjQtNDk1MTMxYTJiZGNkP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cde9581e-9bc8-4a1a-bb50-ee668b7839f0" - ], - "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": [ - "14752" - ], - "x-ms-correlation-request-id": [ - "629913d5-7e0b-488e-a0f3-92546f1f6a5f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150618T222015Z:629913d5-7e0b-488e-a0f3-92546f1f6a5f" - ], - "Date": [ - "Thu, 18 Jun 2015 22:20:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/20321f81-d190-475b-88b4-495131a2bdcd?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjAzMjFmODEtZDE5MC00NzViLTg4YjQtNDk1MTMxYTJiZGNkP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/5ddbd254-5523-4b6c-8df1-f9d71a8db299?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWRkYmQyNTQtNTUyMy00YjZjLThkZjEtZjlkNzFhOGRiMjk5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "9740b00e-a2f0-4588-86b6-26a792f97057" + "569bc009-56dc-4a58-8f22-bb3c7ec04ada" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14986" ], "x-ms-correlation-request-id": [ - "2c18b21e-f83a-4779-91f4-54a9704ab434" + "66ecc26a-df6a-46cd-9358-d22c304b237e" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222025Z:2c18b21e-f83a-4779-91f4-54a9704ab434" + "SOUTHCENTRALUS:20150813T060402Z:66ecc26a-df6a-46cd-9358-d22c304b237e" ], "Date": [ - "Thu, 18 Jun 2015 22:20:25 GMT" + "Thu, 13 Aug 2015 06:04:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTY4My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzgxNy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps7817' under resource group 'crptestps7817' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "74877bd0-1931-494f-9bf0-e60b2253929e" + "edf23f5e-f094-4248-aca7-0f736c64f172" ], "x-ms-correlation-request-id": [ - "74877bd0-1931-494f-9bf0-e60b2253929e" + "edf23f5e-f094-4248-aca7-0f736c64f172" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222026Z:74877bd0-1931-494f-9bf0-e60b2253929e" + "SOUTHCENTRALUS:20150813T060402Z:edf23f5e-f094-4248-aca7-0f736c64f172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +617,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:20:25 GMT" + "Thu, 13 Aug 2015 06:04:01 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTY4My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzgxNy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +632,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683\",\r\n \"etag\": \"W/\\\"39d7c219-1786-4848-b17e-d66bc3c35129\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5683\",\r\n \"fqdn\": \"pubipcrptestps5683.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817\",\r\n \"etag\": \"W/\\\"100a32f0-7472-4aa9-9ac8-1466e9636905\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65d0d330-9ad4-47b9-b679-d92eacf8f3c3\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7817\",\r\n \"fqdn\": \"pubipcrptestps7817.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "55fb230d-30c7-4de1-b300-a31b99676321" + "ce4f4df8-04c9-4c18-9970-8c17f31ce728" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +656,30 @@ "no-cache" ], "ETag": [ - "W/\"39d7c219-1786-4848-b17e-d66bc3c35129\"" + "W/\"100a32f0-7472-4aa9-9ac8-1466e9636905\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14981" ], "x-ms-correlation-request-id": [ - "28bab858-752f-49c9-8d55-f1ca49b348f1" + "3b94d9b7-7091-4fb1-b449-d7efe26850fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222037Z:28bab858-752f-49c9-8d55-f1ca49b348f1" + "SOUTHCENTRALUS:20150813T060404Z:3b94d9b7-7091-4fb1-b449-d7efe26850fd" ], "Date": [ - "Thu, 18 Jun 2015 22:20:36 GMT" + "Thu, 13 Aug 2015 06:04:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTY4My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzgxNy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683\",\r\n \"etag\": \"W/\\\"39d7c219-1786-4848-b17e-d66bc3c35129\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5683\",\r\n \"fqdn\": \"pubipcrptestps5683.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817\",\r\n \"etag\": \"W/\\\"100a32f0-7472-4aa9-9ac8-1466e9636905\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65d0d330-9ad4-47b9-b679-d92eacf8f3c3\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7817\",\r\n \"fqdn\": \"pubipcrptestps7817.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "51465251-dd3e-4b6b-bfb6-d12be10cf009" + "9970b62e-5af4-405a-82bd-0becd03ed227" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,32 +711,32 @@ "no-cache" ], "ETag": [ - "W/\"39d7c219-1786-4848-b17e-d66bc3c35129\"" + "W/\"100a32f0-7472-4aa9-9ac8-1466e9636905\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14980" ], "x-ms-correlation-request-id": [ - "c0b624a2-f05c-4270-9b46-350b8214eb4f" + "5d6816dc-8e95-43a3-8b47-8a05937ac328" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222037Z:c0b624a2-f05c-4270-9b46-350b8214eb4f" + "SOUTHCENTRALUS:20150813T060404Z:5d6816dc-8e95-43a3-8b47-8a05937ac328" ], "Date": [ - "Thu, 18 Jun 2015 22:20:36 GMT" + "Thu, 13 Aug 2015 06:04:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTY4My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNzgxNy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5683\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps5683\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7817\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps7817\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -755,10 +748,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683\",\r\n \"etag\": \"W/\\\"9e3187bc-9ed1-46d6-8463-c7e4a312db8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5683\",\r\n \"fqdn\": \"pubipcrptestps5683.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817\",\r\n \"etag\": \"W/\\\"e8643db3-df83-49b7-852d-937deab3077f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"65d0d330-9ad4-47b9-b679-d92eacf8f3c3\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps7817\",\r\n \"fqdn\": \"pubipcrptestps7817.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "554" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -773,10 +766,10 @@ "10" ], "x-ms-request-id": [ - "4a9a43d5-c971-4dd8-a639-67f917f75cef" + "e8e37ca9-5146-4da5-b65b-eeb073dc4453" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/4a9a43d5-c971-4dd8-a639-67f917f75cef?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e8e37ca9-5146-4da5-b65b-eeb073dc4453?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,78 +782,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "c59c84b4-d4e9-4b0a-a1f4-2416df083e59" + "30cb3534-e4d4-4821-a1c9-fff4cca089ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222027Z:c59c84b4-d4e9-4b0a-a1f4-2416df083e59" + "SOUTHCENTRALUS:20150813T060403Z:30cb3534-e4d4-4821-a1c9-fff4cca089ae" ], "Date": [ - "Thu, 18 Jun 2015 22:20:26 GMT" + "Thu, 13 Aug 2015 06:04:02 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/4a9a43d5-c971-4dd8-a639-67f917f75cef?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YTQzZDUtYzk3MS00ZGQ4LWE2MzktNjdmOTE3Zjc1Y2VmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "738694d0-9558-44c3-b9f6-a4c575f136fc" - ], - "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": [ - "14747" - ], - "x-ms-correlation-request-id": [ - "896aea06-936c-4055-85d2-ba6236308fbe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150618T222027Z:896aea06-936c-4055-85d2-ba6236308fbe" - ], - "Date": [ - "Thu, 18 Jun 2015 22:20:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/4a9a43d5-c971-4dd8-a639-67f917f75cef?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YTQzZDUtYzk3MS00ZGQ4LWE2MzktNjdmOTE3Zjc1Y2VmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e8e37ca9-5146-4da5-b65b-eeb073dc4453?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZThlMzdjYTktNTE0Ni00ZGE1LWI2NWItZWViMDczZGM0NDUzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -886,7 +824,7 @@ "no-cache" ], "x-ms-request-id": [ - "6af4fe09-eb66-44df-b8c3-e8fae928e86e" + "66f255bf-daf2-4384-a3c0-0dd935e9a46f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14982" ], "x-ms-correlation-request-id": [ - "47d529a9-e386-42f7-b9ac-bd750dcf2969" + "f42e013d-381c-4516-816e-e67ccc7f027a" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222037Z:47d529a9-e386-42f7-b9ac-bd750dcf2969" + "SOUTHCENTRALUS:20150813T060404Z:f42e013d-381c-4516-816e-e67ccc7f027a" ], "Date": [ - "Thu, 18 Jun 2015 22:20:36 GMT" + "Thu, 13 Aug 2015 06:04:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,10 +861,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps7817' under resource group 'crptestps7817' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -941,13 +879,13 @@ "gateway" ], "x-ms-request-id": [ - "e15eed0e-5ed0-4aae-a680-13d7ce91fc26" + "854db723-981a-4ef1-b94c-eebd70e42c1f" ], "x-ms-correlation-request-id": [ - "e15eed0e-5ed0-4aae-a680-13d7ce91fc26" + "854db723-981a-4ef1-b94c-eebd70e42c1f" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222037Z:e15eed0e-5ed0-4aae-a680-13d7ce91fc26" + "SOUTHCENTRALUS:20150813T060404Z:854db723-981a-4ef1-b94c-eebd70e42c1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -956,14 +894,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:20:36 GMT" + "Thu, 13 Aug 2015 06:04:03 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +909,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683\",\r\n \"etag\": \"W/\\\"4548496b-5fe6-4eef-a4df-6c88c7e3e699\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4548496b-5fe6-4eef-a4df-6c88c7e3e699\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683/subnets/subnetcrptestps5683\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817\",\r\n \"etag\": \"W/\\\"a23e59b1-c7f2-4f57-82a7-1b28fa56e14c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"22ff4e32-031a-425c-9fc2-ab87cef26516\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a23e59b1-c7f2-4f57-82a7-1b28fa56e14c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817/subnets/subnetcrptestps7817\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +924,7 @@ "no-cache" ], "x-ms-request-id": [ - "5369db3d-1162-44d6-ad39-2f9087969412" + "2396900f-dae5-47b1-b95e-491efb285d0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,30 +933,30 @@ "no-cache" ], "ETag": [ - "W/\"4548496b-5fe6-4eef-a4df-6c88c7e3e699\"" + "W/\"a23e59b1-c7f2-4f57-82a7-1b28fa56e14c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14977" ], "x-ms-correlation-request-id": [ - "ce530277-982a-422c-a7d6-6554e1b09c70" + "befe9231-f5d1-4a2a-9bb6-9091f9b4abad" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222044Z:ce530277-982a-422c-a7d6-6554e1b09c70" + "SOUTHCENTRALUS:20150813T060405Z:befe9231-f5d1-4a2a-9bb6-9091f9b4abad" ], "Date": [ - "Thu, 18 Jun 2015 22:20:43 GMT" + "Thu, 13 Aug 2015 06:04:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683\",\r\n \"etag\": \"W/\\\"4548496b-5fe6-4eef-a4df-6c88c7e3e699\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4548496b-5fe6-4eef-a4df-6c88c7e3e699\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683/subnets/subnetcrptestps5683\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817\",\r\n \"etag\": \"W/\\\"a23e59b1-c7f2-4f57-82a7-1b28fa56e14c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"22ff4e32-031a-425c-9fc2-ab87cef26516\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a23e59b1-c7f2-4f57-82a7-1b28fa56e14c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817/subnets/subnetcrptestps7817\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "3634f76c-0cbe-4f0b-837c-d21b69986bd0" + "9fca85f8-b8bf-46f2-9c92-eaac504ba92d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,47 +988,47 @@ "no-cache" ], "ETag": [ - "W/\"4548496b-5fe6-4eef-a4df-6c88c7e3e699\"" + "W/\"a23e59b1-c7f2-4f57-82a7-1b28fa56e14c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" + "14976" ], "x-ms-correlation-request-id": [ - "8beddd47-10f6-41ac-ac86-869bd30d2af3" + "11b39c93-b1b8-4646-a2bb-d7fd0ca253d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222044Z:8beddd47-10f6-41ac-ac86-869bd30d2af3" + "SOUTHCENTRALUS:20150813T060405Z:11b39c93-b1b8-4646-a2bb-d7fd0ca253d5" ], "Date": [ - "Thu, 18 Jun 2015 22:20:43 GMT" + "Thu, 13 Aug 2015 06:04:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683/subnets/subnetcrptestps5683\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"niccrptestps5683\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817/subnets/subnetcrptestps7817\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps7817\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "863" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5683\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683\",\r\n \"etag\": \"W/\\\"4548496b-5fe6-4eef-a4df-6c88c7e3e699\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4548496b-5fe6-4eef-a4df-6c88c7e3e699\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5683\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5683/subnets/subnetcrptestps5683\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps7817\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817\",\r\n \"etag\": \"W/\\\"a23e59b1-c7f2-4f57-82a7-1b28fa56e14c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"22ff4e32-031a-425c-9fc2-ab87cef26516\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a23e59b1-c7f2-4f57-82a7-1b28fa56e14c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps7817\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/virtualNetworks/vnetcrptestps7817/subnets/subnetcrptestps7817\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1102,10 +1040,10 @@ "no-cache" ], "x-ms-request-id": [ - "faee1d66-b28f-43e2-981f-f465eeafa6b5" + "d4ddd76d-0b6c-408d-9001-6a05e7fb3605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/faee1d66-b28f-43e2-981f-f465eeafa6b5?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/d4ddd76d-0b6c-408d-9001-6a05e7fb3605?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "9e1488a1-bc23-48a4-a768-7f9ebec8682f" + "5ed9cb08-7426-4ebc-bd39-7698f8491768" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222044Z:9e1488a1-bc23-48a4-a768-7f9ebec8682f" + "SOUTHCENTRALUS:20150813T060405Z:5ed9cb08-7426-4ebc-bd39-7698f8491768" ], "Date": [ - "Thu, 18 Jun 2015 22:20:43 GMT" + "Thu, 13 Aug 2015 06:04:04 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/faee1d66-b28f-43e2-981f-f465eeafa6b5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmFlZTFkNjYtYjI4Zi00M2UyLTk4MWYtZjQ2NWVlYWZhNmI1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/d4ddd76d-0b6c-408d-9001-6a05e7fb3605?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDRkZGQ3NmQtMGI2Yy00MDhkLTkwMDEtNmEwNWU3ZmIzNjA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1160,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "e22a86bf-63b4-455a-a317-71c228edc96d" + "8a6010c1-ff98-4a7a-8682-85798345ff53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14978" ], "x-ms-correlation-request-id": [ - "26f43abf-1d3f-4fad-8622-d1997a66cfa1" + "cec87a26-5bd7-4161-9722-ca425b94f750" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222044Z:26f43abf-1d3f-4fad-8622-d1997a66cfa1" + "SOUTHCENTRALUS:20150813T060405Z:cec87a26-5bd7-4161-9722-ca425b94f750" ], "Date": [ - "Thu, 18 Jun 2015 22:20:43 GMT" + "Thu, 13 Aug 2015 06:04:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Storage/storageAccounts/stocrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NjgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Storage/storageAccounts/stocrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM3ODE3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1200,7 +1138,7 @@ "88" ], "x-ms-client-request-id": [ - "b7e9387d-63cd-4419-8b96-df9929bff4a9" + "62dff9db-e38b-40c8-a424-974b14cd65a7" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1224,44 +1162,44 @@ "25" ], "x-ms-request-id": [ - "6bd1afd7-e206-44e3-905f-471279335762" + "2e1623d9-ff9c-46e5-b955-612f0456555d" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/6bd1afd7-e206-44e3-905f-471279335762?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/2e1623d9-ff9c-46e5-b955-612f0456555d?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "78f0ee48-6634-43ab-87e9-1b22edc0e0a1" + "a770cd94-68c3-43f3-a438-a1a4998020a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222047Z:78f0ee48-6634-43ab-87e9-1b22edc0e0a1" + "SOUTHCENTRALUS:20150813T060409Z:a770cd94-68c3-43f3-a438-a1a4998020a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:20:46 GMT" + "Thu, 13 Aug 2015 06:04:08 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/6bd1afd7-e206-44e3-905f-471279335762?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzZiZDFhZmQ3LWUyMDYtNDRlMy05MDVmLTQ3MTI3OTMzNTc2Mj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/2e1623d9-ff9c-46e5-b955-612f0456555d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJlMTYyM2Q5LWZmOWMtNDZlNS1iOTU1LTYxMmYwNDU2NTU1ZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72fe64d1-e04a-48a8-9173-d2bfbbd14ceb" + "13235637-8ba9-4a38-9375-261e36ce46e6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1285,44 +1223,44 @@ "25" ], "x-ms-request-id": [ - "1f582af6-e0a8-4d77-874b-b478814a197a" + "f9ea5756-9bb6-4a09-a5e5-05417d84db3d" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/6bd1afd7-e206-44e3-905f-471279335762?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/2e1623d9-ff9c-46e5-b955-612f0456555d?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "14999" ], "x-ms-correlation-request-id": [ - "9372d9f9-2168-4c49-9ea8-227cf1d46d27" + "b93470ab-92e5-42d4-9d53-d75b600ead8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222047Z:9372d9f9-2168-4c49-9ea8-227cf1d46d27" + "SOUTHCENTRALUS:20150813T060409Z:b93470ab-92e5-42d4-9d53-d75b600ead8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:20:47 GMT" + "Thu, 13 Aug 2015 06:04:09 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/6bd1afd7-e206-44e3-905f-471279335762?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzZiZDFhZmQ3LWUyMDYtNDRlMy05MDVmLTQ3MTI3OTMzNTc2Mj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/2e1623d9-ff9c-46e5-b955-612f0456555d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzJlMTYyM2Q5LWZmOWMtNDZlNS1iOTU1LTYxMmYwNDU2NTU1ZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2656d6cb-6edb-49b8-8a6a-326eb5d74927" + "174247f2-f7ff-45c8-a477-c160ce6c9159" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1343,7 +1281,7 @@ "no-cache" ], "x-ms-request-id": [ - "8f9cc7d5-f818-4726-845b-4fef19552dab" + "fd8797c7-2f26-46b2-a120-2c82b09a8621" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1291,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14998" ], "x-ms-correlation-request-id": [ - "882968e6-20d5-490d-aa79-4196e731eb7c" + "b95caed1-c46f-45a9-8082-8f8714c1eaa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222113Z:882968e6-20d5-490d-aa79-4196e731eb7c" + "SOUTHCENTRALUS:20150813T060434Z:b95caed1-c46f-45a9-8082-8f8714c1eaa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:21:12 GMT" + "Thu, 13 Aug 2015 06:04:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Storage/storageAccounts/stocrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NjgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Storage/storageAccounts/stocrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM3ODE3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9e96d7e-0934-46a7-93bd-b698e54d74ec" + "7047e9b0-5e8b-49b6-80f7-6efc23b89bce" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Storage/storageAccounts/stocrptestps5683\",\r\n \"name\": \"stocrptestps5683\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5683.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5683.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5683.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-18T22:20:46.1604798Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Storage/storageAccounts/stocrptestps7817\",\r\n \"name\": \"stocrptestps7817\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps7817.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps7817.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps7817.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T06:04:07.1454538Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1398,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "1abfb385-46fe-4eb6-bf3d-58851c04f392" + "82c069d3-e3fe-44cd-81f5-1a0d5e85e79e" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1346,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" + "14997" ], "x-ms-correlation-request-id": [ - "d8d6a188-a393-469e-87b3-6f728891eb37" + "0914ed1b-697e-46a4-8bab-ccf03bf8c851" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222113Z:d8d6a188-a393-469e-87b3-6f728891eb37" + "SOUTHCENTRALUS:20150813T060434Z:0914ed1b-697e-46a4-8bab-ccf03bf8c851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:21:13 GMT" + "Thu, 13 Aug 2015 06:04:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Storage/storageAccounts/stocrptestps5683?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NjgzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Storage/storageAccounts/stocrptestps7817?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM3ODE3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08b25bea-2e11-4ba4-bc98-7e40dbfc6ef1" + "365a9bc1-094a-4292-b0a2-841164b6aa59" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Storage/storageAccounts/stocrptestps5683\",\r\n \"name\": \"stocrptestps5683\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5683.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5683.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5683.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-18T22:20:46.1604798Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Storage/storageAccounts/stocrptestps7817\",\r\n \"name\": \"stocrptestps7817\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps7817.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps7817.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps7817.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T06:04:07.1454538Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1453,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "552ac06e-c710-43e7-baff-faeee483c9e3" + "0e00bf52-eedc-45ae-b1e9-e359ca681a65" ], "Cache-Control": [ "no-cache" @@ -1463,28 +1401,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14996" ], "x-ms-correlation-request-id": [ - "7c3b055f-0525-4b32-b7b6-92f20aad898b" + "b27205ca-eb97-4f52-92e7-61da9d8f2574" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222113Z:7c3b055f-0525-4b32-b7b6-92f20aad898b" + "SOUTHCENTRALUS:20150813T060434Z:b27205ca-eb97-4f52-92e7-61da9d8f2574" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:21:13 GMT" + "Thu, 13 Aug 2015 06:04:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Compute/virtualMachines/vmcrptestps5683?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Compute/virtualMachines/vmcrptestps7817?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE\",\r\n \"sku\": \"13.2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5683.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps5683\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5683\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE\",\r\n \"sku\": \"13.2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7817.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps7817\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps7817\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1493,10 +1431,10 @@ "1046" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE\",\r\n \"sku\": \"13.2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5683.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Compute/virtualMachines/vmcrptestps5683\",\r\n \"name\": \"vmcrptestps5683\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE\",\r\n \"sku\": \"13.2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7817.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Compute/virtualMachines/vmcrptestps7817\",\r\n \"name\": \"vmcrptestps7817\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1274" @@ -1511,13 +1449,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "034ad7f4-b8f6-4171-914d-214bd7147f11" + "c5852e43-1f00-4d30-8ffc-c1eedd097b52" ], "Cache-Control": [ "no-cache" @@ -1527,31 +1468,86 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "c9463457-72d4-4c32-9609-67b44439e1bb" + "dfd29d87-c34e-47a3-8222-6564794b3a1d" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222114Z:c9463457-72d4-4c32-9609-67b44439e1bb" + "SOUTHCENTRALUS:20150813T060437Z:dfd29d87-c34e-47a3-8222-6564794b3a1d" ], "Date": [ - "Thu, 18 Jun 2015 22:21:14 GMT" + "Thu, 13 Aug 2015 06:04:36 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM0YWQ3ZjQtYjhmNi00MTcxLTkxNGQtMjE0YmQ3MTQ3ZjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], + "x-ms-request-id": [ + "09a892fb-69b5-44f3-8215-3553d4fcd1b4" + ], + "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": [ + "fc4ae43c-5e26-4458-9626-27155efcaf3d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T060437Z:fc4ae43c-5e26-4458-9626-27155efcaf3d" + ], + "Date": [ + "Thu, 13 Aug 2015 06:04:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"034ad7f4-b8f6-4171-914d-214bd7147f11\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:21:14.0623577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1568,8 +1564,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "fb0b94c4-98d4-42fc-a9b2-b17a38a5fa1c" + "e3e89faf-678d-4ce3-bcb6-020ada76a476" ], "Cache-Control": [ "no-cache" @@ -1579,31 +1578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" + "14998" ], "x-ms-correlation-request-id": [ - "66a4ec6d-b75c-42ea-98bd-1ee85a1a486c" + "ce6ff904-8885-404c-a35b-230131646b79" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222114Z:66a4ec6d-b75c-42ea-98bd-1ee85a1a486c" + "SOUTHCENTRALUS:20150813T060507Z:ce6ff904-8885-404c-a35b-230131646b79" ], "Date": [ - "Thu, 18 Jun 2015 22:21:14 GMT" + "Thu, 13 Aug 2015 06:05:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM0YWQ3ZjQtYjhmNi00MTcxLTkxNGQtMjE0YmQ3MTQ3ZjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"034ad7f4-b8f6-4171-914d-214bd7147f11\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:21:14.0623577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1620,8 +1619,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "72e89667-52ba-4917-ab12-2a5df764a2e4" + "9b825926-1290-49f6-ac8d-0509814397b2" ], "Cache-Control": [ "no-cache" @@ -1631,31 +1633,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14997" ], "x-ms-correlation-request-id": [ - "dedeab6d-c69b-468f-95b4-a4a99341ead5" + "25545ef9-b948-4cd1-9088-c7874bf751f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222145Z:dedeab6d-c69b-468f-95b4-a4a99341ead5" + "SOUTHCENTRALUS:20150813T060538Z:25545ef9-b948-4cd1-9088-c7874bf751f7" ], "Date": [ - "Thu, 18 Jun 2015 22:21:45 GMT" + "Thu, 13 Aug 2015 06:05:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM0YWQ3ZjQtYjhmNi00MTcxLTkxNGQtMjE0YmQ3MTQ3ZjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"034ad7f4-b8f6-4171-914d-214bd7147f11\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:21:14.0623577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1672,8 +1674,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "fc7d1e1d-6f0b-4551-bb63-b91addbe8ab3" + "8706d59a-536e-4e6a-afcc-c5c18a0003f5" ], "Cache-Control": [ "no-cache" @@ -1683,31 +1688,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" + "14996" ], "x-ms-correlation-request-id": [ - "05517718-83fe-4dda-a2cd-209b36e2a0a9" + "6d3fcc3b-61a4-45d1-a8f6-a2ad6138f795" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222215Z:05517718-83fe-4dda-a2cd-209b36e2a0a9" + "SOUTHCENTRALUS:20150813T060608Z:6d3fcc3b-61a4-45d1-a8f6-a2ad6138f795" ], "Date": [ - "Thu, 18 Jun 2015 22:22:14 GMT" + "Thu, 13 Aug 2015 06:06:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM0YWQ3ZjQtYjhmNi00MTcxLTkxNGQtMjE0YmQ3MTQ3ZjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"034ad7f4-b8f6-4171-914d-214bd7147f11\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:21:14.0623577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1724,8 +1729,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "cafb4cfc-a9e5-43f9-ac77-6afe9f6de067" + "7f8b86b6-7989-4c4a-ba81-e8f82469153d" ], "Cache-Control": [ "no-cache" @@ -1735,31 +1743,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14995" ], "x-ms-correlation-request-id": [ - "6cd97084-f48d-4b54-a9cb-1b873ccf1389" + "d39620c2-2682-4501-ab25-b157c5b71da3" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222245Z:6cd97084-f48d-4b54-a9cb-1b873ccf1389" + "SOUTHCENTRALUS:20150813T060638Z:d39620c2-2682-4501-ab25-b157c5b71da3" ], "Date": [ - "Thu, 18 Jun 2015 22:22:45 GMT" + "Thu, 13 Aug 2015 06:06:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM0YWQ3ZjQtYjhmNi00MTcxLTkxNGQtMjE0YmQ3MTQ3ZjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"034ad7f4-b8f6-4171-914d-214bd7147f11\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:21:14.0623577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1776,8 +1784,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c39be77a-2f4f-42ee-8b90-f833a1938a73" + "6b10398e-838d-4ed6-b093-acc0cd83a637" ], "Cache-Control": [ "no-cache" @@ -1787,31 +1798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14994" ], "x-ms-correlation-request-id": [ - "9883d4bd-7fc2-4c23-b399-2d87697a953f" + "eeb05507-2b31-46fe-b376-80134a0cd795" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222315Z:9883d4bd-7fc2-4c23-b399-2d87697a953f" + "SOUTHCENTRALUS:20150813T060709Z:eeb05507-2b31-46fe-b376-80134a0cd795" ], "Date": [ - "Thu, 18 Jun 2015 22:23:14 GMT" + "Thu, 13 Aug 2015 06:07:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM0YWQ3ZjQtYjhmNi00MTcxLTkxNGQtMjE0YmQ3MTQ3ZjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"034ad7f4-b8f6-4171-914d-214bd7147f11\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:21:14.0623577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1828,8 +1839,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "816fa667-78bf-4a71-ba56-10704b18ee42" + "e38ae74a-7fec-46f6-bdd1-87905f1ffa06" ], "Cache-Control": [ "no-cache" @@ -1839,31 +1853,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14758" + "14993" ], "x-ms-correlation-request-id": [ - "77e88cc6-f8d1-4faa-89f0-101634177be4" + "6f389361-e9c7-4ba0-ac60-0c7bafa7fdd4" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222345Z:77e88cc6-f8d1-4faa-89f0-101634177be4" + "SOUTHCENTRALUS:20150813T060739Z:6f389361-e9c7-4ba0-ac60-0c7bafa7fdd4" ], "Date": [ - "Thu, 18 Jun 2015 22:23:45 GMT" + "Thu, 13 Aug 2015 06:07:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM0YWQ3ZjQtYjhmNi00MTcxLTkxNGQtMjE0YmQ3MTQ3ZjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"034ad7f4-b8f6-4171-914d-214bd7147f11\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:21:14.0623577-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1880,8 +1894,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "76415d30-5d60-40a7-88eb-023fd4377900" + "de1b267d-2f60-44b5-97ae-978e3dc943fd" ], "Cache-Control": [ "no-cache" @@ -1891,31 +1908,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "14992" ], "x-ms-correlation-request-id": [ - "51193c44-cec8-405c-aa75-437a5f551a02" + "35f979cb-c816-414d-b8d8-51c1d605562a" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222415Z:51193c44-cec8-405c-aa75-437a5f551a02" + "SOUTHCENTRALUS:20150813T060809Z:35f979cb-c816-414d-b8d8-51c1d605562a" ], "Date": [ - "Thu, 18 Jun 2015 22:24:14 GMT" + "Thu, 13 Aug 2015 06:08:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/034ad7f4-b8f6-4171-914d-214bd7147f11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDM0YWQ3ZjQtYjhmNi00MTcxLTkxNGQtMjE0YmQ3MTQ3ZjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c5852e43-1f00-4d30-8ffc-c1eedd097b52?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU4NTJlNDMtMWYwMC00ZDMwLThmZmMtYzFlZWRkMDk3YjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"034ad7f4-b8f6-4171-914d-214bd7147f11\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T15:21:14.0623577-07:00\",\r\n \"endTime\": \"2015-06-18T15:24:45.1248745-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c5852e43-1f00-4d30-8ffc-c1eedd097b52\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:04:36.6840014-07:00\",\r\n \"endTime\": \"2015-08-12T23:08:38.1214831-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -1932,8 +1949,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b94d2e5e-18b6-4d4c-a973-a6a151062157" + "a8bfc7fd-2ca7-4e21-bc83-303d683fd231" ], "Cache-Control": [ "no-cache" @@ -1943,31 +1963,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14991" ], "x-ms-correlation-request-id": [ - "c03159e6-3490-4f9a-a62e-080f4288da67" + "1268f655-3a62-436f-9a36-d9e155d0fbc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222445Z:c03159e6-3490-4f9a-a62e-080f4288da67" + "SOUTHCENTRALUS:20150813T060839Z:1268f655-3a62-436f-9a36-d9e155d0fbc9" ], "Date": [ - "Thu, 18 Jun 2015 22:24:45 GMT" + "Thu, 13 Aug 2015 06:08:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Compute/virtualMachines/vmcrptestps5683?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Compute/virtualMachines/vmcrptestps7817?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE\",\r\n \"sku\": \"13.2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5683.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Network/networkInterfaces/niccrptestps5683\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Compute/virtualMachines/vmcrptestps5683\",\r\n \"name\": \"vmcrptestps5683\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE\",\r\n \"sku\": \"13.2\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps7817.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Network/networkInterfaces/niccrptestps7817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Compute/virtualMachines/vmcrptestps7817\",\r\n \"name\": \"vmcrptestps7817\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1275" @@ -1984,8 +2004,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "891c8c7e-6dac-409a-ae64-4c96101c8c83" + "305e9b45-4f7e-4de3-aad1-8643e7876b6f" ], "Cache-Control": [ "no-cache" @@ -1995,28 +2018,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14990" ], "x-ms-correlation-request-id": [ - "eddf73c3-6af5-4ff0-8bc4-7dab9f74b5a4" + "c3d6ec90-2785-4771-9fe8-25b85f7f4019" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222445Z:eddf73c3-6af5-4ff0-8bc4-7dab9f74b5a4" + "SOUTHCENTRALUS:20150813T060840Z:c3d6ec90-2785-4771-9fe8-25b85f7f4019" ], "Date": [ - "Thu, 18 Jun 2015 22:24:45 GMT" + "Thu, 13 Aug 2015 06:08:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps5683/providers/Microsoft.Compute/virtualMachines/vmcrptestps5683?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps7817/providers/Microsoft.Compute/virtualMachines/vmcrptestps7817?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc4MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -2031,50 +2054,53 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3037df94-4c4c-4581-aea7-eeacbdf931cf?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/498283d4-0cbf-476d-985c-44d8c4f8bf9f?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3037df94-4c4c-4581-aea7-eeacbdf931cf" + "498283d4-0cbf-476d-985c-44d8c4f8bf9f" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3037df94-4c4c-4581-aea7-eeacbdf931cf?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/498283d4-0cbf-476d-985c-44d8c4f8bf9f?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "13e41bf3-00f5-47de-a351-eb8dd7107ac2" + "b59df9fb-6fb1-4fbf-b621-2b65f26af1e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222446Z:13e41bf3-00f5-47de-a351-eb8dd7107ac2" + "SOUTHCENTRALUS:20150813T060842Z:b59df9fb-6fb1-4fbf-b621-2b65f26af1e0" ], "Date": [ - "Thu, 18 Jun 2015 22:24:45 GMT" + "Thu, 13 Aug 2015 06:08:42 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3037df94-4c4c-4581-aea7-eeacbdf931cf?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzAzN2RmOTQtNGM0Yy00NTgxLWFlYTctZWVhY2JkZjkzMWNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/498283d4-0cbf-476d-985c-44d8c4f8bf9f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDk4MjgzZDQtMGNiZi00NzZkLTk4NWMtNDRkOGM0ZjhiZjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3037df94-4c4c-4581-aea7-eeacbdf931cf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:24:46.2498747-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"498283d4-0cbf-476d-985c-44d8c4f8bf9f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:08:40.7308561-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2091,8 +2117,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "28776cff-67cd-4c6b-a76c-e343d71e6b53" + "10a9304e-ae2a-4926-9f0e-f6eee8eed0bc" ], "Cache-Control": [ "no-cache" @@ -2102,31 +2131,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14989" ], "x-ms-correlation-request-id": [ - "1071a606-98a0-4f26-8a0e-313e9992630d" + "bab8e859-3f57-4069-82ca-e3cef34e4158" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222446Z:1071a606-98a0-4f26-8a0e-313e9992630d" + "SOUTHCENTRALUS:20150813T060843Z:bab8e859-3f57-4069-82ca-e3cef34e4158" ], "Date": [ - "Thu, 18 Jun 2015 22:24:46 GMT" + "Thu, 13 Aug 2015 06:08:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3037df94-4c4c-4581-aea7-eeacbdf931cf?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzAzN2RmOTQtNGM0Yy00NTgxLWFlYTctZWVhY2JkZjkzMWNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/498283d4-0cbf-476d-985c-44d8c4f8bf9f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDk4MjgzZDQtMGNiZi00NzZkLTk4NWMtNDRkOGM0ZjhiZjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3037df94-4c4c-4581-aea7-eeacbdf931cf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:24:46.2498747-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"498283d4-0cbf-476d-985c-44d8c4f8bf9f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:08:40.7308561-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2143,8 +2172,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "448a9906-ce50-4b40-97d0-20c47c6e9268" + "6210648e-c87d-4993-8a65-9fbe687bb7b2" ], "Cache-Control": [ "no-cache" @@ -2154,31 +2186,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" + "14988" ], "x-ms-correlation-request-id": [ - "bb9a70a7-1950-41ea-887d-7864489f23e4" + "ff35f2a2-185f-4406-9c86-e7c7459b0aa3" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222516Z:bb9a70a7-1950-41ea-887d-7864489f23e4" + "SOUTHCENTRALUS:20150813T060913Z:ff35f2a2-185f-4406-9c86-e7c7459b0aa3" ], "Date": [ - "Thu, 18 Jun 2015 22:25:16 GMT" + "Thu, 13 Aug 2015 06:09:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3037df94-4c4c-4581-aea7-eeacbdf931cf?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzAzN2RmOTQtNGM0Yy00NTgxLWFlYTctZWVhY2JkZjkzMWNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/498283d4-0cbf-476d-985c-44d8c4f8bf9f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDk4MjgzZDQtMGNiZi00NzZkLTk4NWMtNDRkOGM0ZjhiZjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3037df94-4c4c-4581-aea7-eeacbdf931cf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:24:46.2498747-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"498283d4-0cbf-476d-985c-44d8c4f8bf9f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:08:40.7308561-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2195,8 +2227,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f7ec29f3-678c-4ca0-8eab-44faa9e1c517" + "2cefc712-d247-4abf-888a-62ed8ddbe446" ], "Cache-Control": [ "no-cache" @@ -2206,31 +2241,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "14987" ], "x-ms-correlation-request-id": [ - "58f6863a-db7a-479c-956f-d43d1661ab61" + "3ea9676a-d8a2-46aa-82d6-29ca470d8b9e" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222546Z:58f6863a-db7a-479c-956f-d43d1661ab61" + "SOUTHCENTRALUS:20150813T060943Z:3ea9676a-d8a2-46aa-82d6-29ca470d8b9e" ], "Date": [ - "Thu, 18 Jun 2015 22:25:45 GMT" + "Thu, 13 Aug 2015 06:09:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3037df94-4c4c-4581-aea7-eeacbdf931cf?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzAzN2RmOTQtNGM0Yy00NTgxLWFlYTctZWVhY2JkZjkzMWNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/498283d4-0cbf-476d-985c-44d8c4f8bf9f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDk4MjgzZDQtMGNiZi00NzZkLTk4NWMtNDRkOGM0ZjhiZjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3037df94-4c4c-4581-aea7-eeacbdf931cf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:24:46.2498747-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"498283d4-0cbf-476d-985c-44d8c4f8bf9f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:08:40.7308561-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2247,8 +2282,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6bbc1848-373a-496b-bc3b-57695f2bf903" + "0b497503-8eb3-4f7e-8d88-c27ad2fb5400" ], "Cache-Control": [ "no-cache" @@ -2258,31 +2296,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14986" ], "x-ms-correlation-request-id": [ - "c2516924-c474-4383-85a3-6caba9bf0830" + "b3b4fa62-7319-49b8-8390-436429747b34" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222616Z:c2516924-c474-4383-85a3-6caba9bf0830" + "SOUTHCENTRALUS:20150813T061014Z:b3b4fa62-7319-49b8-8390-436429747b34" ], "Date": [ - "Thu, 18 Jun 2015 22:26:16 GMT" + "Thu, 13 Aug 2015 06:10:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3037df94-4c4c-4581-aea7-eeacbdf931cf?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzAzN2RmOTQtNGM0Yy00NTgxLWFlYTctZWVhY2JkZjkzMWNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/498283d4-0cbf-476d-985c-44d8c4f8bf9f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDk4MjgzZDQtMGNiZi00NzZkLTk4NWMtNDRkOGM0ZjhiZjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3037df94-4c4c-4581-aea7-eeacbdf931cf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:24:46.2498747-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"498283d4-0cbf-476d-985c-44d8c4f8bf9f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:08:40.7308561-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2299,8 +2337,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "db41b12c-52e6-428c-8163-25525f0d58aa" + "b4e5151d-885a-4e1f-bc87-edb3f0c2b33a" ], "Cache-Control": [ "no-cache" @@ -2310,34 +2351,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14985" ], "x-ms-correlation-request-id": [ - "07a63585-ebc9-4f63-8697-103722824143" + "ca76f12d-513d-449b-88fa-ae3d724417c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222646Z:07a63585-ebc9-4f63-8697-103722824143" + "SOUTHCENTRALUS:20150813T061044Z:ca76f12d-513d-449b-88fa-ae3d724417c2" ], "Date": [ - "Thu, 18 Jun 2015 22:26:46 GMT" + "Thu, 13 Aug 2015 06:10:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3037df94-4c4c-4581-aea7-eeacbdf931cf?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzAzN2RmOTQtNGM0Yy00NTgxLWFlYTctZWVhY2JkZjkzMWNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/498283d4-0cbf-476d-985c-44d8c4f8bf9f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDk4MjgzZDQtMGNiZi00NzZkLTk4NWMtNDRkOGM0ZjhiZjlmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3037df94-4c4c-4581-aea7-eeacbdf931cf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T15:24:46.2498747-07:00\",\r\n \"endTime\": \"2015-06-18T15:27:07.8279995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"498283d4-0cbf-476d-985c-44d8c4f8bf9f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:08:40.7308561-07:00\",\r\n \"endTime\": \"2015-08-12T23:10:53.371486-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2351,8 +2392,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e90bf436-e587-4138-a9cc-77ff05c7740f" + "2721c73c-2480-4707-acae-a80e6a66e4af" ], "Cache-Control": [ "no-cache" @@ -2362,23 +2406,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" + "14984" ], "x-ms-correlation-request-id": [ - "bfdc66ab-f5f3-4e86-a3e9-abae252cbc9b" + "4d13ca6f-eeda-454a-9797-aff599be26d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222717Z:bfdc66ab-f5f3-4e86-a3e9-abae252cbc9b" + "SOUTHCENTRALUS:20150813T061114Z:4d13ca6f-eeda-454a-9797-aff599be26d6" ], "Date": [ - "Thu, 18 Jun 2015 22:27:16 GMT" + "Thu, 13 Aug 2015 06:11:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps5683?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU2ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps7817?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc4MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2401,16 +2445,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "7b51233a-6ea0-436d-be97-bb96bb64ab61" + "8cfe9b8f-bcf9-4140-b026-9c1cad7a0735" ], "x-ms-correlation-request-id": [ - "7b51233a-6ea0-436d-be97-bb96bb64ab61" + "8cfe9b8f-bcf9-4140-b026-9c1cad7a0735" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222717Z:7b51233a-6ea0-436d-be97-bb96bb64ab61" + "SOUTHCENTRALUS:20150813T061116Z:8cfe9b8f-bcf9-4140-b026-9c1cad7a0735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2419,17 +2463,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:27:17 GMT" + "Thu, 13 Aug 2015 06:11:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTmpnekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zT0RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2455,16 +2499,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14998" ], "x-ms-request-id": [ - "f150351b-9694-40e0-a44b-7ed8f70a9400" + "c50969e1-7ba9-497a-b7eb-c0a687365328" ], "x-ms-correlation-request-id": [ - "f150351b-9694-40e0-a44b-7ed8f70a9400" + "c50969e1-7ba9-497a-b7eb-c0a687365328" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222717Z:f150351b-9694-40e0-a44b-7ed8f70a9400" + "SOUTHCENTRALUS:20150813T061116Z:c50969e1-7ba9-497a-b7eb-c0a687365328" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2473,17 +2517,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:27:17 GMT" + "Thu, 13 Aug 2015 06:11:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTmpnekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zT0RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2509,16 +2553,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "14997" ], "x-ms-request-id": [ - "fd7931ea-1846-431e-a64b-3557525933c9" + "79efc6fd-b181-4f60-93c1-94e27b6909b5" ], "x-ms-correlation-request-id": [ - "fd7931ea-1846-431e-a64b-3557525933c9" + "79efc6fd-b181-4f60-93c1-94e27b6909b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222732Z:fd7931ea-1846-431e-a64b-3557525933c9" + "SOUTHCENTRALUS:20150813T061131Z:79efc6fd-b181-4f60-93c1-94e27b6909b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2527,17 +2571,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:27:32 GMT" + "Thu, 13 Aug 2015 06:11:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTmpnekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zT0RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2563,16 +2607,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" + "14996" ], "x-ms-request-id": [ - "4295c5b7-9b6b-469c-98e2-d63db683e5eb" + "66742885-8f9b-423d-a651-5028b3314679" ], "x-ms-correlation-request-id": [ - "4295c5b7-9b6b-469c-98e2-d63db683e5eb" + "66742885-8f9b-423d-a651-5028b3314679" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222747Z:4295c5b7-9b6b-469c-98e2-d63db683e5eb" + "SOUTHCENTRALUS:20150813T061146Z:66742885-8f9b-423d-a651-5028b3314679" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2581,17 +2625,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:27:46 GMT" + "Thu, 13 Aug 2015 06:11:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTmpnekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zT0RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,16 +2661,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "14995" ], "x-ms-request-id": [ - "9a790302-f767-4396-97f9-8cf05ea3cd3b" + "a695762d-8a27-4cc7-86d7-1a51dd703dac" ], "x-ms-correlation-request-id": [ - "9a790302-f767-4396-97f9-8cf05ea3cd3b" + "a695762d-8a27-4cc7-86d7-1a51dd703dac" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222802Z:9a790302-f767-4396-97f9-8cf05ea3cd3b" + "SOUTHCENTRALUS:20150813T061201Z:a695762d-8a27-4cc7-86d7-1a51dd703dac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2635,17 +2679,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:28:02 GMT" + "Thu, 13 Aug 2015 06:12:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTmpnekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zT0RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2671,16 +2715,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14695" + "14994" ], "x-ms-request-id": [ - "0f8dd8cb-3d7b-4c58-aa7e-b845194dbce0" + "e3e916ac-4001-4be6-aa77-06df5f2bff7b" ], "x-ms-correlation-request-id": [ - "0f8dd8cb-3d7b-4c58-aa7e-b845194dbce0" + "e3e916ac-4001-4be6-aa77-06df5f2bff7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222817Z:0f8dd8cb-3d7b-4c58-aa7e-b845194dbce0" + "SOUTHCENTRALUS:20150813T061217Z:e3e916ac-4001-4be6-aa77-06df5f2bff7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2689,17 +2733,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:28:17 GMT" + "Thu, 13 Aug 2015 06:12:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTmpnekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zT0RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2725,16 +2769,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14692" + "14993" ], "x-ms-request-id": [ - "64ae2477-d5ef-46d5-8270-0905d4a4aa3e" + "e4b9ee93-b45d-41bb-8e48-e00dbedf4941" ], "x-ms-correlation-request-id": [ - "64ae2477-d5ef-46d5-8270-0905d4a4aa3e" + "e4b9ee93-b45d-41bb-8e48-e00dbedf4941" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222832Z:64ae2477-d5ef-46d5-8270-0905d4a4aa3e" + "SOUTHCENTRALUS:20150813T061232Z:e4b9ee93-b45d-41bb-8e48-e00dbedf4941" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2743,17 +2787,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:28:32 GMT" + "Thu, 13 Aug 2015 06:12:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTmpnekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zT0RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2779,16 +2823,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14689" + "14992" ], "x-ms-request-id": [ - "9a4ca014-6c57-4725-a81e-fca48f5319ca" + "4b234166-365f-4f06-a3d3-0d4f67b139bf" ], "x-ms-correlation-request-id": [ - "9a4ca014-6c57-4725-a81e-fca48f5319ca" + "4b234166-365f-4f06-a3d3-0d4f67b139bf" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222848Z:9a4ca014-6c57-4725-a81e-fca48f5319ca" + "SOUTHCENTRALUS:20150813T061247Z:4b234166-365f-4f06-a3d3-0d4f67b139bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2797,17 +2841,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:28:47 GMT" + "Thu, 13 Aug 2015 06:12:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NjgzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTmpnekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zT0RFM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2830,16 +2874,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" + "14991" ], "x-ms-request-id": [ - "1f2a9f59-a06e-4cef-9e0d-dcbf38a73c36" + "56b1b5a6-d77a-4a6b-98cf-8b6860e74765" ], "x-ms-correlation-request-id": [ - "1f2a9f59-a06e-4cef-9e0d-dcbf38a73c36" + "56b1b5a6-d77a-4a6b-98cf-8b6860e74765" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T222903Z:1f2a9f59-a06e-4cef-9e0d-dcbf38a73c36" + "SOUTHCENTRALUS:20150813T061302Z:56b1b5a6-d77a-4a6b-98cf-8b6860e74765" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2848,7 +2892,7 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:29:02 GMT" + "Thu, 13 Aug 2015 06:13:01 GMT" ] }, "StatusCode": 200 @@ -2856,11 +2900,11 @@ ], "Names": { "Test-LinuxVirtualMachine": [ - "crptestps5683" + "crptestps7817" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json index 9d4e297b53bf..5a2cbb5a2f0a 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json @@ -1,19 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "53697" + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "e2212ef1-d152-4226-ab4c-4db2599830c0" + ], + "x-ms-correlation-request-id": [ + "e2212ef1-d152-4226-ab4c-4db2599830c0" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T063019Z:e2212ef1-d152-4226-ab4c-4db2599830c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 06:30:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +76,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e638bc52-fd0a-47b8-8d2b-3820bda10d2d" + "9eaae10f-c224-4f3b-933d-60758545c6af" ], "Cache-Control": [ "no-cache" @@ -38,34 +86,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-correlation-request-id": [ - "0317dc7a-c050-4898-a039-234e73aee476" + "2b43add6-d541-45c6-9282-fa3a50cf82a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223651Z:0317dc7a-c050-4898-a039-234e73aee476" + "SOUTHCENTRALUS:20150813T063020Z:2b43add6-d541-45c6-9282-fa3a50cf82a5" ], "Date": [ - "Wed, 05 Aug 2015 22:36:51 GMT" + "Thu, 13 Aug 2015 06:30:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "53697" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -80,7 +128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "553b5a91-d857-49ea-a306-0201069745c8" + "8e0fb113-bced-49b8-bb0f-2f2c0cda572c" ], "Cache-Control": [ "no-cache" @@ -90,34 +138,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14994" ], "x-ms-correlation-request-id": [ - "225e16f8-d7bf-4c94-b265-26a00c2371a0" + "1f7fa1bc-14d2-491e-b364-4fd60bee93af" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223652Z:225e16f8-d7bf-4c94-b265-26a00c2371a0" + "SOUTHCENTRALUS:20150813T063023Z:1f7fa1bc-14d2-491e-b364-4fd60bee93af" ], "Date": [ - "Wed, 05 Aug 2015 22:36:52 GMT" + "Thu, 13 Aug 2015 06:30:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "53697" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,7 +180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f29ea2e-3282-4846-b943-9546b85e641d" + "881b5140-2c46-40ad-847b-609ce29215a6" ], "Cache-Control": [ "no-cache" @@ -142,34 +190,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14993" ], "x-ms-correlation-request-id": [ - "aaca9dbe-b5e6-4976-ae3e-d9c5714cc48f" + "fe1bfb31-b988-40bc-9cf4-a694a79b48cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223652Z:aaca9dbe-b5e6-4976-ae3e-d9c5714cc48f" + "SOUTHCENTRALUS:20150813T063024Z:fe1bfb31-b988-40bc-9cf4-a694a79b48cd" ], "Date": [ - "Wed, 05 Aug 2015 22:36:52 GMT" + "Thu, 13 Aug 2015 06:30:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "53697" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,7 +232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8914f94-c0fc-4369-970c-d602bbda1094" + "a0cb5141-1a95-4879-b063-6ba7ad665c7d" ], "Cache-Control": [ "no-cache" @@ -194,34 +242,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14992" ], "x-ms-correlation-request-id": [ - "705f4ff1-7d60-4190-b072-8a00fb42e9d7" + "8712b5ff-f8ed-46b8-bec0-b988acdaef8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223653Z:705f4ff1-7d60-4190-b072-8a00fb42e9d7" + "SOUTHCENTRALUS:20150813T063024Z:8712b5ff-f8ed-46b8-bec0-b988acdaef8a" ], "Date": [ - "Wed, 05 Aug 2015 22:36:52 GMT" + "Thu, 13 Aug 2015 06:30:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "53697" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -236,7 +284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0fc179e0-5f03-4260-996b-ab58c82986b7" + "d02b028b-fdcd-4c81-8196-a8e952df0603" ], "Cache-Control": [ "no-cache" @@ -246,34 +294,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14990" ], "x-ms-correlation-request-id": [ - "97db7f7c-dff6-43c6-a205-da6cc74c4132" + "23372cf5-8eb1-4b23-8d8b-e6b31bd84b99" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223653Z:97db7f7c-dff6-43c6-a205-da6cc74c4132" + "SOUTHCENTRALUS:20150813T063025Z:23372cf5-8eb1-4b23-8d8b-e6b31bd84b99" ], "Date": [ - "Wed, 05 Aug 2015 22:36:53 GMT" + "Thu, 13 Aug 2015 06:30:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "53697" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -288,7 +336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3800b9a5-1dd6-4a3c-8611-10107bb14ba9" + "f23968ba-e90e-4308-b867-9b0ad6fd793b" ], "Cache-Control": [ "no-cache" @@ -298,31 +346,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14987" ], "x-ms-correlation-request-id": [ - "cc2960b2-df95-4bfe-965f-c0f06c15b186" + "4f35aafc-f0e6-4fe4-91f4-2296424187cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223653Z:cc2960b2-df95-4bfe-965f-c0f06c15b186" + "SOUTHCENTRALUS:20150813T063026Z:4f35aafc-f0e6-4fe4-91f4-2296424187cf" ], "Date": [ - "Wed, 05 Aug 2015 22:36:53 GMT" + "Thu, 13 Aug 2015 06:30:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -340,7 +388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89186efc-7148-4cb8-835e-35a7aa719003" + "3d82b53a-7d4a-4cb6-a7e6-5ede23be18e6" ], "Cache-Control": [ "no-cache" @@ -350,31 +398,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14998" ], "x-ms-correlation-request-id": [ - "0d29e771-d8c8-4d18-9c74-56616ad35a2f" + "b8171890-50f0-4dd6-bbfc-c25b5e843329" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223651Z:0d29e771-d8c8-4d18-9c74-56616ad35a2f" + "SOUTHCENTRALUS:20150813T063021Z:b8171890-50f0-4dd6-bbfc-c25b5e843329" ], "Date": [ - "Wed, 05 Aug 2015 22:36:51 GMT" + "Thu, 13 Aug 2015 06:30:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -392,7 +440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "343b42cf-0b92-4cf2-b812-401269f36b3b" + "7e0d1085-0555-48d7-a80f-59ee3532bd93" ], "Cache-Control": [ "no-cache" @@ -402,31 +450,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14991" ], "x-ms-correlation-request-id": [ - "6eca09b4-23b5-49a5-8c8d-725bae74b231" + "0e6bd051-58e4-4bec-a648-1f8353b847e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223653Z:6eca09b4-23b5-49a5-8c8d-725bae74b231" + "SOUTHCENTRALUS:20150813T063024Z:0e6bd051-58e4-4bec-a648-1f8353b847e1" ], "Date": [ - "Wed, 05 Aug 2015 22:36:52 GMT" + "Thu, 13 Aug 2015 06:30:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -444,7 +492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d3c19d2-19d4-4256-a2f1-6627bc4ff7ee" + "97806cca-de79-41c4-b62c-834bcfe75a27" ], "Cache-Control": [ "no-cache" @@ -454,31 +502,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14989" ], "x-ms-correlation-request-id": [ - "2cc0cdcf-5d37-47d3-8aa9-7075e73b048b" + "5b05b66e-c047-40ff-9d49-4f63175b2016" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223653Z:2cc0cdcf-5d37-47d3-8aa9-7075e73b048b" + "SOUTHCENTRALUS:20150813T063025Z:5b05b66e-c047-40ff-9d49-4f63175b2016" ], "Date": [ - "Wed, 05 Aug 2015 22:36:53 GMT" + "Thu, 13 Aug 2015 06:30:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -496,7 +544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3279420-3e77-4a9b-8480-10460317f96c" + "ee58d65e-9e96-4210-ac67-559cbff5a979" ], "Cache-Control": [ "no-cache" @@ -506,34 +554,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14986" ], "x-ms-correlation-request-id": [ - "7636a8f7-fedc-46c1-960e-ee43af61e0e2" + "2e36eb0c-f14d-4625-9c02-96a9575d5563" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223654Z:7636a8f7-fedc-46c1-960e-ee43af61e0e2" + "SOUTHCENTRALUS:20150813T063026Z:2e36eb0c-f14d-4625-9c02-96a9575d5563" ], "Date": [ - "Wed, 05 Aug 2015 22:36:53 GMT" + "Thu, 13 Aug 2015 06:30:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -548,7 +596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc204240-0c2f-44a6-9151-2db2759c5064" + "4551685d-d94a-4fc1-9530-0e49f4ae5d9f" ], "Cache-Control": [ "no-cache" @@ -558,34 +606,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-correlation-request-id": [ - "f1e83b63-95b7-4f6e-a082-1ed00bc41910" + "a0c41fba-7ad7-4dd3-9ee7-ee3d015fd5a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223651Z:f1e83b63-95b7-4f6e-a082-1ed00bc41910" + "SOUTHCENTRALUS:20150813T063022Z:a0c41fba-7ad7-4dd3-9ee7-ee3d015fd5a3" ], "Date": [ - "Wed, 05 Aug 2015 22:36:51 GMT" + "Thu, 13 Aug 2015 06:30:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,7 +648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df539300-8162-4d31-bd57-3cd889701b81" + "aa70d75d-057b-4ac0-9c59-6992a418d0df" ], "Cache-Control": [ "no-cache" @@ -610,34 +658,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14988" ], "x-ms-correlation-request-id": [ - "9aec1072-bd33-41c2-8c66-190dad6edbf0" + "e6e25d37-2dc2-4a81-af75-2d2f1ed4af4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223653Z:9aec1072-bd33-41c2-8c66-190dad6edbf0" + "SOUTHCENTRALUS:20150813T063026Z:e6e25d37-2dc2-4a81-af75-2d2f1ed4af4f" ], "Date": [ - "Wed, 05 Aug 2015 22:36:53 GMT" + "Thu, 13 Aug 2015 06:30:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -652,7 +700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de61ba1e-3e0f-4d76-95db-f48a571869de" + "53fa5ffa-d838-47fb-b3da-431a1704a0fa" ], "Cache-Control": [ "no-cache" @@ -662,31 +710,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14985" ], "x-ms-correlation-request-id": [ - "c4596bb9-fa2e-48b8-971e-7c556f429d66" + "5b6e6f73-29cb-42af-a2b0-f9d2674c14d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223654Z:c4596bb9-fa2e-48b8-971e-7c556f429d66" + "SOUTHCENTRALUS:20150813T063027Z:5b6e6f73-29cb-42af-a2b0-f9d2674c14d8" ], "Date": [ - "Wed, 05 Aug 2015 22:36:54 GMT" + "Thu, 13 Aug 2015 06:30:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "874" @@ -704,7 +752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70886f44-54ec-4044-843e-d29a44663bc9" + "a9fdb4a8-ab2b-4c4d-ade2-5feaf29efba9" ], "Cache-Control": [ "no-cache" @@ -714,31 +762,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-correlation-request-id": [ - "753f6297-f5bc-4d25-854f-b0d237652f45" + "86f4288a-5437-4f7d-8f44-7a9cb05c9478" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223652Z:753f6297-f5bc-4d25-854f-b0d237652f45" + "SOUTHCENTRALUS:20150813T063022Z:86f4288a-5437-4f7d-8f44-7a9cb05c9478" ], "Date": [ - "Wed, 05 Aug 2015 22:36:51 GMT" + "Thu, 13 Aug 2015 06:30:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "874" @@ -756,7 +804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b579691-80d7-4f34-bbf2-53a25f220079" + "668b3161-4b3f-43aa-875c-79cfca6a40c0" ], "Cache-Control": [ "no-cache" @@ -766,31 +814,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14984" ], "x-ms-correlation-request-id": [ - "6a3c5a77-b53e-4419-a673-1e44649e2172" + "8a562118-48b2-4f88-bea9-872dcb9e740e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223654Z:6a3c5a77-b53e-4419-a673-1e44649e2172" + "SOUTHCENTRALUS:20150813T063027Z:8a562118-48b2-4f88-bea9-872dcb9e740e" ], "Date": [ - "Wed, 05 Aug 2015 22:36:54 GMT" + "Thu, 13 Aug 2015 06:30:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -808,7 +856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1299ecb-b097-4654-9305-0be59f14b82f" + "ba42d05b-8b17-4cff-b8b1-ae9a17015ebf" ], "Cache-Control": [ "no-cache" @@ -818,31 +866,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14995" ], "x-ms-correlation-request-id": [ - "0df53c2f-0324-4d9c-807d-f30f392e7db3" + "5ea1b133-92c8-4ac6-9bd0-c7c4ac571a0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223652Z:0df53c2f-0324-4d9c-807d-f30f392e7db3" + "SOUTHCENTRALUS:20150813T063022Z:5ea1b133-92c8-4ac6-9bd0-c7c4ac571a0f" ], "Date": [ - "Wed, 05 Aug 2015 22:36:52 GMT" + "Thu, 13 Aug 2015 06:30:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -860,7 +908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "645854b3-064b-4a07-bfef-2a9951bf8dda" + "a88c87c7-de40-42ec-b137-4f4709dc44ef" ], "Cache-Control": [ "no-cache" @@ -870,31 +918,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14978" ], "x-ms-correlation-request-id": [ - "1b31753b-2179-4085-8007-938819d325c0" + "9858549a-3be1-48d0-98a9-5c4e1fefd8cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223654Z:1b31753b-2179-4085-8007-938819d325c0" + "SOUTHCENTRALUS:20150813T063029Z:9858549a-3be1-48d0-98a9-5c4e1fefd8cf" ], "Date": [ - "Wed, 05 Aug 2015 22:36:54 GMT" + "Thu, 13 Aug 2015 06:30:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -912,7 +960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5190de73-891e-4313-9257-6496f0af866f" + "2a02ccda-b20b-420e-9de4-a34248fda453" ], "Cache-Control": [ "no-cache" @@ -922,31 +970,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14977" ], "x-ms-correlation-request-id": [ - "3b272b1c-96e7-4baf-9e26-c5cebd7aa477" + "c5f64cdf-d549-4ec0-b471-de9a46966aa6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223654Z:3b272b1c-96e7-4baf-9e26-c5cebd7aa477" + "SOUTHCENTRALUS:20150813T063029Z:c5f64cdf-d549-4ec0-b471-de9a46966aa6" ], "Date": [ - "Wed, 05 Aug 2015 22:36:54 GMT" + "Thu, 13 Aug 2015 06:30:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "886" @@ -964,7 +1012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1e25834-8f8d-480d-8d00-09863ffcf476" + "4c51407b-92f9-4a86-bbcd-f9e5c16e2e27" ], "Cache-Control": [ "no-cache" @@ -974,31 +1022,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14983" ], "x-ms-correlation-request-id": [ - "03f1e460-283f-4442-a856-d061375085fc" + "76582f9a-ab90-44f7-9ff4-6eb3dc95c5dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223654Z:03f1e460-283f-4442-a856-d061375085fc" + "SOUTHCENTRALUS:20150813T063027Z:76582f9a-ab90-44f7-9ff4-6eb3dc95c5dc" ], "Date": [ - "Wed, 05 Aug 2015 22:36:54 GMT" + "Thu, 13 Aug 2015 06:30:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "895" @@ -1016,7 +1064,59 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b0a8b61-05be-4634-ab41-aa162cf710e1" + "667d2e3a-5878-42c0-a1d5-f2f8522671fc" + ], + "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": [ + "03429ca3-8566-4093-9f2c-fdeff914620e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T063028Z:03429ca3-8566-4093-9f2c-fdeff914620e" + ], + "Date": [ + "Thu, 13 Aug 2015 06:30:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-3-with-Containers/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LTMtd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5f0e3b3c-6aa8-47bb-853e-8da759458147" ], "Cache-Control": [ "no-cache" @@ -1026,31 +1126,83 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14981" ], "x-ms-correlation-request-id": [ - "1aeda40a-6f9d-446c-9ab5-f8cf4be2d719" + "c9fb9996-bba1-4288-9e22-052909c4d528" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223654Z:1aeda40a-6f9d-446c-9ab5-f8cf4be2d719" + "SOUTHCENTRALUS:20150813T063028Z:c9fb9996-bba1-4288-9e22-052909c4d528" ], "Date": [ - "Wed, 05 Aug 2015 22:36:54 GMT" + "Thu, 13 Aug 2015 06:30:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-with-Containers/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LXdpdGgtQ29udGFpbmVycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n }\r\n]", + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "47166d68-4264-4dc0-9394-4b669dbf84c1" + ], + "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": [ + "9aeed1ad-02e3-4de7-b6f9-5f2b793baf3f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T063028Z:9aeed1ad-02e3-4de7-b6f9-5f2b793baf3f" + ], + "Date": [ + "Thu, 13 Aug 2015 06:30:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -1068,7 +1220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04383ec2-c62c-4c6d-be50-e6548d7a3bfa" + "71ca55e4-4053-4c47-ba69-12336f13dd21" ], "Cache-Control": [ "no-cache" @@ -1078,16 +1230,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14979" ], "x-ms-correlation-request-id": [ - "6a13afcb-79cb-4bce-8c97-3b58d15aedc3" + "44f35f5d-7125-451f-9ceb-521517085ad7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T223654Z:6a13afcb-79cb-4bce-8c97-3b58d15aedc3" + "SOUTHCENTRALUS:20150813T063029Z:44f35f5d-7125-451f-9ceb-521517085ad7" ], "Date": [ - "Wed, 05 Aug 2015 22:36:54 GMT" + "Thu, 13 Aug 2015 06:30:28 GMT" ] }, "StatusCode": 200 @@ -1095,7 +1247,7 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachine.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachine.json index 8b3aab1c0338..aebe61c31077 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachine.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachine.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7107?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzEwNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "3e9bbe1e-2ffb-4dd1-b0a5-bf8906bce673" + ], + "x-ms-correlation-request-id": [ + "3e9bbe1e-2ffb-4dd1-b0a5-bf8906bce673" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20150813T063108Z:3e9bbe1e-2ffb-4dd1-b0a5-bf8906bce673" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 06:31:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps726?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcyNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14994" ], "x-ms-request-id": [ - "e41a198b-13d1-4d76-90d3-0e5bbe88c319" + "c787dde9-e6c6-4145-9e7e-c020c1ea520b" ], "x-ms-correlation-request-id": [ - "e41a198b-13d1-4d76-90d3-0e5bbe88c319" + "c787dde9-e6c6-4145-9e7e-c020c1ea520b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210907Z:e41a198b-13d1-4d76-90d3-0e5bbe88c319" + "SOUTHCENTRALUS:20150813T063108Z:c787dde9-e6c6-4145-9e7e-c020c1ea520b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:09:06 GMT" + "Thu, 13 Aug 2015 06:31:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7107?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzEwNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps726?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcyNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14999" ], "x-ms-request-id": [ - "edd7a69b-8d9e-487a-819f-5e4108c6414c" + "04fa0660-bff7-4e0a-b161-d63501abb693" ], "x-ms-correlation-request-id": [ - "edd7a69b-8d9e-487a-819f-5e4108c6414c" + "04fa0660-bff7-4e0a-b161-d63501abb693" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213001Z:edd7a69b-8d9e-487a-819f-5e4108c6414c" + "WESTUS:20150813T065042Z:04fa0660-bff7-4e0a-b161-d63501abb693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:30:01 GMT" + "Thu, 13 Aug 2015 06:50:42 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7107?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzEwNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps726?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcyNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107\",\r\n \"name\": \"pstestrg7107\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726\",\r\n \"name\": \"crptestps726\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "177" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "bb207f39-5546-451a-814a-404856c73dd1" + "f0f1a943-96ae-4897-bb76-06518df26409" ], "x-ms-correlation-request-id": [ - "bb207f39-5546-451a-814a-404856c73dd1" + "f0f1a943-96ae-4897-bb76-06518df26409" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210907Z:bb207f39-5546-451a-814a-404856c73dd1" + "SOUTHCENTRALUS:20150813T063109Z:f0f1a943-96ae-4897-bb76-06518df26409" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:09:07 GMT" + "Thu, 13 Aug 2015 06:31:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14993" ], "x-ms-request-id": [ - "b6f57f30-829d-408b-ab9a-5925d069b3b6" + "168a3411-cb4a-4eab-bbad-fd34f7a1bf5f" ], "x-ms-correlation-request-id": [ - "b6f57f30-829d-408b-ab9a-5925d069b3b6" + "168a3411-cb4a-4eab-bbad-fd34f7a1bf5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210907Z:b6f57f30-829d-408b-ab9a-5925d069b3b6" + "SOUTHCENTRALUS:20150813T063109Z:168a3411-cb4a-4eab-bbad-fd34f7a1bf5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:09:07 GMT" + "Thu, 13 Aug 2015 06:31:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7107/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps726/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:9ceb38e6-ef9a-453b-a3d1-7751cedb43bb" + "southcentralus:ff2eec92-642f-41cd-8adb-2b05b377a485" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14999" ], "x-ms-correlation-request-id": [ - "42246eaa-375b-4a5e-9fec-00180a6242aa" + "85b6af69-9568-4d14-b7c6-b8564d63d1b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210907Z:42246eaa-375b-4a5e-9fec-00180a6242aa" + "SOUTHCENTRALUS:20150813T063110Z:85b6af69-9568-4d14-b7c6-b8564d63d1b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:09:07 GMT" + "Thu, 13 Aug 2015 06:31:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxMDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualnetworks/vnetcrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHM3MjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps726' under resource group 'crptestps726' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "25dcbe51-2a83-4c40-a258-212894180051" + "bcaa317d-2ddc-42aa-8dee-23291a5c161f" ], "x-ms-correlation-request-id": [ - "25dcbe51-2a83-4c40-a258-212894180051" + "bcaa317d-2ddc-42aa-8dee-23291a5c161f" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210907Z:25dcbe51-2a83-4c40-a258-212894180051" + "SOUTHCENTRALUS:20150813T063111Z:bcaa317d-2ddc-42aa-8dee-23291a5c161f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:09:07 GMT" + "Thu, 13 Aug 2015 06:31:11 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxMDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualnetworks/vnetcrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHM3MjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107\",\r\n \"etag\": \"W/\\\"36a936fc-b59f-4970-adc4-d0f3f8fa5d4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107/subnets/subnetpstestrg7107\",\r\n \"etag\": \"W/\\\"36a936fc-b59f-4970-adc4-d0f3f8fa5d4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726\",\r\n \"etag\": \"W/\\\"a1894797-dcd1-4272-b25c-ac172ebc8779\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e90e5a26-3ff3-4e90-a44f-475ce8618ae9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726/subnets/subnetcrptestps726\",\r\n \"etag\": \"W/\\\"a1894797-dcd1-4272-b25c-ac172ebc8779\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "7cc4c44d-b5b0-4ef2-a1eb-42536997160c" + "5638a495-7127-4e2d-be0a-8860aded3d7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"36a936fc-b59f-4970-adc4-d0f3f8fa5d4b\"" + "W/\"a1894797-dcd1-4272-b25c-ac172ebc8779\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14993" ], "x-ms-correlation-request-id": [ - "e44a8a26-1e30-4ee4-8ddc-bd5988292f94" + "607801d7-f296-4f41-a4d2-eb23ccda53c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210918Z:e44a8a26-1e30-4ee4-8ddc-bd5988292f94" + "SOUTHCENTRALUS:20150813T063114Z:607801d7-f296-4f41-a4d2-eb23ccda53c8" ], "Date": [ - "Thu, 18 Jun 2015 21:09:17 GMT" + "Thu, 13 Aug 2015 06:31:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxMDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualnetworks/vnetcrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHM3MjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107\",\r\n \"etag\": \"W/\\\"36a936fc-b59f-4970-adc4-d0f3f8fa5d4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107/subnets/subnetpstestrg7107\",\r\n \"etag\": \"W/\\\"36a936fc-b59f-4970-adc4-d0f3f8fa5d4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726\",\r\n \"etag\": \"W/\\\"a1894797-dcd1-4272-b25c-ac172ebc8779\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e90e5a26-3ff3-4e90-a44f-475ce8618ae9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726/subnets/subnetcrptestps726\",\r\n \"etag\": \"W/\\\"a1894797-dcd1-4272-b25c-ac172ebc8779\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "bc5f855f-8227-476c-adf0-bc079aa15c0c" + "e877e943-eee7-43cf-932b-27d86457450f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"36a936fc-b59f-4970-adc4-d0f3f8fa5d4b\"" + "W/\"a1894797-dcd1-4272-b25c-ac172ebc8779\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14992" ], "x-ms-correlation-request-id": [ - "4dd4584d-6d69-4e16-9012-0e7874463b74" + "d8454af6-2232-40e1-94ec-c81d511b7d4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210918Z:4dd4584d-6d69-4e16-9012-0e7874463b74" + "SOUTHCENTRALUS:20150813T063114Z:d8454af6-2232-40e1-94ec-c81d511b7d4f" ], "Date": [ - "Thu, 18 Jun 2015 21:09:18 GMT" + "Thu, 13 Aug 2015 06:31:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxMDc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualnetworks/vnetcrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRjcnB0ZXN0cHM3MjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7107\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps726\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps726\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -423,10 +471,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107\",\r\n \"etag\": \"W/\\\"b467d0c4-c258-4afa-9526-d4c6f334d9fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107/subnets/subnetpstestrg7107\",\r\n \"etag\": \"W/\\\"b467d0c4-c258-4afa-9526-d4c6f334d9fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726\",\r\n \"etag\": \"W/\\\"02234d13-4704-474c-83c3-2749e031a40f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e90e5a26-3ff3-4e90-a44f-475ce8618ae9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726/subnets/subnetcrptestps726\",\r\n \"etag\": \"W/\\\"02234d13-4704-474c-83c3-2749e031a40f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "35217da8-b008-465e-acf4-ef0d26c1cf64" + "fa7aafea-c8c3-431d-95de-ae12eac04147" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/35217da8-b008-465e-acf4-ef0d26c1cf64?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/fa7aafea-c8c3-431d-95de-ae12eac04147?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,78 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "8a7709d3-3a27-493c-b214-b08a11c42ea0" + "9832102b-f707-4f9c-b5a5-d31398f1952c" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210908Z:8a7709d3-3a27-493c-b214-b08a11c42ea0" + "SOUTHCENTRALUS:20150813T063113Z:9832102b-f707-4f9c-b5a5-d31398f1952c" ], "Date": [ - "Thu, 18 Jun 2015 21:09:07 GMT" + "Thu, 13 Aug 2015 06:31:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/35217da8-b008-465e-acf4-ef0d26c1cf64?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzUyMTdkYTgtYjAwOC00NjVlLWFjZjQtZWYwZDI2YzFjZjY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8d547007-c02c-4fb6-aaf7-6dc765d7df86" - ], - "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": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "5ac813f0-1337-4858-a0dd-3cbbd9d4ad33" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150618T210908Z:5ac813f0-1337-4858-a0dd-3cbbd9d4ad33" - ], - "Date": [ - "Thu, 18 Jun 2015 21:09:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/35217da8-b008-465e-acf4-ef0d26c1cf64?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzUyMTdkYTgtYjAwOC00NjVlLWFjZjQtZWYwZDI2YzFjZjY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/fa7aafea-c8c3-431d-95de-ae12eac04147?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmE3YWFmZWEtYzhjMy00MzFkLTk1ZGUtYWUxMmVhYzA0MTQ3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "7dd772f3-655a-4e79-a34c-4723e0b505d1" + "843f0ae9-82d2-43a2-94a2-9c860dfd3251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14994" ], "x-ms-correlation-request-id": [ - "44940702-ccc2-4563-9534-4bff83ee6eb3" + "46631070-49e2-42de-a0aa-33b0ee1e3607" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210918Z:44940702-ccc2-4563-9534-4bff83ee6eb3" + "SOUTHCENTRALUS:20150813T063113Z:46631070-49e2-42de-a0aa-33b0ee1e3607" ], "Date": [ - "Thu, 18 Jun 2015 21:09:17 GMT" + "Thu, 13 Aug 2015 06:31:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcxMDcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHM3MjYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps726' under resource group 'crptestps726' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "d1b876da-af9b-49aa-964d-87d19724b865" + "fbfa53af-65e1-4919-9de5-85b9f684d18c" ], "x-ms-correlation-request-id": [ - "d1b876da-af9b-49aa-964d-87d19724b865" + "fbfa53af-65e1-4919-9de5-85b9f684d18c" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210918Z:d1b876da-af9b-49aa-964d-87d19724b865" + "SOUTHCENTRALUS:20150813T063114Z:fbfa53af-65e1-4919-9de5-85b9f684d18c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +617,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:09:18 GMT" + "Thu, 13 Aug 2015 06:31:14 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcxMDcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHM3MjYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +632,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107\",\r\n \"etag\": \"W/\\\"ce009bf8-1cae-44d1-ae9d-f0fc0c69b3e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7107\",\r\n \"fqdn\": \"pubippstestrg7107.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726\",\r\n \"etag\": \"W/\\\"5703798f-fc94-4a88-9f1c-0dc016d71625\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"716917c1-2747-43ca-9915-bcf1b57b4dd3\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps726\",\r\n \"fqdn\": \"pubipcrptestps726.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "611" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "0e6e2631-55a9-4fa4-b4a3-78915bfce23c" + "c2ddcf16-1952-4cb2-85e1-96aeb4b7dc8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +656,30 @@ "no-cache" ], "ETag": [ - "W/\"ce009bf8-1cae-44d1-ae9d-f0fc0c69b3e0\"" + "W/\"5703798f-fc94-4a88-9f1c-0dc016d71625\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14989" ], "x-ms-correlation-request-id": [ - "8fc76ae9-442c-437f-aafe-95028c243ec2" + "84ee22a5-c488-4b4a-8303-ea74eda39e67" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210919Z:8fc76ae9-442c-437f-aafe-95028c243ec2" + "SOUTHCENTRALUS:20150813T063116Z:84ee22a5-c488-4b4a-8303-ea74eda39e67" ], "Date": [ - "Thu, 18 Jun 2015 21:09:18 GMT" + "Thu, 13 Aug 2015 06:31:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcxMDcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHM3MjYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107\",\r\n \"etag\": \"W/\\\"ce009bf8-1cae-44d1-ae9d-f0fc0c69b3e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7107\",\r\n \"fqdn\": \"pubippstestrg7107.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726\",\r\n \"etag\": \"W/\\\"5703798f-fc94-4a88-9f1c-0dc016d71625\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"716917c1-2747-43ca-9915-bcf1b57b4dd3\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps726\",\r\n \"fqdn\": \"pubipcrptestps726.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "611" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "fd7f8ffc-3f26-4e66-b9a8-2b5fcc4c3910" + "942e079d-18e3-42a6-a6f1-19669b6709bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,32 +711,32 @@ "no-cache" ], "ETag": [ - "W/\"ce009bf8-1cae-44d1-ae9d-f0fc0c69b3e0\"" + "W/\"5703798f-fc94-4a88-9f1c-0dc016d71625\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14988" ], "x-ms-correlation-request-id": [ - "ef415f91-3804-4d88-94e8-c9564e315075" + "e9e17e3a-3878-4cfe-ba73-875069806323" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210919Z:ef415f91-3804-4d88-94e8-c9564e315075" + "SOUTHCENTRALUS:20150813T063116Z:e9e17e3a-3878-4cfe-ba73-875069806323" ], "Date": [ - "Thu, 18 Jun 2015 21:09:18 GMT" + "Thu, 13 Aug 2015 06:31:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcxMDcvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBjcnB0ZXN0cHM3MjYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7107\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg7107\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps726\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps726\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -755,10 +748,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107\",\r\n \"etag\": \"W/\\\"21177b5c-c785-4b04-a566-4f93e3ce2cca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7107\",\r\n \"fqdn\": \"pubippstestrg7107.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726\",\r\n \"etag\": \"W/\\\"456f498b-b184-4405-8440-91d8a37cd78b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"716917c1-2747-43ca-9915-bcf1b57b4dd3\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps726\",\r\n \"fqdn\": \"pubipcrptestps726.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -773,10 +766,10 @@ "10" ], "x-ms-request-id": [ - "df0e5b93-e6c7-4135-a0ba-0defa26db0d9" + "6776af4d-4561-4f34-bd46-c8a385c1a53a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/df0e5b93-e6c7-4135-a0ba-0defa26db0d9?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/6776af4d-4561-4f34-bd46-c8a385c1a53a?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +782,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "439cf476-ebbb-4992-86d8-ff18c5d814c1" + "289f346a-3914-49ee-bce1-2d101c4c8b2e" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210919Z:439cf476-ebbb-4992-86d8-ff18c5d814c1" + "SOUTHCENTRALUS:20150813T063115Z:289f346a-3914-49ee-bce1-2d101c4c8b2e" ], "Date": [ - "Thu, 18 Jun 2015 21:09:18 GMT" + "Thu, 13 Aug 2015 06:31:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/df0e5b93-e6c7-4135-a0ba-0defa26db0d9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGYwZTViOTMtZTZjNy00MTM1LWEwYmEtMGRlZmEyNmRiMGQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/6776af4d-4561-4f34-bd46-c8a385c1a53a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjc3NmFmNGQtNDU2MS00ZjM0LWJkNDYtYzhhMzg1YzFhNTNhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,7 +824,7 @@ "no-cache" ], "x-ms-request-id": [ - "a20b3ab3-4c3b-4661-8869-011fdbe2151a" + "4076db30-1f08-41b6-88a2-f8466218a00e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -844,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14990" ], "x-ms-correlation-request-id": [ - "9df001f3-7ed7-4cb1-a7dc-dd3a879197fd" + "25228417-644c-4bd3-b6b7-17b0b0c9fed5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210919Z:9df001f3-7ed7-4cb1-a7dc-dd3a879197fd" + "SOUTHCENTRALUS:20150813T063116Z:25228417-644c-4bd3-b6b7-17b0b0c9fed5" ], "Date": [ - "Thu, 18 Jun 2015 21:09:18 GMT" + "Thu, 13 Aug 2015 06:31:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,10 +861,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps726' under resource group 'crptestps726' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "167" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,13 +879,13 @@ "gateway" ], "x-ms-request-id": [ - "cc8556e6-c67d-467a-a4fb-afcbeda00d30" + "52d52526-5084-4ad8-a464-1cf43938c6a1" ], "x-ms-correlation-request-id": [ - "cc8556e6-c67d-467a-a4fb-afcbeda00d30" + "52d52526-5084-4ad8-a464-1cf43938c6a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210919Z:cc8556e6-c67d-467a-a4fb-afcbeda00d30" + "SOUTHCENTRALUS:20150813T063116Z:52d52526-5084-4ad8-a464-1cf43938c6a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,14 +894,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:09:18 GMT" + "Thu, 13 Aug 2015 06:31:16 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +909,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\",\r\n \"etag\": \"W/\\\"7add98f0-9e64-481e-89b4-45d06cbb2f67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7add98f0-9e64-481e-89b4-45d06cbb2f67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107/subnets/subnetpstestrg7107\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\",\r\n \"etag\": \"W/\\\"dc2b6a9d-2e13-450d-86cb-2a582764fb2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"005ef954-f5c1-470e-89d0-e3dd12c5d7d7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"dc2b6a9d-2e13-450d-86cb-2a582764fb2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726/subnets/subnetcrptestps726\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +924,7 @@ "no-cache" ], "x-ms-request-id": [ - "84284d4b-295b-45cc-895a-cb708d582fba" + "a27c106e-959a-427a-b695-067e60684c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,30 +933,30 @@ "no-cache" ], "ETag": [ - "W/\"7add98f0-9e64-481e-89b4-45d06cbb2f67\"" + "W/\"dc2b6a9d-2e13-450d-86cb-2a582764fb2e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14985" ], "x-ms-correlation-request-id": [ - "1bb0fcda-a342-4340-b136-34fdfb3d0833" + "6cce47f8-8824-4401-b06f-c9562e135599" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210920Z:1bb0fcda-a342-4340-b136-34fdfb3d0833" + "SOUTHCENTRALUS:20150813T063118Z:6cce47f8-8824-4401-b06f-c9562e135599" ], "Date": [ - "Thu, 18 Jun 2015 21:09:19 GMT" + "Thu, 13 Aug 2015 06:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\",\r\n \"etag\": \"W/\\\"7add98f0-9e64-481e-89b4-45d06cbb2f67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7add98f0-9e64-481e-89b4-45d06cbb2f67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107/subnets/subnetpstestrg7107\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\",\r\n \"etag\": \"W/\\\"dc2b6a9d-2e13-450d-86cb-2a582764fb2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"005ef954-f5c1-470e-89d0-e3dd12c5d7d7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"dc2b6a9d-2e13-450d-86cb-2a582764fb2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726/subnets/subnetcrptestps726\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "a3284430-1e7d-451f-be10-5b3f1aa70107" + "d57d7261-50d5-4d08-9c30-cffdab2c8a46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,47 +988,47 @@ "no-cache" ], "ETag": [ - "W/\"7add98f0-9e64-481e-89b4-45d06cbb2f67\"" + "W/\"dc2b6a9d-2e13-450d-86cb-2a582764fb2e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14984" ], "x-ms-correlation-request-id": [ - "6b180d8f-2adf-4347-9245-71c12edc4c30" + "b45169c0-dfeb-4455-a783-04aaaa12533a" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210920Z:6b180d8f-2adf-4347-9245-71c12edc4c30" + "SOUTHCENTRALUS:20150813T063118Z:b45169c0-dfeb-4455-a783-04aaaa12533a" ], "Date": [ - "Thu, 18 Jun 2015 21:09:19 GMT" + "Thu, 13 Aug 2015 06:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107/subnets/subnetpstestrg7107\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg7107\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726/subnets/subnetcrptestps726\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps726\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "857" + "891" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7107\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\",\r\n \"etag\": \"W/\\\"7add98f0-9e64-481e-89b4-45d06cbb2f67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7add98f0-9e64-481e-89b4-45d06cbb2f67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7107\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7107/subnets/subnetpstestrg7107\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps726\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\",\r\n \"etag\": \"W/\\\"dc2b6a9d-2e13-450d-86cb-2a582764fb2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"005ef954-f5c1-470e-89d0-e3dd12c5d7d7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"dc2b6a9d-2e13-450d-86cb-2a582764fb2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps726\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/virtualNetworks/vnetcrptestps726/subnets/subnetcrptestps726\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,10 +1040,10 @@ "no-cache" ], "x-ms-request-id": [ - "3f2e984b-c02c-4fca-a314-fb93886e1ec3" + "cecbdf4f-f62d-483b-998e-88de520f2317" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/3f2e984b-c02c-4fca-a314-fb93886e1ec3?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/cecbdf4f-f62d-483b-998e-88de520f2317?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1056,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-correlation-request-id": [ - "a192607b-1798-4815-88a6-d8941ad8f672" + "f8503529-1208-4648-96e1-ea46a37ef0a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210920Z:a192607b-1798-4815-88a6-d8941ad8f672" + "SOUTHCENTRALUS:20150813T063117Z:f8503529-1208-4648-96e1-ea46a37ef0a5" ], "Date": [ - "Thu, 18 Jun 2015 21:09:19 GMT" + "Thu, 13 Aug 2015 06:31:17 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/3f2e984b-c02c-4fca-a314-fb93886e1ec3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2YyZTk4NGItYzAyYy00ZmNhLWEzMTQtZmI5Mzg4NmUxZWMzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/cecbdf4f-f62d-483b-998e-88de520f2317?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2VjYmRmNGYtZjYyZC00ODNiLTk5OGUtODhkZTUyMGYyMzE3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1105,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "065601ef-87cf-4a3f-8551-e73ecf725dc4" + "395c3c0d-edb1-4b40-95aa-79fc137c16df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14986" ], "x-ms-correlation-request-id": [ - "aa40944f-b9c4-4a58-a7df-351166e94035" + "9f1139af-64ac-42e1-b56d-9772b6013638" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210920Z:aa40944f-b9c4-4a58-a7df-351166e94035" + "SOUTHCENTRALUS:20150813T063118Z:9f1139af-64ac-42e1-b56d-9772b6013638" ], "Date": [ - "Thu, 18 Jun 2015 21:09:19 GMT" + "Thu, 13 Aug 2015 06:31:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Storage/storageAccounts/stopstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzEwNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Storage/storageAccounts/stocrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczcyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1145,7 +1138,7 @@ "88" ], "x-ms-client-request-id": [ - "c2bd570f-f0b1-4cf6-9e2f-58d9ae83f068" + "97d5671f-8e33-424d-ac5b-66e85d5cd0c1" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1169,44 +1162,44 @@ "25" ], "x-ms-request-id": [ - "9c252fd8-3832-4aa8-a9e1-32187d9c8afb" + "33bb70f6-4719-4bb2-baf2-3e97513519df" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/9c252fd8-3832-4aa8-a9e1-32187d9c8afb?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/33bb70f6-4719-4bb2-baf2-3e97513519df?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "597456f2-7283-4a8d-968b-37bdd201b5ab" + "3731b917-0500-4c26-b67d-2961cede4117" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210922Z:597456f2-7283-4a8d-968b-37bdd201b5ab" + "SOUTHCENTRALUS:20150813T063121Z:3731b917-0500-4c26-b67d-2961cede4117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 21:09:22 GMT" + "Thu, 13 Aug 2015 06:31:21 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/9c252fd8-3832-4aa8-a9e1-32187d9c8afb?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzljMjUyZmQ4LTM4MzItNGFhOC1hOWUxLTMyMTg3ZDljOGFmYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/33bb70f6-4719-4bb2-baf2-3e97513519df?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzMzYmI3MGY2LTQ3MTktNGJiMi1iYWYyLTNlOTc1MTM1MTlkZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b78f52f-e289-4780-82a6-2c90bf6992be" + "524c7df7-90d6-49ab-a559-78c7983bb98d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,44 +1223,44 @@ "25" ], "x-ms-request-id": [ - "a0396172-8c56-4bc1-8b15-c307aac91310" + "997fca83-2e44-4c69-9b1a-987e26247b42" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/9c252fd8-3832-4aa8-a9e1-32187d9c8afb?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/33bb70f6-4719-4bb2-baf2-3e97513519df?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14999" ], "x-ms-correlation-request-id": [ - "b2b4d0e2-109a-49ea-9a13-b34e0bdbc119" + "7c287e86-3ce4-4ba6-bcd9-4e7c1248a480" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210923Z:b2b4d0e2-109a-49ea-9a13-b34e0bdbc119" + "SOUTHCENTRALUS:20150813T063121Z:7c287e86-3ce4-4ba6-bcd9-4e7c1248a480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 21:09:23 GMT" + "Thu, 13 Aug 2015 06:31:21 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/9c252fd8-3832-4aa8-a9e1-32187d9c8afb?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzljMjUyZmQ4LTM4MzItNGFhOC1hOWUxLTMyMTg3ZDljOGFmYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/33bb70f6-4719-4bb2-baf2-3e97513519df?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzMzYmI3MGY2LTQ3MTktNGJiMi1iYWYyLTNlOTc1MTM1MTlkZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa90f836-75dd-4581-96c1-0354a47483fa" + "05384106-667d-43b5-9bf6-5506021d3e26" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1288,7 +1281,7 @@ "no-cache" ], "x-ms-request-id": [ - "8771c5f3-ce51-4753-98f7-d87b44ed3894" + "85146fdb-ddb3-4c11-9c41-9662ae4e3662" ], "Cache-Control": [ "no-cache" @@ -1298,37 +1291,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14998" ], "x-ms-correlation-request-id": [ - "3e20af3d-c4ee-4889-b2d8-cc3974e39bd5" + "2c7a8946-d6b0-45ff-a749-77b4e4d6d966" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210948Z:3e20af3d-c4ee-4889-b2d8-cc3974e39bd5" + "SOUTHCENTRALUS:20150813T063146Z:2c7a8946-d6b0-45ff-a749-77b4e4d6d966" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 21:09:47 GMT" + "Thu, 13 Aug 2015 06:31:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Storage/storageAccounts/stopstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzEwNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Storage/storageAccounts/stocrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczcyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9e53b87-f853-4ddd-9300-3b68a884c2b1" + "65919c50-e425-447d-a918-3208869d37fc" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Storage/storageAccounts/stopstestrg7107\",\r\n \"name\": \"stopstestrg7107\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7107.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7107.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7107.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-18T21:09:21.954796Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Storage/storageAccounts/stocrptestps726\",\r\n \"name\": \"stocrptestps726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps726.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps726.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps726.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T06:31:19.3276595Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "672" @@ -1343,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "fd873693-1469-4553-b663-1b24992a4e8e" + "664252b6-7bd9-4162-9be6-acec593ef743" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1346,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14997" ], "x-ms-correlation-request-id": [ - "17099167-8b11-4efc-982f-c47646b8f346" + "44e61bbf-c0d4-459a-afa3-2c2622b58604" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210948Z:17099167-8b11-4efc-982f-c47646b8f346" + "SOUTHCENTRALUS:20150813T063146Z:44e61bbf-c0d4-459a-afa3-2c2622b58604" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 21:09:47 GMT" + "Thu, 13 Aug 2015 06:31:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Storage/storageAccounts/stopstestrg7107?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzEwNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Storage/storageAccounts/stocrptestps726?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczcyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b6e86da-5459-44ce-84f1-5214565aa30a" + "1b5e1ae1-3805-4abd-8fab-e06a079a0435" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Storage/storageAccounts/stopstestrg7107\",\r\n \"name\": \"stopstestrg7107\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7107.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7107.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7107.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-18T21:09:21.954796Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Storage/storageAccounts/stocrptestps726\",\r\n \"name\": \"stocrptestps726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps726.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps726.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps726.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T06:31:19.3276595Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "672" @@ -1398,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "482410f3-7135-4ac9-88aa-63ac0d7ce34d" + "9c702287-23bb-4e94-845a-2445a3d76b67" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14996" ], "x-ms-correlation-request-id": [ - "36eee10b-3009-42ec-bcf0-155a91fd200c" + "764f2dd6-2d87-41ca-aa8d-a0049c27b3e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210948Z:36eee10b-3009-42ec-bcf0-155a91fd200c" + "SOUTHCENTRALUS:20150813T063146Z:764f2dd6-2d87-41ca-aa8d-a0049c27b3e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 21:09:48 GMT" + "Thu, 13 Aug 2015 06:31:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.ServiceFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "45317" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1453,7 +1446,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2cff84e-df86-42d9-8164-366fd96ba9d3" + "0535a0a9-1753-4a2b-b3a4-cd704053ab49" ], "Cache-Control": [ "no-cache" @@ -1463,31 +1456,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14953" ], "x-ms-correlation-request-id": [ - "0692939d-b27d-4cfc-aa90-04e1ac38f045" + "8bdaaa45-b14a-442b-bd72-b019306cfb9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210949Z:0692939d-b27d-4cfc-aa90-04e1ac38f045" + "SOUTHCENTRALUS:20150813T063147Z:8bdaaa45-b14a-442b-bd72-b019306cfb9a" ], "Date": [ - "Thu, 18 Jun 2015 21:09:48 GMT" + "Thu, 13 Aug 2015 06:31:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1505,7 +1498,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0f2dabc-21c8-4512-b8fa-ada75a467735" + "37de7ea3-37e8-4ca4-b970-df22543d1ae8" ], "Cache-Control": [ "no-cache" @@ -1515,34 +1508,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14952" ], "x-ms-correlation-request-id": [ - "64fd673a-275c-451f-8d3d-72e29557b7a4" + "9167b075-d0e8-4858-9a59-9810eb25c5db" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210949Z:64fd673a-275c-451f-8d3d-72e29557b7a4" + "SOUTHCENTRALUS:20150813T063148Z:9167b075-d0e8-4858-9a59-9810eb25c5db" ], "Date": [ - "Thu, 18 Jun 2015 21:09:49 GMT" + "Thu, 13 Aug 2015 06:31:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,7 +1550,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "222abd9c-7f15-4f5d-b1c8-fce3d9464af2" + "eefe03b0-619b-40d0-b7b7-79d1ed8b77a2" ], "Cache-Control": [ "no-cache" @@ -1567,34 +1560,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14951" ], "x-ms-correlation-request-id": [ - "5cd641ef-d854-471e-8f33-ae71d633a923" + "261e1608-fb91-4cc1-93a6-fa8f9c9635a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210949Z:5cd641ef-d854-471e-8f33-ae71d633a923" + "SOUTHCENTRALUS:20150813T063148Z:261e1608-fb91-4cc1-93a6-fa8f9c9635a9" ], "Date": [ - "Thu, 18 Jun 2015 21:09:49 GMT" + "Thu, 13 Aug 2015 06:31:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "870" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1609,7 +1602,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b97f17a-cf34-4992-9a15-99ca3d769e34" + "1bf57f20-47e5-4584-8565-ce31c533bdd7" ], "Cache-Control": [ "no-cache" @@ -1619,31 +1612,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14950" ], "x-ms-correlation-request-id": [ - "8830241e-747e-473a-a51f-e0c75efa5902" + "401b958d-8a31-431c-8ffd-89df2951069f" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210949Z:8830241e-747e-473a-a51f-e0c75efa5902" + "SOUTHCENTRALUS:20150813T063149Z:401b958d-8a31-431c-8ffd-89df2951069f" ], "Date": [ - "Thu, 18 Jun 2015 21:09:49 GMT" + "Thu, 13 Aug 2015 06:31:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1661,7 +1654,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89ff0c11-45d6-4271-a30a-521cd5a3bb8a" + "18c7ad81-b249-4c57-8a4d-35ad159cfd21" ], "Cache-Control": [ "no-cache" @@ -1671,40 +1664,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14949" ], "x-ms-correlation-request-id": [ - "3425fa1c-d9b8-479b-aa42-b724402f2081" + "44c7baf8-1ad4-4401-b437-7c324975bdc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210950Z:3425fa1c-d9b8-479b-aa42-b724402f2081" + "SOUTHCENTRALUS:20150813T063149Z:44c7baf8-1ad4-4401-b437-7c324975bdc9" ], "Date": [ - "Thu, 18 Jun 2015 21:09:49 GMT" + "Thu, 13 Aug 2015 06:31:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg7107\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7107\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps726\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps726\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1053" + "1094" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107\",\r\n \"name\": \"vmpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726\",\r\n \"name\": \"vmcrptestps726\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1333" + "1347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1716,13 +1709,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23" + "c63c3919-ff53-4a00-9f66-da7427df7443" ], "Cache-Control": [ "no-cache" @@ -1732,40 +1728,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "32ed18cb-f56f-4429-a0b9-0cd7697237bb" + "9bfb42dc-6db6-4ce1-af8b-7941001b2f03" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T210950Z:32ed18cb-f56f-4429-a0b9-0cd7697237bb" + "SOUTHCENTRALUS:20150813T063150Z:9bfb42dc-6db6-4ce1-af8b-7941001b2f03" ], "Date": [ - "Thu, 18 Jun 2015 21:09:50 GMT" + "Thu, 13 Aug 2015 06:31:50 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg7107\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7107\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps726\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps726\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1053" + "1094" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107\",\r\n \"name\": \"vmpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726\",\r\n \"name\": \"vmcrptestps726\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1333" + "1347" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1777,13 +1773,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a27dc583-1e4e-4c06-945e-26112f1b8bb5?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5c7dccf1-2013-4b21-b0ff-d1b5d8dfd14a?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a27dc583-1e4e-4c06-945e-26112f1b8bb5" + "5c7dccf1-2013-4b21-b0ff-d1b5d8dfd14a" ], "Cache-Control": [ "no-cache" @@ -1793,31 +1792,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-correlation-request-id": [ - "ef16ad13-dfd8-4d21-94c9-a9fa8eeddde7" + "edf3f185-bb66-402b-9fcf-74d123f9e2cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211855Z:ef16ad13-dfd8-4d21-94c9-a9fa8eeddde7" + "SOUTHCENTRALUS:20150813T063858Z:edf3f185-bb66-402b-9fcf-74d123f9e2cd" ], "Date": [ - "Thu, 18 Jun 2015 21:18:55 GMT" + "Thu, 13 Aug 2015 06:38:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1834,60 +1833,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "d05dd32d-4413-405c-9b52-f35d1f9d81af" - ], - "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": [ - "a09a3799-ac0d-43f9-931b-5caafc7f7afe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150618T210951Z:a09a3799-ac0d-43f9-931b-5caafc7f7afe" - ], - "Date": [ - "Thu, 18 Jun 2015 21:09:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "6af5b4db-1b50-4d7d-ae98-7ff0347f193c" + "515fff41-38f5-49df-b42c-0584c36495f1" ], "Cache-Control": [ "no-cache" @@ -1897,31 +1847,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14948" ], "x-ms-correlation-request-id": [ - "02d600ab-cd86-4424-a9d0-75fc45405f62" + "67bbfe7b-4a68-47ef-bee9-09b4b4345e58" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211021Z:02d600ab-cd86-4424-a9d0-75fc45405f62" + "SOUTHCENTRALUS:20150813T063151Z:67bbfe7b-4a68-47ef-bee9-09b4b4345e58" ], "Date": [ - "Thu, 18 Jun 2015 21:10:21 GMT" + "Thu, 13 Aug 2015 06:31:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1938,8 +1888,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f23b7417-2df8-4025-890f-dc1c3774e197" + "cc22ab6e-6212-4433-83e2-887f00cc4b18" ], "Cache-Control": [ "no-cache" @@ -1949,31 +1902,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14947" ], "x-ms-correlation-request-id": [ - "6d067bc1-5bfd-4574-81a1-1111eff57b99" + "75487905-ea2f-4796-b9a0-8e5d0c7626d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211051Z:6d067bc1-5bfd-4574-81a1-1111eff57b99" + "SOUTHCENTRALUS:20150813T063221Z:75487905-ea2f-4796-b9a0-8e5d0c7626d2" ], "Date": [ - "Thu, 18 Jun 2015 21:10:51 GMT" + "Thu, 13 Aug 2015 06:32:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1990,8 +1943,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f09c555d-7bb8-4dd8-95e2-0bf77a64c0e2" + "745cb7d0-0811-45f0-a2dc-28ee3634ab6e" ], "Cache-Control": [ "no-cache" @@ -2001,31 +1957,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14946" ], "x-ms-correlation-request-id": [ - "2b9e9faa-11fb-40a1-a515-38eecf9d49ec" + "bf428f63-fc86-427f-8be3-2964a05f5e81" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211121Z:2b9e9faa-11fb-40a1-a515-38eecf9d49ec" + "SOUTHCENTRALUS:20150813T063251Z:bf428f63-fc86-427f-8be3-2964a05f5e81" ], "Date": [ - "Thu, 18 Jun 2015 21:11:20 GMT" + "Thu, 13 Aug 2015 06:32:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2042,8 +1998,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "65b2d828-8278-4dd1-9cd6-a4eac91b993e" + "fe792e55-d250-48de-adcc-de63271a1284" ], "Cache-Control": [ "no-cache" @@ -2053,31 +2012,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14945" ], "x-ms-correlation-request-id": [ - "e76e6f09-a5b9-4c16-b6aa-eef5ca53ea4d" + "32852254-0b5d-4685-b93c-8e1087a66f16" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211151Z:e76e6f09-a5b9-4c16-b6aa-eef5ca53ea4d" + "SOUTHCENTRALUS:20150813T063322Z:32852254-0b5d-4685-b93c-8e1087a66f16" ], "Date": [ - "Thu, 18 Jun 2015 21:11:50 GMT" + "Thu, 13 Aug 2015 06:33:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2094,8 +2053,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "2105f715-86b5-4395-bdaa-30b73c0fe28f" + "165dc100-a522-4eb4-9cf1-e7f615ea3d85" ], "Cache-Control": [ "no-cache" @@ -2105,31 +2067,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14944" ], "x-ms-correlation-request-id": [ - "d11000b9-f067-4c4e-b241-88cc1da5fc06" + "cdcccd67-63c3-4eca-a6f2-ee15393f88e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211221Z:d11000b9-f067-4c4e-b241-88cc1da5fc06" + "SOUTHCENTRALUS:20150813T063352Z:cdcccd67-63c3-4eca-a6f2-ee15393f88e5" ], "Date": [ - "Thu, 18 Jun 2015 21:12:21 GMT" + "Thu, 13 Aug 2015 06:33:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2146,8 +2108,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7bd16cc2-d615-4326-845c-562c29b8d23b" + "6e91cb96-eefa-45bf-b2d1-6349bc40c236" ], "Cache-Control": [ "no-cache" @@ -2157,31 +2122,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14943" ], "x-ms-correlation-request-id": [ - "876d756d-836f-48fb-80a6-65f9174eedbf" + "64222a0e-b0cc-448a-b3a2-eae6d38ba3d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211251Z:876d756d-836f-48fb-80a6-65f9174eedbf" + "SOUTHCENTRALUS:20150813T063422Z:64222a0e-b0cc-448a-b3a2-eae6d38ba3d8" ], "Date": [ - "Thu, 18 Jun 2015 21:12:51 GMT" + "Thu, 13 Aug 2015 06:34:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2198,8 +2163,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "64fb5757-5413-40d1-832b-c382c50685ae" + "e75d4e69-1d2d-4d86-b439-356afa19b87e" ], "Cache-Control": [ "no-cache" @@ -2209,31 +2177,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14942" ], "x-ms-correlation-request-id": [ - "94be66ef-5d31-439b-a3de-8629fa96adf0" + "a7502b6e-e626-4f88-bc78-c838c308afd0" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211321Z:94be66ef-5d31-439b-a3de-8629fa96adf0" + "SOUTHCENTRALUS:20150813T063452Z:a7502b6e-e626-4f88-bc78-c838c308afd0" ], "Date": [ - "Thu, 18 Jun 2015 21:13:21 GMT" + "Thu, 13 Aug 2015 06:34:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2250,8 +2218,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ef5e12c5-ed65-4f54-9b09-3a3a0e19c8ab" + "beace951-d99f-432a-859e-baeb263b63df" ], "Cache-Control": [ "no-cache" @@ -2261,31 +2232,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14948" ], "x-ms-correlation-request-id": [ - "70765cdf-e902-4e46-ab12-b9b8c204f9d8" + "6230bb28-8fae-4b0d-a706-f7ba8a5187e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211351Z:70765cdf-e902-4e46-ab12-b9b8c204f9d8" + "SOUTHCENTRALUS:20150813T063523Z:6230bb28-8fae-4b0d-a706-f7ba8a5187e8" ], "Date": [ - "Thu, 18 Jun 2015 21:13:51 GMT" + "Thu, 13 Aug 2015 06:35:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2302,8 +2273,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "487f7b90-7737-416a-aa06-abc6b6dac014" + "7a114353-5d85-47d1-adfc-fa85755c4995" ], "Cache-Control": [ "no-cache" @@ -2313,31 +2287,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14947" ], "x-ms-correlation-request-id": [ - "1530069c-f8fe-44ab-bc05-490f5124f373" + "4979f1f9-27c6-4ed8-a967-c9d88294ea57" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211422Z:1530069c-f8fe-44ab-bc05-490f5124f373" + "SOUTHCENTRALUS:20150813T063553Z:4979f1f9-27c6-4ed8-a967-c9d88294ea57" ], "Date": [ - "Thu, 18 Jun 2015 21:14:21 GMT" + "Thu, 13 Aug 2015 06:35:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2354,8 +2328,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "de85891b-60f4-4062-95d7-6afffdf00269" + "73b9cbc1-b5af-4bb2-a555-0c7bab877876" ], "Cache-Control": [ "no-cache" @@ -2365,31 +2342,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14946" ], "x-ms-correlation-request-id": [ - "76805d1f-b7ef-40b4-bce0-df4abb0c3131" + "cee30dee-d8a4-47ff-8366-0722e42aea26" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211452Z:76805d1f-b7ef-40b4-bce0-df4abb0c3131" + "SOUTHCENTRALUS:20150813T063623Z:cee30dee-d8a4-47ff-8366-0722e42aea26" ], "Date": [ - "Thu, 18 Jun 2015 21:14:51 GMT" + "Thu, 13 Aug 2015 06:36:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2406,8 +2383,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "cd2a16c8-dbce-4fdc-a2b1-924e75218311" + "63ba473b-b476-458d-8f59-8076efb0a7a6" ], "Cache-Control": [ "no-cache" @@ -2417,31 +2397,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14945" ], "x-ms-correlation-request-id": [ - "52907389-ebc5-4042-91cb-14067661a217" + "dd5a84d9-3988-4c46-8c0d-70c6a087af99" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211522Z:52907389-ebc5-4042-91cb-14067661a217" + "SOUTHCENTRALUS:20150813T063654Z:dd5a84d9-3988-4c46-8c0d-70c6a087af99" ], "Date": [ - "Thu, 18 Jun 2015 21:15:22 GMT" + "Thu, 13 Aug 2015 06:36:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2458,8 +2438,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f959c3f8-260f-4e68-b16a-4b049fd9d8e5" + "77faa6cb-2d3e-45c9-b968-8f80644c9f95" ], "Cache-Control": [ "no-cache" @@ -2469,34 +2452,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14944" ], "x-ms-correlation-request-id": [ - "bc071703-5ede-44d4-94ec-e8599acaa153" + "ee30a374-8b78-408d-973a-434a55cf237f" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211552Z:bc071703-5ede-44d4-94ec-e8599acaa153" + "SOUTHCENTRALUS:20150813T063724Z:ee30a374-8b78-408d-973a-434a55cf237f" ], "Date": [ - "Thu, 18 Jun 2015 21:15:51 GMT" + "Thu, 13 Aug 2015 06:37:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c63c3919-ff53-4a00-9f66-da7427df7443?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzYzYzM5MTktZmY1My00YTAwLTlmNjYtZGE3NDI3ZGY3NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c63c3919-ff53-4a00-9f66-da7427df7443\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:31:50.5902507-07:00\",\r\n \"endTime\": \"2015-08-12T23:37:25.6525239-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2510,8 +2493,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "2e4bb832-67ba-4788-b6be-b57570dd7eb3" + "0824fe37-cbad-4a61-b7db-e9d1b5e9c05e" ], "Cache-Control": [ "no-cache" @@ -2521,34 +2507,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14943" ], "x-ms-correlation-request-id": [ - "7e5c19d2-82c4-4cf5-bd1a-49c5725b4dff" + "69727006-7a2d-4b70-8bc3-bcfa152515fa" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211622Z:7e5c19d2-82c4-4cf5-bd1a-49c5725b4dff" + "SOUTHCENTRALUS:20150813T063754Z:69727006-7a2d-4b70-8bc3-bcfa152515fa" ], "Date": [ - "Thu, 18 Jun 2015 21:16:22 GMT" + "Thu, 13 Aug 2015 06:37:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726\",\r\n \"name\": \"vmcrptestps726\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "1348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2562,8 +2548,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e45f8618-bc55-4d37-b31a-a437f642a9f7" + "38f5cc69-d6fc-4d8f-a7ca-16965ab537c2" ], "Cache-Control": [ "no-cache" @@ -2573,34 +2562,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14942" ], "x-ms-correlation-request-id": [ - "d37279d1-dcd6-40c9-bc99-7fc3c197ff1c" + "4cb22d6d-d15f-40d7-88bc-c34f16c8539c" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211652Z:d37279d1-dcd6-40c9-bc99-7fc3c197ff1c" + "SOUTHCENTRALUS:20150813T063754Z:4cb22d6d-d15f-40d7-88bc-c34f16c8539c" ], "Date": [ - "Thu, 18 Jun 2015 21:16:52 GMT" + "Thu, 13 Aug 2015 06:37:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmIxYmJjMzMtMDVjOC00ZmRlLWE4ZTEtM2RhMGNkYWM0ZTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"fb1bbc33-05c8-4fde-a8e1-3da0cdac4e23\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T14:09:50.5459299-07:00\",\r\n \"endTime\": \"2015-06-18T14:17:05.3432852-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726\",\r\n \"name\": \"vmcrptestps726\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "1348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2614,8 +2603,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b65a274b-d626-4715-bc9c-79405d012644" + "580eee8f-b9ac-42b6-9f35-9fc60ee3edd7" ], "Cache-Control": [ "no-cache" @@ -2625,37 +2617,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14935" ], "x-ms-correlation-request-id": [ - "d8d45c96-eea7-4a6e-836a-61b27ab1d08f" + "edad7703-27a9-4f2f-aa5a-9e6e06568931" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211722Z:d8d45c96-eea7-4a6e-836a-61b27ab1d08f" + "SOUTHCENTRALUS:20150813T063858Z:edad7703-27a9-4f2f-aa5a-9e6e06568931" ], "Date": [ - "Thu, 18 Jun 2015 21:17:21 GMT" + "Thu, 13 Aug 2015 06:38:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726/start?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2L3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107\",\r\n \"name\": \"vmpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "1334" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2663,48 +2652,57 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/259b0235-29ad-4004-9818-4b8b3c794ea8?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "298a93b7-a777-4a32-9e2b-2d5f6b0e1e08" + "259b0235-29ad-4004-9818-4b8b3c794ea8" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/259b0235-29ad-4004-9818-4b8b3c794ea8?monitor=true&api-version=2015-06-15" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "b9290b93-2614-4425-82a2-9ba42fcb7ac6" + "08e239aa-1b3e-40d1-8c69-7ae77ee44c41" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211722Z:b9290b93-2614-4425-82a2-9ba42fcb7ac6" + "SOUTHCENTRALUS:20150813T063755Z:08e239aa-1b3e-40d1-8c69-7ae77ee44c41" ], "Date": [ - "Thu, 18 Jun 2015 21:17:21 GMT" + "Thu, 13 Aug 2015 06:37:54 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/259b0235-29ad-4004-9818-4b8b3c794ea8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjU5YjAyMzUtMjlhZC00MDA0LTk4MTgtNGI4YjNjNzk0ZWE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107\",\r\n \"name\": \"vmpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"259b0235-29ad-4004-9818-4b8b3c794ea8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:37:55.4804447-07:00\",\r\n \"endTime\": \"2015-08-12T23:37:55.7773642-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1334" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2718,8 +2716,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e8eab7d2-76c6-4fa1-aff7-c0d84c80698e" + "6c1dacb9-89e1-48e8-9093-96707aad380c" ], "Cache-Control": [ "no-cache" @@ -2729,28 +2730,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14941" ], "x-ms-correlation-request-id": [ - "a0be28e0-18e8-4d50-9495-6c5f8dbd4f81" + "11422ac4-368a-4e63-9de3-8ed87b510c5e" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211925Z:a0be28e0-18e8-4d50-9495-6c5f8dbd4f81" + "SOUTHCENTRALUS:20150813T063755Z:11422ac4-368a-4e63-9de3-8ed87b510c5e" ], "Date": [ - "Thu, 18 Jun 2015 21:19:25 GMT" + "Thu, 13 Aug 2015 06:37:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107/start?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3L3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2L3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -2765,50 +2766,53 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3a2fb8ea-3b2d-4364-94ea-795b589cb668?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5c4dae4f-9950-4fe7-a31c-0be6e1719469?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3a2fb8ea-3b2d-4364-94ea-795b589cb668" + "5c4dae4f-9950-4fe7-a31c-0be6e1719469" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3a2fb8ea-3b2d-4364-94ea-795b589cb668?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5c4dae4f-9950-4fe7-a31c-0be6e1719469?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "e3fd4981-a2a9-4ae2-b74d-c06b31087edb" + "ad684306-7dab-4726-8638-50f76555152f" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211723Z:e3fd4981-a2a9-4ae2-b74d-c06b31087edb" + "SOUTHCENTRALUS:20150813T063755Z:ad684306-7dab-4726-8638-50f76555152f" ], "Date": [ - "Thu, 18 Jun 2015 21:17:23 GMT" + "Thu, 13 Aug 2015 06:37:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3a2fb8ea-3b2d-4364-94ea-795b589cb668?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2EyZmI4ZWEtM2IyZC00MzY0LTk0ZWEtNzk1YjU4OWNiNjY4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5c4dae4f-9950-4fe7-a31c-0be6e1719469?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWM0ZGFlNGYtOTk1MC00ZmU3LWEzMWMtMGJlNmUxNzE5NDY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3a2fb8ea-3b2d-4364-94ea-795b589cb668\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:17:23.0463938-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5c4dae4f-9950-4fe7-a31c-0be6e1719469\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:37:56.2304054-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2825,8 +2829,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "9f6e458b-c5f7-4248-8da7-238512327ff7" + "a3a92c03-3690-4e65-8801-cb38e9775fc6" ], "Cache-Control": [ "no-cache" @@ -2836,31 +2843,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14940" ], "x-ms-correlation-request-id": [ - "bd84d83a-5c2d-4c9f-83ca-8b072ebf11de" + "71b1bce0-f7cd-4b20-a69b-dbe4421260e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211723Z:bd84d83a-5c2d-4c9f-83ca-8b072ebf11de" + "SOUTHCENTRALUS:20150813T063756Z:71b1bce0-f7cd-4b20-a69b-dbe4421260e2" ], "Date": [ - "Thu, 18 Jun 2015 21:17:23 GMT" + "Thu, 13 Aug 2015 06:37:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/3a2fb8ea-3b2d-4364-94ea-795b589cb668?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2EyZmI4ZWEtM2IyZC00MzY0LTk0ZWEtNzk1YjU4OWNiNjY4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5c4dae4f-9950-4fe7-a31c-0be6e1719469?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWM0ZGFlNGYtOTk1MC00ZmU3LWEzMWMtMGJlNmUxNzE5NDY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"3a2fb8ea-3b2d-4364-94ea-795b589cb668\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T14:17:23.0463938-07:00\",\r\n \"endTime\": \"2015-06-18T14:17:23.4682407-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5c4dae4f-9950-4fe7-a31c-0be6e1719469\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:37:56.2304054-07:00\",\r\n \"endTime\": \"2015-08-12T23:37:56.6366731-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2877,8 +2884,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e3409256-a4a5-44b4-b2f3-a46d5493d456" + "c529d389-4f77-4c5e-a5cb-78db166d1bd0" ], "Cache-Control": [ "no-cache" @@ -2888,28 +2898,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14939" ], "x-ms-correlation-request-id": [ - "ef3b57c7-3274-4ef9-8c7f-aec649ddfe90" + "5d74bb3e-4a51-4f38-af53-f9a10d87791b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211753Z:ef3b57c7-3274-4ef9-8c7f-aec649ddfe90" + "SOUTHCENTRALUS:20150813T063826Z:5d74bb3e-4a51-4f38-af53-f9a10d87791b" ], "Date": [ - "Thu, 18 Jun 2015 21:17:52 GMT" + "Thu, 13 Aug 2015 06:38:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107/restart?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3L3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726/powerOff?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2L3Bvd2VyT2ZmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -2924,50 +2934,53 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ca2e097-8596-4529-b832-68f3ccd1e9f5?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f8d17290-659c-42dd-9dba-325dcbb532e2?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "0ca2e097-8596-4529-b832-68f3ccd1e9f5" + "f8d17290-659c-42dd-9dba-325dcbb532e2" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ca2e097-8596-4529-b832-68f3ccd1e9f5?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f8d17290-659c-42dd-9dba-325dcbb532e2?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "2800ee1c-d9eb-4b28-a09c-866b99b072f4" + "c58f9ebd-f460-4be9-b7b6-903b531bd8d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211753Z:2800ee1c-d9eb-4b28-a09c-866b99b072f4" + "SOUTHCENTRALUS:20150813T063827Z:c58f9ebd-f460-4be9-b7b6-903b531bd8d2" ], "Date": [ - "Thu, 18 Jun 2015 21:17:52 GMT" + "Thu, 13 Aug 2015 06:38:26 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ca2e097-8596-4529-b832-68f3ccd1e9f5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNhMmUwOTctODU5Ni00NTI5LWI4MzItNjhmM2NjZDFlOWY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f8d17290-659c-42dd-9dba-325dcbb532e2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjhkMTcyOTAtNjU5Yy00MmRkLTlkYmEtMzI1ZGNiYjUzMmUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ca2e097-8596-4529-b832-68f3ccd1e9f5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:17:53.4682981-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f8d17290-659c-42dd-9dba-325dcbb532e2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:38:27.1365055-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2984,8 +2997,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b2f884a0-e59a-4e37-bfd3-01113b45a5bd" + "dd4c9d35-39bf-492a-9407-2f67b557dba4" ], "Cache-Control": [ "no-cache" @@ -2995,31 +3011,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14938" ], "x-ms-correlation-request-id": [ - "5a8d7537-d393-413f-80a0-b4dc7280a7e8" + "814c690e-3f41-4329-bd3e-4d25d124e7d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211753Z:5a8d7537-d393-413f-80a0-b4dc7280a7e8" + "SOUTHCENTRALUS:20150813T063827Z:814c690e-3f41-4329-bd3e-4d25d124e7d2" ], "Date": [ - "Thu, 18 Jun 2015 21:17:53 GMT" + "Thu, 13 Aug 2015 06:38:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/0ca2e097-8596-4529-b832-68f3ccd1e9f5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGNhMmUwOTctODU5Ni00NTI5LWI4MzItNjhmM2NjZDFlOWY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f8d17290-659c-42dd-9dba-325dcbb532e2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjhkMTcyOTAtNjU5Yy00MmRkLTlkYmEtMzI1ZGNiYjUzMmUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"0ca2e097-8596-4529-b832-68f3ccd1e9f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T14:17:53.4682981-07:00\",\r\n \"endTime\": \"2015-06-18T14:17:54.2807981-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f8d17290-659c-42dd-9dba-325dcbb532e2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:38:27.1365055-07:00\",\r\n \"endTime\": \"2015-08-12T23:38:34.3708134-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -3036,8 +3052,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "bc6ef112-6954-4761-b1f4-614e356d986e" + "c28af5f8-8cb4-4553-a220-2e7b60a3db3c" ], "Cache-Control": [ "no-cache" @@ -3047,34 +3066,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14937" ], "x-ms-correlation-request-id": [ - "fb1d1ae8-a0dc-4366-82e3-5accd5bf8a27" + "9f928573-1139-4152-9570-e4b289299a3d" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211823Z:fb1d1ae8-a0dc-4366-82e3-5accd5bf8a27" + "SOUTHCENTRALUS:20150813T063857Z:9f928573-1139-4152-9570-e4b289299a3d" ], "Date": [ - "Thu, 18 Jun 2015 21:18:23 GMT" + "Thu, 13 Aug 2015 06:38:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107/powerOff?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3L3Bvd2VyT2ZmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5c7dccf1-2013-4b21-b0ff-d1b5d8dfd14a?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWM3ZGNjZjEtMjAxMy00YjIxLWIwZmYtZDFiNWQ4ZGZkMTRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"5c7dccf1-2013-4b21-b0ff-d1b5d8dfd14a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:38:58.3393527-07:00\",\r\n \"endTime\": \"2015-08-12T23:38:58.7300538-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3082,54 +3104,51 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/31affde8-b514-4869-987a-4e8fb057d5cd?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "31affde8-b514-4869-987a-4e8fb057d5cd" + "fa4ad305-4766-49df-80c4-0bb991f6608c" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/31affde8-b514-4869-987a-4e8fb057d5cd?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" ], "x-ms-correlation-request-id": [ - "9f2009e5-aabc-4144-89e0-aacb1af1d8ae" + "c4b2c514-e600-4a09-8ed3-bf09c5a80d75" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211824Z:9f2009e5-aabc-4144-89e0-aacb1af1d8ae" + "SOUTHCENTRALUS:20150813T063858Z:c4b2c514-e600-4a09-8ed3-bf09c5a80d75" ], "Date": [ - "Thu, 18 Jun 2015 21:18:24 GMT" + "Thu, 13 Aug 2015 06:38:58 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/31affde8-b514-4869-987a-4e8fb057d5cd?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhZmZkZTgtYjUxNC00ODY5LTk4N2EtNGU4ZmIwNTdkNWNkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"31affde8-b514-4869-987a-4e8fb057d5cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:18:24.9527948-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726\",\r\n \"name\": \"vmcrptestps726\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "1533" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3143,8 +3162,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "16d52f98-5cae-49e2-8b61-5d1f14195cd4" + "5c491f60-48d0-4270-a522-fc1c1907a06e" ], "Cache-Control": [ "no-cache" @@ -3154,34 +3176,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14934" ], "x-ms-correlation-request-id": [ - "d8bc67af-3880-4047-822f-649b540faca8" + "a42cc2f5-ae5b-46d0-9295-4a1f1538ac07" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211825Z:d8bc67af-3880-4047-822f-649b540faca8" + "SOUTHCENTRALUS:20150813T063858Z:a42cc2f5-ae5b-46d0-9295-4a1f1538ac07" ], "Date": [ - "Thu, 18 Jun 2015 21:18:24 GMT" + "Thu, 13 Aug 2015 06:38:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/31affde8-b514-4869-987a-4e8fb057d5cd?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzFhZmZkZTgtYjUxNC00ODY5LTk4N2EtNGU4ZmIwNTdkNWNkP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"31affde8-b514-4869-987a-4e8fb057d5cd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T14:18:24.9527948-07:00\",\r\n \"endTime\": \"2015-06-18T14:18:32.8745915-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726\",\r\n \"name\": \"vmcrptestps726\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "1533" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3195,8 +3217,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7c4656d7-d63c-4b23-a606-d5852e03f925" + "16f28f7f-ab28-4a60-a003-3ff4a49b67dd" ], "Cache-Control": [ "no-cache" @@ -3206,34 +3231,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14933" ], "x-ms-correlation-request-id": [ - "188ec7e4-7d1d-4546-a017-144417632898" + "dff7a393-f83c-465a-997a-eaea99da6a01" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211855Z:188ec7e4-7d1d-4546-a017-144417632898" + "SOUTHCENTRALUS:20150813T063858Z:dff7a393-f83c-465a-997a-eaea99da6a01" ], "Date": [ - "Thu, 18 Jun 2015 21:18:55 GMT" + "Thu, 13 Aug 2015 06:38:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a27dc583-1e4e-4c06-945e-26112f1b8bb5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTI3ZGM1ODMtMWU0ZS00YzA2LTk0NWUtMjYxMTJmMWI4YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a27dc583-1e4e-4c06-945e-26112f1b8bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:18:55.5777752-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "19" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3247,8 +3272,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "50ea5816-4060-4da7-b4cb-da5dd41d379e" + "fc045183-5e8d-4804-a2d2-21f057eeb0b3" ], "Cache-Control": [ "no-cache" @@ -3258,37 +3286,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14937" ], "x-ms-correlation-request-id": [ - "e1775cea-1810-4385-a32f-19aeeec73213" + "a9798823-4d62-4869-ab64-a53de4f9daeb" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211855Z:e1775cea-1810-4385-a32f-19aeeec73213" + "SOUTHCENTRALUS:20150813T064131Z:a9798823-4d62-4869-ab64-a53de4f9daeb" ], "Date": [ - "Thu, 18 Jun 2015 21:18:55 GMT" + "Thu, 13 Aug 2015 06:41:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a27dc583-1e4e-4c06-945e-26112f1b8bb5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTI3ZGM1ODMtMWU0ZS00YzA2LTk0NWUtMjYxMTJmMWI4YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a27dc583-1e4e-4c06-945e-26112f1b8bb5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T14:18:55.5777752-07:00\",\r\n \"endTime\": \"2015-06-18T14:18:55.968379-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "190" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3296,48 +3321,57 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/88f6c58c-2151-497c-87e4-18e3da780f50?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3715148f-290d-4359-9468-0db4da10d1bf" + "88f6c58c-2151-497c-87e4-18e3da780f50" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/88f6c58c-2151-497c-87e4-18e3da780f50?monitor=true&api-version=2015-06-15" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" ], "x-ms-correlation-request-id": [ - "5d8adb20-0424-4a7a-a269-928275df3d54" + "56efd890-8ef3-45b0-ae41-ac561723e0e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211925Z:5d8adb20-0424-4a7a-a269-928275df3d54" + "SOUTHCENTRALUS:20150813T063859Z:56efd890-8ef3-45b0-ae41-ac561723e0e2" ], "Date": [ - "Thu, 18 Jun 2015 21:19:25 GMT" + "Thu, 13 Aug 2015 06:38:59 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/88f6c58c-2151-497c-87e4-18e3da780f50?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODhmNmM1OGMtMjE1MS00OTdjLTg3ZTQtMThlM2RhNzgwZjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107\",\r\n \"name\": \"vmpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88f6c58c-2151-497c-87e4-18e3da780f50\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:38:59.6050478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1519" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3351,8 +3385,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "43765174-f11e-45c1-a4f1-a72c4852516f" + "9b8e54d4-dade-4c27-a7e4-b248b713270b" ], "Cache-Control": [ "no-cache" @@ -3362,34 +3399,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14932" ], "x-ms-correlation-request-id": [ - "db0024c5-0e15-4500-a848-8fef0ee29aa1" + "5650aafd-4a18-43d5-9748-0f86d38ddff1" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211926Z:db0024c5-0e15-4500-a848-8fef0ee29aa1" + "SOUTHCENTRALUS:20150813T063900Z:5650aafd-4a18-43d5-9748-0f86d38ddff1" ], "Date": [ - "Thu, 18 Jun 2015 21:19:25 GMT" + "Thu, 13 Aug 2015 06:38:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/88f6c58c-2151-497c-87e4-18e3da780f50?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODhmNmM1OGMtMjE1MS00OTdjLTg3ZTQtMThlM2RhNzgwZjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107\",\r\n \"name\": \"vmpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88f6c58c-2151-497c-87e4-18e3da780f50\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:38:59.6050478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1519" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3403,8 +3440,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "310b3a59-fc45-499a-a937-8bc88ed6ed5d" + "f6aa706c-aa3f-428f-9e0d-a81878464d70" ], "Cache-Control": [ "no-cache" @@ -3414,34 +3454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14931" ], "x-ms-correlation-request-id": [ - "caf5c719-57e5-452e-9088-47262b3c81fc" + "97da098c-f993-47b7-a99a-9c9366b2a637" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211926Z:caf5c719-57e5-452e-9088-47262b3c81fc" + "SOUTHCENTRALUS:20150813T063930Z:97da098c-f993-47b7-a99a-9c9366b2a637" ], "Date": [ - "Thu, 18 Jun 2015 21:19:26 GMT" + "Thu, 13 Aug 2015 06:39:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/88f6c58c-2151-497c-87e4-18e3da780f50?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODhmNmM1OGMtMjE1MS00OTdjLTg3ZTQtMThlM2RhNzgwZjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88f6c58c-2151-497c-87e4-18e3da780f50\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:38:59.6050478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "19" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3455,8 +3495,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e5745bab-2ff2-4fda-a942-4eccbc27c3d9" + "4bc9e669-4208-4a69-a097-5c45e8a905df" ], "Cache-Control": [ "no-cache" @@ -3466,34 +3509,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14941" ], "x-ms-correlation-request-id": [ - "e4f90735-7597-4104-97f9-415d1a2b8854" + "99d09bc1-3b3f-4ebd-b0b9-dc1f5f0a70c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212127Z:e4f90735-7597-4104-97f9-415d1a2b8854" + "SOUTHCENTRALUS:20150813T064000Z:99d09bc1-3b3f-4ebd-b0b9-dc1f5f0a70c6" ], "Date": [ - "Thu, 18 Jun 2015 21:21:27 GMT" + "Thu, 13 Aug 2015 06:39:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg7107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/88f6c58c-2151-497c-87e4-18e3da780f50?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODhmNmM1OGMtMjE1MS00OTdjLTg3ZTQtMThlM2RhNzgwZjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"88f6c58c-2151-497c-87e4-18e3da780f50\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:38:59.6050478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3501,51 +3547,48 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/58d4554a-410c-495b-a700-0ee9b0598a6e?api-version=2015-06-15" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "58d4554a-410c-495b-a700-0ee9b0598a6e" + "836c8c50-2618-44b9-8b75-f52679324614" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/58d4554a-410c-495b-a700-0ee9b0598a6e?monitor=true&api-version=2015-06-15" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" ], "x-ms-correlation-request-id": [ - "d202d305-b1ec-401b-80b0-e7bd65006aa0" + "4798d18d-18ba-42db-9d12-c133e41564ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211926Z:d202d305-b1ec-401b-80b0-e7bd65006aa0" + "SOUTHCENTRALUS:20150813T064031Z:4798d18d-18ba-42db-9d12-c133e41564ba" ], "Date": [ - "Thu, 18 Jun 2015 21:19:26 GMT" + "Thu, 13 Aug 2015 06:40:30 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/58d4554a-410c-495b-a700-0ee9b0598a6e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNThkNDU1NGEtNDEwYy00OTViLWE3MDAtMGVlOWIwNTk4YTZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/88f6c58c-2151-497c-87e4-18e3da780f50?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODhmNmM1OGMtMjE1MS00OTdjLTg3ZTQtMThlM2RhNzgwZjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"58d4554a-410c-495b-a700-0ee9b0598a6e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:19:26.4059209-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88f6c58c-2151-497c-87e4-18e3da780f50\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:38:59.6050478-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3562,8 +3605,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6c29f9b5-04c0-46d7-9f6e-9462d20a0f1b" + "87d5f5ad-a831-4a6e-951f-bc751afac72a" ], "Cache-Control": [ "no-cache" @@ -3573,34 +3619,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14939" ], "x-ms-correlation-request-id": [ - "55e2496e-597a-4eda-96a9-6695e0c62d48" + "addf3e83-bdcd-4723-b67d-f326d446bc75" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211926Z:55e2496e-597a-4eda-96a9-6695e0c62d48" + "SOUTHCENTRALUS:20150813T064101Z:addf3e83-bdcd-4723-b67d-f326d446bc75" ], "Date": [ - "Thu, 18 Jun 2015 21:19:26 GMT" + "Thu, 13 Aug 2015 06:41:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/58d4554a-410c-495b-a700-0ee9b0598a6e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNThkNDU1NGEtNDEwYy00OTViLWE3MDAtMGVlOWIwNTk4YTZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/88f6c58c-2151-497c-87e4-18e3da780f50?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODhmNmM1OGMtMjE1MS00OTdjLTg3ZTQtMThlM2RhNzgwZjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"58d4554a-410c-495b-a700-0ee9b0598a6e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:19:26.4059209-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88f6c58c-2151-497c-87e4-18e3da780f50\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:38:59.6050478-07:00\",\r\n \"endTime\": \"2015-08-12T23:41:22.2446816-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3614,8 +3660,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6f4fdb27-d235-4b6c-adf8-67a1f09915a0" + "f2b9ef8f-d4db-4f79-ae2d-e1e732674722" ], "Cache-Control": [ "no-cache" @@ -3625,34 +3674,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14938" ], "x-ms-correlation-request-id": [ - "5f1b5c42-e8ef-4240-8408-6d81874c5612" + "5ddcbf7a-ad8c-47b8-8e12-851cb768ec64" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T211957Z:5f1b5c42-e8ef-4240-8408-6d81874c5612" + "SOUTHCENTRALUS:20150813T064131Z:5ddcbf7a-ad8c-47b8-8e12-851cb768ec64" ], "Date": [ - "Thu, 18 Jun 2015 21:19:56 GMT" + "Thu, 13 Aug 2015 06:41:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/58d4554a-410c-495b-a700-0ee9b0598a6e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNThkNDU1NGEtNDEwYy00OTViLWE3MDAtMGVlOWIwNTk4YTZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets/asetcrptestps726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0Y3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"asetcrptestps726\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "95" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"58d4554a-410c-495b-a700-0ee9b0598a6e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:19:26.4059209-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets/asetcrptestps726\",\r\n \"name\": \"asetcrptestps726\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "374" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3666,8 +3721,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "cd7ca026-d056-4df5-b457-00563b639024" + "03f12407-9747-4bcb-8f61-863132afe4f5" ], "Cache-Control": [ "no-cache" @@ -3676,35 +3734,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" ], "x-ms-correlation-request-id": [ - "2bcbef2f-4311-4e64-9ebc-2c90b4d06daf" + "33950d3e-3946-4042-8306-47074583e89e" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212027Z:2bcbef2f-4311-4e64-9ebc-2c90b4d06daf" + "SOUTHCENTRALUS:20150813T064133Z:33950d3e-3946-4042-8306-47074583e89e" ], "Date": [ - "Thu, 18 Jun 2015 21:20:26 GMT" + "Thu, 13 Aug 2015 06:41:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/58d4554a-410c-495b-a700-0ee9b0598a6e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNThkNDU1NGEtNDEwYy00OTViLWE3MDAtMGVlOWIwNTk4YTZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"58d4554a-410c-495b-a700-0ee9b0598a6e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:19:26.4059209-07:00\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets/asetcrptestps726\",\r\n \"name\": \"asetcrptestps726\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3718,8 +3776,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7501b13a-d0ab-4415-a1cd-129f66c2d3d9" + "39421773-839e-4043-8c28-3152c2740947" ], "Cache-Control": [ "no-cache" @@ -3729,34 +3790,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14936" ], "x-ms-correlation-request-id": [ - "cc449401-4a38-45c4-9362-6b320e2f68e7" + "c04d0f81-ac3b-4528-a61b-98773ade97f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212057Z:cc449401-4a38-45c4-9362-6b320e2f68e7" + "SOUTHCENTRALUS:20150813T064133Z:c04d0f81-ac3b-4528-a61b-98773ade97f1" ], "Date": [ - "Thu, 18 Jun 2015 21:20:56 GMT" + "Thu, 13 Aug 2015 06:41:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/58d4554a-410c-495b-a700-0ee9b0598a6e?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNThkNDU1NGEtNDEwYy00OTViLWE3MDAtMGVlOWIwNTk4YTZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets/asetcrptestps726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0Y3JwdGVzdHBzNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"58d4554a-410c-495b-a700-0ee9b0598a6e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T14:19:26.4059209-07:00\",\r\n \"endTime\": \"2015-06-18T14:21:21.1091453-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets/asetcrptestps726\",\r\n \"name\": \"asetcrptestps726\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "402" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3770,8 +3831,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "eb822f35-ca9e-4298-9429-eb6fdae4c567" + "6aa9a43c-c40b-40a4-b804-7f0c196610a4" ], "Cache-Control": [ "no-cache" @@ -3781,40 +3845,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14935" ], "x-ms-correlation-request-id": [ - "9abdac02-09c8-4b1e-a39f-0648a4039e0b" + "08050b21-78fa-4dd9-a771-909c8ed83c28" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212127Z:9abdac02-09c8-4b1e-a39f-0648a4039e0b" + "SOUTHCENTRALUS:20150813T064133Z:08050b21-78fa-4dd9-a771-909c8ed83c28" ], "Date": [ - "Thu, 18 Jun 2015 21:21:27 GMT" + "Thu, 13 Aug 2015 06:41:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets/asetpstestrg7107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0cHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps7262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"asetpstestrg7107\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps726\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets/asetcrptestps726\"\r\n }\r\n },\r\n \"name\": \"vmcrptestps7262\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "95" + "1286" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets/asetpstestrg7107\",\r\n \"name\": \"asetpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets/ASETCRPTESTPS726\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps7262\",\r\n \"name\": \"vmcrptestps7262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "374" + "1540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3825,11 +3889,17 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6e12d12a-3842-4f1b-ae10-ddeb6086b21a" + "e00c2ad6-5e17-45d3-b42a-c2dea9535d96" ], "Cache-Control": [ "no-cache" @@ -3839,34 +3909,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1192" ], "x-ms-correlation-request-id": [ - "64f9a763-e1c9-47db-9176-42c38cc540f3" + "00820196-148a-4011-9894-f8673950cf13" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212128Z:64f9a763-e1c9-47db-9176-42c38cc540f3" + "SOUTHCENTRALUS:20150813T064134Z:00820196-148a-4011-9894-f8673950cf13" ], "Date": [ - "Thu, 18 Jun 2015 21:21:27 GMT" + "Thu, 13 Aug 2015 06:41:34 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets/asetpstestrg7107\",\r\n \"name\": \"asetpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "475" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3880,8 +3950,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7a85c1fc-1f4b-4106-96fa-1351b243b47e" + "92298b6a-13d7-4b83-9e5e-91094964dd9b" ], "Cache-Control": [ "no-cache" @@ -3891,34 +3964,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14934" ], "x-ms-correlation-request-id": [ - "0a2053e3-f16b-430f-90d9-49d7731d4a47" + "99999c5a-2aa7-4e75-af49-04f0fcfa90a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212128Z:0a2053e3-f16b-430f-90d9-49d7731d4a47" + "SOUTHCENTRALUS:20150813T064135Z:99999c5a-2aa7-4e75-af49-04f0fcfa90a3" ], "Date": [ - "Thu, 18 Jun 2015 21:21:28 GMT" + "Thu, 13 Aug 2015 06:41:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets/asetpstestrg7107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0cHN0ZXN0cmc3MTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets/asetpstestrg7107\",\r\n \"name\": \"asetpstestrg7107\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "402" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3932,8 +4005,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3fd66086-45f3-43b9-9f13-78538e21f9cd" + "26db410f-2997-40e0-a684-5972d3cc73a1" ], "Cache-Control": [ "no-cache" @@ -3943,95 +4019,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14933" ], "x-ms-correlation-request-id": [ - "a55a9ee5-e4e3-440e-8893-73c0929ee653" + "a1b7d686-669c-4b6a-8cbf-a0ba50085784" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212128Z:a55a9ee5-e4e3-440e-8893-73c0929ee653" + "SOUTHCENTRALUS:20150813T064205Z:a1b7d686-669c-4b6a-8cbf-a0ba50085784" ], "Date": [ - "Thu, 18 Jun 2015 21:21:28 GMT" + "Thu, 13 Aug 2015 06:42:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg71072?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg7107\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets/asetpstestrg7107\"\r\n }\r\n },\r\n \"name\": \"vmpstestrg71072\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1245" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets/ASETPSTESTRG7107\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg71072\",\r\n \"name\": \"vmpstestrg71072\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1526" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-correlation-request-id": [ - "9e46b55c-fa97-4c42-83ca-9c89a4502b01" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150618T212128Z:9e46b55c-fa97-4c42-83ca-9c89a4502b01" - ], - "Date": [ - "Thu, 18 Jun 2015 21:21:28 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4045,8 +4060,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "36848c1b-5647-4bf5-affd-9b82a033e693" + "0ddb6aa8-a6c2-4d1a-ace3-15869cd25a2a" ], "Cache-Control": [ "no-cache" @@ -4056,34 +4074,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14932" ], "x-ms-correlation-request-id": [ - "d9d504cb-495b-49df-989b-2590688ca5fc" + "068b118f-acc5-4b80-a7bd-0967f864c373" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212128Z:d9d504cb-495b-49df-989b-2590688ca5fc" + "SOUTHCENTRALUS:20150813T064235Z:068b118f-acc5-4b80-a7bd-0967f864c373" ], "Date": [ - "Thu, 18 Jun 2015 21:21:28 GMT" + "Thu, 13 Aug 2015 06:42:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4097,8 +4115,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "439d32c2-baf0-40ea-aab0-d03abe1f42d4" + "dd2a34a2-f6cd-46fc-9faf-08b680f83157" ], "Cache-Control": [ "no-cache" @@ -4108,34 +4129,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14931" ], "x-ms-correlation-request-id": [ - "6c397c94-a233-4606-af44-bd65bbde4b4d" + "219c9b68-6dc2-49a9-824b-f39ce0f81c02" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212159Z:6c397c94-a233-4606-af44-bd65bbde4b4d" + "SOUTHCENTRALUS:20150813T064306Z:219c9b68-6dc2-49a9-824b-f39ce0f81c02" ], "Date": [ - "Thu, 18 Jun 2015 21:21:58 GMT" + "Thu, 13 Aug 2015 06:43:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4149,8 +4170,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "c84edb46-73c5-4791-8372-a07cacd44e25" + "ac9e24d6-20ef-4071-b6df-5630b7121111" ], "Cache-Control": [ "no-cache" @@ -4160,34 +4184,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14930" ], "x-ms-correlation-request-id": [ - "46891800-6d4e-478e-8dca-5fb0652bcee0" + "1ebc222d-a0c2-49c0-a1c5-b0c14dcbfcba" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212229Z:46891800-6d4e-478e-8dca-5fb0652bcee0" + "SOUTHCENTRALUS:20150813T064336Z:1ebc222d-a0c2-49c0-a1c5-b0c14dcbfcba" ], "Date": [ - "Thu, 18 Jun 2015 21:22:28 GMT" + "Thu, 13 Aug 2015 06:43:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4201,8 +4225,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "bb3ec5c5-1b3e-437a-b6fa-ee45c7255ce3" + "d5424263-6b8d-43ab-bdb5-4d63dffaf38b" ], "Cache-Control": [ "no-cache" @@ -4212,34 +4239,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14929" ], "x-ms-correlation-request-id": [ - "25e03a4e-7dde-4f4d-b894-16eea1bbc238" + "e8b9314e-f7f6-402a-9881-a757c4e25e8e" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212259Z:25e03a4e-7dde-4f4d-b894-16eea1bbc238" + "SOUTHCENTRALUS:20150813T064406Z:e8b9314e-f7f6-402a-9881-a757c4e25e8e" ], "Date": [ - "Thu, 18 Jun 2015 21:22:59 GMT" + "Thu, 13 Aug 2015 06:44:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4253,8 +4280,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e90fbaec-18a3-472e-a04f-53ca36321cb8" + "e7ea9ee9-06c3-4751-9166-09b7c2ceb24a" ], "Cache-Control": [ "no-cache" @@ -4264,34 +4294,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14928" ], "x-ms-correlation-request-id": [ - "d843262f-cec8-4d13-9585-0776ef86b9de" + "3debeea3-d612-4ed4-ad7f-687767966f24" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212329Z:d843262f-cec8-4d13-9585-0776ef86b9de" + "SOUTHCENTRALUS:20150813T064436Z:3debeea3-d612-4ed4-ad7f-687767966f24" ], "Date": [ - "Thu, 18 Jun 2015 21:23:28 GMT" + "Thu, 13 Aug 2015 06:44:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4305,8 +4335,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e077e004-936e-4a83-b8b9-ba7db34833ad" + "032ad583-cb83-4065-855c-4cd68582d45c" ], "Cache-Control": [ "no-cache" @@ -4316,34 +4349,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14937" ], "x-ms-correlation-request-id": [ - "0b43b39b-7a78-4a01-a5b1-c3b0320515e3" + "6f29812d-26d6-466d-898a-9e25fbbc206e" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212359Z:0b43b39b-7a78-4a01-a5b1-c3b0320515e3" + "SOUTHCENTRALUS:20150813T064507Z:6f29812d-26d6-466d-898a-9e25fbbc206e" ], "Date": [ - "Thu, 18 Jun 2015 21:23:58 GMT" + "Thu, 13 Aug 2015 06:45:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4357,8 +4390,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "bba4b084-9795-402e-9b79-47252e7922a1" + "7e9dac3f-6324-4120-95ce-be482c1bfc09" ], "Cache-Control": [ "no-cache" @@ -4368,34 +4404,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14936" ], "x-ms-correlation-request-id": [ - "58ae1f04-3399-405b-b08b-c473686e36fb" + "38715f7d-5e19-4ea5-bdcd-bed67932ff09" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212429Z:58ae1f04-3399-405b-b08b-c473686e36fb" + "SOUTHCENTRALUS:20150813T064537Z:38715f7d-5e19-4ea5-bdcd-bed67932ff09" ], "Date": [ - "Thu, 18 Jun 2015 21:24:29 GMT" + "Thu, 13 Aug 2015 06:45:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4409,8 +4445,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a3aaf7ab-4cc6-49f5-9d6a-98c9b0a8f694" + "9885d30d-5fa9-4fab-8b7a-d7e419743d98" ], "Cache-Control": [ "no-cache" @@ -4420,34 +4459,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14935" ], "x-ms-correlation-request-id": [ - "124f815d-54c4-4014-b2fe-b9d02327085b" + "de35d061-943f-4243-a49a-a2b275ba3bed" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212459Z:124f815d-54c4-4014-b2fe-b9d02327085b" + "SOUTHCENTRALUS:20150813T064607Z:de35d061-943f-4243-a49a-a2b275ba3bed" ], "Date": [ - "Thu, 18 Jun 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 06:46:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4461,8 +4500,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b024f625-dd63-4acb-a935-58cbacf4f3f7" + "f2f7b4a1-fb85-4a8c-b9ef-0f1f53ad0a9b" ], "Cache-Control": [ "no-cache" @@ -4472,34 +4514,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14934" ], "x-ms-correlation-request-id": [ - "abb368d9-d5fc-4f5d-a4c0-b65e1310727f" + "8e1ecb42-d9af-41aa-9b0d-06e33a3600ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212529Z:abb368d9-d5fc-4f5d-a4c0-b65e1310727f" + "SOUTHCENTRALUS:20150813T064638Z:8e1ecb42-d9af-41aa-9b0d-06e33a3600ed" ], "Date": [ - "Thu, 18 Jun 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 06:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4513,8 +4555,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "050ba7d2-546d-4dea-89a3-74a21bbb3db2" + "56a82d58-beab-4d06-9635-7ddc141f6ff0" ], "Cache-Control": [ "no-cache" @@ -4524,34 +4569,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14933" ], "x-ms-correlation-request-id": [ - "f832f337-8c62-4b25-9dc8-0268b865d32a" + "776b1e8a-6786-40d2-b4b4-9347074893ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212559Z:f832f337-8c62-4b25-9dc8-0268b865d32a" + "SOUTHCENTRALUS:20150813T064708Z:776b1e8a-6786-40d2-b4b4-9347074893ed" ], "Date": [ - "Thu, 18 Jun 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 06:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4565,8 +4610,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "d662b8ed-ff89-4806-b81f-8ee24682be66" + "1272ea70-7831-4d99-a0eb-37e3c805ea17" ], "Cache-Control": [ "no-cache" @@ -4576,31 +4624,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14932" ], "x-ms-correlation-request-id": [ - "9ce17719-8ac0-4539-80ba-89b8014beeaf" + "3a9bc45b-0ef6-40fc-a328-885be6bc9b0d" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212629Z:9ce17719-8ac0-4539-80ba-89b8014beeaf" + "SOUTHCENTRALUS:20150813T064738Z:3a9bc45b-0ef6-40fc-a328-885be6bc9b0d" ], "Date": [ - "Thu, 18 Jun 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 06:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFkOWQ4YjktMGU5ZC00NDc0LWFhMGEtYjhjZTBjNTA5YzdjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e00c2ad6-5e17-45d3-b42a-c2dea9535d96?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAwYzJhZDYtNWUxNy00NWQzLWI0MmEtYzJkZWE5NTM1ZDk2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"41d9d8b9-0e9d-4474-aa0a-b8ce0c509c7c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T14:21:28.6403972-07:00\",\r\n \"endTime\": \"2015-06-18T14:26:46.906104-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e00c2ad6-5e17-45d3-b42a-c2dea9535d96\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:41:34.744602-07:00\",\r\n \"endTime\": \"2015-08-12T23:47:43.6172685-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "190" @@ -4617,8 +4665,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "8a898295-5a08-48f0-8124-019a6b4799bc" + "3f1cb256-cbf0-48be-ad4c-2b1c22a7c829" ], "Cache-Control": [ "no-cache" @@ -4628,34 +4679,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14931" ], "x-ms-correlation-request-id": [ - "f2e91518-8f8e-4fbb-9552-e7a2ee6e7249" + "f8504fdf-d490-4194-889a-bb67115c6dec" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212700Z:f2e91518-8f8e-4fbb-9552-e7a2ee6e7249" + "SOUTHCENTRALUS:20150813T064808Z:f8504fdf-d490-4194-889a-bb67115c6dec" ], "Date": [ - "Thu, 18 Jun 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 06:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg71072?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps7262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/availabilitySets/ASETPSTESTRG7107\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7107.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Network/networkInterfaces/nicpstestrg7107\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg71072\",\r\n \"name\": \"vmpstestrg71072\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/availabilitySets/ASETCRPTESTPS726\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps726.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Network/networkInterfaces/niccrptestps726\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps7262\",\r\n \"name\": \"vmcrptestps7262\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1527" + "1541" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4669,8 +4720,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b6b246a4-f5ac-4086-ab28-7f2f6722242b" + "859e9090-299d-4880-ab4b-d53004cf0467" ], "Cache-Control": [ "no-cache" @@ -4680,28 +4734,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14930" ], "x-ms-correlation-request-id": [ - "a5acf560-25a0-4508-bdc9-d460f934bde2" + "932f831b-127f-4f9c-8ef3-c6c149cf36bc" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212700Z:a5acf560-25a0-4508-bdc9-d460f934bde2" + "SOUTHCENTRALUS:20150813T064809Z:932f831b-127f-4f9c-8ef3-c6c149cf36bc" ], "Date": [ - "Thu, 18 Jun 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 06:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7107/providers/Microsoft.Compute/virtualMachines/vmpstestrg71072?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzEwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTA3Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps726/providers/Microsoft.Compute/virtualMachines/vmcrptestps7262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtY3JwdGVzdHBzNzI2Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -4716,50 +4770,53 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/8f9e463c-abe1-4afa-9909-e8f64d35a119?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "34cdeab6-2a5f-45c0-b970-9259bc3d2859" + "8f9e463c-abe1-4afa-9909-e8f64d35a119" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/8f9e463c-abe1-4afa-9909-e8f64d35a119?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1191" ], "x-ms-correlation-request-id": [ - "e3da004f-5700-417c-88c0-a94ba3891864" + "db71a978-fa48-4293-a41e-62516a7a553b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212700Z:e3da004f-5700-417c-88c0-a94ba3891864" + "SOUTHCENTRALUS:20150813T064810Z:db71a978-fa48-4293-a41e-62516a7a553b" ], "Date": [ - "Thu, 18 Jun 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 06:48:09 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRjZGVhYjYtMmE1Zi00NWMwLWI5NzAtOTI1OWJjM2QyODU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/8f9e463c-abe1-4afa-9909-e8f64d35a119?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGY5ZTQ2M2MtYWJlMS00YWZhLTk5MDktZThmNjRkMzVhMTE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"34cdeab6-2a5f-45c0-b970-9259bc3d2859\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:27:00.5154229-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8f9e463c-abe1-4afa-9909-e8f64d35a119\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:48:09.9608524-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4776,8 +4833,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f64bd991-13eb-45a5-8a07-2db066aba362" + "8eff5e6d-cd6f-419c-94a5-92f3885754ab" ], "Cache-Control": [ "no-cache" @@ -4787,31 +4847,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14929" ], "x-ms-correlation-request-id": [ - "ceb19321-9454-4f71-912b-db20b20c8359" + "00949096-804c-46c8-b9e6-eb5aab97a023" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212700Z:ceb19321-9454-4f71-912b-db20b20c8359" + "SOUTHCENTRALUS:20150813T064810Z:00949096-804c-46c8-b9e6-eb5aab97a023" ], "Date": [ - "Thu, 18 Jun 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 06:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRjZGVhYjYtMmE1Zi00NWMwLWI5NzAtOTI1OWJjM2QyODU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/8f9e463c-abe1-4afa-9909-e8f64d35a119?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGY5ZTQ2M2MtYWJlMS00YWZhLTk5MDktZThmNjRkMzVhMTE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"34cdeab6-2a5f-45c0-b970-9259bc3d2859\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:27:00.5154229-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8f9e463c-abe1-4afa-9909-e8f64d35a119\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:48:09.9608524-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4828,8 +4888,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3c5b47c8-eff4-4242-9f32-41eb7acce22c" + "869d6692-88cf-40e8-aab7-4628fbd1f25c" ], "Cache-Control": [ "no-cache" @@ -4839,31 +4902,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14928" ], "x-ms-correlation-request-id": [ - "ca4d1bbf-86fb-4216-872b-606cfb8dafa3" + "f5929b2c-d041-4dcd-8aee-cf1a42ef4dbe" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212730Z:ca4d1bbf-86fb-4216-872b-606cfb8dafa3" + "SOUTHCENTRALUS:20150813T064840Z:f5929b2c-d041-4dcd-8aee-cf1a42ef4dbe" ], "Date": [ - "Thu, 18 Jun 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 06:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRjZGVhYjYtMmE1Zi00NWMwLWI5NzAtOTI1OWJjM2QyODU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/8f9e463c-abe1-4afa-9909-e8f64d35a119?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGY5ZTQ2M2MtYWJlMS00YWZhLTk5MDktZThmNjRkMzVhMTE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"34cdeab6-2a5f-45c0-b970-9259bc3d2859\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:27:00.5154229-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8f9e463c-abe1-4afa-9909-e8f64d35a119\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:48:09.9608524-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4880,8 +4943,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e5e195d9-9e47-4dfa-aba8-418e9703fa6f" + "ac5352f0-43c2-450f-9471-04c55505aef5" ], "Cache-Control": [ "no-cache" @@ -4891,31 +4957,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14927" ], "x-ms-correlation-request-id": [ - "302aca83-1434-4074-95a6-8d9e472f6823" + "59f25bbe-cef4-43cd-96de-439437c747cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212800Z:302aca83-1434-4074-95a6-8d9e472f6823" + "SOUTHCENTRALUS:20150813T064911Z:59f25bbe-cef4-43cd-96de-439437c747cf" ], "Date": [ - "Thu, 18 Jun 2015 21:28:00 GMT" + "Thu, 13 Aug 2015 06:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRjZGVhYjYtMmE1Zi00NWMwLWI5NzAtOTI1OWJjM2QyODU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/8f9e463c-abe1-4afa-9909-e8f64d35a119?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGY5ZTQ2M2MtYWJlMS00YWZhLTk5MDktZThmNjRkMzVhMTE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"34cdeab6-2a5f-45c0-b970-9259bc3d2859\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:27:00.5154229-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8f9e463c-abe1-4afa-9909-e8f64d35a119\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:48:09.9608524-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4932,8 +4998,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a539f0bd-3d50-4699-add1-a89cbe0f8844" + "8c94abc6-6609-4e5c-925f-8d8b1d74365a" ], "Cache-Control": [ "no-cache" @@ -4943,31 +5012,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14926" ], "x-ms-correlation-request-id": [ - "b7686c86-e09f-4bed-aed9-89b57e1d5245" + "f66e22f1-131e-402b-9ce0-b84cb6d7ceca" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212830Z:b7686c86-e09f-4bed-aed9-89b57e1d5245" + "SOUTHCENTRALUS:20150813T064941Z:f66e22f1-131e-402b-9ce0-b84cb6d7ceca" ], "Date": [ - "Thu, 18 Jun 2015 21:28:29 GMT" + "Thu, 13 Aug 2015 06:49:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRjZGVhYjYtMmE1Zi00NWMwLWI5NzAtOTI1OWJjM2QyODU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/8f9e463c-abe1-4afa-9909-e8f64d35a119?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGY5ZTQ2M2MtYWJlMS00YWZhLTk5MDktZThmNjRkMzVhMTE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"34cdeab6-2a5f-45c0-b970-9259bc3d2859\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:27:00.5154229-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8f9e463c-abe1-4afa-9909-e8f64d35a119\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:48:09.9608524-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -4984,8 +5053,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "e40d069b-465a-4339-b9ce-40afb55cd7fb" + "127af516-c1bb-4913-81c2-d60306161741" ], "Cache-Control": [ "no-cache" @@ -4995,34 +5067,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14935" ], "x-ms-correlation-request-id": [ - "874c45e9-814a-4f00-b640-577afcde25e0" + "84989543-3d1f-43fc-b6ed-3bc847ab703b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212901Z:874c45e9-814a-4f00-b640-577afcde25e0" + "SOUTHCENTRALUS:20150813T065011Z:84989543-3d1f-43fc-b6ed-3bc847ab703b" ], "Date": [ - "Thu, 18 Jun 2015 21:29:00 GMT" + "Thu, 13 Aug 2015 06:50:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRjZGVhYjYtMmE1Zi00NWMwLWI5NzAtOTI1OWJjM2QyODU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/8f9e463c-abe1-4afa-9909-e8f64d35a119?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGY5ZTQ2M2MtYWJlMS00YWZhLTk5MDktZThmNjRkMzVhMTE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"34cdeab6-2a5f-45c0-b970-9259bc3d2859\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T14:27:00.5154229-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"8f9e463c-abe1-4afa-9909-e8f64d35a119\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:48:09.9608524-07:00\",\r\n \"endTime\": \"2015-08-12T23:50:22.663177-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5036,8 +5108,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6ddfa07e-5495-4fed-872d-f95df5c365c7" + "7bdc7b52-c309-4263-87fa-1bc21574419a" ], "Cache-Control": [ "no-cache" @@ -5047,37 +5122,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14934" ], "x-ms-correlation-request-id": [ - "5502afda-b915-4788-b9c4-f74eaf3e90ed" + "896e8c6b-ea98-4381-b017-35379227dde4" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T212931Z:5502afda-b915-4788-b9c4-f74eaf3e90ed" + "SOUTHCENTRALUS:20150813T065041Z:896e8c6b-ea98-4381-b017-35379227dde4" ], "Date": [ - "Thu, 18 Jun 2015 21:29:30 GMT" + "Thu, 13 Aug 2015 06:50:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/34cdeab6-2a5f-45c0-b970-9259bc3d2859?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRjZGVhYjYtMmE1Zi00NWMwLWI5NzAtOTI1OWJjM2QyODU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps726?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcyNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"34cdeab6-2a5f-45c0-b970-9259bc3d2859\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T14:27:00.5154229-07:00\",\r\n \"endTime\": \"2015-06-18T14:29:52.0779801-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -5085,40 +5157,45 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f6d6dfb6-b3e9-4c44-bda2-964a5669ff76" - ], - "Cache-Control": [ - "no-cache" + "Retry-After": [ + "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "x-ms-request-id": [ + "d61a522b-7344-4b4b-b84d-cabc4b1db119" ], "x-ms-correlation-request-id": [ - "cbe4f5c2-921a-4100-b597-6e0985486c33" + "d61a522b-7344-4b4b-b84d-cabc4b1db119" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213001Z:cbe4f5c2-921a-4100-b597-6e0985486c33" + "WESTUS:20150813T065042Z:d61a522b-7344-4b4b-b84d-cabc4b1db119" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:30:01 GMT" + "Thu, 13 Aug 2015 06:50:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7107?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzEwNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTWpZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -5137,17 +5214,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" ], "x-ms-request-id": [ - "5fafe9c9-f942-4d7e-b64c-f0b86842c4fa" + "369e2fc6-68a8-4ae7-9dad-5ca931317465" ], "x-ms-correlation-request-id": [ - "5fafe9c9-f942-4d7e-b64c-f0b86842c4fa" + "369e2fc6-68a8-4ae7-9dad-5ca931317465" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213001Z:5fafe9c9-f942-4d7e-b64c-f0b86842c4fa" + "WESTUS:20150813T065042Z:369e2fc6-68a8-4ae7-9dad-5ca931317465" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5156,17 +5233,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:30:01 GMT" + "Thu, 13 Aug 2015 06:50:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TURjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTWpZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5192,16 +5269,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14997" ], "x-ms-request-id": [ - "1f1e2267-ee37-47a8-befb-9a255271e19f" + "7d683785-b34e-4d54-a4e1-ef3efe5b8c8a" ], "x-ms-correlation-request-id": [ - "1f1e2267-ee37-47a8-befb-9a255271e19f" + "7d683785-b34e-4d54-a4e1-ef3efe5b8c8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213001Z:1f1e2267-ee37-47a8-befb-9a255271e19f" + "WESTUS:20150813T065057Z:7d683785-b34e-4d54-a4e1-ef3efe5b8c8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5210,17 +5287,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:30:01 GMT" + "Thu, 13 Aug 2015 06:50:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TURjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTWpZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5246,16 +5323,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14996" ], "x-ms-request-id": [ - "94658984-00b6-444f-ba67-242418e39e2c" + "96784a1d-4a86-49c8-865f-515aa7bc9c27" ], "x-ms-correlation-request-id": [ - "94658984-00b6-444f-ba67-242418e39e2c" + "96784a1d-4a86-49c8-865f-515aa7bc9c27" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213016Z:94658984-00b6-444f-ba67-242418e39e2c" + "WESTUS:20150813T065112Z:96784a1d-4a86-49c8-865f-515aa7bc9c27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5264,17 +5341,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:30:16 GMT" + "Thu, 13 Aug 2015 06:51:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TURjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTWpZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5300,16 +5377,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14995" ], "x-ms-request-id": [ - "fed1e66f-7ce9-430b-8639-f7d4f573f518" + "625777fb-3560-454b-ab0f-f4d7f357b0eb" ], "x-ms-correlation-request-id": [ - "fed1e66f-7ce9-430b-8639-f7d4f573f518" + "625777fb-3560-454b-ab0f-f4d7f357b0eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213031Z:fed1e66f-7ce9-430b-8639-f7d4f573f518" + "WESTUS:20150813T065128Z:625777fb-3560-454b-ab0f-f4d7f357b0eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5318,17 +5395,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:30:31 GMT" + "Thu, 13 Aug 2015 06:51:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TURjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTWpZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5354,16 +5431,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14994" ], "x-ms-request-id": [ - "1312c9c5-99c1-438d-967c-f526f42fff95" + "a7aeedae-2a79-4003-b050-b0b1c3bf952b" ], "x-ms-correlation-request-id": [ - "1312c9c5-99c1-438d-967c-f526f42fff95" + "a7aeedae-2a79-4003-b050-b0b1c3bf952b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213046Z:1312c9c5-99c1-438d-967c-f526f42fff95" + "WESTUS:20150813T065143Z:a7aeedae-2a79-4003-b050-b0b1c3bf952b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5372,17 +5449,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:30:45 GMT" + "Thu, 13 Aug 2015 06:51:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TURjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTWpZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5408,16 +5485,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14993" ], "x-ms-request-id": [ - "bbd8f9fc-4926-4e71-bc5f-566693dc9092" + "5a36bd79-0124-4bc8-97c9-b97327106882" ], "x-ms-correlation-request-id": [ - "bbd8f9fc-4926-4e71-bc5f-566693dc9092" + "5a36bd79-0124-4bc8-97c9-b97327106882" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213102Z:bbd8f9fc-4926-4e71-bc5f-566693dc9092" + "WESTUS:20150813T065158Z:5a36bd79-0124-4bc8-97c9-b97327106882" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5426,17 +5503,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:31:01 GMT" + "Thu, 13 Aug 2015 06:51:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TURjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTWpZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5462,16 +5539,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14992" ], "x-ms-request-id": [ - "71285d19-f4bd-4da5-99ac-feaa82bada27" + "eb1b2e65-123d-4932-801e-98b8a90b4c3b" ], "x-ms-correlation-request-id": [ - "71285d19-f4bd-4da5-99ac-feaa82bada27" + "eb1b2e65-123d-4932-801e-98b8a90b4c3b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213117Z:71285d19-f4bd-4da5-99ac-feaa82bada27" + "WESTUS:20150813T065213Z:eb1b2e65-123d-4932-801e-98b8a90b4c3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5480,17 +5557,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:31:16 GMT" + "Thu, 13 Aug 2015 06:52:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxMDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4TURjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MjYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTWpZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5513,16 +5590,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14991" ], "x-ms-request-id": [ - "6f89b7e9-e3fc-4e44-89bc-62b00e706c28" + "3e6945a1-1fc9-4b01-98c1-13c3fd221e18" ], "x-ms-correlation-request-id": [ - "6f89b7e9-e3fc-4e44-89bc-62b00e706c28" + "3e6945a1-1fc9-4b01-98c1-13c3fd221e18" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T213132Z:6f89b7e9-e3fc-4e44-89bc-62b00e706c28" + "WESTUS:20150813T065228Z:3e6945a1-1fc9-4b01-98c1-13c3fd221e18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5531,7 +5608,7 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 21:31:31 GMT" + "Thu, 13 Aug 2015 06:52:27 GMT" ] }, "StatusCode": 200 @@ -5539,11 +5616,11 @@ ], "Names": { "Test-VirtualMachine": [ - "pstestrg7107" + "crptestps726" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineCapture.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineCapture.json index cf6e80dc49a3..3950e9203548 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineCapture.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineCapture.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5861?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTg2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-request-id": [ + "7a32c5db-e360-4403-8ff3-828eb2c67fd5" + ], + "x-ms-correlation-request-id": [ + "7a32c5db-e360-4403-8ff3-828eb2c67fd5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T223018Z:7a32c5db-e360-4403-8ff3-828eb2c67fd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 22:30:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8993?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14866" ], "x-ms-request-id": [ - "c859996c-7435-4750-9295-7607b1d53df9" + "a8746566-ce50-426f-bcf6-f7d48e724ce2" ], "x-ms-correlation-request-id": [ - "c859996c-7435-4750-9295-7607b1d53df9" + "a8746566-ce50-426f-bcf6-f7d48e724ce2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191248Z:c859996c-7435-4750-9295-7607b1d53df9" + "WESTUS:20150813T223018Z:a8746566-ce50-426f-bcf6-f7d48e724ce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:12:48 GMT" + "Thu, 13 Aug 2015 22:30:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5861?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTg2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8993?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "14940" ], "x-ms-request-id": [ - "071f2e5d-ac9b-4fbb-83e0-972e71da879d" + "baa43a40-80e4-48cb-9193-48d6edb642e9" ], "x-ms-correlation-request-id": [ - "071f2e5d-ac9b-4fbb-83e0-972e71da879d" + "baa43a40-80e4-48cb-9193-48d6edb642e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192230Z:071f2e5d-ac9b-4fbb-83e0-972e71da879d" + "WESTUS:20150813T224039Z:baa43a40-80e4-48cb-9193-48d6edb642e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:22:30 GMT" + "Thu, 13 Aug 2015 22:40:39 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5861?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTg2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8993?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861\",\r\n \"name\": \"pstestrg5861\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993\",\r\n \"name\": \"crptestps8993\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1186" ], "x-ms-request-id": [ - "4ff541fa-66bd-4532-bcbc-66a2ab32a2cc" + "0c8f24a9-083d-4c0b-b9c3-860ee3b4589e" ], "x-ms-correlation-request-id": [ - "4ff541fa-66bd-4532-bcbc-66a2ab32a2cc" + "0c8f24a9-083d-4c0b-b9c3-860ee3b4589e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191248Z:4ff541fa-66bd-4532-bcbc-66a2ab32a2cc" + "WESTUS:20150813T223019Z:0c8f24a9-083d-4c0b-b9c3-860ee3b4589e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:12:48 GMT" + "Thu, 13 Aug 2015 22:30:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14865" ], "x-ms-request-id": [ - "666b6f7a-fc3b-487b-b306-ab0fe4c57216" + "37f4af37-554b-4c0f-9a1c-5599a4b2a5aa" ], "x-ms-correlation-request-id": [ - "666b6f7a-fc3b-487b-b306-ab0fe4c57216" + "37f4af37-554b-4c0f-9a1c-5599a4b2a5aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191248Z:666b6f7a-fc3b-487b-b306-ab0fe4c57216" + "WESTUS:20150813T223019Z:37f4af37-554b-4c0f-9a1c-5599a4b2a5aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:12:48 GMT" + "Thu, 13 Aug 2015 22:30:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5861/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8993/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:2844f054-bee1-4a7b-9a29-d133f3867b4a" + "westus:eb58e3c9-85e2-4135-9bd6-28844c8fbac6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14972" ], "x-ms-correlation-request-id": [ - "4aa97105-c464-47b8-af58-354e6b13f1a4" + "dba5fda9-4902-469b-a4d1-0e56c20b6517" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191247Z:4aa97105-c464-47b8-af58-354e6b13f1a4" + "WESTUS:20150813T223019Z:dba5fda9-4902-469b-a4d1-0e56c20b6517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:12:46 GMT" + "Thu, 13 Aug 2015 22:30:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU4NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODk5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps8993' under resource group 'crptestps8993' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "ffb87362-7ddb-47e2-9014-17f68a485f24" + "873ee137-229c-47af-b9df-2e936c2c51fd" ], "x-ms-correlation-request-id": [ - "ffb87362-7ddb-47e2-9014-17f68a485f24" + "873ee137-229c-47af-b9df-2e936c2c51fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191248Z:ffb87362-7ddb-47e2-9014-17f68a485f24" + "WESTUS:20150813T223019Z:873ee137-229c-47af-b9df-2e936c2c51fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:12:48 GMT" + "Thu, 13 Aug 2015 22:30:19 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU4NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODk5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861\",\r\n \"etag\": \"W/\\\"bd021207-9921-4d5d-b1ec-da7d6ade8c4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861/subnets/subnetpstestrg5861\",\r\n \"etag\": \"W/\\\"bd021207-9921-4d5d-b1ec-da7d6ade8c4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993\",\r\n \"etag\": \"W/\\\"1f71ad74-4d79-4f2a-8d31-962a2ed09ff6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbcaddc-6bb3-4151-8211-243f87b6febe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993/subnets/subnetcrptestps8993\",\r\n \"etag\": \"W/\\\"1f71ad74-4d79-4f2a-8d31-962a2ed09ff6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "baac37f4-57df-4b89-bb25-b55d125f8f50" + "dd750dea-973b-4d15-b472-91a711688061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"bd021207-9921-4d5d-b1ec-da7d6ade8c4b\"" + "W/\"1f71ad74-4d79-4f2a-8d31-962a2ed09ff6\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14970" ], "x-ms-correlation-request-id": [ - "20b70206-8dff-4bf1-aa30-78226d11e603" + "7fc738c4-894a-4b69-bbb4-0c02262ddf03" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191250Z:20b70206-8dff-4bf1-aa30-78226d11e603" + "WESTUS:20150813T223031Z:7fc738c4-894a-4b69-bbb4-0c02262ddf03" ], "Date": [ - "Tue, 28 Apr 2015 19:12:49 GMT" + "Thu, 13 Aug 2015 22:30:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU4NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODk5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861\",\r\n \"etag\": \"W/\\\"bd021207-9921-4d5d-b1ec-da7d6ade8c4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861/subnets/subnetpstestrg5861\",\r\n \"etag\": \"W/\\\"bd021207-9921-4d5d-b1ec-da7d6ade8c4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993\",\r\n \"etag\": \"W/\\\"1f71ad74-4d79-4f2a-8d31-962a2ed09ff6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddbcaddc-6bb3-4151-8211-243f87b6febe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993/subnets/subnetcrptestps8993\",\r\n \"etag\": \"W/\\\"1f71ad74-4d79-4f2a-8d31-962a2ed09ff6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "74f3c183-d1f1-454c-ad84-ec77b74158ad" + "d5da6820-6ca7-440c-a19b-c513899ad546" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"bd021207-9921-4d5d-b1ec-da7d6ade8c4b\"" + "W/\"1f71ad74-4d79-4f2a-8d31-962a2ed09ff6\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14969" ], "x-ms-correlation-request-id": [ - "1489229a-12ac-4360-95a9-c1d6b90c71eb" + "c41131bc-d904-4907-95b8-8bf7873ef444" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191250Z:1489229a-12ac-4360-95a9-c1d6b90c71eb" + "WESTUS:20150813T223031Z:c41131bc-d904-4907-95b8-8bf7873ef444" ], "Date": [ - "Tue, 28 Apr 2015 19:12:49 GMT" + "Thu, 13 Aug 2015 22:30:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU4NjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODk5Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg5861\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg5861\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps8993\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps8993\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861\",\r\n \"etag\": \"W/\\\"e1ac957a-cc53-4f06-b119-e2dcbffdf3c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861/subnets/subnetpstestrg5861\",\r\n \"etag\": \"W/\\\"e1ac957a-cc53-4f06-b119-e2dcbffdf3c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993\",\r\n \"etag\": \"W/\\\"fb27cc9b-e8f7-4e10-b3f1-90dfaba774e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ddbcaddc-6bb3-4151-8211-243f87b6febe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993/subnets/subnetcrptestps8993\",\r\n \"etag\": \"W/\\\"fb27cc9b-e8f7-4e10-b3f1-90dfaba774e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "dc963ab2-0a64-4184-8c8a-05697b318e43" + "95c1c615-aadb-41d9-b02c-27cda970800c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/dc963ab2-0a64-4184-8c8a-05697b318e43?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/95c1c615-aadb-41d9-b02c-27cda970800c?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1187" ], "x-ms-correlation-request-id": [ - "05588e77-cf20-4dab-9dcc-38d0830decdf" + "e90843e2-6823-4515-a8db-ae7ec8b63eb8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191249Z:05588e77-cf20-4dab-9dcc-38d0830decdf" + "WESTUS:20150813T223020Z:e90843e2-6823-4515-a8db-ae7ec8b63eb8" ], "Date": [ - "Tue, 28 Apr 2015 19:12:49 GMT" + "Thu, 13 Aug 2015 22:30:20 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/dc963ab2-0a64-4184-8c8a-05697b318e43?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGM5NjNhYjItMGE2NC00MTg0LThjOGEtMDU2OTdiMzE4ZTQzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/95c1c615-aadb-41d9-b02c-27cda970800c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTVjMWM2MTUtYWFkYi00MWQ5LWIwMmMtMjdjZGE5NzA4MDBjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "034e7e39-b96a-4fe3-9d3e-22fba30376dc" + ], + "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": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "302650ce-3c31-439d-8fc7-a2189748916a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T223020Z:302650ce-3c31-439d-8fc7-a2189748916a" + ], + "Date": [ + "Thu, 13 Aug 2015 22:30:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/95c1c615-aadb-41d9-b02c-27cda970800c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTVjMWM2MTUtYWFkYi00MWQ5LWIwMmMtMjdjZGE5NzA4MDBjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "107ab85e-3e3d-4b8d-bc4a-7ca84dc2a9a6" + "b05963b0-a6bc-49b1-9af4-34c16bafbcd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14971" ], "x-ms-correlation-request-id": [ - "68354484-35c8-4a25-bec7-72436db291d4" + "55c52dc3-7a70-47f2-ad6e-e70cda98eab5" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191250Z:68354484-35c8-4a25-bec7-72436db291d4" + "WESTUS:20150813T223031Z:55c52dc3-7a70-47f2-ad6e-e70cda98eab5" ], "Date": [ - "Tue, 28 Apr 2015 19:12:49 GMT" + "Thu, 13 Aug 2015 22:30:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU4NjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODk5My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps8993' under resource group 'crptestps8993' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "f54fee46-2348-438d-91c4-1f2a28793e7e" + "386ae132-8b2c-41d5-badf-c7dd5a5ff1b3" ], "x-ms-correlation-request-id": [ - "f54fee46-2348-438d-91c4-1f2a28793e7e" + "386ae132-8b2c-41d5-badf-c7dd5a5ff1b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191250Z:f54fee46-2348-438d-91c4-1f2a28793e7e" + "WESTUS:20150813T223031Z:386ae132-8b2c-41d5-badf-c7dd5a5ff1b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +672,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:12:49 GMT" + "Thu, 13 Aug 2015 22:30:30 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU4NjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODk5My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861\",\r\n \"etag\": \"W/\\\"d738d4fa-61dd-476b-bf8f-8280922b09a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5861\",\r\n \"fqdn\": \"pubippstestrg5861.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993\",\r\n \"etag\": \"W/\\\"9c11591c-e910-4918-92d7-a1d6ef84deeb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1d7ad8c-d680-4f6b-97b5-aae8983a6312\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8993\",\r\n \"fqdn\": \"pubipcrptestps8993.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "aece4ed0-d255-4dce-80e7-f918a3a04edc" + "d55654b4-4055-4909-a4be-9892c36f2fcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"d738d4fa-61dd-476b-bf8f-8280922b09a5\"" + "W/\"9c11591c-e910-4918-92d7-a1d6ef84deeb\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14966" ], "x-ms-correlation-request-id": [ - "f6213819-e661-4b8d-8826-840179232a4f" + "1af96e8a-65f7-423d-b84c-63ee3960ea45" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191251Z:f6213819-e661-4b8d-8826-840179232a4f" + "WESTUS:20150813T223033Z:1af96e8a-65f7-423d-b84c-63ee3960ea45" ], "Date": [ - "Tue, 28 Apr 2015 19:12:50 GMT" + "Thu, 13 Aug 2015 22:30:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU4NjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODk5My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861\",\r\n \"etag\": \"W/\\\"d738d4fa-61dd-476b-bf8f-8280922b09a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5861\",\r\n \"fqdn\": \"pubippstestrg5861.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993\",\r\n \"etag\": \"W/\\\"9c11591c-e910-4918-92d7-a1d6ef84deeb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1d7ad8c-d680-4f6b-97b5-aae8983a6312\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8993\",\r\n \"fqdn\": \"pubipcrptestps8993.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "87994120-add7-49f4-b63e-7b03f8c9e54f" + "9d776985-304d-4ce7-9a42-a9a33e38e892" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +766,47 @@ "no-cache" ], "ETag": [ - "W/\"d738d4fa-61dd-476b-bf8f-8280922b09a5\"" + "W/\"9c11591c-e910-4918-92d7-a1d6ef84deeb\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14965" ], "x-ms-correlation-request-id": [ - "64c62c0b-51a9-4ae2-bcc7-f49e12dac008" + "920395c2-6372-4149-953b-4b7231ab7269" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191251Z:64c62c0b-51a9-4ae2-bcc7-f49e12dac008" + "WESTUS:20150813T223033Z:920395c2-6372-4149-953b-4b7231ab7269" ], "Date": [ - "Tue, 28 Apr 2015 19:12:50 GMT" + "Thu, 13 Aug 2015 22:30:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU4NjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODk5My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5861\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg5861\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8993\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps8993\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "254" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861\",\r\n \"etag\": \"W/\\\"cb4998e5-1851-43cf-94bb-77c51e791691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5861\",\r\n \"fqdn\": \"pubippstestrg5861.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993\",\r\n \"etag\": \"W/\\\"222bea8d-9543-41db-93e2-9a38c71b2c16\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a1d7ad8c-d680-4f6b-97b5-aae8983a6312\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8993\",\r\n \"fqdn\": \"pubipcrptestps8993.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "bb5cfca2-2fc1-4138-874c-5f5d8263b763" + "77efeedd-7c98-40f0-af79-ffc4090c2915" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/bb5cfca2-2fc1-4138-874c-5f5d8263b763?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/77efeedd-7c98-40f0-af79-ffc4090c2915?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1186" ], "x-ms-correlation-request-id": [ - "b88b0228-2bce-47fb-8815-1c3cf7d5e054" + "9c3a5bb3-1cb3-49bc-b6af-f43087b0409a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191251Z:b88b0228-2bce-47fb-8815-1c3cf7d5e054" + "WESTUS:20150813T223032Z:9c3a5bb3-1cb3-49bc-b6af-f43087b0409a" ], "Date": [ - "Tue, 28 Apr 2015 19:12:50 GMT" + "Thu, 13 Aug 2015 22:30:32 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/bb5cfca2-2fc1-4138-874c-5f5d8263b763?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmI1Y2ZjYTItMmZjMS00MTM4LTg3NGMtNWY1ZDgyNjNiNzYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/77efeedd-7c98-40f0-af79-ffc4090c2915?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzdlZmVlZGQtN2M5OC00MGYwLWFmNzktZmZjNDA5MGMyOTE1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +879,7 @@ "no-cache" ], "x-ms-request-id": [ - "affc14e8-e5fc-40ce-bb39-49c9e824cb7a" + "168b8c66-f2a9-4441-8e03-649892a3883e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +892,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14967" ], "x-ms-correlation-request-id": [ - "8cb95b0c-4f1e-4d50-8afa-60bc63e11d76" + "c06f420b-4fa3-489d-b405-69a78e767aad" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191251Z:8cb95b0c-4f1e-4d50-8afa-60bc63e11d76" + "WESTUS:20150813T223032Z:c06f420b-4fa3-489d-b405-69a78e767aad" ], "Date": [ - "Tue, 28 Apr 2015 19:12:50 GMT" + "Thu, 13 Aug 2015 22:30:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1ODYxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,10 +916,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps8993' under resource group 'crptestps8993' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,13 +934,13 @@ "gateway" ], "x-ms-request-id": [ - "67fb5c2e-288d-4c0e-b8b8-617996c0dc5f" + "f072cee1-ea17-4f14-a1e9-83274cb6f713" ], "x-ms-correlation-request-id": [ - "67fb5c2e-288d-4c0e-b8b8-617996c0dc5f" + "f072cee1-ea17-4f14-a1e9-83274cb6f713" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191251Z:67fb5c2e-288d-4c0e-b8b8-617996c0dc5f" + "WESTUS:20150813T223033Z:f072cee1-ea17-4f14-a1e9-83274cb6f713" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +949,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:12:50 GMT" + "Thu, 13 Aug 2015 22:30:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1ODYxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861\",\r\n \"etag\": \"W/\\\"723a48b0-1077-4d2e-92ea-5b1becc3397a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"723a48b0-1077-4d2e-92ea-5b1becc3397a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861/subnets/subnetpstestrg5861\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993\",\r\n \"etag\": \"W/\\\"25cc43d7-b387-4028-aa5b-2af51e2d67ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d7312024-8a43-4c8a-adf6-72f011286b14\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"25cc43d7-b387-4028-aa5b-2af51e2d67ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993/subnets/subnetcrptestps8993\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "ac0a7ef6-23df-4c2b-9d07-086f97da79b1" + "026ca302-86bc-479f-8db5-b62601763457" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +988,30 @@ "no-cache" ], "ETag": [ - "W/\"723a48b0-1077-4d2e-92ea-5b1becc3397a\"" + "W/\"25cc43d7-b387-4028-aa5b-2af51e2d67ba\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14962" ], "x-ms-correlation-request-id": [ - "9c90a7b7-5c3d-405b-b530-4769de39aa07" + "9b67ccba-ce1d-484d-a2c3-8d3332e38f22" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191252Z:9c90a7b7-5c3d-405b-b530-4769de39aa07" + "WESTUS:20150813T223034Z:9b67ccba-ce1d-484d-a2c3-8d3332e38f22" ], "Date": [ - "Tue, 28 Apr 2015 19:12:52 GMT" + "Thu, 13 Aug 2015 22:30:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1ODYxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861\",\r\n \"etag\": \"W/\\\"723a48b0-1077-4d2e-92ea-5b1becc3397a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"723a48b0-1077-4d2e-92ea-5b1becc3397a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861/subnets/subnetpstestrg5861\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993\",\r\n \"etag\": \"W/\\\"25cc43d7-b387-4028-aa5b-2af51e2d67ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d7312024-8a43-4c8a-adf6-72f011286b14\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"25cc43d7-b387-4028-aa5b-2af51e2d67ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993/subnets/subnetcrptestps8993\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "6a2f3b49-cd57-430b-9f44-17c16c98ddc8" + "2b0c0c69-d048-40a1-a6e6-157af8486924" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,47 +1043,47 @@ "no-cache" ], "ETag": [ - "W/\"723a48b0-1077-4d2e-92ea-5b1becc3397a\"" + "W/\"25cc43d7-b387-4028-aa5b-2af51e2d67ba\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14961" ], "x-ms-correlation-request-id": [ - "a89b19c3-5376-4470-b776-efc4af1f8848" + "33c5cd60-c648-42a0-b9f7-b99897897f02" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191252Z:a89b19c3-5376-4470-b776-efc4af1f8848" + "WESTUS:20150813T223034Z:33c5cd60-c648-42a0-b9f7-b99897897f02" ], "Date": [ - "Tue, 28 Apr 2015 19:12:52 GMT" + "Thu, 13 Aug 2015 22:30:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1ODYxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861/subnets/subnetpstestrg5861\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg5861\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993/subnets/subnetcrptestps8993\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps8993\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "857" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5861\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861\",\r\n \"etag\": \"W/\\\"723a48b0-1077-4d2e-92ea-5b1becc3397a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"723a48b0-1077-4d2e-92ea-5b1becc3397a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5861\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5861/subnets/subnetpstestrg5861\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8993\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993\",\r\n \"etag\": \"W/\\\"25cc43d7-b387-4028-aa5b-2af51e2d67ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d7312024-8a43-4c8a-adf6-72f011286b14\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"25cc43d7-b387-4028-aa5b-2af51e2d67ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8993\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8993/subnets/subnetcrptestps8993\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -992,10 +1095,10 @@ "no-cache" ], "x-ms-request-id": [ - "c2c16955-b26f-453e-b5be-b58401ee82b9" + "8bd25f18-62ae-48e1-8e8f-caf9e6b24c32" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/c2c16955-b26f-453e-b5be-b58401ee82b9?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/8bd25f18-62ae-48e1-8e8f-caf9e6b24c32?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1185" ], "x-ms-correlation-request-id": [ - "9c431f0e-ae72-45be-b232-4f3c110c5766" + "6965c1ef-72bc-456c-845c-d52e8b7f01c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191252Z:9c431f0e-ae72-45be-b232-4f3c110c5766" + "WESTUS:20150813T223033Z:6965c1ef-72bc-456c-845c-d52e8b7f01c4" ], "Date": [ - "Tue, 28 Apr 2015 19:12:52 GMT" + "Thu, 13 Aug 2015 22:30:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/c2c16955-b26f-453e-b5be-b58401ee82b9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzJjMTY5NTUtYjI2Zi00NTNlLWI1YmUtYjU4NDAxZWU4MmI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/8bd25f18-62ae-48e1-8e8f-caf9e6b24c32?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJkMjVmMTgtNjJhZS00OGUxLThlOGYtY2FmOWU2YjI0YzMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,7 +1153,7 @@ "no-cache" ], "x-ms-request-id": [ - "374fb77a-461f-48d5-905c-ce8d9a090a26" + "2dee8af9-fb61-46ba-9ca8-efd14b5e9874" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14963" ], "x-ms-correlation-request-id": [ - "cf377513-aeaa-4914-9f87-001efaa31239" + "be2184cf-faa5-48e5-bae4-aa393c9277e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191252Z:cf377513-aeaa-4914-9f87-001efaa31239" + "WESTUS:20150813T223034Z:be2184cf-faa5-48e5-bae4-aa393c9277e7" ], "Date": [ - "Tue, 28 Apr 2015 19:12:52 GMT" + "Thu, 13 Aug 2015 22:30:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Storage/storageAccounts/stopstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTg2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Storage/storageAccounts/stocrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4OTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1090,7 +1193,7 @@ "88" ], "x-ms-client-request-id": [ - "c87b50a0-b06a-4eaf-be95-1d6988189501" + "a4e34ceb-6a9c-4ad0-9041-75ac25813a2d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1114,44 +1217,44 @@ "25" ], "x-ms-request-id": [ - "0f2a95f1-789d-42e0-8748-1db4d293ef3b" + "b747688a-25a7-4ef1-a222-117378b68626" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0f2a95f1-789d-42e0-8748-1db4d293ef3b?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b747688a-25a7-4ef1-a222-117378b68626?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1185" ], "x-ms-correlation-request-id": [ - "29aa9e40-c140-4d89-9552-72cc7635348c" + "2a6e27e3-368d-43bb-8e14-067d81b895d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191255Z:29aa9e40-c140-4d89-9552-72cc7635348c" + "WESTUS:20150813T223036Z:2a6e27e3-368d-43bb-8e14-067d81b895d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:12:54 GMT" + "Thu, 13 Aug 2015 22:30:36 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0f2a95f1-789d-42e0-8748-1db4d293ef3b?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBmMmE5NWYxLTc4OWQtNDJlMC04NzQ4LTFkYjRkMjkzZWYzYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b747688a-25a7-4ef1-a222-117378b68626?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I3NDc2ODhhLTI1YTctNGVmMS1hMjIyLTExNzM3OGI2ODYyNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e983198d-14db-4eff-af4b-2ba7cdea5013" + "83928c00-48cc-41f8-8515-7af56e95a1c6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1175,44 +1278,44 @@ "25" ], "x-ms-request-id": [ - "29d05499-0935-4522-9426-e92c54cb274f" + "f8ff9911-8e4a-47fa-9600-45f4b71e169d" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0f2a95f1-789d-42e0-8748-1db4d293ef3b?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b747688a-25a7-4ef1-a222-117378b68626?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14863" ], "x-ms-correlation-request-id": [ - "1dc7e3de-7f4d-423c-9cb0-ce6ed62f3c09" + "6ed8b487-3d46-465a-a4e3-17352e5932b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191255Z:1dc7e3de-7f4d-423c-9cb0-ce6ed62f3c09" + "WESTUS:20150813T223037Z:6ed8b487-3d46-465a-a4e3-17352e5932b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:12:54 GMT" + "Thu, 13 Aug 2015 22:30:36 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/0f2a95f1-789d-42e0-8748-1db4d293ef3b?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBmMmE5NWYxLTc4OWQtNDJlMC04NzQ4LTFkYjRkMjkzZWYzYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b747688a-25a7-4ef1-a222-117378b68626?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I3NDc2ODhhLTI1YTctNGVmMS1hMjIyLTExNzM3OGI2ODYyNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2681431c-0bbf-4c22-9cbf-51f711ef447f" + "dd8714fd-7872-40b2-9653-3c093ecc1bcf" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1233,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "2c161a5e-c676-48a3-8e4b-c168189fb171" + "6774bbee-32d4-4af7-be7d-1ea61881696b" ], "Cache-Control": [ "no-cache" @@ -1243,40 +1346,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14862" ], "x-ms-correlation-request-id": [ - "689a916c-7437-400e-8944-bb1a5f3b397e" + "af403868-c3da-4842-945b-4dacbefaf39f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191320Z:689a916c-7437-400e-8944-bb1a5f3b397e" + "WESTUS:20150813T223102Z:af403868-c3da-4842-945b-4dacbefaf39f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:13:20 GMT" + "Thu, 13 Aug 2015 22:31:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Storage/storageAccounts/stopstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTg2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Storage/storageAccounts/stocrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4OTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f99cd326-437f-4f15-a300-85485ff3f528" + "53baefdd-e3c4-484e-9675-1af6d124bc82" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Storage/storageAccounts/stopstestrg5861\",\r\n \"name\": \"stopstestrg5861\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5861.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5861.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5861.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T19:12:41.6044818Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Storage/storageAccounts/stocrptestps8993\",\r\n \"name\": \"stocrptestps8993\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8993.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8993.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8993.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T22:30:34.9315076Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1288,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "197f0208-3b78-4987-a5a5-c34bfc40afec" + "5b932782-cbc8-4112-a07d-460e8c74da70" ], "Cache-Control": [ "no-cache" @@ -1298,40 +1401,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14861" ], "x-ms-correlation-request-id": [ - "7b7f495e-bfb6-4427-838e-ce7a490dec3f" + "c592f7a6-99ad-4626-bb29-cfce3f919e55" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191320Z:7b7f495e-bfb6-4427-838e-ce7a490dec3f" + "WESTUS:20150813T223102Z:c592f7a6-99ad-4626-bb29-cfce3f919e55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:13:20 GMT" + "Thu, 13 Aug 2015 22:31:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Storage/storageAccounts/stopstestrg5861?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTg2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Storage/storageAccounts/stocrptestps8993?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4OTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4562cf9b-276d-4667-ae81-badbff67c95e" + "09c705b7-0d18-40fb-a4fa-0c4b45ccf146" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Storage/storageAccounts/stopstestrg5861\",\r\n \"name\": \"stopstestrg5861\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5861.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5861.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5861.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T19:12:41.6044818Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Storage/storageAccounts/stocrptestps8993\",\r\n \"name\": \"stocrptestps8993\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8993.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8993.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8993.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T22:30:34.9315076Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1343,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "98da9d0a-7a30-4794-bcd3-1f13c193804c" + "93abc3ac-3588-4484-9c70-b6b4dfbca407" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1456,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14860" ], "x-ms-correlation-request-id": [ - "a75266be-2aaf-4264-9d28-619d29068f71" + "b8ae5fcc-118f-48b5-a857-2ca9964b2c2f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191321Z:a75266be-2aaf-4264-9d28-619d29068f71" + "WESTUS:20150813T223102Z:b8ae5fcc-118f-48b5-a857-2ca9964b2c2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:13:20 GMT" + "Thu, 13 Aug 2015 22:31:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,7 +1501,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abce717a-9f26-4d64-b7e8-e365512d214e" + "dd904366-159c-4362-b192-9bb2f2a528ff" ], "Cache-Control": [ "no-cache" @@ -1408,31 +1511,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14960" ], "x-ms-correlation-request-id": [ - "9203468a-4a26-4eaa-b471-a20d4bce4c27" + "dd195bbc-feb1-4991-bf93-55172f96dd49" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191321Z:9203468a-4a26-4eaa-b471-a20d4bce4c27" + "WESTUS:20150813T223103Z:dd195bbc-feb1-4991-bf93-55172f96dd49" ], "Date": [ - "Tue, 28 Apr 2015 19:13:20 GMT" + "Thu, 13 Aug 2015 22:31:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1450,7 +1553,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "687924bd-1e4a-44b2-9e01-a9e367f4d751" + "69d73191-3bca-4f4c-802e-5b473f773114" ], "Cache-Control": [ "no-cache" @@ -1460,34 +1563,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14959" ], "x-ms-correlation-request-id": [ - "a9e536a1-210a-4059-8590-1ce008b5e60d" + "622e7e51-90a5-4498-a613-2bf07d4536bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191321Z:a9e536a1-210a-4059-8590-1ce008b5e60d" + "WESTUS:20150813T223103Z:622e7e51-90a5-4498-a613-2bf07d4536bb" ], "Date": [ - "Tue, 28 Apr 2015 19:13:20 GMT" + "Thu, 13 Aug 2015 22:31:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1502,7 +1605,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2278bc00-00e0-4461-a488-13edc374832b" + "96079aac-8c76-4948-ad74-12a43dad0ef4" ], "Cache-Control": [ "no-cache" @@ -1512,34 +1615,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14958" ], "x-ms-correlation-request-id": [ - "b71d314b-7bad-49d3-91da-33d7c0ddec09" + "7fdce579-f6d6-4db2-8c50-0b4c68b1a940" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191321Z:b71d314b-7bad-49d3-91da-33d7c0ddec09" + "WESTUS:20150813T223103Z:7fdce579-f6d6-4db2-8c50-0b4c68b1a940" ], "Date": [ - "Tue, 28 Apr 2015 19:13:21 GMT" + "Thu, 13 Aug 2015 22:31:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1554,7 +1657,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fac09b2c-beab-42bd-96f8-5cfb2119bdb4" + "f99c1136-8a92-4f7a-b405-e54f44bd34fc" ], "Cache-Control": [ "no-cache" @@ -1564,31 +1667,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14957" ], "x-ms-correlation-request-id": [ - "4561384c-48d8-4ab9-85e3-31c9c09ef63e" + "8ed4481a-7afc-409d-bac3-43593be78bf8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191321Z:4561384c-48d8-4ab9-85e3-31c9c09ef63e" + "WESTUS:20150813T223104Z:8ed4481a-7afc-409d-bac3-43593be78bf8" ], "Date": [ - "Tue, 28 Apr 2015 19:13:21 GMT" + "Thu, 13 Aug 2015 22:31:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1606,7 +1709,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ebc6150a-1e05-4ac9-aeab-a8946b12c367" + "f216d378-5725-47f2-9cd8-a295f7090455" ], "Cache-Control": [ "no-cache" @@ -1616,40 +1719,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14956" ], "x-ms-correlation-request-id": [ - "e7917eaf-496c-4723-865e-08314f055ffa" + "39a434c9-82f8-4795-963c-d3a693559a72" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191321Z:e7917eaf-496c-4723-865e-08314f055ffa" + "WESTUS:20150813T223104Z:39a434c9-82f8-4795-963c-d3a693559a72" ], "Date": [ - "Tue, 28 Apr 2015 19:13:21 GMT" + "Thu, 13 Aug 2015 22:31:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Compute/virtualMachines/vmpstestrg5861?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1ODYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Compute/virtualMachines/vmcrptestps8993?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5861.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg5861\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg5861\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8993.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps8993\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps8993\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1068" + "1058" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5861.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Network/networkInterfaces/nicpstestrg5861\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Compute/virtualMachines/vmpstestrg5861\",\r\n \"name\": \"vmpstestrg5861\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8993.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Network/networkInterfaces/niccrptestps8993\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Compute/virtualMachines/vmcrptestps8993\",\r\n \"name\": \"vmcrptestps8993\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1348" + "1339" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1661,13 +1764,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "a3a43a71-90cc-4e2e-af93-dfd0472d5ff1" + "ff1b0170-882d-446d-84cc-782e1ebbcb65" ], "Cache-Control": [ "no-cache" @@ -1677,31 +1783,86 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1184" ], "x-ms-correlation-request-id": [ - "dae7e875-f71f-412e-a5fa-72151ca33400" + "611fdde4-c6f7-4e72-a37a-d42c6119ce28" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191322Z:dae7e875-f71f-412e-a5fa-72151ca33400" + "WESTUS:20150813T223105Z:611fdde4-c6f7-4e72-a37a-d42c6119ce28" ], "Date": [ - "Tue, 28 Apr 2015 19:13:22 GMT" + "Thu, 13 Aug 2015 22:31:04 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "e927b761-b286-4d11-97bf-125443c8f7c1" + ], + "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": [ + "440244a3-9426-487b-b90a-bd97a8f5f056" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T223105Z:440244a3-9426-487b-b90a-bd97a8f5f056" + ], + "Date": [ + "Thu, 13 Aug 2015 22:31:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1718,8 +1879,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "a4994b61-df2c-4511-aabc-07e6d1b6fff1" + "05507d75-5700-4fd2-9079-9a191a76171d" ], "Cache-Control": [ "no-cache" @@ -1729,31 +1893,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14954" ], "x-ms-correlation-request-id": [ - "e41735ad-b2f3-4f4d-9849-8d5323b6625c" + "b6231525-beef-488a-80c8-94338650b77b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191322Z:e41735ad-b2f3-4f4d-9849-8d5323b6625c" + "WESTUS:20150813T223135Z:b6231525-beef-488a-80c8-94338650b77b" ], "Date": [ - "Tue, 28 Apr 2015 19:13:22 GMT" + "Thu, 13 Aug 2015 22:31:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1770,8 +1934,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "6c363f2c-8548-4182-a195-78b36cc02d4b" + "ed865349-f466-422d-8e5d-03276c4134c3" ], "Cache-Control": [ "no-cache" @@ -1781,31 +1948,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14953" ], "x-ms-correlation-request-id": [ - "8e404e85-be1b-4846-90db-90135e22bcf6" + "57e219f8-ed11-458a-b75a-e5648a99ad36" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191353Z:8e404e85-be1b-4846-90db-90135e22bcf6" + "WESTUS:20150813T223205Z:57e219f8-ed11-458a-b75a-e5648a99ad36" ], "Date": [ - "Tue, 28 Apr 2015 19:13:52 GMT" + "Thu, 13 Aug 2015 22:32:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1822,8 +1989,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "5e267a62-710c-4ae1-a893-5718204f6c7d" + "80818438-bd18-4019-8c0c-5f3fb4f5c190" ], "Cache-Control": [ "no-cache" @@ -1833,31 +2003,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14952" ], "x-ms-correlation-request-id": [ - "7439791f-6e67-44c4-b6c4-8b153121cb75" + "8b13ea46-0849-4caa-83da-b9a7fc683819" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191423Z:7439791f-6e67-44c4-b6c4-8b153121cb75" + "WESTUS:20150813T223235Z:8b13ea46-0849-4caa-83da-b9a7fc683819" ], "Date": [ - "Tue, 28 Apr 2015 19:14:22 GMT" + "Thu, 13 Aug 2015 22:32:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1874,8 +2044,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "88671c83-bd5d-487b-964f-4a3c61f99d93" + "ef4f0312-8da8-4608-a0e9-907b54308bb8" ], "Cache-Control": [ "no-cache" @@ -1885,31 +2058,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14951" ], "x-ms-correlation-request-id": [ - "10fe4694-f4b4-4731-9e38-dcb04de54275" + "d4db19ad-4430-4569-8e5f-8a07caaf461f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191453Z:10fe4694-f4b4-4731-9e38-dcb04de54275" + "WESTUS:20150813T223306Z:d4db19ad-4430-4569-8e5f-8a07caaf461f" ], "Date": [ - "Tue, 28 Apr 2015 19:14:53 GMT" + "Thu, 13 Aug 2015 22:33:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1926,8 +2099,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "e11b4635-fc1d-40d4-8c16-129628521f28" + "e8a27416-7c80-49ba-b05f-917ecbeb023c" ], "Cache-Control": [ "no-cache" @@ -1937,31 +2113,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14950" ], "x-ms-correlation-request-id": [ - "a9b3bac0-3172-433d-bdd2-653970c9b39e" + "590bc618-963c-471b-b1bc-4945428a6049" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191523Z:a9b3bac0-3172-433d-bdd2-653970c9b39e" + "WESTUS:20150813T223336Z:590bc618-963c-471b-b1bc-4945428a6049" ], "Date": [ - "Tue, 28 Apr 2015 19:15:23 GMT" + "Thu, 13 Aug 2015 22:33:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1978,8 +2154,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "ce1ca18d-f0c4-4998-8e06-efcfb8e00d93" + "20fc0250-d566-4f40-8e00-d4262a17f9a4" ], "Cache-Control": [ "no-cache" @@ -1989,31 +2168,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14949" ], "x-ms-correlation-request-id": [ - "df72b2eb-a509-4ce3-83ab-c8f2abe9d53f" + "9878e878-236b-491e-9d65-95ceed5e63a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191553Z:df72b2eb-a509-4ce3-83ab-c8f2abe9d53f" + "WESTUS:20150813T223406Z:9878e878-236b-491e-9d65-95ceed5e63a2" ], "Date": [ - "Tue, 28 Apr 2015 19:15:52 GMT" + "Thu, 13 Aug 2015 22:34:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2030,8 +2209,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "f4bf1607-1ac9-4fe3-a554-0390f35a5bc2" + "678116f1-0111-42ee-91cc-1b6200c8ad23" ], "Cache-Control": [ "no-cache" @@ -2041,31 +2223,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14948" ], "x-ms-correlation-request-id": [ - "639fd8ae-90e2-41ee-8605-dd01f59c2b2e" + "3d29d51f-618f-4f1c-91d6-1840c5c091a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191623Z:639fd8ae-90e2-41ee-8605-dd01f59c2b2e" + "WESTUS:20150813T223436Z:3d29d51f-618f-4f1c-91d6-1840c5c091a0" ], "Date": [ - "Tue, 28 Apr 2015 19:16:22 GMT" + "Thu, 13 Aug 2015 22:34:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2082,8 +2264,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "f9febfdd-96e4-4dc1-b00d-ed48a014e8e1" + "9639cf16-af0b-4b8e-980c-fb336643961d" ], "Cache-Control": [ "no-cache" @@ -2093,31 +2278,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14948" ], "x-ms-correlation-request-id": [ - "c0b4d880-38f3-433a-ac71-2137db5d987e" + "9aeb8da9-b047-44a2-bda9-01a059eb3f31" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191653Z:c0b4d880-38f3-433a-ac71-2137db5d987e" + "WESTUS:20150813T223506Z:9aeb8da9-b047-44a2-bda9-01a059eb3f31" ], "Date": [ - "Tue, 28 Apr 2015 19:16:53 GMT" + "Thu, 13 Aug 2015 22:35:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2134,8 +2319,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "4b59f110-8e7c-41d1-b070-0eac23d16946" + "73986eb0-489e-4591-a877-fc601a842ce0" ], "Cache-Control": [ "no-cache" @@ -2145,31 +2333,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14947" ], "x-ms-correlation-request-id": [ - "34ffe3e4-7118-401d-892c-190ad6cce255" + "9e435235-377e-40a4-84e7-b692194d15f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191723Z:34ffe3e4-7118-401d-892c-190ad6cce255" + "WESTUS:20150813T223536Z:9e435235-377e-40a4-84e7-b692194d15f0" ], "Date": [ - "Tue, 28 Apr 2015 19:17:23 GMT" + "Thu, 13 Aug 2015 22:35:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2186,8 +2374,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "4dd5713d-50f7-4e8c-9e05-68d54314cf2d" + "7fa8ee1e-4853-4e61-907c-1ff8916893a9" ], "Cache-Control": [ "no-cache" @@ -2197,31 +2388,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14946" ], "x-ms-correlation-request-id": [ - "20778bf4-c345-405a-9023-d73115220ba8" + "bcc6c180-4bd2-466b-a0d3-db418fb9bb74" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191756Z:20778bf4-c345-405a-9023-d73115220ba8" + "WESTUS:20150813T223606Z:bcc6c180-4bd2-466b-a0d3-db418fb9bb74" ], "Date": [ - "Tue, 28 Apr 2015 19:17:55 GMT" + "Thu, 13 Aug 2015 22:36:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2238,8 +2429,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "19e2cebd-c9ba-46d6-8466-ce60a5352d12" + "832da84d-fdf5-4b14-bf73-90932dfac425" ], "Cache-Control": [ "no-cache" @@ -2249,31 +2443,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14945" ], "x-ms-correlation-request-id": [ - "7f9589d9-2dc4-4af3-bf18-48bd0ca4c4c7" + "10e5f7c2-cb2f-4245-b668-50cf5f2c46c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191826Z:7f9589d9-2dc4-4af3-bf18-48bd0ca4c4c7" + "WESTUS:20150813T223636Z:10e5f7c2-cb2f-4245-b668-50cf5f2c46c4" ], "Date": [ - "Tue, 28 Apr 2015 19:18:26 GMT" + "Thu, 13 Aug 2015 22:36:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a3a43a71-90cc-4e2e-af93-dfd0472d5ff1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTNhNDNhNzEtOTBjYy00ZTJlLWFmOTMtZGZkMDQ3MmQ1ZmYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ff1b0170-882d-446d-84cc-782e1ebbcb65?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmYxYjAxNzAtODgyZC00NDZkLTg0Y2MtNzgyZTFlYmJjYjY1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a3a43a71-90cc-4e2e-af93-dfd0472d5ff1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T12:13:12.4326124-07:00\",\r\n \"endTime\": \"2015-04-28T12:18:22.5575365-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"ff1b0170-882d-446d-84cc-782e1ebbcb65\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T15:31:04.9254215-07:00\",\r\n \"endTime\": \"2015-08-13T15:36:59.4129656-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2290,8 +2484,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "0620e9b1-2ab1-4274-821d-195c4b5c9968" + "c5534989-38e1-4659-a3f0-2cde8d09cb32" ], "Cache-Control": [ "no-cache" @@ -2301,28 +2498,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14944" ], "x-ms-correlation-request-id": [ - "b4ee7916-a053-4cf9-9f46-47690d30c777" + "eee80867-d7ec-4de0-b978-ecc3d127062b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191856Z:b4ee7916-a053-4cf9-9f46-47690d30c777" + "WESTUS:20150813T223707Z:eee80867-d7ec-4de0-b978-ecc3d127062b" ], "Date": [ - "Tue, 28 Apr 2015 19:18:55 GMT" + "Thu, 13 Aug 2015 22:37:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Compute/virtualMachines/vmpstestrg5861/deallocate?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1ODYxL2RlYWxsb2NhdGU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Compute/virtualMachines/vmcrptestps8993/deallocate?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg5OTMvZGVhbGxvY2F0ZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -2337,50 +2534,53 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/df1b49f4-ad71-4da1-9166-cbd48dbb2db8?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f323617b-82fe-45bb-9862-1cfbfa7b883f?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "df1b49f4-ad71-4da1-9166-cbd48dbb2db8" + "f323617b-82fe-45bb-9862-1cfbfa7b883f" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/df1b49f4-ad71-4da1-9166-cbd48dbb2db8?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f323617b-82fe-45bb-9862-1cfbfa7b883f?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1186" ], "x-ms-correlation-request-id": [ - "beffcf58-eb54-4c2a-a8e5-f1e3d4509aaa" + "de482789-7711-462c-a6ce-b6cb5cc6bba1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191856Z:beffcf58-eb54-4c2a-a8e5-f1e3d4509aaa" + "WESTUS:20150813T223707Z:de482789-7711-462c-a6ce-b6cb5cc6bba1" ], "Date": [ - "Tue, 28 Apr 2015 19:18:55 GMT" + "Thu, 13 Aug 2015 22:37:07 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/df1b49f4-ad71-4da1-9166-cbd48dbb2db8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGYxYjQ5ZjQtYWQ3MS00ZGExLTkxNjYtY2JkNDhkYmIyZGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f323617b-82fe-45bb-9862-1cfbfa7b883f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMyMzYxN2ItODJmZS00NWJiLTk4NjItMWNmYmZhN2I4ODNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"df1b49f4-ad71-4da1-9166-cbd48dbb2db8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:18:46.7138481-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f323617b-82fe-45bb-9862-1cfbfa7b883f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:37:07.5068152-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2397,8 +2597,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "937a6c30-08d8-452d-b42d-83206f269440" + "47cf9c3e-88d1-4f7e-a178-4fe62960ad99" ], "Cache-Control": [ "no-cache" @@ -2408,31 +2611,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14943" ], "x-ms-correlation-request-id": [ - "a523e52c-dc47-411e-8f73-bd6afbaf49d8" + "4b9abaed-8614-4e48-8a57-81e5056d23fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191856Z:a523e52c-dc47-411e-8f73-bd6afbaf49d8" + "WESTUS:20150813T223707Z:4b9abaed-8614-4e48-8a57-81e5056d23fd" ], "Date": [ - "Tue, 28 Apr 2015 19:18:55 GMT" + "Thu, 13 Aug 2015 22:37:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/df1b49f4-ad71-4da1-9166-cbd48dbb2db8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGYxYjQ5ZjQtYWQ3MS00ZGExLTkxNjYtY2JkNDhkYmIyZGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f323617b-82fe-45bb-9862-1cfbfa7b883f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMyMzYxN2ItODJmZS00NWJiLTk4NjItMWNmYmZhN2I4ODNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"df1b49f4-ad71-4da1-9166-cbd48dbb2db8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:18:46.7138481-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f323617b-82fe-45bb-9862-1cfbfa7b883f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:37:07.5068152-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2449,8 +2652,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "7f1f4b4b-5b95-4e0f-8ae7-e526a264d909" + "342ac9a6-ff74-4018-adf8-99e926a40d09" ], "Cache-Control": [ "no-cache" @@ -2460,31 +2666,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14942" ], "x-ms-correlation-request-id": [ - "ed6076cb-8f28-487e-a338-582d7c273faf" + "39c854c9-f08d-41c2-81aa-662b0a858e32" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191926Z:ed6076cb-8f28-487e-a338-582d7c273faf" + "WESTUS:20150813T223737Z:39c854c9-f08d-41c2-81aa-662b0a858e32" ], "Date": [ - "Tue, 28 Apr 2015 19:19:26 GMT" + "Thu, 13 Aug 2015 22:37:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/df1b49f4-ad71-4da1-9166-cbd48dbb2db8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGYxYjQ5ZjQtYWQ3MS00ZGExLTkxNjYtY2JkNDhkYmIyZGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f323617b-82fe-45bb-9862-1cfbfa7b883f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMyMzYxN2ItODJmZS00NWJiLTk4NjItMWNmYmZhN2I4ODNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"df1b49f4-ad71-4da1-9166-cbd48dbb2db8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:18:46.7138481-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f323617b-82fe-45bb-9862-1cfbfa7b883f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:37:07.5068152-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2501,8 +2707,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "8db19531-e367-4801-8840-a475f5ade488" + "f12d0d66-d8d4-4c14-8620-b0f289f56e5f" ], "Cache-Control": [ "no-cache" @@ -2512,31 +2721,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14941" ], "x-ms-correlation-request-id": [ - "bbe1c591-3048-41a7-834e-138b664e63b8" + "8ff72644-03ec-4096-b10d-c097d0f06e5d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T191957Z:bbe1c591-3048-41a7-834e-138b664e63b8" + "WESTUS:20150813T223807Z:8ff72644-03ec-4096-b10d-c097d0f06e5d" ], "Date": [ - "Tue, 28 Apr 2015 19:19:56 GMT" + "Thu, 13 Aug 2015 22:38:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/df1b49f4-ad71-4da1-9166-cbd48dbb2db8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGYxYjQ5ZjQtYWQ3MS00ZGExLTkxNjYtY2JkNDhkYmIyZGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f323617b-82fe-45bb-9862-1cfbfa7b883f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMyMzYxN2ItODJmZS00NWJiLTk4NjItMWNmYmZhN2I4ODNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"df1b49f4-ad71-4da1-9166-cbd48dbb2db8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:18:46.7138481-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f323617b-82fe-45bb-9862-1cfbfa7b883f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:37:07.5068152-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2553,8 +2762,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "2ecca99c-45b0-4a8e-889f-f84bd3a07345" + "a8ba752a-7283-44c3-b553-2cb59e260e3e" ], "Cache-Control": [ "no-cache" @@ -2564,31 +2776,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14940" ], "x-ms-correlation-request-id": [ - "7c76db5a-5abe-4b84-ba2b-dae526cd9791" + "cb25a002-be46-4932-afd2-71b49ccf26ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192027Z:7c76db5a-5abe-4b84-ba2b-dae526cd9791" + "WESTUS:20150813T223837Z:cb25a002-be46-4932-afd2-71b49ccf26ed" ], "Date": [ - "Tue, 28 Apr 2015 19:20:26 GMT" + "Thu, 13 Aug 2015 22:38:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/df1b49f4-ad71-4da1-9166-cbd48dbb2db8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGYxYjQ5ZjQtYWQ3MS00ZGExLTkxNjYtY2JkNDhkYmIyZGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f323617b-82fe-45bb-9862-1cfbfa7b883f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMyMzYxN2ItODJmZS00NWJiLTk4NjItMWNmYmZhN2I4ODNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"df1b49f4-ad71-4da1-9166-cbd48dbb2db8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:18:46.7138481-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f323617b-82fe-45bb-9862-1cfbfa7b883f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:37:07.5068152-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2605,8 +2817,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "1a4b9b08-b872-4dcb-b6ad-c3730eb8f47b" + "94d64b74-3405-46bc-acce-35082607dcd6" ], "Cache-Control": [ "no-cache" @@ -2616,31 +2831,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14939" ], "x-ms-correlation-request-id": [ - "a9a62efb-b677-48a5-b65f-b3ff438137df" + "86c135d2-c959-4561-946a-e339ed7b9dd4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192057Z:a9a62efb-b677-48a5-b65f-b3ff438137df" + "WESTUS:20150813T223908Z:86c135d2-c959-4561-946a-e339ed7b9dd4" ], "Date": [ - "Tue, 28 Apr 2015 19:20:57 GMT" + "Thu, 13 Aug 2015 22:39:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/df1b49f4-ad71-4da1-9166-cbd48dbb2db8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGYxYjQ5ZjQtYWQ3MS00ZGExLTkxNjYtY2JkNDhkYmIyZGI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f323617b-82fe-45bb-9862-1cfbfa7b883f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjMyMzYxN2ItODJmZS00NWJiLTk4NjItMWNmYmZhN2I4ODNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"df1b49f4-ad71-4da1-9166-cbd48dbb2db8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T12:18:46.7138481-07:00\",\r\n \"endTime\": \"2015-04-28T12:21:09.5887861-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f323617b-82fe-45bb-9862-1cfbfa7b883f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T15:37:07.5068152-07:00\",\r\n \"endTime\": \"2015-08-13T15:39:12.3204025-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2657,8 +2872,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "17d2cf95-f7d1-46e5-9148-c20016d464fe" + "fad4423d-b11d-4512-9d6e-60e1cf908f24" ], "Cache-Control": [ "no-cache" @@ -2668,28 +2886,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14938" ], "x-ms-correlation-request-id": [ - "10302036-1424-4994-aebb-655c68b362de" + "ad5dca4a-5e91-4623-ab20-aaad9123645d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192127Z:10302036-1424-4994-aebb-655c68b362de" + "WESTUS:20150813T223938Z:ad5dca4a-5e91-4623-ab20-aaad9123645d" ], "Date": [ - "Tue, 28 Apr 2015 19:21:27 GMT" + "Thu, 13 Aug 2015 22:39:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Compute/virtualMachines/vmpstestrg5861/generalize?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1ODYxL2dlbmVyYWxpemU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Compute/virtualMachines/vmcrptestps8993/generalize?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg5OTMvZ2VuZXJhbGl6ZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -2706,8 +2924,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "19a996dd-ba72-4cb4-bcdb-340dc71224d0" + "6e10d25d-8f2e-44f8-b23e-132f2325a41c" ], "Cache-Control": [ "no-cache" @@ -2717,34 +2938,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1185" ], "x-ms-correlation-request-id": [ - "100d3e39-00d9-4b65-9bc2-9de19573d00b" + "bf26a8dd-f2d5-4760-a84a-2cd65cebbe6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192128Z:100d3e39-00d9-4b65-9bc2-9de19573d00b" + "WESTUS:20150813T223938Z:bf26a8dd-f2d5-4760-a84a-2cd65cebbe6e" ], "Date": [ - "Tue, 28 Apr 2015 19:21:27 GMT" + "Thu, 13 Aug 2015 22:39:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Compute/virtualMachines/vmpstestrg5861/capture?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1ODYxL2NhcHR1cmU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Compute/virtualMachines/vmcrptestps8993/capture?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg5OTMvY2FwdHVyZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "POST", - "RequestBody": "{\r\n \"vhdPrefix\": \"pslib\",\r\n \"destinationContainerName\": \"pstestrg7216\",\r\n \"overwriteVhds\": true\r\n}", + "RequestBody": "{\r\n \"vhdPrefix\": \"pslib\",\r\n \"destinationContainerName\": \"crptestps4187\",\r\n \"overwriteVhds\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "101" + "102" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -2759,50 +2980,53 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/b9f7db58-9902-4b8e-93bd-73b09f356061?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c3b5a182-dbf9-4069-958e-92a3f017cf95?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "b9f7db58-9902-4b8e-93bd-73b09f356061" + "c3b5a182-dbf9-4069-958e-92a3f017cf95" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/b9f7db58-9902-4b8e-93bd-73b09f356061?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c3b5a182-dbf9-4069-958e-92a3f017cf95?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1184" ], "x-ms-correlation-request-id": [ - "17e30472-de20-402a-8c97-282cc8663b0d" + "999d7fc1-03c7-406d-9a7d-f6e483f80236" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192128Z:17e30472-de20-402a-8c97-282cc8663b0d" + "WESTUS:20150813T223938Z:999d7fc1-03c7-406d-9a7d-f6e483f80236" ], "Date": [ - "Tue, 28 Apr 2015 19:21:27 GMT" + "Thu, 13 Aug 2015 22:39:38 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/b9f7db58-9902-4b8e-93bd-73b09f356061?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjlmN2RiNTgtOTkwMi00YjhlLTkzYmQtNzNiMDlmMzU2MDYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c3b5a182-dbf9-4069-958e-92a3f017cf95?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzNiNWExODItZGJmOS00MDY5LTk1OGUtOTJhM2YwMTdjZjk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b9f7db58-9902-4b8e-93bd-73b09f356061\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:21:18.6200891-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c3b5a182-dbf9-4069-958e-92a3f017cf95\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:39:38.6956154-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2819,8 +3043,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "0804b437-40be-45c4-92f8-05d811fd33d3" + "89f74585-deac-41cb-a40a-40f037577c40" ], "Cache-Control": [ "no-cache" @@ -2830,34 +3057,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14937" ], "x-ms-correlation-request-id": [ - "02ac0164-9498-45e5-8806-a87924894b2d" + "62105150-f2ff-48e1-bd0f-6d8a82ae263c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192128Z:02ac0164-9498-45e5-8806-a87924894b2d" + "WESTUS:20150813T223938Z:62105150-f2ff-48e1-bd0f-6d8a82ae263c" ], "Date": [ - "Tue, 28 Apr 2015 19:21:27 GMT" + "Thu, 13 Aug 2015 22:39:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/b9f7db58-9902-4b8e-93bd-73b09f356061?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjlmN2RiNTgtOTkwMi00YjhlLTkzYmQtNzNiMDlmMzU2MDYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c3b5a182-dbf9-4069-958e-92a3f017cf95?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzNiNWExODItZGJmOS00MDY5LTk1OGUtOTJhM2YwMTdjZjk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"b9f7db58-9902-4b8e-93bd-73b09f356061\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T12:21:18.6200891-07:00\",\r\n \"endTime\": \"2015-04-28T12:21:20.0106636-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A4\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"name\": \"pslib-osDisk.5a491f93-78fb-4b13-9676-f079fcd36c2b.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stopstestrg5861.blob.core.windows.net/system/Microsoft.Compute/Images/pstestrg7216/pslib-osDisk.5a491f93-78fb-4b13-9676-f079fcd36c2b.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5861.blob.core.windows.net/vmcontainer9827b3d9-cc30-4f27-bb24-4699a92fbf72/osDisk.9827b3d9-cc30-4f27-bb24-4699a92fbf72.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c3b5a182-dbf9-4069-958e-92a3f017cf95\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T15:39:38.6956154-07:00\",\r\n \"endTime\": \"2015-08-13T15:39:39.8205604-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A4\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"pslib-osDisk.07fa219e-a470-4b88-8df7-1e4e2cb88124.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stocrptestps8993.blob.core.windows.net/system/Microsoft.Compute/Images/crptestps4187/pslib-osDisk.07fa219e-a470-4b88-8df7-1e4e2cb88124.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8993.blob.core.windows.net/vmcontainerb6c1366b-603b-4022-a0a4-869e84e16bd9/osDisk.b6c1366b-603b-4022-a0a4-869e84e16bd9.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "2032" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2871,8 +3098,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "12c904b8-633c-42b5-ba8d-f6cc4c36a48d" + "be1f9412-5f12-4d6c-8459-98790f154fd3" ], "Cache-Control": [ "no-cache" @@ -2882,28 +3112,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14943" ], "x-ms-correlation-request-id": [ - "0c597287-71a6-40bf-94c2-92fb63b4f434" + "ed654e23-36ee-40e1-8ed8-3199af5ff853" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192159Z:0c597287-71a6-40bf-94c2-92fb63b4f434" + "WESTUS:20150813T224008Z:ed654e23-36ee-40e1-8ed8-3199af5ff853" ], "Date": [ - "Tue, 28 Apr 2015 19:21:58 GMT" + "Thu, 13 Aug 2015 22:40:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg5861/providers/Microsoft.Compute/virtualMachines/vmpstestrg5861?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTg2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1ODYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8993/providers/Microsoft.Compute/virtualMachines/vmcrptestps8993?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg5OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "", @@ -2918,53 +3148,56 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/2a033d3e-62d5-4d1d-98e7-880df3c6704a?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5041f9af-e846-48f4-a656-0aacafab893f?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "2a033d3e-62d5-4d1d-98e7-880df3c6704a" + "5041f9af-e846-48f4-a656-0aacafab893f" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/2a033d3e-62d5-4d1d-98e7-880df3c6704a?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5041f9af-e846-48f4-a656-0aacafab893f?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1186" ], "x-ms-correlation-request-id": [ - "16aad8dc-b6f9-45f1-bf6f-7d564462b061" + "03008e1c-cae4-4cce-a83f-ba01292e74d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192200Z:16aad8dc-b6f9-45f1-bf6f-7d564462b061" + "WESTUS:20150813T224009Z:03008e1c-cae4-4cce-a83f-ba01292e74d4" ], "Date": [ - "Tue, 28 Apr 2015 19:21:59 GMT" + "Thu, 13 Aug 2015 22:40:08 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/2a033d3e-62d5-4d1d-98e7-880df3c6704a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmEwMzNkM2UtNjJkNS00ZDFkLTk4ZTctODgwZGYzYzY3MDRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5041f9af-e846-48f4-a656-0aacafab893f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTA0MWY5YWYtZTg0Ni00OGY0LWE2NTYtMGFhY2FmYWI4OTNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2a033d3e-62d5-4d1d-98e7-880df3c6704a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T12:21:49.6981619-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5041f9af-e846-48f4-a656-0aacafab893f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T15:40:09.461543-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2978,8 +3211,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "5aeee07b-2d83-4c0d-a1c5-d29c9f1e42b5" + "1ff3ed36-a7b4-4265-a02a-fac68a25ca04" ], "Cache-Control": [ "no-cache" @@ -2989,34 +3225,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14942" ], "x-ms-correlation-request-id": [ - "56edee9b-c291-4a8b-aec5-f6d0c9f82bf1" + "3be7fa3f-2597-47fa-a867-13f5e7004332" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192200Z:56edee9b-c291-4a8b-aec5-f6d0c9f82bf1" + "WESTUS:20150813T224009Z:3be7fa3f-2597-47fa-a867-13f5e7004332" ], "Date": [ - "Tue, 28 Apr 2015 19:21:59 GMT" + "Thu, 13 Aug 2015 22:40:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/2a033d3e-62d5-4d1d-98e7-880df3c6704a?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmEwMzNkM2UtNjJkNS00ZDFkLTk4ZTctODgwZGYzYzY3MDRhP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/5041f9af-e846-48f4-a656-0aacafab893f?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTA0MWY5YWYtZTg0Ni00OGY0LWE2NTYtMGFhY2FmYWI4OTNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2a033d3e-62d5-4d1d-98e7-880df3c6704a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T12:21:49.6981619-07:00\",\r\n \"endTime\": \"2015-04-28T12:21:52.9169258-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"5041f9af-e846-48f4-a656-0aacafab893f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T15:40:09.461543-07:00\",\r\n \"endTime\": \"2015-08-13T15:40:20.5084818-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3030,8 +3266,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], "x-ms-request-id": [ - "cea8873c-98f6-436b-b996-48da90f34afc" + "5ad67766-2047-4e38-97c2-65d0a1237a3a" ], "Cache-Control": [ "no-cache" @@ -3041,23 +3280,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14941" ], "x-ms-correlation-request-id": [ - "05bf97f1-5000-43d1-a08b-1436cf225c54" + "e25df44f-bbf3-4e42-820d-bf6e8b21921b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192230Z:05bf97f1-5000-43d1-a08b-1436cf225c54" + "WESTUS:20150813T224039Z:e25df44f-bbf3-4e42-820d-bf6e8b21921b" ], "Date": [ - "Tue, 28 Apr 2015 19:22:30 GMT" + "Thu, 13 Aug 2015 22:40:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg5861?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTg2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8993?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg5OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -3080,448 +3319,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "5a3a4841-31da-452c-8491-bd4a5e349c72" - ], - "x-ms-correlation-request-id": [ - "5a3a4841-31da-452c-8491-bd4a5e349c72" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192230Z:5a3a4841-31da-452c-8491-bd4a5e349c72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:22:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" - ], - "x-ms-request-id": [ - "8d5b9737-4487-49a7-91d9-18de96a76d07" - ], - "x-ms-correlation-request-id": [ - "8d5b9737-4487-49a7-91d9-18de96a76d07" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192230Z:8d5b9737-4487-49a7-91d9-18de96a76d07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:22:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" - ], - "x-ms-request-id": [ - "59b8d9d0-5a41-4eac-a50b-3be722f3f37e" - ], - "x-ms-correlation-request-id": [ - "59b8d9d0-5a41-4eac-a50b-3be722f3f37e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192245Z:59b8d9d0-5a41-4eac-a50b-3be722f3f37e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:22:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" - ], - "x-ms-request-id": [ - "325b8e87-89cb-4432-b466-a210f26db23d" - ], - "x-ms-correlation-request-id": [ - "325b8e87-89cb-4432-b466-a210f26db23d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192300Z:325b8e87-89cb-4432-b466-a210f26db23d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:22:59 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" - ], - "x-ms-request-id": [ - "54fa8e3c-d5cd-4f45-9313-169269fd0540" - ], - "x-ms-correlation-request-id": [ - "54fa8e3c-d5cd-4f45-9313-169269fd0540" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192315Z:54fa8e3c-d5cd-4f45-9313-169269fd0540" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:23:15 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" - ], - "x-ms-request-id": [ - "7b8f98ee-384b-4dcc-8a80-396b13fd562f" - ], - "x-ms-correlation-request-id": [ - "7b8f98ee-384b-4dcc-8a80-396b13fd562f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192330Z:7b8f98ee-384b-4dcc-8a80-396b13fd562f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:23:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" - ], - "x-ms-request-id": [ - "4c141842-b10d-4d84-b0eb-2c56edcd46bf" - ], - "x-ms-correlation-request-id": [ - "4c141842-b10d-4d84-b0eb-2c56edcd46bf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192346Z:4c141842-b10d-4d84-b0eb-2c56edcd46bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:23:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" - ], - "x-ms-request-id": [ - "300b96f2-efcf-4054-b50f-0edbbc214edb" - ], - "x-ms-correlation-request-id": [ - "300b96f2-efcf-4054-b50f-0edbbc214edb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192401Z:300b96f2-efcf-4054-b50f-0edbbc214edb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:24:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "1185" ], "x-ms-request-id": [ - "e8cd2a17-be57-429f-b384-dcc84cff12a4" + "e3eaea7e-80bb-49ca-8fae-379036d00b9c" ], "x-ms-correlation-request-id": [ - "e8cd2a17-be57-429f-b384-dcc84cff12a4" + "e3eaea7e-80bb-49ca-8fae-379036d00b9c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192416Z:e8cd2a17-be57-429f-b384-dcc84cff12a4" + "WESTUS:20150813T224039Z:e3eaea7e-80bb-49ca-8fae-379036d00b9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3530,17 +3337,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:24:16 GMT" + "Thu, 13 Aug 2015 22:40:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T1RrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3566,16 +3373,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" + "14939" ], "x-ms-request-id": [ - "afca6f4d-ffb4-4f11-a21c-9947708f3cbd" + "cc97dcc1-f054-4853-ab89-55952cb34064" ], "x-ms-correlation-request-id": [ - "afca6f4d-ffb4-4f11-a21c-9947708f3cbd" + "cc97dcc1-f054-4853-ab89-55952cb34064" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192431Z:afca6f4d-ffb4-4f11-a21c-9947708f3cbd" + "WESTUS:20150813T224039Z:cc97dcc1-f054-4853-ab89-55952cb34064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3584,17 +3391,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:24:31 GMT" + "Thu, 13 Aug 2015 22:40:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T1RrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3620,16 +3427,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" + "14938" ], "x-ms-request-id": [ - "c95dfb69-38bd-442d-a70f-9943d5936a47" + "5babd8a1-fa8b-4da0-9a5a-60d71c65b07b" ], "x-ms-correlation-request-id": [ - "c95dfb69-38bd-442d-a70f-9943d5936a47" + "5babd8a1-fa8b-4da0-9a5a-60d71c65b07b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192446Z:c95dfb69-38bd-442d-a70f-9943d5936a47" + "WESTUS:20150813T224055Z:5babd8a1-fa8b-4da0-9a5a-60d71c65b07b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3638,17 +3445,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:24:45 GMT" + "Thu, 13 Aug 2015 22:40:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T1RrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,16 +3481,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" + "14937" ], "x-ms-request-id": [ - "c4f2027b-65ec-4874-aefa-ddee65a1f7bf" + "f2edd7cc-bcb2-4c6f-a306-3d9bbd511e4a" ], "x-ms-correlation-request-id": [ - "c4f2027b-65ec-4874-aefa-ddee65a1f7bf" + "f2edd7cc-bcb2-4c6f-a306-3d9bbd511e4a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192501Z:c4f2027b-65ec-4874-aefa-ddee65a1f7bf" + "WESTUS:20150813T224110Z:f2edd7cc-bcb2-4c6f-a306-3d9bbd511e4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3692,17 +3499,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:25:01 GMT" + "Thu, 13 Aug 2015 22:41:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T1RrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3728,16 +3535,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" + "14936" ], "x-ms-request-id": [ - "61ae312e-6b0a-444b-860a-0cb46640a9c1" + "d06fded0-e8b9-4ee0-b698-44b21c3c6233" ], "x-ms-correlation-request-id": [ - "61ae312e-6b0a-444b-860a-0cb46640a9c1" + "d06fded0-e8b9-4ee0-b698-44b21c3c6233" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192516Z:61ae312e-6b0a-444b-860a-0cb46640a9c1" + "WESTUS:20150813T224125Z:d06fded0-e8b9-4ee0-b698-44b21c3c6233" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3746,17 +3553,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:25:16 GMT" + "Thu, 13 Aug 2015 22:41:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T1RrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3782,16 +3589,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31954" + "14935" ], "x-ms-request-id": [ - "3deee9e0-a173-4480-9a68-51d59cdd1b0a" + "e5a43d0e-5ae3-4a64-b576-f79c0be49b07" ], "x-ms-correlation-request-id": [ - "3deee9e0-a173-4480-9a68-51d59cdd1b0a" + "e5a43d0e-5ae3-4a64-b576-f79c0be49b07" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192531Z:3deee9e0-a173-4480-9a68-51d59cdd1b0a" + "WESTUS:20150813T224140Z:e5a43d0e-5ae3-4a64-b576-f79c0be49b07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3800,17 +3607,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:25:31 GMT" + "Thu, 13 Aug 2015 22:41:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T1RrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3836,16 +3643,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" + "14934" ], "x-ms-request-id": [ - "04d061b3-ac0f-4cb8-be2f-0183ab1b5fb6" + "3f0a3dac-4140-45ee-ac21-d9ed0db414e8" ], "x-ms-correlation-request-id": [ - "04d061b3-ac0f-4cb8-be2f-0183ab1b5fb6" + "3f0a3dac-4140-45ee-ac21-d9ed0db414e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192546Z:04d061b3-ac0f-4cb8-be2f-0183ab1b5fb6" + "WESTUS:20150813T224155Z:3f0a3dac-4140-45ee-ac21-d9ed0db414e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3854,17 +3661,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:25:46 GMT" + "Thu, 13 Aug 2015 22:41:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T1RrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3890,16 +3697,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" + "14933" ], "x-ms-request-id": [ - "182ec239-0962-4892-95f6-0ef890834b53" + "c469b627-eaca-4493-b75a-40bd46337941" ], "x-ms-correlation-request-id": [ - "182ec239-0962-4892-95f6-0ef890834b53" + "c469b627-eaca-4493-b75a-40bd46337941" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192602Z:182ec239-0962-4892-95f6-0ef890834b53" + "WESTUS:20150813T224210Z:c469b627-eaca-4493-b75a-40bd46337941" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3908,17 +3715,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:26:01 GMT" + "Thu, 13 Aug 2015 22:42:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4OTkzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00T1RrekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3941,16 +3748,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" + "14932" ], "x-ms-request-id": [ - "c398156b-c503-439b-8e3d-7fd0e3d13a80" + "6f4e49b1-ded7-4ead-a365-0ed80e747ac7" ], "x-ms-correlation-request-id": [ - "c398156b-c503-439b-8e3d-7fd0e3d13a80" + "6f4e49b1-ded7-4ead-a365-0ed80e747ac7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192617Z:c398156b-c503-439b-8e3d-7fd0e3d13a80" + "WESTUS:20150813T224225Z:6f4e49b1-ded7-4ead-a365-0ed80e747ac7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3959,7 +3766,7 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:26:16 GMT" + "Thu, 13 Aug 2015 22:42:25 GMT" ] }, "StatusCode": 200 @@ -3967,13 +3774,13 @@ ], "Names": { "Test-VirtualMachineCapture": [ - "pstestrg5861", - "pstestrg7216" + "crptestps8993", + "crptestps4187" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json index 3365297a0b18..fba92ea522ad 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7184?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE4ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "c85d1860-50a3-4f18-8428-38843f2999ad" + ], + "x-ms-correlation-request-id": [ + "c85d1860-50a3-4f18-8428-38843f2999ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T072756Z:c85d1860-50a3-4f18-8428-38843f2999ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 07:27:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14943" ], "x-ms-request-id": [ - "9993bae1-f9d4-4667-82d2-ed0b15a0b6b5" + "108dbfd9-2bcc-46bd-ad55-f6fe19e4e466" ], "x-ms-correlation-request-id": [ - "9993bae1-f9d4-4667-82d2-ed0b15a0b6b5" + "108dbfd9-2bcc-46bd-ad55-f6fe19e4e466" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192700Z:9993bae1-f9d4-4667-82d2-ed0b15a0b6b5" + "WESTUS:20150813T072756Z:108dbfd9-2bcc-46bd-ad55-f6fe19e4e466" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:26:59 GMT" + "Thu, 13 Aug 2015 07:27:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7184?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE4ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14941" ], "x-ms-request-id": [ - "f8b4b51a-2c0c-4877-88c3-47c10dad1217" + "8b7fe266-10a4-48b7-8663-5a4cf27a428c" ], "x-ms-correlation-request-id": [ - "f8b4b51a-2c0c-4877-88c3-47c10dad1217" + "8b7fe266-10a4-48b7-8663-5a4cf27a428c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192842Z:f8b4b51a-2c0c-4877-88c3-47c10dad1217" + "WESTUS:20150813T072840Z:8b7fe266-10a4-48b7-8663-5a4cf27a428c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:28:41 GMT" + "Thu, 13 Aug 2015 07:28:39 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7184?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE4ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184\",\r\n \"name\": \"pstestrg7184\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696\",\r\n \"name\": \"crptestps2696\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-request-id": [ - "74aba614-dd33-4a43-b565-f9c5d9d6f8b4" + "7fc57353-8a3b-42fc-9f04-ebbecc8490f3" ], "x-ms-correlation-request-id": [ - "74aba614-dd33-4a43-b565-f9c5d9d6f8b4" + "7fc57353-8a3b-42fc-9f04-ebbecc8490f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192702Z:74aba614-dd33-4a43-b565-f9c5d9d6f8b4" + "WESTUS:20150813T072756Z:7fc57353-8a3b-42fc-9f04-ebbecc8490f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:27:01 GMT" + "Thu, 13 Aug 2015 07:27:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14942" ], "x-ms-request-id": [ - "513b5f04-beed-43e9-ac5a-21df13d658fb" + "0aa5d09f-d211-41a0-b9d7-9a42a5655205" ], "x-ms-correlation-request-id": [ - "513b5f04-beed-43e9-ac5a-21df13d658fb" + "0aa5d09f-d211-41a0-b9d7-9a42a5655205" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192702Z:513b5f04-beed-43e9-ac5a-21df13d658fb" + "WESTUS:20150813T072756Z:0aa5d09f-d211-41a0-b9d7-9a42a5655205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:27:01 GMT" + "Thu, 13 Aug 2015 07:27:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7184/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:c69ead58-5c3e-45d9-95b4-dd936a9127ee" + "westus:81f57099-0530-4890-8883-74e3bb4de6d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" + "14990" ], "x-ms-correlation-request-id": [ - "7095b273-e3af-4917-8bc4-44fc65ce4432" + "041fb0ed-5a23-4e81-8069-ecb5646295f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192700Z:7095b273-e3af-4917-8bc4-44fc65ce4432" + "WESTUS:20150813T072756Z:041fb0ed-5a23-4e81-8069-ecb5646295f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:26:59 GMT" + "Thu, 13 Aug 2015 07:27:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxODQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps2696' under resource group 'crptestps2696' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "07eec1f3-5111-4479-ade7-779b117fa7ed" + "8e707a82-197c-403e-8919-396c4802d6fd" ], "x-ms-correlation-request-id": [ - "07eec1f3-5111-4479-ade7-779b117fa7ed" + "8e707a82-197c-403e-8919-396c4802d6fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192704Z:07eec1f3-5111-4479-ade7-779b117fa7ed" + "WESTUS:20150813T072756Z:8e707a82-197c-403e-8919-396c4802d6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:27:04 GMT" + "Thu, 13 Aug 2015 07:27:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxODQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184\",\r\n \"etag\": \"W/\\\"0da0fdbd-987e-477d-a9c1-66b08ccd62e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184/subnets/subnetpstestrg7184\",\r\n \"etag\": \"W/\\\"0da0fdbd-987e-477d-a9c1-66b08ccd62e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696\",\r\n \"etag\": \"W/\\\"4789823a-4006-4680-9873-c3c8350a8fe5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0037d082-7ef2-48bd-8464-43c6aa70b4a5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\",\r\n \"etag\": \"W/\\\"4789823a-4006-4680-9873-c3c8350a8fe5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "a4d03f02-69c3-41a2-9fe8-813fd8f1bd21" + "a502c7c5-c51c-4f69-8a86-2ce5886ad76e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"0da0fdbd-987e-477d-a9c1-66b08ccd62e7\"" + "W/\"4789823a-4006-4680-9873-c3c8350a8fe5\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14991" ], "x-ms-correlation-request-id": [ - "bf5b6b49-6951-4002-95ea-c75aff22bc0a" + "ba51600d-ca8e-4db5-aa52-6b425cf162c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192707Z:bf5b6b49-6951-4002-95ea-c75aff22bc0a" + "WESTUS:20150813T072807Z:ba51600d-ca8e-4db5-aa52-6b425cf162c2" ], "Date": [ - "Tue, 28 Apr 2015 19:27:06 GMT" + "Thu, 13 Aug 2015 07:28:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxODQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184\",\r\n \"etag\": \"W/\\\"0da0fdbd-987e-477d-a9c1-66b08ccd62e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184/subnets/subnetpstestrg7184\",\r\n \"etag\": \"W/\\\"0da0fdbd-987e-477d-a9c1-66b08ccd62e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696\",\r\n \"etag\": \"W/\\\"4789823a-4006-4680-9873-c3c8350a8fe5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0037d082-7ef2-48bd-8464-43c6aa70b4a5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\",\r\n \"etag\": \"W/\\\"4789823a-4006-4680-9873-c3c8350a8fe5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "f900671a-4abc-4f55-a716-7c50c4950913" + "ca3ebdb3-c26f-49ca-994e-4b856c7adb10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"0da0fdbd-987e-477d-a9c1-66b08ccd62e7\"" + "W/\"4789823a-4006-4680-9873-c3c8350a8fe5\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14990" ], "x-ms-correlation-request-id": [ - "97985a6a-9e19-4503-a2bf-c73bc601141d" + "c46fb011-80b2-4f87-97e8-bbd74130204f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192707Z:97985a6a-9e19-4503-a2bf-c73bc601141d" + "WESTUS:20150813T072807Z:c46fb011-80b2-4f87-97e8-bbd74130204f" ], "Date": [ - "Tue, 28 Apr 2015 19:27:06 GMT" + "Thu, 13 Aug 2015 07:28:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcxODQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7184\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7184\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps2696\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps2696\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184\",\r\n \"etag\": \"W/\\\"46443902-ef48-4bc1-9ffc-9f60e3584ef9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184/subnets/subnetpstestrg7184\",\r\n \"etag\": \"W/\\\"46443902-ef48-4bc1-9ffc-9f60e3584ef9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696\",\r\n \"etag\": \"W/\\\"1666bc6b-aa63-4d29-b54a-9b960475eaff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0037d082-7ef2-48bd-8464-43c6aa70b4a5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\",\r\n \"etag\": \"W/\\\"1666bc6b-aa63-4d29-b54a-9b960475eaff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "d8805639-0c93-4f1a-9e5e-063716cbf9e4" + "4537d7e5-375e-4bb4-99e8-1b51b76afb71" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/d8805639-0c93-4f1a-9e5e-063716cbf9e4?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/4537d7e5-375e-4bb4-99e8-1b51b76afb71?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "5956b597-5704-4d0c-bae1-c68d9a4e5466" + "4afa5e48-9d92-4905-8594-b815f65d0681" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192706Z:5956b597-5704-4d0c-bae1-c68d9a4e5466" + "WESTUS:20150813T072757Z:4afa5e48-9d92-4905-8594-b815f65d0681" ], "Date": [ - "Tue, 28 Apr 2015 19:27:06 GMT" + "Thu, 13 Aug 2015 07:27:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/d8805639-0c93-4f1a-9e5e-063716cbf9e4?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDg4MDU2MzktMGM5My00ZjFhLTllNWUtMDYzNzE2Y2JmOWU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/4537d7e5-375e-4bb4-99e8-1b51b76afb71?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUzN2Q3ZTUtMzc1ZS00YmI0LTk5ZTgtMWI1MWI3NmFmYjcxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1704d44e-4448-4af6-9d22-4d4d1e78d954" + ], + "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": [ + "edbe5734-f99c-4770-935d-76b7a841ac5c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T072757Z:edbe5734-f99c-4770-935d-76b7a841ac5c" + ], + "Date": [ + "Thu, 13 Aug 2015 07:27:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/4537d7e5-375e-4bb4-99e8-1b51b76afb71?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUzN2Q3ZTUtMzc1ZS00YmI0LTk5ZTgtMWI1MWI3NmFmYjcxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "937c781f-5d00-4ade-953f-4d837b765ced" + "1e0da595-f221-4033-b760-bfc442190a94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14992" ], "x-ms-correlation-request-id": [ - "1b740fec-1643-4589-bd64-becdc3ccf731" + "f5e4b9ac-f5b9-4967-8bf5-7e3374a9715f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192707Z:1b740fec-1643-4589-bd64-becdc3ccf731" + "WESTUS:20150813T072807Z:f5e4b9ac-f5b9-4967-8bf5-7e3374a9715f" ], "Date": [ - "Tue, 28 Apr 2015 19:27:06 GMT" + "Thu, 13 Aug 2015 07:28:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcxODQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps2696' under resource group 'crptestps2696' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "f19ba764-4781-4b75-9dc6-b016830eeece" + "8f4f048c-419d-4ffa-8a37-e52c940f0d7e" ], "x-ms-correlation-request-id": [ - "f19ba764-4781-4b75-9dc6-b016830eeece" + "8f4f048c-419d-4ffa-8a37-e52c940f0d7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192707Z:f19ba764-4781-4b75-9dc6-b016830eeece" + "WESTUS:20150813T072807Z:8f4f048c-419d-4ffa-8a37-e52c940f0d7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +672,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:27:06 GMT" + "Thu, 13 Aug 2015 07:28:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcxODQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184\",\r\n \"etag\": \"W/\\\"49580b67-00ad-42e2-96e1-653ffaeeaa2d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7184\",\r\n \"fqdn\": \"pubippstestrg7184.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\",\r\n \"etag\": \"W/\\\"208d698e-76cc-489c-8783-581d7f0b85ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"010c1f15-96ff-406f-9655-2d1ca132e779\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2696\",\r\n \"fqdn\": \"pubipcrptestps2696.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "71b3defa-fcd6-4c9a-a39c-48b27b8d1954" + "5c8383ce-d564-45f2-a62a-2e3289f0f38c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"49580b67-00ad-42e2-96e1-653ffaeeaa2d\"" + "W/\"208d698e-76cc-489c-8783-581d7f0b85ad\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14987" ], "x-ms-correlation-request-id": [ - "990ae7a6-5600-41b7-955c-5dfe0d008a3b" + "3f8b9c93-180c-47ea-88b0-d41914938a55" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192708Z:990ae7a6-5600-41b7-955c-5dfe0d008a3b" + "WESTUS:20150813T072809Z:3f8b9c93-180c-47ea-88b0-d41914938a55" ], "Date": [ - "Tue, 28 Apr 2015 19:27:08 GMT" + "Thu, 13 Aug 2015 07:28:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcxODQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184\",\r\n \"etag\": \"W/\\\"49580b67-00ad-42e2-96e1-653ffaeeaa2d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7184\",\r\n \"fqdn\": \"pubippstestrg7184.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\",\r\n \"etag\": \"W/\\\"208d698e-76cc-489c-8783-581d7f0b85ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"010c1f15-96ff-406f-9655-2d1ca132e779\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2696\",\r\n \"fqdn\": \"pubipcrptestps2696.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "1db86e86-b65f-4a1d-b124-e6be0d6e91f0" + "b9117bf5-fc40-42cd-a7cc-05236fbf89da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +766,47 @@ "no-cache" ], "ETag": [ - "W/\"49580b67-00ad-42e2-96e1-653ffaeeaa2d\"" + "W/\"208d698e-76cc-489c-8783-581d7f0b85ad\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14986" ], "x-ms-correlation-request-id": [ - "c4c26445-6816-455c-9dfe-cb10a8320136" + "d7653875-bc57-4309-b6b0-728d09d19c56" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192709Z:c4c26445-6816-455c-9dfe-cb10a8320136" + "WESTUS:20150813T072809Z:d7653875-bc57-4309-b6b0-728d09d19c56" ], "Date": [ - "Tue, 28 Apr 2015 19:27:08 GMT" + "Thu, 13 Aug 2015 07:28:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcxODQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7184\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg7184\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2696\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps2696\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "254" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184\",\r\n \"etag\": \"W/\\\"4b02f269-8a51-4294-8fcc-7b0cfd5e9552\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7184\",\r\n \"fqdn\": \"pubippstestrg7184.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\",\r\n \"etag\": \"W/\\\"57c9b0a4-c441-47b6-a637-992da7410c24\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"010c1f15-96ff-406f-9655-2d1ca132e779\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2696\",\r\n \"fqdn\": \"pubipcrptestps2696.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "62b25bad-1f77-445d-a1ca-7ac24a2d7764" + "c74789de-387b-4d78-ab03-ff4e585f3ec9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/62b25bad-1f77-445d-a1ca-7ac24a2d7764?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c74789de-387b-4d78-ab03-ff4e585f3ec9?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "5d3e78c2-8c24-4c73-b82d-af304001f6ba" + "05bede91-c888-4972-baae-eb69c7d02f17" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192708Z:5d3e78c2-8c24-4c73-b82d-af304001f6ba" + "WESTUS:20150813T072808Z:05bede91-c888-4972-baae-eb69c7d02f17" ], "Date": [ - "Tue, 28 Apr 2015 19:27:08 GMT" + "Thu, 13 Aug 2015 07:28:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/62b25bad-1f77-445d-a1ca-7ac24a2d7764?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjJiMjViYWQtMWY3Ny00NDVkLWExY2EtN2FjMjRhMmQ3NzY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c74789de-387b-4d78-ab03-ff4e585f3ec9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzc0Nzg5ZGUtMzg3Yi00ZDc4LWFiMDMtZmY0ZTU4NWYzZWM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +879,7 @@ "no-cache" ], "x-ms-request-id": [ - "0e598d17-ab5f-4467-9690-aa904a23aae2" + "1f43f645-8634-414f-a080-293aa7b1cfc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +892,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14988" ], "x-ms-correlation-request-id": [ - "82b97f26-183f-4064-9014-6979ab93cb75" + "9986ec6f-8176-455d-8a12-e1d4e402751c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192708Z:82b97f26-183f-4064-9014-6979ab93cb75" + "WESTUS:20150813T072809Z:9986ec6f-8176-455d-8a12-e1d4e402751c" ], "Date": [ - "Tue, 28 Apr 2015 19:27:08 GMT" + "Thu, 13 Aug 2015 07:28:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MTg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,10 +916,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps2696' under resource group 'crptestps2696' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,13 +934,13 @@ "gateway" ], "x-ms-request-id": [ - "505ee4c4-41dd-46f5-b8c0-8f585cd8fd73" + "b9995964-6e41-46ef-afce-4f5b28ca4fc7" ], "x-ms-correlation-request-id": [ - "505ee4c4-41dd-46f5-b8c0-8f585cd8fd73" + "b9995964-6e41-46ef-afce-4f5b28ca4fc7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192709Z:505ee4c4-41dd-46f5-b8c0-8f585cd8fd73" + "WESTUS:20150813T072809Z:b9995964-6e41-46ef-afce-4f5b28ca4fc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +949,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:27:08 GMT" + "Thu, 13 Aug 2015 07:28:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MTg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184\",\r\n \"etag\": \"W/\\\"73325d5d-b273-45bf-872b-7d57b35c38a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"73325d5d-b273-45bf-872b-7d57b35c38a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184/subnets/subnetpstestrg7184\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"288a6c97-f353-431a-99cf-e8483097e049\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "6cf92610-1eba-4adb-9a31-b30b0f19b114" + "973a0d6e-94fb-453b-adb7-b46773f905ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +988,30 @@ "no-cache" ], "ETag": [ - "W/\"73325d5d-b273-45bf-872b-7d57b35c38a9\"" + "W/\"40065fe5-48b7-46da-92a2-90b94bd85567\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14983" ], "x-ms-correlation-request-id": [ - "4e10d95f-df5c-491f-9923-eadfde8a83ed" + "a959b391-ddd6-440e-9c84-b08fad1fb7a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192709Z:4e10d95f-df5c-491f-9923-eadfde8a83ed" + "WESTUS:20150813T072810Z:a959b391-ddd6-440e-9c84-b08fad1fb7a4" ], "Date": [ - "Tue, 28 Apr 2015 19:27:09 GMT" + "Thu, 13 Aug 2015 07:28:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MTg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184\",\r\n \"etag\": \"W/\\\"73325d5d-b273-45bf-872b-7d57b35c38a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"73325d5d-b273-45bf-872b-7d57b35c38a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184/subnets/subnetpstestrg7184\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"288a6c97-f353-431a-99cf-e8483097e049\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "7da5841b-350f-4da7-af9f-9d8680f76864" + "23dd2790-c9d0-4d9c-b9af-dab8f001d5e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,47 +1043,47 @@ "no-cache" ], "ETag": [ - "W/\"73325d5d-b273-45bf-872b-7d57b35c38a9\"" + "W/\"40065fe5-48b7-46da-92a2-90b94bd85567\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14982" ], "x-ms-correlation-request-id": [ - "e7323dc0-670c-48c5-abfe-f841bca775e4" + "2440e877-fdd0-49d5-8220-2cbd78cf37e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192710Z:e7323dc0-670c-48c5-abfe-f841bca775e4" + "WESTUS:20150813T072810Z:2440e877-fdd0-49d5-8220-2cbd78cf37e1" ], "Date": [ - "Tue, 28 Apr 2015 19:27:09 GMT" + "Thu, 13 Aug 2015 07:28:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MTg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184/subnets/subnetpstestrg7184\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg7184\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps2696\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "857" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7184\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184\",\r\n \"etag\": \"W/\\\"73325d5d-b273-45bf-872b-7d57b35c38a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"73325d5d-b273-45bf-872b-7d57b35c38a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7184\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7184/subnets/subnetpstestrg7184\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"288a6c97-f353-431a-99cf-e8483097e049\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -992,10 +1095,10 @@ "no-cache" ], "x-ms-request-id": [ - "a4121a86-139b-4c18-a236-3f5f9af19da3" + "833a9571-57d4-4b98-a82e-464480f98260" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a4121a86-139b-4c18-a236-3f5f9af19da3?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/833a9571-57d4-4b98-a82e-464480f98260?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "2a313447-220f-483e-b510-2a6fe734aeea" + "b05f7e68-36ce-4d18-8576-27d1ca64872f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192709Z:2a313447-220f-483e-b510-2a6fe734aeea" + "WESTUS:20150813T072809Z:b05f7e68-36ce-4d18-8576-27d1ca64872f" ], "Date": [ - "Tue, 28 Apr 2015 19:27:09 GMT" + "Thu, 13 Aug 2015 07:28:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a4121a86-139b-4c18-a236-3f5f9af19da3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTQxMjFhODYtMTM5Yi00YzE4LWEyMzYtM2Y1ZjlhZjE5ZGEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/833a9571-57d4-4b98-a82e-464480f98260?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMzYTk1NzEtNTdkNC00Yjk4LWE4MmUtNDY0NDgwZjk4MjYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,7 +1153,7 @@ "no-cache" ], "x-ms-request-id": [ - "1192ba9c-d343-4ed4-91f2-e9b10158351c" + "df4f0784-4485-4457-9557-a18d702b8ce7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14984" ], "x-ms-correlation-request-id": [ - "48a35ba9-da90-4edd-a753-ec712fd0280e" + "938232dd-c69f-4b49-b7ed-4ccd244aff1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192709Z:48a35ba9-da90-4edd-a753-ec712fd0280e" + "WESTUS:20150813T072809Z:938232dd-c69f-4b49-b7ed-4ccd244aff1a" ], "Date": [ - "Tue, 28 Apr 2015 19:27:09 GMT" + "Thu, 13 Aug 2015 07:28:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Storage/storageAccounts/stopstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzE4ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1090,7 +1193,7 @@ "88" ], "x-ms-client-request-id": [ - "ef7befd9-ae1c-4376-a812-bd43ea6186af" + "418ce801-ed25-4e3d-9c11-279971a6a985" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1114,44 +1217,44 @@ "25" ], "x-ms-request-id": [ - "534ae879-19a0-472a-858a-80bc434af2c2" + "e2389718-9dae-4733-bd7b-ec42250dfe1a" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/534ae879-19a0-472a-858a-80bc434af2c2?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/e2389718-9dae-4733-bd7b-ec42250dfe1a?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-correlation-request-id": [ - "a689ad7c-040c-4275-8822-a7987d77b9d4" + "67bde019-3025-4fec-9968-83e5531381a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192746Z:a689ad7c-040c-4275-8822-a7987d77b9d4" + "WESTUS:20150813T072812Z:67bde019-3025-4fec-9968-83e5531381a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:27:45 GMT" + "Thu, 13 Aug 2015 07:28:12 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/534ae879-19a0-472a-858a-80bc434af2c2?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzUzNGFlODc5LTE5YTAtNDcyYS04NThhLTgwYmM0MzRhZjJjMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/e2389718-9dae-4733-bd7b-ec42250dfe1a?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UyMzg5NzE4LTlkYWUtNDczMy1iZDdiLWVjNDIyNTBkZmUxYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be4c3afe-b253-4766-a101-0f8c3482cffd" + "3993028b-ed93-4ff1-9c6b-691008f6486c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1175,44 +1278,44 @@ "25" ], "x-ms-request-id": [ - "e55436cc-61e6-4e5a-9ead-25ef4b3e5d2f" + "efd1a467-4d61-428b-96a3-32c8799639eb" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/534ae879-19a0-472a-858a-80bc434af2c2?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/e2389718-9dae-4733-bd7b-ec42250dfe1a?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14930" ], "x-ms-correlation-request-id": [ - "42251f0b-5c5f-42ec-90b2-c07e8b605726" + "6e7e010d-c37f-4dc6-bb40-8aab9d989da1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192748Z:42251f0b-5c5f-42ec-90b2-c07e8b605726" + "WESTUS:20150813T072813Z:6e7e010d-c37f-4dc6-bb40-8aab9d989da1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:27:48 GMT" + "Thu, 13 Aug 2015 07:28:12 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/534ae879-19a0-472a-858a-80bc434af2c2?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzUzNGFlODc5LTE5YTAtNDcyYS04NThhLTgwYmM0MzRhZjJjMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/e2389718-9dae-4733-bd7b-ec42250dfe1a?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UyMzg5NzE4LTlkYWUtNDczMy1iZDdiLWVjNDIyNTBkZmUxYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f5023a7-639d-40d5-9c07-5e179f92a369" + "7e556e42-beb4-4337-9b97-1839fca2ee36" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1233,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "67a54035-082f-421a-8f8e-b407f4d3c3ad" + "ca307f20-be5a-4947-ba40-098cd50921ce" ], "Cache-Control": [ "no-cache" @@ -1243,40 +1346,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14929" ], "x-ms-correlation-request-id": [ - "438941ff-1464-48c9-8fff-0c8d2ca8aa1d" + "fadaa47a-de50-4ffd-b0be-12a5f505a90d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192814Z:438941ff-1464-48c9-8fff-0c8d2ca8aa1d" + "WESTUS:20150813T072838Z:fadaa47a-de50-4ffd-b0be-12a5f505a90d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:28:13 GMT" + "Thu, 13 Aug 2015 07:28:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Storage/storageAccounts/stopstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzE4ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b016bbc-30c8-4e88-8971-6e8758ad2774" + "ccbc9cd1-ba40-4e56-85ac-7f7c43cdb7f6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Storage/storageAccounts/stopstestrg7184\",\r\n \"name\": \"stopstestrg7184\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7184.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7184.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7184.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T19:27:29.4439493Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696\",\r\n \"name\": \"stocrptestps2696\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2696.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2696.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2696.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:28:11.0681863Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1288,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "53fe19fc-1d3d-473b-ac71-af6f613d37ef" + "708450ab-77dc-405a-b0e3-87c987534105" ], "Cache-Control": [ "no-cache" @@ -1298,40 +1401,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14928" ], "x-ms-correlation-request-id": [ - "64a2079a-a96a-405e-af95-490937798684" + "58d3cec4-a5fa-4265-b936-19d4a66b5244" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192839Z:64a2079a-a96a-405e-af95-490937798684" + "WESTUS:20150813T072838Z:58d3cec4-a5fa-4265-b936-19d4a66b5244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:28:39 GMT" + "Thu, 13 Aug 2015 07:28:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Storage/storageAccounts/stopstestrg7184?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzE4ND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a18b6fa7-0297-4380-bec8-bd124f41cd89" + "d82fee53-56c8-4a41-87df-66d726905edd" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Storage/storageAccounts/stopstestrg7184\",\r\n \"name\": \"stopstestrg7184\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7184.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7184.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7184.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T19:27:29.4439493Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696\",\r\n \"name\": \"stocrptestps2696\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2696.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2696.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2696.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:28:11.0681863Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1343,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "146238e4-6cf4-4e3e-889f-d9ed633754a9" + "b3cc4d4c-9370-4163-8952-30417fdbbc26" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1456,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14927" ], "x-ms-correlation-request-id": [ - "dc11b0c7-a3a2-48ff-b264-7447ffd11693" + "990256be-f37e-4f6d-86c2-389137f9284e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192839Z:dc11b0c7-a3a2-48ff-b264-7447ffd11693" + "WESTUS:20150813T072838Z:990256be-f37e-4f6d-86c2-389137f9284e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 19:28:39 GMT" + "Thu, 13 Aug 2015 07:28:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,7 +1501,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c8fe626-7aa5-4da6-be48-2e3839354311" + "c5cdf47d-2038-43ed-bc9c-3eab445d9d7e" ], "Cache-Control": [ "no-cache" @@ -1408,31 +1511,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" + "14983" ], "x-ms-correlation-request-id": [ - "2b68cfbe-7b6d-4599-a53f-e94d1978f49b" + "b84d6733-5eb9-472e-a3a4-f31591b4acaf" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192838Z:2b68cfbe-7b6d-4599-a53f-e94d1978f49b" + "WESTUS:20150813T072838Z:b84d6733-5eb9-472e-a3a4-f31591b4acaf" ], "Date": [ - "Tue, 28 Apr 2015 19:28:38 GMT" + "Thu, 13 Aug 2015 07:28:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1450,7 +1553,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8016c87d-cd30-4523-a1a6-1a504ef1977f" + "6ed5ace7-3220-4414-9991-70db3822369b" ], "Cache-Control": [ "no-cache" @@ -1460,34 +1563,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "14982" ], "x-ms-correlation-request-id": [ - "85fe37b1-7855-457d-9616-312cf653d1f0" + "5ce3abb2-9be1-4e39-92c1-6c25e35c6230" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192839Z:85fe37b1-7855-457d-9616-312cf653d1f0" + "WESTUS:20150813T072839Z:5ce3abb2-9be1-4e39-92c1-6c25e35c6230" ], "Date": [ - "Tue, 28 Apr 2015 19:28:39 GMT" + "Thu, 13 Aug 2015 07:28:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1502,7 +1605,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3faa590c-637f-4fbe-945a-e552aa101ce8" + "b1809f6d-6d1e-423e-a608-eace479532ff" ], "Cache-Control": [ "no-cache" @@ -1512,34 +1615,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" + "14981" ], "x-ms-correlation-request-id": [ - "54eb3b3d-b438-4f9c-85cb-7d91df2a5ced" + "c733ecab-5357-44ef-9100-ca9cfbc1cb55" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192839Z:54eb3b3d-b438-4f9c-85cb-7d91df2a5ced" + "WESTUS:20150813T072839Z:c733ecab-5357-44ef-9100-ca9cfbc1cb55" ], "Date": [ - "Tue, 28 Apr 2015 19:28:39 GMT" + "Thu, 13 Aug 2015 07:28:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1554,7 +1657,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d066bbb9-b4c7-4d66-add2-ef400e5f9918" + "2e1f7859-228e-477c-95c9-7098b674b1ce" ], "Cache-Control": [ "no-cache" @@ -1564,31 +1667,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "14980" ], "x-ms-correlation-request-id": [ - "eee8e25e-03b8-442e-b529-63c676a9dffc" + "7ad22f01-8b8c-4261-9253-bee5224ee74d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192839Z:eee8e25e-03b8-442e-b529-63c676a9dffc" + "WESTUS:20150813T072839Z:7ad22f01-8b8c-4261-9253-bee5224ee74d" ], "Date": [ - "Tue, 28 Apr 2015 19:28:39 GMT" + "Thu, 13 Aug 2015 07:28:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1606,7 +1709,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7b25b70-a9c4-422b-a750-8ce3e7907c2a" + "7db72cd2-4a64-414a-9fd9-b44e652cd978" ], "Cache-Control": [ "no-cache" @@ -1616,34 +1719,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" + "14979" ], "x-ms-correlation-request-id": [ - "0a7744b8-b048-4492-acb4-021613befe14" + "87cf496c-18a0-45c8-91f2-d87db7328dac" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192839Z:0a7744b8-b048-4492-acb4-021613befe14" + "WESTUS:20150813T072839Z:87cf496c-18a0-45c8-91f2-d87db7328dac" ], "Date": [ - "Tue, 28 Apr 2015 19:28:39 GMT" + "Thu, 13 Aug 2015 07:28:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Compute/virtualMachines/vmpstestrg7184?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MTg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Compute/virtualMachines/vmcrptestps2696?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7184.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7184.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7184.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg7184\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7184/providers/Microsoft.Network/networkInterfaces/nicpstestrg7184\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7184\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2696.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2696.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2696.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps2696\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps2696\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1689" + "1681" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"dataDisk.lun\",\r\n \"message\": \"The maximum number of data disks allowed to be attached to a VM is 1.\"\r\n }\r\n}", @@ -1663,8 +1766,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "dbdf6d3a-12e5-4512-af71-239070df3a25" + "1bd7d186-0ec4-4ad6-9810-10a0c8ae7764" ], "Cache-Control": [ "no-cache" @@ -1674,23 +1780,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "e2c0d5bb-a2b8-420c-bc36-49429c53aadf" + "b2dd7e3c-64b9-46a6-be7d-6a9d82301e48" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192841Z:e2c0d5bb-a2b8-420c-bc36-49429c53aadf" + "WESTUS:20150813T072840Z:b2dd7e3c-64b9-46a6-be7d-6a9d82301e48" ], "Date": [ - "Tue, 28 Apr 2015 19:28:41 GMT" + "Thu, 13 Aug 2015 07:28:40 GMT" ] }, "StatusCode": 400 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7184?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzE4ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1713,232 +1819,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "b71b158d-2b8c-4211-af8d-27bedce321e9" - ], - "x-ms-correlation-request-id": [ - "b71b158d-2b8c-4211-af8d-27bedce321e9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192842Z:b71b158d-2b8c-4211-af8d-27bedce321e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:28:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" - ], - "x-ms-request-id": [ - "b5c3fd8b-4749-4474-84d3-efc65097aff4" - ], - "x-ms-correlation-request-id": [ - "b5c3fd8b-4749-4474-84d3-efc65097aff4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192842Z:b5c3fd8b-4749-4474-84d3-efc65097aff4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:28:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" - ], - "x-ms-request-id": [ - "34a414e1-7ed2-415b-8c22-7c14fc1565cf" - ], - "x-ms-correlation-request-id": [ - "34a414e1-7ed2-415b-8c22-7c14fc1565cf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192857Z:34a414e1-7ed2-415b-8c22-7c14fc1565cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:28:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" - ], - "x-ms-request-id": [ - "aa071ae8-0a3b-47c7-88ad-2a1216f160d5" - ], - "x-ms-correlation-request-id": [ - "aa071ae8-0a3b-47c7-88ad-2a1216f160d5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T192912Z:aa071ae8-0a3b-47c7-88ad-2a1216f160d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 19:29:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "1191" ], "x-ms-request-id": [ - "ee09d23b-6270-435f-b457-b9d8a86afc83" + "73b7e18b-6485-4f6c-b3ab-fbced65f6b5b" ], "x-ms-correlation-request-id": [ - "ee09d23b-6270-435f-b457-b9d8a86afc83" + "73b7e18b-6485-4f6c-b3ab-fbced65f6b5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192928Z:ee09d23b-6270-435f-b457-b9d8a86afc83" + "WESTUS:20150813T072840Z:73b7e18b-6485-4f6c-b3ab-fbced65f6b5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1947,17 +1837,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:29:28 GMT" + "Thu, 13 Aug 2015 07:28:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,16 +1873,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14940" ], "x-ms-request-id": [ - "e9b673a0-c6ac-41b5-b5f6-7a23390ce762" + "a07f8d20-3dbc-40fa-94fe-d79c61e8e940" ], "x-ms-correlation-request-id": [ - "e9b673a0-c6ac-41b5-b5f6-7a23390ce762" + "a07f8d20-3dbc-40fa-94fe-d79c61e8e940" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T192944Z:e9b673a0-c6ac-41b5-b5f6-7a23390ce762" + "WESTUS:20150813T072840Z:a07f8d20-3dbc-40fa-94fe-d79c61e8e940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,17 +1891,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:29:44 GMT" + "Thu, 13 Aug 2015 07:28:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2037,16 +1927,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14939" ], "x-ms-request-id": [ - "a62a39bf-3ab2-4f35-b572-d17093a4b433" + "abde617f-18d8-489d-b121-2a9c0dbf5388" ], "x-ms-correlation-request-id": [ - "a62a39bf-3ab2-4f35-b572-d17093a4b433" + "abde617f-18d8-489d-b121-2a9c0dbf5388" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T193000Z:a62a39bf-3ab2-4f35-b572-d17093a4b433" + "WESTUS:20150813T072855Z:abde617f-18d8-489d-b121-2a9c0dbf5388" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2055,17 +1945,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:30:00 GMT" + "Thu, 13 Aug 2015 07:28:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2091,16 +1981,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14938" ], "x-ms-request-id": [ - "9eff055a-bd0f-4d79-aa34-0a16dd7363e0" + "a0e84670-83ff-4616-8888-0c90bb94ba6e" ], "x-ms-correlation-request-id": [ - "9eff055a-bd0f-4d79-aa34-0a16dd7363e0" + "a0e84670-83ff-4616-8888-0c90bb94ba6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T193019Z:9eff055a-bd0f-4d79-aa34-0a16dd7363e0" + "WESTUS:20150813T072910Z:a0e84670-83ff-4616-8888-0c90bb94ba6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,17 +1999,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:30:18 GMT" + "Thu, 13 Aug 2015 07:29:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,16 +2035,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "14937" ], "x-ms-request-id": [ - "974eed02-e7fd-40bb-9c16-6cde9f1b9716" + "ce457149-e146-4681-baa8-a3381fa3eb61" ], "x-ms-correlation-request-id": [ - "974eed02-e7fd-40bb-9c16-6cde9f1b9716" + "ce457149-e146-4681-baa8-a3381fa3eb61" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T193035Z:974eed02-e7fd-40bb-9c16-6cde9f1b9716" + "WESTUS:20150813T072925Z:ce457149-e146-4681-baa8-a3381fa3eb61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2163,17 +2053,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:30:35 GMT" + "Thu, 13 Aug 2015 07:29:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2199,16 +2089,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14936" ], "x-ms-request-id": [ - "30bb5d0c-4520-4d03-89b4-7e0f0321a7a5" + "006b5117-07cd-4a38-a606-3ea8558e4284" ], "x-ms-correlation-request-id": [ - "30bb5d0c-4520-4d03-89b4-7e0f0321a7a5" + "006b5117-07cd-4a38-a606-3ea8558e4284" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T193051Z:30bb5d0c-4520-4d03-89b4-7e0f0321a7a5" + "WESTUS:20150813T072940Z:006b5117-07cd-4a38-a606-3ea8558e4284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2217,17 +2107,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:30:50 GMT" + "Thu, 13 Aug 2015 07:29:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2253,16 +2143,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "14935" ], "x-ms-request-id": [ - "7d1b365b-9548-4ca8-9320-750124aefbd9" + "e0a7309c-6a91-4e0a-872f-0e2770447e61" ], "x-ms-correlation-request-id": [ - "7d1b365b-9548-4ca8-9320-750124aefbd9" + "e0a7309c-6a91-4e0a-872f-0e2770447e61" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T193109Z:7d1b365b-9548-4ca8-9320-750124aefbd9" + "WESTUS:20150813T072955Z:e0a7309c-6a91-4e0a-872f-0e2770447e61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,17 +2161,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:31:09 GMT" + "Thu, 13 Aug 2015 07:29:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2307,16 +2197,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "14934" ], "x-ms-request-id": [ - "aef87aed-89f9-4a5b-b588-bb8c1d7a187b" + "137e58e3-3891-4e1c-89ea-b972e83aea21" ], "x-ms-correlation-request-id": [ - "aef87aed-89f9-4a5b-b588-bb8c1d7a187b" + "137e58e3-3891-4e1c-89ea-b972e83aea21" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T193126Z:aef87aed-89f9-4a5b-b588-bb8c1d7a187b" + "WESTUS:20150813T073010Z:137e58e3-3891-4e1c-89ea-b972e83aea21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2325,17 +2215,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:31:26 GMT" + "Thu, 13 Aug 2015 07:30:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcxODQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN4T0RRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2358,16 +2248,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "14933" ], "x-ms-request-id": [ - "d2515408-4dae-48e1-ba41-288933cbbf07" + "a239b237-e92a-4d7d-8e53-2f2c6ffd5913" ], "x-ms-correlation-request-id": [ - "d2515408-4dae-48e1-ba41-288933cbbf07" + "a239b237-e92a-4d7d-8e53-2f2c6ffd5913" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T193148Z:d2515408-4dae-48e1-ba41-288933cbbf07" + "WESTUS:20150813T073025Z:a239b237-e92a-4d7d-8e53-2f2c6ffd5913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2376,7 +2266,7 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 19:31:48 GMT" + "Thu, 13 Aug 2015 07:30:25 GMT" ] }, "StatusCode": 200 @@ -2384,12 +2274,12 @@ ], "Names": { "Test-VirtualMachineDataDisk": [ - "pstestrg7184" + "crptestps2696" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json index 60d12365d8e6..1c3a67eb4bb8 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json @@ -1,19 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "14425" + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "f2de2b5e-10cd-4f78-ab4b-e1b13a4ff3dd" + ], + "x-ms-correlation-request-id": [ + "f2de2b5e-10cd-4f78-ab4b-e1b13a4ff3dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073116Z:f2de2b5e-10cd-4f78-ab4b-e1b13a4ff3dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +76,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bdb54349-5592-4ab5-8f37-28c2fb1fe5f4" + "369af78a-ed64-49ad-9609-61e6cbe801ea" ], "Cache-Control": [ "no-cache" @@ -38,34 +86,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14989" ], "x-ms-correlation-request-id": [ - "ff54a43d-efd4-4b26-b0bc-1f7910d224aa" + "afa51d05-f73e-4024-9cc2-99b94732fdc7" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204407Z:ff54a43d-efd4-4b26-b0bc-1f7910d224aa" + "WESTUS:20150813T073117Z:afa51d05-f73e-4024-9cc2-99b94732fdc7" ], "Date": [ - "Tue, 28 Apr 2015 20:44:07 GMT" + "Thu, 13 Aug 2015 07:31:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -80,7 +128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56ef0666-93b7-4d85-9214-f056b2e503f6" + "2a63e6de-f062-42c0-a326-275e38aaad65" ], "Cache-Control": [ "no-cache" @@ -90,34 +138,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" + "14937" ], "x-ms-correlation-request-id": [ - "db3bb34b-fc76-48ac-b7fe-cc0dbdd63395" + "0928e84c-9eb1-4989-903e-0e72893afcb7" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204448Z:db3bb34b-fc76-48ac-b7fe-cc0dbdd63395" + "WESTUS:20150813T073125Z:0928e84c-9eb1-4989-903e-0e72893afcb7" ], "Date": [ - "Tue, 28 Apr 2015 20:44:48 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,7 +180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9de6d160-25e0-43fd-80aa-e21c5ece722d" + "46af9f39-0f44-4f2c-9b7b-861712e498f2" ], "Cache-Control": [ "no-cache" @@ -142,34 +190,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31904" + "14867" ], "x-ms-correlation-request-id": [ - "f8b4f54b-32c4-4be6-ba47-4680756f521d" + "9afbf826-de2f-4209-af20-f064acfa760b" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204535Z:f8b4f54b-32c4-4be6-ba47-4680756f521d" + "WESTUS:20150813T073133Z:9afbf826-de2f-4209-af20-f064acfa760b" ], "Date": [ - "Tue, 28 Apr 2015 20:45:34 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,7 +232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39163a63-e1e4-49a4-9881-a350b03320af" + "0111e12a-8c9a-4235-9197-28bcf042d5d5" ], "Cache-Control": [ "no-cache" @@ -194,28 +242,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31893" + "14856" ], "x-ms-correlation-request-id": [ - "0a68c754-77e2-4ae6-acf7-702ded14923f" + "0f09b18a-6fc5-436c-8ed8-cafe94b8d8e7" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204545Z:0a68c754-77e2-4ae6-acf7-702ded14923f" + "WESTUS:20150813T073134Z:0f09b18a-6fc5-436c-8ed8-cafe94b8d8e7" ], "Date": [ - "Tue, 28 Apr 2015 20:45:44 GMT" + "Thu, 13 Aug 2015 07:31:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Chef.Bootstrap.WindowsAzure/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2hlZi5Cb290c3RyYXAuV2luZG93c0F6dXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Chef.Bootstrap.WindowsAzure/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2hlZi5Cb290c3RyYXAuV2luZG93c0F6dXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -236,7 +284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bf438c2-4982-4afc-801f-03a84e55c4e6" + "9f2ab59a-f465-450d-9fb7-81e928be3a99" ], "Cache-Control": [ "no-cache" @@ -246,28 +294,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14988" ], "x-ms-correlation-request-id": [ - "18b95df6-bcea-45e2-87f3-708530758849" + "c039f476-3b9b-4f9b-a059-abbcf2713c6d" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204409Z:18b95df6-bcea-45e2-87f3-708530758849" + "WESTUS:20150813T073118Z:c039f476-3b9b-4f9b-a059-abbcf2713c6d" ], "Date": [ - "Tue, 28 Apr 2015 20:44:08 GMT" + "Thu, 13 Aug 2015 07:31:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.WindowsAzure.Compute/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3NBenVyZS5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.WindowsFabric.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLldpbmRvd3NGYWJyaWMuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -288,7 +336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f951937b-4ea2-4c42-8459-737e5a64894b" + "eea805d4-3786-42ef-945b-5d04d2b63a5d" ], "Cache-Control": [ "no-cache" @@ -298,34 +346,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14987" ], "x-ms-correlation-request-id": [ - "1b18b627-ec41-437a-b50e-0facae8f6bc1" + "48bef101-c3b7-43da-8cf9-2940eecf56ae" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204410Z:1b18b627-ec41-437a-b50e-0facae8f6bc1" + "WESTUS:20150813T073118Z:48bef101-c3b7-43da-8cf9-2940eecf56ae" ], "Date": [ - "Tue, 28 Apr 2015 20:44:09 GMT" + "Thu, 13 Aug 2015 07:31:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows.AzureRemoteApp.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuQXp1cmVSZW1vdGVBcHAuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "258" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -340,7 +388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b900fe8-79da-495b-b798-1f5feba2db7f" + "b407c55e-630b-49bb-a142-34b8c45e9c84" ], "Cache-Control": [ "no-cache" @@ -350,34 +398,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14986" ], "x-ms-correlation-request-id": [ - "28c9909b-5df2-49fe-bb69-81fd4cf8a91c" + "5b8b55d4-e54a-4ca3-a750-390d9f124e94" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204410Z:28c9909b-5df2-49fe-bb69-81fd4cf8a91c" + "WESTUS:20150813T073118Z:5b8b55d4-e54a-4ca3-a750-390d9f124e94" ], "Date": [ - "Tue, 28 Apr 2015 20:44:10 GMT" + "Thu, 13 Aug 2015 07:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows.RemoteDesktop/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuUmVtb3RlRGVza3RvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "258" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -392,7 +440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03a7d43f-6b5e-4cd2-a0f0-9d4073a7d331" + "be323baa-39c1-4e4c-8f4e-d98f2d41da61" ], "Cache-Control": [ "no-cache" @@ -402,34 +450,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31954" + "14985" ], "x-ms-correlation-request-id": [ - "04d4ec03-84e8-4cb0-b3b8-7a98027b3f19" + "8c61fa8f-5b0b-41d7-b3e5-284cdf68716d" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204449Z:04d4ec03-84e8-4cb0-b3b8-7a98027b3f19" + "WESTUS:20150813T073118Z:8c61fa8f-5b0b-41d7-b3e5-284cdf68716d" ], "Date": [ - "Tue, 28 Apr 2015 20:44:49 GMT" + "Thu, 13 Aug 2015 07:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.WindowsAzure.Compute/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3NBenVyZS5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "1147" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,7 +492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb5eb83f-a41b-47dd-afcd-4eea7e0bb286" + "c3980082-23a9-439b-ad3b-afdcc23634aa" ], "Cache-Control": [ "no-cache" @@ -454,34 +502,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14984" ], "x-ms-correlation-request-id": [ - "8a8beff6-ad58-4e83-be8c-a58dae1811b0" + "83c4d38c-76fc-49fa-b62e-e8ef3e4926b6" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204411Z:8a8beff6-ad58-4e83-be8c-a58dae1811b0" + "WESTUS:20150813T073119Z:83c4d38c-76fc-49fa-b62e-e8ef3e4926b6" ], "Date": [ - "Tue, 28 Apr 2015 20:44:10 GMT" + "Thu, 13 Aug 2015 07:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -496,7 +544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "baafc3b5-d543-47e6-8ac9-fb3cd9fe7fb0" + "16e987f9-9640-474c-8013-f0b51a6c1daa" ], "Cache-Control": [ "no-cache" @@ -506,34 +554,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" + "14983" ], "x-ms-correlation-request-id": [ - "e24eded6-0511-4f73-a001-de763410c27d" + "1fa1434a-0dcc-4724-aeea-a8520043c9d0" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204450Z:e24eded6-0511-4f73-a001-de763410c27d" + "WESTUS:20150813T073119Z:1fa1434a-0dcc-4724-aeea-a8520043c9d0" ], "Date": [ - "Tue, 28 Apr 2015 20:44:50 GMT" + "Thu, 13 Aug 2015 07:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -548,7 +596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09bd14f1-30d2-4b9e-a582-70b79ac31bf6" + "af8034b9-bb06-4611-a099-0a756ae8306c" ], "Cache-Control": [ "no-cache" @@ -558,34 +606,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14936" ], "x-ms-correlation-request-id": [ - "e511e1e0-31bb-4588-bb27-c1b15f890aad" + "ef525e13-18de-4cb3-be3e-ee31f1ac86ec" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204412Z:e511e1e0-31bb-4588-bb27-c1b15f890aad" + "WESTUS:20150813T073125Z:ef525e13-18de-4cb3-be3e-ee31f1ac86ec" ], "Date": [ - "Tue, 28 Apr 2015 20:44:12 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,7 +648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09db605e-3291-47b5-ab32-e0d7b25c735a" + "885cd66b-6e35-477b-b5b2-d10324bcc9a2" ], "Cache-Control": [ "no-cache" @@ -610,34 +658,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" + "14982" ], "x-ms-correlation-request-id": [ - "42426cb7-66f1-4056-9928-796817cd8862" + "017e9ab9-3ff6-48de-b617-4dca2bd64f50" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204451Z:42426cb7-66f1-4056-9928-796817cd8862" + "WESTUS:20150813T073119Z:017e9ab9-3ff6-48de-b617-4dca2bd64f50" ], "Date": [ - "Tue, 28 Apr 2015 20:44:50 GMT" + "Thu, 13 Aug 2015 07:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1Jm5hbWUlMjAtZXElMjAq", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -652,7 +700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ce9c40c-7e05-4de0-872e-b043a953c67a" + "719513c5-e901-4c1f-9204-9ca79de351e4" ], "Cache-Control": [ "no-cache" @@ -662,34 +710,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14935" ], "x-ms-correlation-request-id": [ - "3962d4a3-34e2-4a22-a21e-341f7fc95639" + "33edcbfc-54c1-42e3-80ae-6cbefedd3984" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204413Z:3962d4a3-34e2-4a22-a21e-341f7fc95639" + "WESTUS:20150813T073125Z:33edcbfc-54c1-42e3-80ae-6cbefedd3984" ], "Date": [ - "Tue, 28 Apr 2015 20:44:13 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "393" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -704,7 +752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e16bea5e-e75b-40da-8070-da711d704556" + "b0f91278-6fdb-4205-bf12-d4707a7f4f47" ], "Cache-Control": [ "no-cache" @@ -714,34 +762,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14981" ], "x-ms-correlation-request-id": [ - "95a7c0f9-01ac-4d84-b08d-8eed4a4e4f5b" + "72242969-e1ab-4771-aea5-8618e00bd8ae" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204414Z:95a7c0f9-01ac-4d84-b08d-8eed4a4e4f5b" + "WESTUS:20150813T073119Z:72242969-e1ab-4771-aea5-8618e00bd8ae" ], "Date": [ - "Tue, 28 Apr 2015 20:44:14 GMT" + "Thu, 13 Aug 2015 07:31:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "393" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,7 +804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd71cc9e-a2f4-46d2-94b6-cf36abdbcf4b" + "5ff8245d-e773-4dc8-a7c4-855f43875e99" ], "Cache-Control": [ "no-cache" @@ -766,34 +814,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" + "14934" ], "x-ms-correlation-request-id": [ - "c3d706ff-43c0-4c32-b805-9f230e5359e0" + "3c74e134-aa24-4ecb-84e9-c2acfefefde5" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204452Z:c3d706ff-43c0-4c32-b805-9f230e5359e0" + "WESTUS:20150813T073125Z:3c74e134-aa24-4ecb-84e9-c2acfefefde5" ], "Date": [ - "Tue, 28 Apr 2015 20:44:51 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1Jm5hbWUlMjAtZXElMjAq", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "393" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -808,7 +856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d9919af8-6895-4e62-a213-70ba702fea0b" + "7b29b6de-ea40-4fb3-8015-2291b2286b91" ], "Cache-Control": [ "no-cache" @@ -818,31 +866,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14980" ], "x-ms-correlation-request-id": [ - "ff02c6a7-4afb-4427-8393-3a7e4119c63d" + "00b8bf02-cee6-4a55-845e-57127064fa38" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204415Z:ff02c6a7-4afb-4427-8393-3a7e4119c63d" + "WESTUS:20150813T073119Z:00b8bf02-cee6-4a55-845e-57127064fa38" ], "Date": [ - "Tue, 28 Apr 2015 20:44:15 GMT" + "Thu, 13 Aug 2015 07:31:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -860,7 +908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72e65688-7a83-4760-a18a-1fa92155270d" + "f7916d28-3d5e-4419-b534-640b3ccc5eeb" ], "Cache-Control": [ "no-cache" @@ -870,34 +918,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" + "14979" ], "x-ms-correlation-request-id": [ - "07313f5f-1027-4968-941b-3ddc5f6534cc" + "8ae42f5c-72ae-4e2a-b9db-6b74421f1fa5" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204452Z:07313f5f-1027-4968-941b-3ddc5f6534cc" + "WESTUS:20150813T073119Z:8ae42f5c-72ae-4e2a-b9db-6b74421f1fa5" ], "Date": [ - "Tue, 28 Apr 2015 20:44:52 GMT" + "Thu, 13 Aug 2015 07:31:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "589" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -912,7 +960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d606e4bb-b5e4-4d36-a2b4-408f74f9e04d" + "17a74f78-17b9-4cc3-8b22-52a68f408ce1" ], "Cache-Control": [ "no-cache" @@ -922,34 +970,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14933" ], "x-ms-correlation-request-id": [ - "afc29357-5d0d-4873-9de2-e873045ee9e4" + "e6498b5e-43d0-4421-aa0a-c08fa1d6752d" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204416Z:afc29357-5d0d-4873-9de2-e873045ee9e4" + "WESTUS:20150813T073125Z:e6498b5e-43d0-4421-aa0a-c08fa1d6752d" ], "Date": [ - "Tue, 28 Apr 2015 20:44:15 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "589" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -964,7 +1012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eac15931-dfbc-4bbf-9292-d30899d31c82" + "33e87ee3-e2e6-43cc-839d-ab1182252f2b" ], "Cache-Control": [ "no-cache" @@ -974,34 +1022,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" + "14978" ], "x-ms-correlation-request-id": [ - "8b7c5684-8a50-4402-ae07-79f4783aadd2" + "f187fd40-dfd4-432c-97e0-8baf55197c02" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204453Z:8b7c5684-8a50-4402-ae07-79f4783aadd2" + "WESTUS:20150813T073120Z:f187fd40-dfd4-432c-97e0-8baf55197c02" ], "Date": [ - "Tue, 28 Apr 2015 20:44:53 GMT" + "Thu, 13 Aug 2015 07:31:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSZuYW1lJTIwLWVxJTIwKg==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "589" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1016,7 +1064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "266b1f7b-3081-47fa-9acb-8df87cd0e93b" + "841f2d7b-e738-4c7f-a094-4741b70339e9" ], "Cache-Control": [ "no-cache" @@ -1026,31 +1074,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14932" ], "x-ms-correlation-request-id": [ - "860e0f1f-2276-44f5-bbb4-fc7537ec68ec" + "79238174-d2dc-4e1a-9200-2422d5f806aa" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204417Z:860e0f1f-2276-44f5-bbb4-fc7537ec68ec" + "WESTUS:20150813T073126Z:79238174-d2dc-4e1a-9200-2422d5f806aa" ], "Date": [ - "Tue, 28 Apr 2015 20:44:16 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA3MjY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ "397" @@ -1068,7 +1116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6744f324-1357-4243-9d72-23acdac13098" + "c189b445-b3c6-48c8-93e4-6dbbda9393cd" ], "Cache-Control": [ "no-cache" @@ -1078,31 +1126,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14977" ], "x-ms-correlation-request-id": [ - "b0322786-11cb-429b-a28c-6a7b12d9f071" + "8ad9daad-08b6-4697-81a7-41337f82875a" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204418Z:b0322786-11cb-429b-a28c-6a7b12d9f071" + "WESTUS:20150813T073120Z:8ad9daad-08b6-4697-81a7-41337f82875a" ], "Date": [ - "Tue, 28 Apr 2015 20:44:17 GMT" + "Thu, 13 Aug 2015 07:31:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA3MjY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ "397" @@ -1120,7 +1168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a10593da-78d7-482b-94b7-9bea1924624a" + "82447a15-7c6f-40e3-ba1d-2fddc9b20c3c" ], "Cache-Control": [ "no-cache" @@ -1130,34 +1178,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "14931" ], "x-ms-correlation-request-id": [ - "e426996c-215b-4dd0-a6a9-d9eaffb5d9be" + "1cb3ea9e-d180-48c4-93cd-d5790caeb0a7" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204454Z:e426996c-215b-4dd0-a6a9-d9eaffb5d9be" + "WESTUS:20150813T073126Z:1cb3ea9e-d180-48c4-93cd-d5790caeb0a7" ], "Date": [ - "Tue, 28 Apr 2015 20:44:53 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "397" + "886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1172,7 +1220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c64b3ad-2e7a-47fa-8fcd-50ba2227de99" + "05911ef6-5193-49f1-950c-243047b7453e" ], "Cache-Control": [ "no-cache" @@ -1182,34 +1230,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14976" ], "x-ms-correlation-request-id": [ - "192a9643-cdfa-413e-9751-5a309266cb42" + "f1c6ad15-0ef7-422b-95f0-3bc8d3d0161f" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204418Z:192a9643-cdfa-413e-9751-5a309266cb42" + "WESTUS:20150813T073120Z:f1c6ad15-0ef7-422b-95f0-3bc8d3d0161f" ], "Date": [ - "Tue, 28 Apr 2015 20:44:18 GMT" + "Thu, 13 Aug 2015 07:31:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "397" + "886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,7 +1272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd7d1bdc-2496-49e8-b761-42ad90741075" + "9e72e90d-792b-4c5c-9fbc-4b5698aba448" ], "Cache-Control": [ "no-cache" @@ -1234,34 +1282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" + "14930" ], "x-ms-correlation-request-id": [ - "059ca73b-145e-4701-9062-cf71fc9a1ffa" + "b1997ab0-94de-4fe1-97e3-3f71f06f60b6" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204455Z:059ca73b-145e-4701-9062-cf71fc9a1ffa" + "WESTUS:20150813T073126Z:b1997ab0-94de-4fe1-97e3-3f71f06f60b6" ], "Date": [ - "Tue, 28 Apr 2015 20:44:54 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSZuYW1lJTIwLWVxJTIwKg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "595" + "886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1276,7 +1324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dbe00e37-a389-45cc-9ef0-5e03626676a7" + "99722d74-7ebf-4fb1-a7ae-dfeadf8fcd84" ], "Cache-Control": [ "no-cache" @@ -1286,34 +1334,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14975" ], "x-ms-correlation-request-id": [ - "cb86a6a2-d2de-4138-a6c1-d1cfe73f9fec" + "3c78afd0-ead2-4d5c-8042-92d013beb6c0" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204419Z:cb86a6a2-d2de-4138-a6c1-d1cfe73f9fec" + "WESTUS:20150813T073120Z:3c78afd0-ead2-4d5c-8042-92d013beb6c0" ], "Date": [ - "Tue, 28 Apr 2015 20:44:19 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "595" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1328,7 +1376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b32029c4-5217-4e52-a33b-042cce88a259" + "1fa04738-9f49-4c16-a144-0322214609f1" ], "Cache-Control": [ "no-cache" @@ -1338,34 +1386,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "14974" ], "x-ms-correlation-request-id": [ - "026a2fb3-4dbe-44e5-a49b-1da17d0ee2ad" + "e1a72476-af2e-4f9e-88d1-e11ff84d7c59" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204456Z:026a2fb3-4dbe-44e5-a49b-1da17d0ee2ad" + "WESTUS:20150813T073120Z:e1a72476-af2e-4f9e-88d1-e11ff84d7c59" ], "Date": [ - "Tue, 28 Apr 2015 20:44:56 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSZuYW1lJTIwLWVxJTIwKg==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "595" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1380,7 +1428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "baecd81e-3d2e-402c-a743-74359aa350a2" + "a1dbe703-fb17-4738-b4a2-c044ed4e175e" ], "Cache-Control": [ "no-cache" @@ -1390,34 +1438,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14929" ], "x-ms-correlation-request-id": [ - "49b66d4a-e6ea-407e-985b-8c39bee10943" + "4caa1083-5dba-4ca2-a160-af5f7adb06fc" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204420Z:49b66d4a-e6ea-407e-985b-8c39bee10943" + "WESTUS:20150813T073126Z:4caa1083-5dba-4ca2-a160-af5f7adb06fc" ], "Date": [ - "Tue, 28 Apr 2015 20:44:20 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1432,7 +1480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9757bdd-11c3-44db-bf6e-79425e8bfcbb" + "6b426eeb-d223-4bf7-bdc9-77a5553d85e3" ], "Cache-Control": [ "no-cache" @@ -1442,34 +1490,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14973" ], "x-ms-correlation-request-id": [ - "ffe3e7a3-1957-4939-bf3f-a3bda205a49f" + "adfabed5-bbf2-4b20-b837-4510893adee6" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204421Z:ffe3e7a3-1957-4939-bf3f-a3bda205a49f" + "WESTUS:20150813T073120Z:adfabed5-bbf2-4b20-b837-4510893adee6" ], "Date": [ - "Tue, 28 Apr 2015 20:44:20 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1484,7 +1532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be353742-4852-4ae6-a918-9c42cd20e1e5" + "df430574-c0f8-4706-a7f6-a73fcce4fab4" ], "Cache-Control": [ "no-cache" @@ -1494,34 +1542,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" + "14928" ], "x-ms-correlation-request-id": [ - "0ded368c-885f-4515-a507-f6fcaf9de833" + "522f1180-2570-4191-b921-0d0c45991d02" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204457Z:0ded368c-885f-4515-a507-f6fcaf9de833" + "WESTUS:20150813T073126Z:522f1180-2570-4191-b921-0d0c45991d02" ], "Date": [ - "Tue, 28 Apr 2015 20:44:57 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1536,7 +1584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd3d1a2a-5d64-4a83-b3c7-d7347c1526ff" + "a555131b-ad71-4054-a801-6db5fab30e90" ], "Cache-Control": [ "no-cache" @@ -1546,34 +1594,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14972" ], "x-ms-correlation-request-id": [ - "b8633424-2a49-4a20-be95-0d08b6dd8318" + "2c91f9de-4f0b-40c8-84cd-b9259912f067" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204422Z:b8633424-2a49-4a20-be95-0d08b6dd8318" + "WESTUS:20150813T073120Z:2c91f9de-4f0b-40c8-84cd-b9259912f067" ], "Date": [ - "Tue, 28 Apr 2015 20:44:21 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1588,7 +1636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "414e3527-9259-4b54-8bc8-8c9280ddc902" + "73def945-3b3a-4c7e-b67f-d741f295cce0" ], "Cache-Control": [ "no-cache" @@ -1598,34 +1646,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" + "14927" ], "x-ms-correlation-request-id": [ - "1aa42738-a308-4895-b9ec-076c2e4b08b0" + "325c603c-f134-47d2-b7b5-b7877e446639" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204458Z:1aa42738-a308-4895-b9ec-076c2e4b08b0" + "WESTUS:20150813T073126Z:325c603c-f134-47d2-b7b5-b7877e446639" ], "Date": [ - "Tue, 28 Apr 2015 20:44:58 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "313" + "895" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1640,7 +1688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d048cba-2e4e-49b3-ac9d-3799df218722" + "b8f42c92-1102-4932-8eeb-3a43c568a036" ], "Cache-Control": [ "no-cache" @@ -1650,34 +1698,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14971" ], "x-ms-correlation-request-id": [ - "56ac2e6a-e51c-4544-ad57-36128eaa6a2f" + "da0a1e67-d5f7-4822-8eca-558fe5318cc8" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204423Z:56ac2e6a-e51c-4544-ad57-36128eaa6a2f" + "WESTUS:20150813T073120Z:da0a1e67-d5f7-4822-8eca-558fe5318cc8" ], "Date": [ - "Tue, 28 Apr 2015 20:44:23 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "313" + "895" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1692,7 +1740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70be3d04-09dd-4e8b-afb5-8b0f72eaff36" + "5bdb81d2-eebb-42ae-8c80-be21f5baa4c3" ], "Cache-Control": [ "no-cache" @@ -1702,34 +1750,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" + "14926" ], "x-ms-correlation-request-id": [ - "937c9447-b35e-46aa-9053-ba83d1c448d7" + "80cc867e-f605-4d9d-aed4-9e7f35e382a2" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204459Z:937c9447-b35e-46aa-9053-ba83d1c448d7" + "WESTUS:20150813T073126Z:80cc867e-f605-4d9d-aed4-9e7f35e382a2" ], "Date": [ - "Tue, 28 Apr 2015 20:44:59 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1Jm5hbWUlMjAtZXElMjAq", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSZuYW1lJTIwLWVxJTIwKg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "313" + "895" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1744,7 +1792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ec9be6d-0cab-4c98-8efc-169c44e9959e" + "face5549-de14-4219-92a8-226a0da3776a" ], "Cache-Control": [ "no-cache" @@ -1754,34 +1802,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14970" ], "x-ms-correlation-request-id": [ - "ba60fe5f-ac50-4123-8dd2-fbcc5945c9b9" + "cdbcce82-aaee-4ea7-889f-79f1fcef93db" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204424Z:ba60fe5f-ac50-4123-8dd2-fbcc5945c9b9" + "WESTUS:20150813T073120Z:cdbcce82-aaee-4ea7-889f-79f1fcef93db" ], "Date": [ - "Tue, 28 Apr 2015 20:44:24 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions/5.0.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucy81LjAuMjAxNTA0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "414" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1796,7 +1844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "569b5533-2daa-4900-bbfc-23486f6c24ca" + "e3e071e4-3ece-42e2-b38d-e8b03d703420" ], "Cache-Control": [ "no-cache" @@ -1806,34 +1854,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14969" ], "x-ms-correlation-request-id": [ - "f3aaad5b-2f74-4589-93c6-b7a6243ae745" + "d78d1742-de18-4a0c-8704-51a3a76e1758" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204425Z:f3aaad5b-2f74-4589-93c6-b7a6243ae745" + "WESTUS:20150813T073121Z:d78d1742-de18-4a0c-8704-51a3a76e1758" ], "Date": [ - "Tue, 28 Apr 2015 20:44:25 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions/5.0.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucy81LjAuMjAxNTA0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "414" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1848,7 +1896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca52ee32-1c39-4d7b-974c-a02b587c9a26" + "32d79fc9-c71c-4add-81a0-744c774c542a" ], "Cache-Control": [ "no-cache" @@ -1858,34 +1906,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "14925" ], "x-ms-correlation-request-id": [ - "5a008b4b-4849-4002-9921-140a79f1fefa" + "5453e2ca-0eb7-4e4a-9d1a-49a513d8fdd2" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204500Z:5a008b4b-4849-4002-9921-140a79f1fefa" + "WESTUS:20150813T073126Z:5453e2ca-0eb7-4e4a-9d1a-49a513d8fdd2" ], "Date": [ - "Tue, 28 Apr 2015 20:44:59 GMT" + "Thu, 13 Aug 2015 07:31:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1900,7 +1948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18289237-a359-44e4-8f18-986ebb7a818f" + "048af20f-a48a-4040-9ee8-62713ef3c1d2" ], "Cache-Control": [ "no-cache" @@ -1910,34 +1958,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14968" ], "x-ms-correlation-request-id": [ - "c4294b50-6989-4e6a-a22e-7cdc45e76042" + "7166ebd2-b7e3-46d1-8b1b-228f9bfe94ba" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204426Z:c4294b50-6989-4e6a-a22e-7cdc45e76042" + "WESTUS:20150813T073121Z:7166ebd2-b7e3-46d1-8b1b-228f9bfe94ba" ], "Date": [ - "Tue, 28 Apr 2015 20:44:26 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1952,7 +2000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2533cd17-7475-415b-b6d0-3bbc10276337" + "63f1cd6b-71ae-4b21-9d50-e846c7e5c02f" ], "Cache-Control": [ "no-cache" @@ -1962,34 +2010,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" + "14924" ], "x-ms-correlation-request-id": [ - "238ce168-1c4b-4d8a-b700-b00218b37cba" + "ba325f8f-9dea-4859-9db4-7b0a4a8b8d97" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204501Z:238ce168-1c4b-4d8a-b700-b00218b37cba" + "WESTUS:20150813T073126Z:ba325f8f-9dea-4859-9db4-7b0a4a8b8d97" ], "Date": [ - "Tue, 28 Apr 2015 20:45:00 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "317" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2004,7 +2052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8102b485-2178-4cb4-a04c-48a7a913679c" + "775cce68-7196-46f6-806f-83509c933d16" ], "Cache-Control": [ "no-cache" @@ -2014,34 +2062,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14967" ], "x-ms-correlation-request-id": [ - "fe3c3d15-bfa4-43cc-bc31-fd1367390524" + "ad52e8ac-41d0-410e-ba88-c7f612ae17a8" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204427Z:fe3c3d15-bfa4-43cc-bc31-fd1367390524" + "WESTUS:20150813T073121Z:ad52e8ac-41d0-410e-ba88-c7f612ae17a8" ], "Date": [ - "Tue, 28 Apr 2015 20:44:26 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "317" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2056,7 +2104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae17bce3-9843-4905-b825-4b9a42eabb1c" + "cc4655f0-2475-4621-9ac7-647daabaa715" ], "Cache-Control": [ "no-cache" @@ -2066,34 +2114,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "14923" ], "x-ms-correlation-request-id": [ - "efd42a17-c891-48a5-a1f1-312e944ba99d" + "589d4495-0e59-4352-9031-6867f0e3390c" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204502Z:efd42a17-c891-48a5-a1f1-312e944ba99d" + "WESTUS:20150813T073126Z:589d4495-0e59-4352-9031-6867f0e3390c" ], "Date": [ - "Tue, 28 Apr 2015 20:45:01 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-3-with-Containers/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LTMtd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "2892" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2108,7 +2156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c01df33a-ac37-4106-aec1-01d618c10045" + "6d3269aa-32c1-4037-a7a2-9335974947f2" ], "Cache-Control": [ "no-cache" @@ -2118,34 +2166,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14966" ], "x-ms-correlation-request-id": [ - "9615368e-974d-45cd-9511-872567cce226" + "6b1c9a2e-9dac-433d-ae04-59f45a0679f3" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204428Z:9615368e-974d-45cd-9511-872567cce226" + "WESTUS:20150813T073121Z:6b1c9a2e-9dac-433d-ae04-59f45a0679f3" ], "Date": [ - "Tue, 28 Apr 2015 20:44:27 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-3-with-Containers/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LTMtd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "2892" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2160,7 +2208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53a55fc4-87c9-4386-b22b-81a8009af8c5" + "10109160-be5b-4e73-9fcc-e38412150f70" ], "Cache-Control": [ "no-cache" @@ -2170,34 +2218,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" + "14922" ], "x-ms-correlation-request-id": [ - "48cb5c4c-5fac-43cd-a62c-a2550cea5c0d" + "b6a22982-b4da-4ced-a08a-6d992b36e2b4" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204502Z:48cb5c4c-5fac-43cd-a62c-a2550cea5c0d" + "WESTUS:20150813T073126Z:b6a22982-b4da-4ced-a08a-6d992b36e2b4" ], "Date": [ - "Tue, 28 Apr 2015 20:45:02 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-06-15&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmbmFtZSUyMC1lcSUyMCo=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-with-Containers/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LXdpdGgtQ29udGFpbmVycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "2892" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2212,7 +2260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b66a29f7-738b-4cb9-adee-dd32ab9376eb" + "8cdea594-62f8-4faa-94f8-62c8431b7b97" ], "Cache-Control": [ "no-cache" @@ -2222,34 +2270,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14965" ], "x-ms-correlation-request-id": [ - "962ef0b6-47ac-466e-a6bf-9c3714afd3c1" + "93abc871-3701-4342-a7e5-5fac35fb1c5d" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204429Z:962ef0b6-47ac-466e-a6bf-9c3714afd3c1" + "WESTUS:20150813T073121Z:93abc871-3701-4342-a7e5-5fac35fb1c5d" ], "Date": [ - "Tue, 28 Apr 2015 20:44:28 GMT" + "Thu, 13 Aug 2015 07:31:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131018?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xMzEwMTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-with-Containers/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LXdpdGgtQ29udGFpbmVycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "425" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2264,7 +2312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "127c8c93-d38e-416c-a44f-bd94c1b17a8a" + "ce85dd4b-ad5f-4835-abdd-ec1209130750" ], "Cache-Control": [ "no-cache" @@ -2274,34 +2322,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14921" ], "x-ms-correlation-request-id": [ - "691896a6-a631-4600-a5c2-f936fa3cb2f3" + "7161c89b-93f9-4e8d-915c-0a73676ab065" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204429Z:691896a6-a631-4600-a5c2-f936fa3cb2f3" + "WESTUS:20150813T073127Z:7161c89b-93f9-4e8d-915c-0a73676ab065" ], "Date": [ - "Tue, 28 Apr 2015 20:44:29 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131018?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xMzEwMTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2316,7 +2364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "283958ce-1fc9-4c7c-be80-1151002f4e85" + "1ed409d6-681d-416f-97f5-9556a75c5581" ], "Cache-Control": [ "no-cache" @@ -2326,34 +2374,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "14964" ], "x-ms-correlation-request-id": [ - "d783fe1f-432f-4bc6-8061-a3a628870923" + "4755055d-946f-4ef0-8cb9-ff33fba10901" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204503Z:d783fe1f-432f-4bc6-8061-a3a628870923" + "WESTUS:20150813T073121Z:4755055d-946f-4ef0-8cb9-ff33fba10901" ], "Date": [ - "Tue, 28 Apr 2015 20:45:03 GMT" + "Thu, 13 Aug 2015 07:31:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131129?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xMzExMjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2368,7 +2416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "add92d29-1cd8-435a-bb58-f7ebbbde37b5" + "0040a00a-81e8-4a7c-8942-14d7b166b8ab" ], "Cache-Control": [ "no-cache" @@ -2378,34 +2426,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14920" ], "x-ms-correlation-request-id": [ - "935fbdfe-baa1-402d-91e4-37e57a3f4315" + "7b386b5d-a0bb-4b5d-a81b-c1e946adb774" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204430Z:935fbdfe-baa1-402d-91e4-37e57a3f4315" + "WESTUS:20150813T073127Z:7b386b5d-a0bb-4b5d-a81b-c1e946adb774" ], "Date": [ - "Tue, 28 Apr 2015 20:44:30 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131129?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xMzExMjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1Jm5hbWUlMjAtZXElMjAq", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2420,7 +2468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e9c3068-6c55-4add-987e-cbf581625e21" + "20169310-4a24-491c-aa17-d186ebc730e9" ], "Cache-Control": [ "no-cache" @@ -2430,34 +2478,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "14963" ], "x-ms-correlation-request-id": [ - "88226a3e-2d75-4ff2-9514-fd3aaff56983" + "e8c33c3d-d78c-4c45-b0a3-2be1cfc7a2ca" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204504Z:88226a3e-2d75-4ff2-9514-fd3aaff56983" + "WESTUS:20150813T073121Z:e8c33c3d-d78c-4c45-b0a3-2be1cfc7a2ca" ], "Date": [ - "Tue, 28 Apr 2015 20:45:04 GMT" + "Thu, 13 Aug 2015 07:31:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131223?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xMzEyMjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions/5.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucy81LjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "425" + "414" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2472,7 +2520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52cb45a7-cda7-4257-b670-8874ec11ff19" + "28ce183c-98c7-4495-8dc7-dd4548b5cc5a" ], "Cache-Control": [ "no-cache" @@ -2482,34 +2530,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14962" ], "x-ms-correlation-request-id": [ - "72900cef-5b21-4d0e-b38c-b4e4b3bb31fd" + "c7440379-cae5-4552-81a2-1ddf3e2777aa" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204431Z:72900cef-5b21-4d0e-b38c-b4e4b3bb31fd" + "WESTUS:20150813T073121Z:c7440379-cae5-4552-81a2-1ddf3e2777aa" ], "Date": [ - "Tue, 28 Apr 2015 20:44:30 GMT" + "Thu, 13 Aug 2015 07:31:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131223?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xMzEyMjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions/5.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucy81LjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "425" + "414" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2524,7 +2572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "899e982b-0500-44a3-8bd6-e55ccf05f704" + "f4d59203-3fe0-4e22-af4f-4f54c087b1cf" ], "Cache-Control": [ "no-cache" @@ -2534,34 +2582,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" + "14919" ], "x-ms-correlation-request-id": [ - "b07a3c3e-4f6a-45bb-8876-2b987296cb57" + "7bf2e123-b7fc-4a80-8a40-46ed9a5b936b" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204505Z:b07a3c3e-4f6a-45bb-8876-2b987296cb57" + "WESTUS:20150813T073127Z:7bf2e123-b7fc-4a80-8a40-46ed9a5b936b" ], "Date": [ - "Tue, 28 Apr 2015 20:45:04 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140123?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDAxMjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2576,7 +2624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6283ce1-8d7b-4916-ab41-2886bb974ab1" + "2965784d-d0f5-4291-a3cb-04e58afadb8c" ], "Cache-Control": [ "no-cache" @@ -2586,34 +2634,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14961" ], "x-ms-correlation-request-id": [ - "f604e4c1-3669-4f85-8ef6-d9af202939e8" + "ea5010a3-e66e-45af-b579-8a74eb61f7d6" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204432Z:f604e4c1-3669-4f85-8ef6-d9af202939e8" + "WESTUS:20150813T073122Z:ea5010a3-e66e-45af-b579-8a74eb61f7d6" ], "Date": [ - "Tue, 28 Apr 2015 20:44:32 GMT" + "Thu, 13 Aug 2015 07:31:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140123?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDAxMjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2628,7 +2676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "131eb0be-3a0b-44e3-98f4-bf9c270cdca0" + "2d81828a-b3ef-4cbb-a4ba-d03b9e34640d" ], "Cache-Control": [ "no-cache" @@ -2638,34 +2686,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" + "14918" ], "x-ms-correlation-request-id": [ - "8252515d-7b2c-4c2d-9c1e-813af73061ea" + "587dbc7f-76b0-43ea-9e13-94e16b997c01" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204506Z:8252515d-7b2c-4c2d-9c1e-813af73061ea" + "WESTUS:20150813T073127Z:587dbc7f-76b0-43ea-9e13-94e16b997c01" ], "Date": [ - "Tue, 28 Apr 2015 20:45:06 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140305?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDAzMDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2680,7 +2728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62c6886c-a4d5-4421-bfd9-0f84d3df86a2" + "1c6a156f-4ca1-4099-b33c-fe24913044ad" ], "Cache-Control": [ "no-cache" @@ -2690,34 +2738,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14960" ], "x-ms-correlation-request-id": [ - "5ed373e4-5934-4c86-94e1-52b76a62bdcb" + "75eebdd6-363e-4a03-b7d6-ab7e81f9be69" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204433Z:5ed373e4-5934-4c86-94e1-52b76a62bdcb" + "WESTUS:20150813T073122Z:75eebdd6-363e-4a03-b7d6-ab7e81f9be69" ], "Date": [ - "Tue, 28 Apr 2015 20:44:33 GMT" + "Thu, 13 Aug 2015 07:31:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140305?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDAzMDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2732,7 +2780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "266a6717-80c7-4f99-8a43-b06acf98e2df" + "3efe7485-08b8-43b8-9370-a7202490097c" ], "Cache-Control": [ "no-cache" @@ -2742,34 +2790,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "14917" ], "x-ms-correlation-request-id": [ - "fd12f350-576f-4752-ab5c-f0a69f14999a" + "59a510d7-e83b-4b90-beac-db48116930ec" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204507Z:fd12f350-576f-4752-ab5c-f0a69f14999a" + "WESTUS:20150813T073127Z:59a510d7-e83b-4b90-beac-db48116930ec" ], "Date": [ - "Tue, 28 Apr 2015 20:45:07 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140327?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDAzMjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "2928" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2784,7 +2832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5164ea74-ac0e-43df-a65a-e47af1b243a9" + "febb008b-d679-4bd6-b0b5-990381dcc288" ], "Cache-Control": [ "no-cache" @@ -2794,34 +2842,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14959" ], "x-ms-correlation-request-id": [ - "20106a2c-4517-47a1-992f-02682e5c684b" + "7d7b0751-0ac3-4678-8aaa-063335bfd185" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204434Z:20106a2c-4517-47a1-992f-02682e5c684b" + "WESTUS:20150813T073122Z:7d7b0751-0ac3-4678-8aaa-063335bfd185" ], "Date": [ - "Tue, 28 Apr 2015 20:44:34 GMT" + "Thu, 13 Aug 2015 07:31:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140327?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDAzMjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "2928" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2836,7 +2884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1358e47f-790a-4073-bfb0-b719cca68308" + "ff8680f6-4101-4f26-b60a-be67a5c74c45" ], "Cache-Control": [ "no-cache" @@ -2846,34 +2894,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "14916" ], "x-ms-correlation-request-id": [ - "a01af0b5-bf57-4048-b985-f60297abe998" + "e3909466-930e-4534-a799-682c98d7cbca" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204508Z:a01af0b5-bf57-4048-b985-f60297abe998" + "WESTUS:20150813T073127Z:e3909466-930e-4534-a799-682c98d7cbca" ], "Date": [ - "Tue, 28 Apr 2015 20:45:08 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140618?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDA2MTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-06-15&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmbmFtZSUyMC1lcSUyMCo=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "2928" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2888,7 +2936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c7e0d67-80c8-415b-97a4-6c4fd56f6f0e" + "86e69681-47fc-4e95-94c8-da2f0054f07d" ], "Cache-Control": [ "no-cache" @@ -2898,34 +2946,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14958" ], "x-ms-correlation-request-id": [ - "d7946080-121e-4343-9f6d-02647b4785bb" + "d98b942c-fa02-4703-a306-4b9487e32322" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204435Z:d7946080-121e-4343-9f6d-02647b4785bb" + "WESTUS:20150813T073122Z:d98b942c-fa02-4703-a306-4b9487e32322" ], "Date": [ - "Tue, 28 Apr 2015 20:44:35 GMT" + "Thu, 13 Aug 2015 07:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140618?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDA2MTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131018?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTAxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "425" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2940,7 +2988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2105fc41-9c58-4bd0-a43e-40657a8eeb85" + "b1c4a74f-950c-414d-b66b-29887bf172f1" ], "Cache-Control": [ "no-cache" @@ -2950,34 +2998,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "14957" ], "x-ms-correlation-request-id": [ - "0ae888b0-32ca-4944-bfaa-11252cd7a1a9" + "a4ff53fe-e81a-4ba0-8d60-bd1eaeb50b25" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204509Z:0ae888b0-32ca-4944-bfaa-11252cd7a1a9" + "WESTUS:20150813T073122Z:a4ff53fe-e81a-4ba0-8d60-bd1eaeb50b25" ], "Date": [ - "Tue, 28 Apr 2015 20:45:09 GMT" + "Thu, 13 Aug 2015 07:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140715?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDA3MTU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131018?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTAxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "425" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2992,7 +3040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c501c9fd-503d-427b-a1e9-74cc19c90b0b" + "7b5f4087-3007-466a-b588-932ea8cfc857" ], "Cache-Control": [ "no-cache" @@ -3002,34 +3050,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14915" ], "x-ms-correlation-request-id": [ - "849fbeb5-d24b-4b43-b0a3-efecd06c71f1" + "411689f4-1e67-40ee-a24b-1564d6ddea23" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204436Z:849fbeb5-d24b-4b43-b0a3-efecd06c71f1" + "WESTUS:20150813T073127Z:411689f4-1e67-40ee-a24b-1564d6ddea23" ], "Date": [ - "Tue, 28 Apr 2015 20:44:36 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140715?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDA3MTU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131127?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTEyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "425" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3044,7 +3092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4fd07ba-5abb-4b95-be57-c91d4f9de541" + "fc75f75a-7482-49a1-97b4-87e726d5ae92" ], "Cache-Control": [ "no-cache" @@ -3054,34 +3102,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "14956" ], "x-ms-correlation-request-id": [ - "e25b6e0e-20ba-4069-b6b4-b5e91cc1daf5" + "14e4a49d-ef91-4c14-94e4-613c0a958ba2" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204510Z:e25b6e0e-20ba-4069-b6b4-b5e91cc1daf5" + "WESTUS:20150813T073122Z:14e4a49d-ef91-4c14-94e4-613c0a958ba2" ], "Date": [ - "Tue, 28 Apr 2015 20:45:10 GMT" + "Thu, 13 Aug 2015 07:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.141204?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDEyMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131127?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTEyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "425" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3096,7 +3144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4420235d-9871-46d2-a042-a488b218ad9d" + "9743f311-0fe1-49e5-a710-bec9ed20f662" ], "Cache-Control": [ "no-cache" @@ -3106,34 +3154,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "14914" ], "x-ms-correlation-request-id": [ - "a6cb8040-6fd1-425d-9ef6-96fe23cba912" + "06e93ab4-f9fc-4faa-8e51-93e5b843f972" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204437Z:a6cb8040-6fd1-425d-9ef6-96fe23cba912" + "WESTUS:20150813T073127Z:06e93ab4-f9fc-4faa-8e51-93e5b843f972" ], "Date": [ - "Tue, 28 Apr 2015 20:44:37 GMT" + "Thu, 13 Aug 2015 07:31:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.141204?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4xNDEyMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131217?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTIxNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "425" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3148,7 +3196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf96fae6-be25-4c7e-8fc9-e61d8cd0096a" + "2c84e273-9917-4312-b6f3-327459661d35" ], "Cache-Control": [ "no-cache" @@ -3158,34 +3206,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "14955" ], "x-ms-correlation-request-id": [ - "6b2bf695-d6b6-4400-bada-47a6791cf146" + "ddab59d9-2688-4f48-848e-3b2001e65133" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204511Z:6b2bf695-d6b6-4400-bada-47a6791cf146" + "WESTUS:20150813T073123Z:ddab59d9-2688-4f48-848e-3b2001e65133" ], "Date": [ - "Tue, 28 Apr 2015 20:45:10 GMT" + "Thu, 13 Aug 2015 07:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131217?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTIxNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "279" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3200,7 +3248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e6f86f8-66b1-467a-942c-331b0713a4ed" + "d0288e3d-8f42-491d-9071-93f8d9f9d82e" ], "Cache-Control": [ "no-cache" @@ -3210,34 +3258,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14913" ], "x-ms-correlation-request-id": [ - "f32cbdd8-9a34-4ca9-85bf-84a792ebc851" + "d5e299c5-3f99-4f49-b8b9-5fbeedaec15a" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204438Z:f32cbdd8-9a34-4ca9-85bf-84a792ebc851" + "WESTUS:20150813T073127Z:d5e299c5-3f99-4f49-b8b9-5fbeedaec15a" ], "Date": [ - "Tue, 28 Apr 2015 20:44:37 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140213?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDIxMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "279" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3252,7 +3300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bdac79dd-4adc-44ab-b601-8df68f4425ce" + "730665a1-ae80-4f3e-95d8-b7e86fb69bbc" ], "Cache-Control": [ "no-cache" @@ -3262,34 +3310,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "14954" ], "x-ms-correlation-request-id": [ - "f542c241-3eff-4862-9e6c-fd7a61a2d4a9" + "10112b18-ec09-467b-b911-776bd9e86666" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204512Z:f542c241-3eff-4862-9e6c-fd7a61a2d4a9" + "WESTUS:20150813T073123Z:10112b18-ec09-467b-b911-776bd9e86666" ], "Date": [ - "Tue, 28 Apr 2015 20:45:11 GMT" + "Thu, 13 Aug 2015 07:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140213?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDIxMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "525" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3304,7 +3352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5da0bea-74c0-4640-afd9-fb56243c4c47" + "7b4baf1e-f946-462d-b39b-0220586f67e0" ], "Cache-Control": [ "no-cache" @@ -3314,34 +3362,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "14912" ], "x-ms-correlation-request-id": [ - "d4638038-8725-441d-bfee-a792aff9acd6" + "06d495ef-e6d3-4e30-8786-bed9f9508da1" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204439Z:d4638038-8725-441d-bfee-a792aff9acd6" + "WESTUS:20150813T073127Z:06d495ef-e6d3-4e30-8786-bed9f9508da1" ], "Date": [ - "Tue, 28 Apr 2015 20:44:38 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140306?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDMwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "525" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3356,7 +3404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "162f9b16-7891-4347-a2b4-496143cad68f" + "9ec0e978-5121-40eb-85e8-a594333a4197" ], "Cache-Control": [ "no-cache" @@ -3366,34 +3414,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31903" + "14953" ], "x-ms-correlation-request-id": [ - "65072daf-3589-4c4a-b6d8-ead3c539ffdf" + "8268cedb-5af1-46ef-bd53-ab0761012d3b" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204536Z:65072daf-3589-4c4a-b6d8-ead3c539ffdf" + "WESTUS:20150813T073123Z:8268cedb-5af1-46ef-bd53-ab0761012d3b" ], "Date": [ - "Tue, 28 Apr 2015 20:45:36 GMT" + "Thu, 13 Aug 2015 07:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2015-06-15&*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSYq", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140306?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDMwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1595" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3408,7 +3456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f68db40-4e2f-4d65-9751-6737562148e0" + "4f3f6767-201b-41af-8212-dfb1a2a2d69e" ], "Cache-Control": [ "no-cache" @@ -3418,34 +3466,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "14911" ], "x-ms-correlation-request-id": [ - "ff957dc6-24b1-4739-96cb-2e5bdb33bcc0" + "a32680d4-e784-46c6-996d-d6e7fb95c7c1" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204440Z:ff957dc6-24b1-4739-96cb-2e5bdb33bcc0" + "WESTUS:20150813T073128Z:a32680d4-e784-46c6-996d-d6e7fb95c7c1" ], "Date": [ - "Tue, 28 Apr 2015 20:44:40 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140327?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDMyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3460,7 +3508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c72a363-d0f1-4f92-8ca4-95d769c1e047" + "ab510d31-5bbb-4e8c-a095-974bae39f8c1" ], "Cache-Control": [ "no-cache" @@ -3470,34 +3518,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "14952" ], "x-ms-correlation-request-id": [ - "c9e5849d-f73d-43f1-b663-a0f7da2be905" + "ab071cc3-8670-4dd2-9f0e-8205d9c8121d" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204441Z:c9e5849d-f73d-43f1-b663-a0f7da2be905" + "WESTUS:20150813T073123Z:ab071cc3-8670-4dd2-9f0e-8205d9c8121d" ], "Date": [ - "Tue, 28 Apr 2015 20:44:41 GMT" + "Thu, 13 Aug 2015 07:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140327?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDMyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3512,7 +3560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ffc403a6-569c-45e4-bb66-ea32107fe922" + "c6b2b1ad-64bb-4bfe-bc65-7bbf31085c23" ], "Cache-Control": [ "no-cache" @@ -3522,34 +3570,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31901" + "14910" ], "x-ms-correlation-request-id": [ - "09952923-7964-424b-8607-f4ddffddbe9e" + "de3e5403-7034-4bd2-930f-9b7d2aade1d7" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204537Z:09952923-7964-424b-8607-f4ddffddbe9e" + "WESTUS:20150813T073128Z:de3e5403-7034-4bd2-930f-9b7d2aade1d7" ], "Date": [ - "Tue, 28 Apr 2015 20:45:37 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140618?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDYxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3564,7 +3612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77f26280-ae4a-4b3b-bcfa-bb486bce5ddf" + "6ff8a9ad-bb68-4c45-9f6d-5cd8f5f80b5f" ], "Cache-Control": [ "no-cache" @@ -3574,34 +3622,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "14951" ], "x-ms-correlation-request-id": [ - "f273e9c4-8939-4ec9-9fdf-26e9d163f947" + "4741ac5d-b1c9-4391-9308-290a9223d800" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204441Z:f273e9c4-8939-4ec9-9fdf-26e9d163f947" + "WESTUS:20150813T073123Z:4741ac5d-b1c9-4391-9308-290a9223d800" ], "Date": [ - "Tue, 28 Apr 2015 20:44:41 GMT" + "Thu, 13 Aug 2015 07:31:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140618?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDYxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3616,7 +3664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "833cd1cd-6000-488a-957a-7012a83fb316" + "5dea407a-6eea-4601-b1c5-e27e2e37c997" ], "Cache-Control": [ "no-cache" @@ -3626,34 +3674,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31900" + "14909" ], "x-ms-correlation-request-id": [ - "746796d1-eaef-45f0-9aaa-35010b7c0c29" + "632649a0-ee86-4a3b-8959-c6f027351eb7" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204538Z:746796d1-eaef-45f0-9aaa-35010b7c0c29" + "WESTUS:20150813T073128Z:632649a0-ee86-4a3b-8959-c6f027351eb7" ], "Date": [ - "Tue, 28 Apr 2015 20:45:38 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140715?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDcxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3668,7 +3716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a95882d-862a-46a9-b874-48a3c1e4c8be" + "9bbd9802-9dd8-4ac2-b811-e53b6c190a21" ], "Cache-Control": [ "no-cache" @@ -3678,34 +3726,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" + "14950" ], "x-ms-correlation-request-id": [ - "1ab82ce1-6514-4da8-ac54-7d7d1186201f" + "352a3fba-4140-454a-905d-4ced16cb7dfa" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204442Z:1ab82ce1-6514-4da8-ac54-7d7d1186201f" + "WESTUS:20150813T073123Z:352a3fba-4140-454a-905d-4ced16cb7dfa" ], "Date": [ - "Tue, 28 Apr 2015 20:44:42 GMT" + "Thu, 13 Aug 2015 07:31:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140715?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDcxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3720,7 +3768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42969e95-d907-43ed-9a0f-49a4db53942a" + "a1e9a0f9-5c96-44c1-86a4-0d80d33acd4c" ], "Cache-Control": [ "no-cache" @@ -3730,34 +3778,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31899" + "14908" ], "x-ms-correlation-request-id": [ - "d6d0ce80-1887-45bf-bf80-282ad61057e5" + "26b950fb-6488-4eef-bdc1-3a0dd1cffeb5" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204539Z:d6d0ce80-1887-45bf-bf80-282ad61057e5" + "WESTUS:20150813T073128Z:26b950fb-6488-4eef-bdc1-3a0dd1cffeb5" ], "Date": [ - "Tue, 28 Apr 2015 20:45:39 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20141204?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MTIwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3772,7 +3820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "546f4e93-975c-4177-b4e6-4b852da2ea1b" + "aa92fab1-dec7-438a-806d-284e486a6e9e" ], "Cache-Control": [ "no-cache" @@ -3782,34 +3830,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" + "14949" ], "x-ms-correlation-request-id": [ - "04f4252b-dd03-4df3-bb3a-d73a16bfec1c" + "8df5b4b3-13ed-443d-bdb2-7c1c976d3d78" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204443Z:04f4252b-dd03-4df3-bb3a-d73a16bfec1c" + "WESTUS:20150813T073123Z:8df5b4b3-13ed-443d-bdb2-7c1c976d3d78" ], "Date": [ - "Tue, 28 Apr 2015 20:44:42 GMT" + "Thu, 13 Aug 2015 07:31:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20141204?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MTIwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3824,7 +3872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4dbe61b-c326-477d-b61a-3723732ffb47" + "4fb56cf1-fe1a-4905-8938-996d1c901c1f" ], "Cache-Control": [ "no-cache" @@ -3834,34 +3882,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31898" + "14907" ], "x-ms-correlation-request-id": [ - "79e49665-3686-4d51-8c8d-8f95dc864d6f" + "687481ca-7ae9-47a5-b171-5f1e4988766c" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204540Z:79e49665-3686-4d51-8c8d-8f95dc864d6f" + "WESTUS:20150813T073128Z:687481ca-7ae9-47a5-b171-5f1e4988766c" ], "Date": [ - "Tue, 28 Apr 2015 20:45:40 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "413" + "279" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3876,7 +3924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24d5787a-2939-4a0a-b51a-cc1b1dc64427" + "7644b8ef-2832-4db6-92fa-3e59880ebb5b" ], "Cache-Control": [ "no-cache" @@ -3886,34 +3934,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "14948" ], "x-ms-correlation-request-id": [ - "b84303ac-1f50-4c61-9197-fbba68639dfb" + "aed48eaf-9d9e-4d11-8f7c-d80b6f465cf6" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204444Z:b84303ac-1f50-4c61-9197-fbba68639dfb" + "WESTUS:20150813T073124Z:aed48eaf-9d9e-4d11-8f7c-d80b6f465cf6" ], "Date": [ - "Tue, 28 Apr 2015 20:44:44 GMT" + "Thu, 13 Aug 2015 07:31:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "413" + "279" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3928,7 +3976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2bda906-4874-4e4b-9ca6-097b60b39706" + "d19ec4cd-7048-4793-95b9-85b3146cda54" ], "Cache-Control": [ "no-cache" @@ -3938,34 +3986,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31897" + "14906" ], "x-ms-correlation-request-id": [ - "12563c2e-8c55-4568-83cb-a6fb74377470" + "be55843a-fe80-4a93-9aaf-ba647313a62a" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204541Z:12563c2e-8c55-4568-83cb-a6fb74377470" + "WESTUS:20150813T073128Z:be55843a-fe80-4a93-9aaf-ba647313a62a" ], "Date": [ - "Tue, 28 Apr 2015 20:45:41 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "413" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3980,7 +4028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d95b330-c276-4e34-b663-394be60845b9" + "d74c7702-1edb-44ef-a047-26a21bce4c45" ], "Cache-Control": [ "no-cache" @@ -3990,34 +4038,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" + "14947" ], "x-ms-correlation-request-id": [ - "77a6354e-9e7d-4567-a882-a6728944f8fd" + "c8f5ed24-9d1b-4c71-964c-6758439d04eb" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204445Z:77a6354e-9e7d-4567-a882-a6728944f8fd" + "WESTUS:20150813T073124Z:c8f5ed24-9d1b-4c71-964c-6758439d04eb" ], "Date": [ - "Tue, 28 Apr 2015 20:44:44 GMT" + "Thu, 13 Aug 2015 07:31:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "413" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4032,7 +4080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca93b5ec-9384-40de-81fc-7e20a77b94d7" + "a1938a56-29e2-4013-9c21-3226f015fedd" ], "Cache-Control": [ "no-cache" @@ -4042,34 +4090,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31896" + "14866" ], "x-ms-correlation-request-id": [ - "1088c0f6-c1fc-484f-accd-db527589deea" + "fdf21f5d-65c6-4950-b4c5-d5732bb44d00" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204542Z:1088c0f6-c1fc-484f-accd-db527589deea" + "WESTUS:20150813T073133Z:fdf21f5d-65c6-4950-b4c5-d5732bb44d00" ], "Date": [ - "Tue, 28 Apr 2015 20:45:42 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmKg==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2015-06-15&*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSYq", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "259" + "1595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4084,7 +4132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b56cb8a-5b7b-44e1-be6c-8fa593317446" + "bbd0794d-255c-4474-b84f-fa6bf450963a" ], "Cache-Control": [ "no-cache" @@ -4094,34 +4142,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" + "14946" ], "x-ms-correlation-request-id": [ - "369cdc2a-e7c7-4f88-8f87-5ce541c7432e" + "8e918ec9-656e-45cd-b55f-8fed6e497f96" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204446Z:369cdc2a-e7c7-4f88-8f87-5ce541c7432e" + "WESTUS:20150813T073124Z:8e918ec9-656e-45cd-b55f-8fed6e497f96" ], "Date": [ - "Tue, 28 Apr 2015 20:44:45 GMT" + "Thu, 13 Aug 2015 07:31:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "405" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4136,7 +4184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e884f327-c1f2-457d-a4ca-88d3d5594343" + "22a92a2f-1319-45dd-a9d3-01d571a975e0" ], "Cache-Control": [ "no-cache" @@ -4146,34 +4194,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" + "14945" ], "x-ms-correlation-request-id": [ - "9daf2e95-19bb-4041-8a40-2527f12257eb" + "85f88f96-f974-4e95-93f5-88150f46a946" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204447Z:9daf2e95-19bb-4041-8a40-2527f12257eb" + "WESTUS:20150813T073124Z:85f88f96-f974-4e95-93f5-88150f46a946" ], "Date": [ - "Tue, 28 Apr 2015 20:44:47 GMT" + "Thu, 13 Aug 2015 07:31:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "405" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4188,7 +4236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "395b5447-3a12-493c-9610-5b159ecfc347" + "12c2a43c-e96d-4482-b7d6-909c9a3556e9" ], "Cache-Control": [ "no-cache" @@ -4198,34 +4246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31894" + "14864" ], "x-ms-correlation-request-id": [ - "ecdd5fce-df40-4000-944e-ea19941d27bf" + "97cd2aaf-f912-4d59-9e33-9b12deb70fed" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204544Z:ecdd5fce-df40-4000-944e-ea19941d27bf" + "WESTUS:20150813T073133Z:97cd2aaf-f912-4d59-9e33-9b12deb70fed" ], "Date": [ - "Tue, 28 Apr 2015 20:45:43 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TechnicalPreview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4240,7 +4288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d402f56-021d-4d10-bfd0-005ba262a721" + "80182cac-b111-42c0-bb68-47dc7ec32f01" ], "Cache-Control": [ "no-cache" @@ -4250,34 +4298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "14944" ], "x-ms-correlation-request-id": [ - "8fdeea35-da97-4816-86f3-bccc7f37c229" + "415eab09-5aca-4264-9950-cc6d6978c56f" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204513Z:8fdeea35-da97-4816-86f3-bccc7f37c229" + "WESTUS:20150813T073124Z:415eab09-5aca-4264-9950-cc6d6978c56f" ], "Date": [ - "Tue, 28 Apr 2015 20:45:12 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1473" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4292,7 +4340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89f71457-529c-49e7-b1e7-4b998ff4c9cc" + "ac9bdd3e-5009-48f2-82ba-8ae08eab8ccf" ], "Cache-Control": [ "no-cache" @@ -4302,34 +4350,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" + "14863" ], "x-ms-correlation-request-id": [ - "b4033c3c-66de-40a6-bbf5-cf6e57b0df90" + "5fd2f1d3-3738-42c9-b287-f329375cb5d6" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204513Z:b4033c3c-66de-40a6-bbf5-cf6e57b0df90" + "WESTUS:20150813T073133Z:5fd2f1d3-3738-42c9-b287-f329375cb5d6" ], "Date": [ - "Tue, 28 Apr 2015 20:45:13 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4596?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDU5Nj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "398" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4344,7 +4392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6eb045f4-07f1-49a7-a98f-594f1529cb04" + "d7f57cb1-60bd-4303-bff1-fa0df17482de" ], "Cache-Control": [ "no-cache" @@ -4354,34 +4402,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "14943" ], "x-ms-correlation-request-id": [ - "89914904-ca06-4066-b2df-362241187953" + "f07f4b6c-4c2a-4154-b744-944be1b060ab" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204514Z:89914904-ca06-4066-b2df-362241187953" + "WESTUS:20150813T073124Z:f07f4b6c-4c2a-4154-b744-944be1b060ab" ], "Date": [ - "Tue, 28 Apr 2015 20:45:14 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4650?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "398" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4396,7 +4444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf49de02-46ab-4095-8e23-cabdab28c5c9" + "b5e66531-9fc0-4069-ad59-7f632000ca5b" ], "Cache-Control": [ "no-cache" @@ -4406,34 +4454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" + "14862" ], "x-ms-correlation-request-id": [ - "d8489eb7-783a-434d-8c8e-61fb94bb7500" + "5e3f5b8a-9e9b-4788-bf19-e11c2958f866" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204515Z:d8489eb7-783a-434d-8c8e-61fb94bb7500" + "WESTUS:20150813T073133Z:5e3f5b8a-9e9b-4788-bf19-e11c2958f866" ], "Date": [ - "Tue, 28 Apr 2015 20:45:14 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4652?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "398" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4448,7 +4496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c88c9632-a443-48f6-89b3-65a4dd2ad8d6" + "23226b58-e6b0-435a-b0e3-ca41bfd478a1" ], "Cache-Control": [ "no-cache" @@ -4458,34 +4506,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "14942" ], "x-ms-correlation-request-id": [ - "51e189e6-e3e9-4354-a800-1c9569da3c5a" + "cf39d35f-c5b1-4788-9923-55050e366e75" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204516Z:51e189e6-e3e9-4354-a800-1c9569da3c5a" + "WESTUS:20150813T073124Z:cf39d35f-c5b1-4788-9923-55050e366e75" ], "Date": [ - "Tue, 28 Apr 2015 20:45:16 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4660?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY2MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "398" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4500,7 +4548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "828b181f-329c-46c3-848d-642a7e2b8b56" + "3c82d185-140c-49a8-a3c1-9a6ea4ee4793" ], "Cache-Control": [ "no-cache" @@ -4510,34 +4558,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "14861" ], "x-ms-correlation-request-id": [ - "247b47be-e7e4-4aba-948a-580eb8e0cea8" + "713ac023-ae15-4a1e-890a-18af9fbe9630" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204517Z:247b47be-e7e4-4aba-948a-580eb8e0cea8" + "WESTUS:20150813T073133Z:713ac023-ae15-4a1e-890a-18af9fbe9630" ], "Date": [ - "Tue, 28 Apr 2015 20:45:17 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4665?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY2NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "398" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4552,7 +4600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6d88db4-0a10-4ab8-98cd-412db0bf3ca0" + "653c54bd-235d-4556-a81f-fce35815ec2d" ], "Cache-Control": [ "no-cache" @@ -4562,34 +4610,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "14941" ], "x-ms-correlation-request-id": [ - "30212135-8365-4450-925c-792275032bef" + "42365cb0-f5d6-4307-8530-b06687ea56ab" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204518Z:30212135-8365-4450-925c-792275032bef" + "WESTUS:20150813T073124Z:42365cb0-f5d6-4307-8530-b06687ea56ab" ], "Date": [ - "Tue, 28 Apr 2015 20:45:18 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "307" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4604,7 +4652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cb8f041-92b9-43a7-997d-fdcaf03bec1c" + "d04c1149-1816-4536-b8d4-d7a32406806f" ], "Cache-Control": [ "no-cache" @@ -4614,34 +4662,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "14860" ], "x-ms-correlation-request-id": [ - "552d7359-af63-4e5c-84b4-91fe5f8380e6" + "12df5518-cfc7-4cd4-8e05-f869fa2ef51e" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204519Z:552d7359-af63-4e5c-84b4-91fe5f8380e6" + "WESTUS:20150813T073133Z:12df5518-cfc7-4cd4-8e05-f869fa2ef51e" ], "Date": [ - "Tue, 28 Apr 2015 20:45:19 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4806?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "408" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4656,7 +4704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f145e252-9213-48ff-8708-0a41fc2955e8" + "39f90894-24b3-406f-a960-8047e9c9833b" ], "Cache-Control": [ "no-cache" @@ -4666,34 +4714,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "14940" ], "x-ms-correlation-request-id": [ - "5810a8fe-f075-4200-af66-f66817d51ef5" + "e133b657-5287-4987-b81c-fabfc94d4e31" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204520Z:5810a8fe-f075-4200-af66-f66817d51ef5" + "WESTUS:20150813T073125Z:e133b657-5287-4987-b81c-fabfc94d4e31" ], "Date": [ - "Tue, 28 Apr 2015 20:45:19 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnMvMS40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "269" + "413" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4708,7 +4756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d9a189c-1a8f-468c-9a03-9ab98c7ee7e5" + "ef7df862-2fec-4341-8c61-9f62f6c2cb22" ], "Cache-Control": [ "no-cache" @@ -4718,34 +4766,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "14859" ], "x-ms-correlation-request-id": [ - "dd979b9a-c677-4de7-973a-f3f8c8cdb58e" + "e5ddfe79-6318-4756-9087-885d2252e353" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204521Z:dd979b9a-c677-4de7-973a-f3f8c8cdb58e" + "WESTUS:20150813T073133Z:e5ddfe79-6318-4756-9087-885d2252e353" ], "Date": [ - "Tue, 28 Apr 2015 20:45:20 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmKg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office13P\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office365P\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Remote-Desktop-Session-Host\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "895" + "259" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4760,7 +4808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a8339481-f056-475f-950f-ee8c4688cb29" + "d097de57-b1f1-4376-a487-90f474d4996f" ], "Cache-Control": [ "no-cache" @@ -4770,34 +4818,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31918" + "14939" ], "x-ms-correlation-request-id": [ - "18e843a6-7dcf-4f03-a4de-2d4029a512b5" + "8e3d282d-e23d-48c2-9d85-7c38d773de73" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204521Z:18e843a6-7dcf-4f03-a4de-2d4029a512b5" + "WESTUS:20150813T073125Z:8e3d282d-e23d-48c2-9d85-7c38d773de73" ], "Date": [ - "Tue, 28 Apr 2015 20:45:21 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20141111\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150127\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "927" + "405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4812,7 +4860,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91928fa9-31e6-47ff-88fb-e1c7d338da59" + "0a9bc790-2ec1-4ae0-88bb-2b6852b6b01a" ], "Cache-Control": [ "no-cache" @@ -4822,34 +4870,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31917" + "14938" ], "x-ms-correlation-request-id": [ - "285053b2-d91d-42f6-bc30-f8722e681689" + "b3f209b5-3373-463a-9a17-60ae8aa717b0" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204522Z:285053b2-d91d-42f6-bc30-f8722e681689" + "WESTUS:20150813T073125Z:b3f209b5-3373-463a-9a17-60ae8aa717b0" ], "Date": [ - "Tue, 28 Apr 2015 20:45:22 GMT" + "Thu, 13 Aug 2015 07:31:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20141111?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNDExMTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zLzIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20141111\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "412" + "405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4864,7 +4912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d36c13d7-fd93-4877-8592-248f759cba1f" + "e28e98d5-5d73-4fd4-a266-0b863b9f5b82" ], "Cache-Control": [ "no-cache" @@ -4874,34 +4922,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31916" + "14857" ], "x-ms-correlation-request-id": [ - "373fd4e7-0467-4a59-9267-bf82f9e6a106" + "721c1385-2049-4059-957d-06a3c08cad05" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204523Z:373fd4e7-0467-4a59-9267-bf82f9e6a106" + "WESTUS:20150813T073134Z:721c1385-2049-4059-957d-06a3c08cad05" ], "Date": [ - "Tue, 28 Apr 2015 20:45:22 GMT" + "Thu, 13 Aug 2015 07:31:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20150127?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNTAxMjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150127\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150127\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2CN\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2CNExcel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TechnicalPreview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "412" + "1137" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4916,7 +4964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "014b9971-5d7d-447d-8654-8b66ee994495" + "a0c499f2-1c9f-4f04-a1f4-c7f6a86d2c20" ], "Cache-Control": [ "no-cache" @@ -4926,34 +4974,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31915" + "14905" ], "x-ms-correlation-request-id": [ - "8d1e66e8-d0e0-4540-8da9-66fb1a3e50a7" + "86334e31-8e1f-4d5e-acce-7da5e3865cda" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204524Z:8d1e66e8-d0e0-4540-8da9-66fb1a3e50a7" + "WESTUS:20150813T073128Z:86334e31-8e1f-4d5e-acce-7da5e3865cda" ], "Date": [ - "Tue, 28 Apr 2015 20:45:24 GMT" + "Thu, 13 Aug 2015 07:31:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20150309?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNTAzMDk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150309\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.4.4864\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "412" + "1767" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4968,7 +5016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6394b181-b1de-4694-934e-775f544f24b7" + "e93acb2d-ed27-4cfa-9a38-c38ad450b4a6" ], "Cache-Control": [ "no-cache" @@ -4978,34 +5026,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31914" + "14904" ], "x-ms-correlation-request-id": [ - "8095e95b-a95a-4c63-9be3-723e6801dc99" + "a3a55ce2-2ceb-4a0f-99f6-6f41f0a22b15" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204525Z:8095e95b-a95a-4c63-9be3-723e6801dc99" + "WESTUS:20150813T073128Z:a3a55ce2-2ceb-4a0f-99f6-6f41f0a22b15" ], "Date": [ - "Tue, 28 Apr 2015 20:45:25 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4596?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDU5Nj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141121\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141121\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141126\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141126\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1239" + "398" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5020,7 +5068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4041865-134d-4289-95b3-ad4683adef8a" + "54b220ce-a147-44ea-8830-824ed1ee60b8" ], "Cache-Control": [ "no-cache" @@ -5030,34 +5078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31913" + "14903" ], "x-ms-correlation-request-id": [ - "22c0984a-9034-48ac-bfcf-86084d8fa04d" + "44f06563-eee6-4df5-9bf1-207bf827851f" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204526Z:22c0984a-9034-48ac-bfcf-86084d8fa04d" + "WESTUS:20150813T073129Z:44f06563-eee6-4df5-9bf1-207bf827851f" ], "Date": [ - "Tue, 28 Apr 2015 20:45:26 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20141121?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTQxMTIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4650?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141121\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141121\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "398" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5072,7 +5120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03aa8900-3a03-4541-a6b1-0ac2e240415d" + "af014c55-e88b-40bc-a4fa-31906bc7b138" ], "Cache-Control": [ "no-cache" @@ -5082,34 +5130,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31912" + "14902" ], "x-ms-correlation-request-id": [ - "87f843f2-96ff-4320-8239-e944280b9c1c" + "38af3a70-64b8-40c4-bd57-052885f5be97" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204527Z:87f843f2-96ff-4320-8239-e944280b9c1c" + "WESTUS:20150813T073129Z:38af3a70-64b8-40c4-bd57-052885f5be97" ], "Date": [ - "Tue, 28 Apr 2015 20:45:27 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20141126?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTQxMTI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4652?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141126\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141126\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "398" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5124,7 +5172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a38c363f-0f15-4e88-b8bb-a7cb2cdf7b69" + "d610c133-0497-401e-9b7c-03169c176d3a" ], "Cache-Control": [ "no-cache" @@ -5134,34 +5182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31911" + "14901" ], "x-ms-correlation-request-id": [ - "3b76eed1-4e90-43c6-9457-4114f3208652" + "3d75d571-3af1-474d-960a-19b74552de72" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204528Z:3b76eed1-4e90-43c6-9457-4114f3208652" + "WESTUS:20150813T073129Z:3d75d571-3af1-474d-960a-19b74552de72" ], "Date": [ - "Tue, 28 Apr 2015 20:45:27 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20150128?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTUwMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4660?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY2MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150128\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "398" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5176,7 +5224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1bd3ee1f-f81a-42d5-929a-27c1c02ce4ce" + "c43c3be4-e786-4297-ba74-43ed9ed104ef" ], "Cache-Control": [ "no-cache" @@ -5186,34 +5234,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31910" + "14900" ], "x-ms-correlation-request-id": [ - "c9e197a1-94c1-4db9-9236-53c93e9af152" + "c3c5a611-dce7-4fbe-bab0-9135f8e5aefc" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204529Z:c9e197a1-94c1-4db9-9236-53c93e9af152" + "WESTUS:20150813T073129Z:c3c5a611-dce7-4fbe-bab0-9135f8e5aefc" ], "Date": [ - "Tue, 28 Apr 2015 20:45:28 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20150309?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTUwMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4665?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY2NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150309\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "398" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5228,7 +5276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4d5c395-c808-4b17-b759-6022a08ad73a" + "abef38f2-c8f7-4c00-a734-a1fd810341d0" ], "Cache-Control": [ "no-cache" @@ -5238,34 +5286,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31909" + "14899" ], "x-ms-correlation-request-id": [ - "ed40b2c6-7ed3-455c-b1e2-538e21cb936d" + "c65f3aa6-47c5-4c4d-99a1-86791c96e521" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204530Z:ed40b2c6-7ed3-455c-b1e2-538e21cb936d" + "WESTUS:20150813T073129Z:c65f3aa6-47c5-4c4d-99a1-86791c96e521" ], "Date": [ - "Tue, 28 Apr 2015 20:45:30 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.4.4864?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjQuNDg2ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20141111\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.4.4864\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "966" + "398" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5280,7 +5328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e44978b-3d45-4458-a72b-f873f0be496a" + "2fd7cb86-478b-4f57-8dea-3aab50a49dfa" ], "Cache-Control": [ "no-cache" @@ -5290,34 +5338,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31908" + "14898" ], "x-ms-correlation-request-id": [ - "0e81a6b4-6fb5-415e-86f4-aaebc69dec08" + "badaaa81-f3a4-4472-b00f-b220ad6e852d" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204531Z:0e81a6b4-6fb5-415e-86f4-aaebc69dec08" + "WESTUS:20150813T073129Z:badaaa81-f3a4-4472-b00f-b220ad6e852d" ], "Date": [ - "Tue, 28 Apr 2015 20:45:31 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20141111?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTQxMTExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20141111\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.4.4864\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5332,7 +5380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "356cdaaf-3fa7-44c8-ad51-24179fe781a2" + "993fbc65-9d56-43e5-92e0-c5d90a2d5bae" ], "Cache-Control": [ "no-cache" @@ -5342,34 +5390,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31907" + "14897" ], "x-ms-correlation-request-id": [ - "c6f4770d-b816-45e2-9994-4294b2f39fd0" + "35d4a31e-3f08-467e-ba76-e3cad33c86a1" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204532Z:c6f4770d-b816-45e2-9994-4294b2f39fd0" + "WESTUS:20150813T073129Z:35d4a31e-3f08-467e-ba76-e3cad33c86a1" ], "Date": [ - "Tue, 28 Apr 2015 20:45:32 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150128?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTUwMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.4.4864?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNC40ODY0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150128\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.4.4864\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "425" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5384,7 +5432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14e582b5-73c0-4d91-9f62-a3db071fe550" + "9f18cb28-6158-437d-9e30-c73cf832863d" ], "Cache-Control": [ "no-cache" @@ -5394,34 +5442,1438 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31906" + "14896" ], "x-ms-correlation-request-id": [ - "5d5e6b0f-8ea2-47d1-be77-4dd65ce92d1f" + "26d83f2e-ba95-4158-871a-fcd89d4ed5b2" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204533Z:5d5e6b0f-8ea2-47d1-be77-4dd65ce92d1f" + "WESTUS:20150813T073129Z:26d83f2e-ba95-4158-871a-fcd89d4ed5b2" ], "Date": [ - "Tue, 28 Apr 2015 20:45:32 GMT" + "Thu, 13 Aug 2015 07:31:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150309?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTUwMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150309\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.4.4864\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "425" + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d946ca68-8068-4bfe-aad6-51c8f9dcff3c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "d4f80481-1d84-40fd-afda-a553eea2aa8b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073129Z:d4f80481-1d84-40fd-afda-a553eea2aa8b" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.4.4864?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC40LjQ4NjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.4.4864\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad21eced-200e-4430-86e4-85a0a1cfbcd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "b53c4358-ed57-4ba5-ad4f-d77c8dc076aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:b53c4358-ed57-4ba5-ad4f-d77c8dc076aa" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4835\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4835\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4858\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4858\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "915" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "10cc81d2-aa39-46b8-afed-6ab270d3bc7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "2457de53-8dd0-4fb6-b659-f09ef068e0a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:2457de53-8dd0-4fb6-b659-f09ef068e0a9" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4806?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff7d3b19-5179-42d6-bcf0-e26862976641" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "effa90f8-be58-48f5-871d-544621d0217c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:effa90f8-be58-48f5-871d-544621d0217c" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4835?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4MzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4835\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4835\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f3f8c3e-f52c-4f38-b20c-b328f2ec7e16" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "a80ba22a-a29c-4b80-846c-98d7077f0d48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:a80ba22a-a29c-4b80-846c-98d7077f0d48" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4858?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4NTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4858\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4858\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "37f98d3e-cfca-40cd-9279-70ef09487d28" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "1e639038-2699-49ca-9a6e-14099d0731e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:1e639038-2699-49ca-9a6e-14099d0731e5" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01015256-12e8-4276-8855-de9aef26efda" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "52aa137b-322f-43ff-8cf1-7a3691f59cf0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:52aa137b-322f-43ff-8cf1-7a3691f59cf0" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office13P\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office365P\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Remote-Desktop-Session-Host\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "895" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d5ae7619-6748-466a-b8c6-8186f32c58f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "428f1dcb-1555-49bf-ae7d-2ac825615ac6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:428f1dcb-1555-49bf-ae7d-2ac825615ac6" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20141111\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "927" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c590af7f-0550-432f-bce4-dd6104fd75c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "28a6067f-df23-4607-8f46-ca7472cd3791" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:28a6067f-df23-4607-8f46-ca7472cd3791" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20141111?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNDExMTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20141111\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "497508a0-7963-429e-93de-cda4ae640d1c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "56bf1df3-5372-4884-b069-aa6c23c2026a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:56bf1df3-5372-4884-b069-aa6c23c2026a" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20150127?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNTAxMjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150127\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "79596b4b-63f7-4522-8dd2-73d2d0b507b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "7c9ede05-b98d-47d0-9cc0-226826349e20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073130Z:7c9ede05-b98d-47d0-9cc0-226826349e20" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20150309?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNTAzMDk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150309\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e50db65d-595e-4493-ac6f-814a4149492c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "84db1ca7-6791-43a7-b21c-99f433d12bfc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073131Z:84db1ca7-6791-43a7-b21c-99f433d12bfc" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141121\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141121\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141126\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141126\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94b7aae0-f4ea-4543-a0dc-f06aefc10656" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "0483f5bf-a8b9-4ea4-ac8e-4eddaf377730" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073131Z:0483f5bf-a8b9-4ea4-ac8e-4eddaf377730" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20141121?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTQxMTIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141121\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141121\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "413" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "270c2fa6-3b5b-49bb-b8f1-10f8598d3cc5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-correlation-request-id": [ + "a12125ae-239f-4f71-aa75-9630e0be5983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073131Z:a12125ae-239f-4f71-aa75-9630e0be5983" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20141126?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTQxMTI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141126\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141126\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "413" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34857d68-8802-4949-91a3-83726d5d0be4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-correlation-request-id": [ + "99a8fbbb-86cd-482e-b7a7-d4009285aa26" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073131Z:99a8fbbb-86cd-482e-b7a7-d4009285aa26" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20150128?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTUwMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150128\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "413" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f67970df-db2b-4a42-9163-60faaf1ff13e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "93fe4b55-56f5-469b-93a8-daad5fd0a4f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073131Z:93fe4b55-56f5-469b-93a8-daad5fd0a4f7" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20150309?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTUwMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150309\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "413" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "36bc8a30-426c-4a5a-88e0-e62c0e6e53e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "f04234fc-7e15-4f8c-b725-537c5c838f22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073131Z:f04234fc-7e15-4f8c-b725-537c5c838f22" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20141111\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "966" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "99d83694-4457-4a72-8093-4a2bb835086a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-correlation-request-id": [ + "dcd3c9a3-d2df-4a59-8442-d8fb542d5956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073131Z:dcd3c9a3-d2df-4a59-8442-d8fb542d5956" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20141111?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTQxMTExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20141111\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "425" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e0c1c795-9695-4d8a-becf-6521d8534247" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "04437dcd-d305-4ae1-a9e8-3fb3990152f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073131Z:04437dcd-d305-4ae1-a9e8-3fb3990152f0" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150128?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTUwMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150128\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "425" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2a9355bb-eee2-4b5d-9f28-5e960c751f7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "x-ms-correlation-request-id": [ + "f447c9b2-5a76-4c96-872c-b1ce5607824d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073132Z:f447c9b2-5a76-4c96-872c-b1ce5607824d" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150309?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTUwMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150309\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "425" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1942b3a0-53b0-4a4b-866a-1e44d318449d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "59a796dc-bf97-4391-af6d-62f2becfc349" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073132Z:59a796dc-bf97-4391-af6d-62f2becfc349" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office13P\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office365P\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Remote-Desktop-Session-Host\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "898" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b4764cc5-e114-4af5-a58a-e435afd32467" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "1aa971f2-5412-4fab-aadd-abccc87033f4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073132Z:1aa971f2-5412-4fab-aadd-abccc87033f4" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office13P/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UxM1AvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150514\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P/Versions/4.0.20150514\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "312" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c4443aed-f21f-4571-80ab-abcbe7262633" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "5be431f7-b6d6-4586-ad85-3ba3e80d6020" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073132Z:5be431f7-b6d6-4586-ad85-3ba3e80d6020" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office13P/versions/4.0.20150514?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UxM1AvdmVyc2lvbnMvNC4wLjIwMTUwNTE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150514\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P/Versions/4.0.20150514\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "413" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "47be8c0d-ae35-477f-976d-0e1d1fb275c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "x-ms-correlation-request-id": [ + "647eefd4-2441-4665-9781-429281df273a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073132Z:647eefd4-2441-4665-9781-429281df273a" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office365P/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UzNjVQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150610\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P/Versions/4.0.20150610\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "60b5b2ff-8605-4d5a-85a6-709e253a961a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "a390c189-9d0a-4911-9728-80f87670f703" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073132Z:a390c189-9d0a-4911-9728-80f87670f703" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office365P/versions/4.0.20150610?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UzNjVQL3ZlcnNpb25zLzQuMC4yMDE1MDYxMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150610\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P/Versions/4.0.20150610\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "414" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a78529fb-c646-4fa0-956d-8fc26de4eaf7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "c4ccdbb2-3edc-4de7-af62-4834dfb3c8df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073132Z:c4ccdbb2-3edc-4de7-af62-4834dfb3c8df" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/Remote-Desktop-Session-Host/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUmVtb3RlLURlc2t0b3AtU2Vzc2lvbi1Ib3N0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150513\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150513\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "325" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6fd53c43-8fee-47f9-b6a1-20658095a63e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "c3335583-0a13-4b97-8093-1e023354c881" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073132Z:c3335583-0a13-4b97-8093-1e023354c881" + ], + "Date": [ + "Thu, 13 Aug 2015 07:31:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150513?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUmVtb3RlLURlc2t0b3AtU2Vzc2lvbi1Ib3N0L3ZlcnNpb25zLzQuMC4yMDE1MDUxMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150513\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150513\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5436,7 +6888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "487a75ba-b7c8-48c2-aa5f-fa1c7758464d" + "c7661f82-4c79-47eb-b3fe-e20cdd0cde9e" ], "Cache-Control": [ "no-cache" @@ -5446,31 +6898,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31905" + "14868" ], "x-ms-correlation-request-id": [ - "5c24edaa-dbd0-4445-acaf-958922ff08e0" + "edd162ba-0956-48f7-9a8b-a90d1314f2e2" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204534Z:5c24edaa-dbd0-4445-acaf-958922ff08e0" + "WESTUS:20150813T073132Z:edd162ba-0956-48f7-9a8b-a90d1314f2e2" ], "Date": [ - "Tue, 28 Apr 2015 20:45:33 GMT" + "Thu, 13 Aug 2015 07:31:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9DdXN0b21TY3JpcHRFeHRlbnNpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1595" @@ -5488,7 +6940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bfc72656-9e7d-4cad-9f51-5eeb82900ef9" + "66f301d8-d321-4b4d-b189-7bafa27383ef" ], "Cache-Control": [ "no-cache" @@ -5498,31 +6950,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31902" + "14865" ], "x-ms-correlation-request-id": [ - "b4021d20-d8a9-4b85-9f62-57a45fbec9e7" + "ee210833-d495-49fc-b142-b5d517851b8c" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204536Z:b4021d20-d8a9-4b85-9f62-57a45fbec9e7" + "WESTUS:20150813T073133Z:ee210833-d495-49fc-b142-b5d517851b8c" ], "Date": [ - "Tue, 28 Apr 2015 20:45:36 GMT" + "Thu, 13 Aug 2015 07:31:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9WTUFjY2Vzc0FnZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "259" @@ -5540,7 +6992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85496337-86d7-4ecb-a862-831cb012cbf3" + "29d46e13-c0f0-4dc6-ba93-ca140150df81" ], "Cache-Control": [ "no-cache" @@ -5550,31 +7002,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31895" + "14858" ], "x-ms-correlation-request-id": [ - "24979154-53a1-4e3e-8c26-ed032c74dbbc" + "ae15d561-0748-420e-af19-3ebe96aaaeb3" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204543Z:24979154-53a1-4e3e-8c26-ed032c74dbbc" + "WESTUS:20150813T073134Z:ae15d561-0748-420e-af19-3ebe96aaaeb3" ], "Date": [ - "Tue, 28 Apr 2015 20:45:42 GMT" + "Thu, 13 Aug 2015 07:31:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pstestrg2204/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHN0ZXN0cmcyMjA0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/crptestps783/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzNzgzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg2204 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps783 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -5592,7 +7044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8f75b17-d1ba-4c2b-a1f7-01d1c2a71ed3" + "6f0687f6-8627-4de0-9471-c458fa51bccf" ], "Cache-Control": [ "no-cache" @@ -5602,31 +7054,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31892" + "14855" ], "x-ms-correlation-request-id": [ - "7f73f3bf-bce2-42ce-8efd-40cc9066aed9" + "5caf5fb1-fab8-421a-af08-61947dcd6f2b" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204546Z:7f73f3bf-bce2-42ce-8efd-40cc9066aed9" + "WESTUS:20150813T073134Z:5caf5fb1-fab8-421a-af08-61947dcd6f2b" ], "Date": [ - "Tue, 28 Apr 2015 20:45:46 GMT" + "Thu, 13 Aug 2015 07:31:34 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pstestrg2204/artifacttypes/vmimage/offers/pstestrg4852/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHN0ZXN0cmcyMjA0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHN0ZXN0cmc0ODUyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/crptestps783/artifacttypes/vmimage/offers/crptestps4519/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzNzgzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY3JwdGVzdHBzNDUxOS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg2204 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps783 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -5644,7 +7096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a386818b-7a70-4c51-a053-f1ae7c580d44" + "a4d8ee68-9f97-4250-a044-51233cc70444" ], "Cache-Control": [ "no-cache" @@ -5654,31 +7106,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31891" + "14854" ], "x-ms-correlation-request-id": [ - "a2fc1914-5953-4910-961f-1caa697efd5c" + "f60fe2bf-c86b-4548-905a-595a263646d0" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204547Z:a2fc1914-5953-4910-961f-1caa697efd5c" + "WESTUS:20150813T073135Z:f60fe2bf-c86b-4548-905a-595a263646d0" ], "Date": [ - "Tue, 28 Apr 2015 20:45:47 GMT" + "Thu, 13 Aug 2015 07:31:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pstestrg2204/artifacttypes/vmimage/offers/pstestrg4852/skus/pstestrg6291/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHN0ZXN0cmcyMjA0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHN0ZXN0cmc0ODUyL3NrdXMvcHN0ZXN0cmc2MjkxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/crptestps783/artifacttypes/vmimage/offers/crptestps4519/skus/crptestps2735/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzNzgzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY3JwdGVzdHBzNDUxOS9za3VzL2NycHRlc3RwczI3MzUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg2204 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps783 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -5696,7 +7148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8391f88-17b2-4a6a-bf83-573fd5feddb2" + "887220ca-b270-47ca-95ed-b833c8b47a87" ], "Cache-Control": [ "no-cache" @@ -5706,31 +7158,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31890" + "14853" ], "x-ms-correlation-request-id": [ - "f267428c-12d1-4f67-97b3-35e874695468" + "959b8f38-73c7-4e0a-8ded-cbe5a7c58517" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204548Z:f267428c-12d1-4f67-97b3-35e874695468" + "WESTUS:20150813T073135Z:959b8f38-73c7-4e0a-8ded-cbe5a7c58517" ], "Date": [ - "Tue, 28 Apr 2015 20:45:47 GMT" + "Thu, 13 Aug 2015 07:31:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pstestrg2204/artifacttypes/vmimage/offers/pstestrg4852/skus/pstestrg6291/versions?api-version=2015-06-15&name%20eq%20'latest'", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHN0ZXN0cmcyMjA0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHN0ZXN0cmc0ODUyL3NrdXMvcHN0ZXN0cmc2MjkxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmbmFtZSUyMGVxJTIwJ2xhdGVzdCc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/crptestps783/artifacttypes/vmimage/offers/crptestps4519/skus/crptestps2735/versions?api-version=2015-06-15&name%20eq%20'latest'", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzNzgzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY3JwdGVzdHBzNDUxOS9za3VzL2NycHRlc3RwczI3MzUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSZuYW1lJTIwZXElMjAnbGF0ZXN0Jw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg2204 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps783 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -5748,7 +7200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2caaf30a-86f3-4983-bbb6-f9986e3aabb2" + "f7a5d9a5-c775-40ff-876f-203763ecc2dc" ], "Cache-Control": [ "no-cache" @@ -5758,31 +7210,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31889" + "14852" ], "x-ms-correlation-request-id": [ - "6aa288f6-2d39-4f16-84e9-4696a9f3bf7a" + "52e3ce74-4c91-4401-8b8a-575d847aea33" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204549Z:6aa288f6-2d39-4f16-84e9-4696a9f3bf7a" + "WESTUS:20150813T073135Z:52e3ce74-4c91-4401-8b8a-575d847aea33" ], "Date": [ - "Tue, 28 Apr 2015 20:45:48 GMT" + "Thu, 13 Aug 2015 07:31:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pstestrg2204/artifacttypes/vmimage/offers/pstestrg4852/skus/pstestrg6291/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHN0ZXN0cmcyMjA0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHN0ZXN0cmc0ODUyL3NrdXMvcHN0ZXN0cmc2MjkxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/crptestps783/artifacttypes/vmimage/offers/crptestps4519/skus/crptestps2735/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzNzgzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY3JwdGVzdHBzNDUxOS9za3VzL2NycHRlc3RwczI3MzUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg2204 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps783 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -5800,7 +7252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bfb3eaca-de81-499b-b4e6-30ab837632db" + "4ced3906-c203-4d86-881c-9a2b727f684d" ], "Cache-Control": [ "no-cache" @@ -5810,31 +7262,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31888" + "14851" ], "x-ms-correlation-request-id": [ - "76f66998-bd93-470f-a911-aec1a76b0668" + "54a823fc-87f6-4b95-88a9-55d579cf4759" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204550Z:76f66998-bd93-470f-a911-aec1a76b0668" + "WESTUS:20150813T073135Z:54a823fc-87f6-4b95-88a9-55d579cf4759" ], "Date": [ - "Tue, 28 Apr 2015 20:45:49 GMT" + "Thu, 13 Aug 2015 07:31:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pstestrg2204/artifacttypes/vmextension/types/pstestrg5030/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHN0ZXN0cmcyMjA0L2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvcHN0ZXN0cmc1MDMwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/crptestps783/artifacttypes/vmextension/types/crptestps6861/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzNzgzL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvY3JwdGVzdHBzNjg2MS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg2204 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps783 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -5852,7 +7304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e18eb64c-194f-487c-b5c8-1f9143322176" + "3dfe3f68-c4be-485b-9417-2ec9c4c9b227" ], "Cache-Control": [ "no-cache" @@ -5862,31 +7314,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31887" + "14850" ], "x-ms-correlation-request-id": [ - "6847dd7d-eca3-4ff0-a0f2-25b3e6c9ab45" + "ce8a6aed-179c-4167-8dce-fbddd035350a" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204551Z:6847dd7d-eca3-4ff0-a0f2-25b3e6c9ab45" + "WESTUS:20150813T073135Z:ce8a6aed-179c-4167-8dce-fbddd035350a" ], "Date": [ - "Tue, 28 Apr 2015 20:45:51 GMT" + "Thu, 13 Aug 2015 07:31:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pstestrg2204/artifacttypes/vmextension/types?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHN0ZXN0cmcyMjA0L2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/crptestps783/artifacttypes/vmextension/types?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzNzgzL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg2204 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps783 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -5904,7 +7356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59831f0a-685d-4370-ae47-77d11a2b8c7e" + "62eb2426-e0f9-4d6c-bd9b-9648ade1f174" ], "Cache-Control": [ "no-cache" @@ -5914,31 +7366,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31886" + "14849" ], "x-ms-correlation-request-id": [ - "327eff8f-f579-40f0-a715-d10b976419ad" + "8e6ec49b-9b36-40e3-ad2e-97bfca12f8f4" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204552Z:327eff8f-f579-40f0-a715-d10b976419ad" + "WESTUS:20150813T073135Z:8e6ec49b-9b36-40e3-ad2e-97bfca12f8f4" ], "Date": [ - "Tue, 28 Apr 2015 20:45:52 GMT" + "Thu, 13 Aug 2015 07:31:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pstestrg2204/artifacttypes/vmextension/types/pstestrg5030/versions?api-version=2015-06-15&name%20eq%20'latest'", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHN0ZXN0cmcyMjA0L2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvcHN0ZXN0cmc1MDMwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTUmbmFtZSUyMGVxJTIwJ2xhdGVzdCc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/crptestps783/artifacttypes/vmextension/types/crptestps6861/versions?api-version=2015-06-15&name%20eq%20'latest'", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY3JwdGVzdHBzNzgzL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvY3JwdGVzdHBzNjg2MS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1Jm5hbWUlMjBlcSUyMCdsYXRlc3Qn", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg2204 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: crptestps783 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -5956,7 +7408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2125297-948d-4ff5-96f0-765f9f57e76e" + "8912b6c7-4d5f-431b-be59-35ed60938071" ], "Cache-Control": [ "no-cache" @@ -5966,16 +7418,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31885" + "14848" ], "x-ms-correlation-request-id": [ - "a0761391-7c64-4d9f-b6ad-f299d2bae3ad" + "3f906b5a-a423-442a-9b67-9b8b845a61ec" ], "x-ms-routing-request-id": [ - "AUSTRALIASOUTHEAST:20150428T204553Z:a0761391-7c64-4d9f-b6ad-f299d2bae3ad" + "WESTUS:20150813T073136Z:3f906b5a-a423-442a-9b67-9b8b845a61ec" ], "Date": [ - "Tue, 28 Apr 2015 20:45:52 GMT" + "Thu, 13 Aug 2015 07:31:35 GMT" ] }, "StatusCode": 404 @@ -5983,15 +7435,15 @@ ], "Names": { "Test-VirtualMachineImageList": [ - "pstestrg2204", - "pstestrg4852", - "pstestrg6291", - "pstestrg5030" + "crptestps783", + "crptestps4519", + "crptestps2735", + "crptestps6861" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePIRv2.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePIRv2.json index e1ecec4884e8..2e10d2fd4c22 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePIRv2.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePIRv2.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7912?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzkxMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "8e2d8ad6-6328-46e3-a64f-955392d4e4d9" + ], + "x-ms-correlation-request-id": [ + "8e2d8ad6-6328-46e3-a64f-955392d4e4d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073210Z:8e2d8ad6-6328-46e3-a64f-955392d4e4d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 07:32:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8601?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14977" ], "x-ms-request-id": [ - "50d9c679-6356-4585-bf36-cb27ebd644a6" + "0b89c224-d4b7-4d27-9f62-6e372fd05999" ], "x-ms-correlation-request-id": [ - "50d9c679-6356-4585-bf36-cb27ebd644a6" + "0b89c224-d4b7-4d27-9f62-6e372fd05999" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211636Z:50d9c679-6356-4585-bf36-cb27ebd644a6" + "WESTUS:20150813T073210Z:0b89c224-d4b7-4d27-9f62-6e372fd05999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:16:35 GMT" + "Thu, 13 Aug 2015 07:32:10 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7912?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzkxMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8601?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14926" ], "x-ms-request-id": [ - "b0a2a874-1c8f-417a-9151-29849bad03ac" + "87a61912-d893-4e57-8cc6-8c578b670553" ], "x-ms-correlation-request-id": [ - "b0a2a874-1c8f-417a-9151-29849bad03ac" + "87a61912-d893-4e57-8cc6-8c578b670553" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212241Z:b0a2a874-1c8f-417a-9151-29849bad03ac" + "WESTUS:20150813T073926Z:87a61912-d893-4e57-8cc6-8c578b670553" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:22:41 GMT" + "Thu, 13 Aug 2015 07:39:26 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7912?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzkxMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8601?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912\",\r\n \"name\": \"pstestrg7912\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601\",\r\n \"name\": \"crptestps8601\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "6bfe5571-1886-4a91-a884-b11f701f35d3" + "f9f8c5c0-f97f-417b-adc6-88922d80041c" ], "x-ms-correlation-request-id": [ - "6bfe5571-1886-4a91-a884-b11f701f35d3" + "f9f8c5c0-f97f-417b-adc6-88922d80041c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211636Z:6bfe5571-1886-4a91-a884-b11f701f35d3" + "WESTUS:20150813T073211Z:f9f8c5c0-f97f-417b-adc6-88922d80041c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:16:35 GMT" + "Thu, 13 Aug 2015 07:32:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14976" ], "x-ms-request-id": [ - "829e8be7-2c21-4f6d-9327-4ce46db0e823" + "dfc8133d-b034-4660-b731-67495ea0f2c1" ], "x-ms-correlation-request-id": [ - "829e8be7-2c21-4f6d-9327-4ce46db0e823" + "dfc8133d-b034-4660-b731-67495ea0f2c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211636Z:829e8be7-2c21-4f6d-9327-4ce46db0e823" + "WESTUS:20150813T073211Z:dfc8133d-b034-4660-b731-67495ea0f2c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:16:35 GMT" + "Thu, 13 Aug 2015 07:32:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7912/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8601/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a4d38f19-fcd1-4c0b-8b20-6a8ae3391d9d" + "westus:4d0a6156-af81-43c4-b571-8b489fb13284" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14931" ], "x-ms-correlation-request-id": [ - "6c2e1f6b-c0fe-4f8b-a32e-3c50496935f6" + "b97f9e33-93b3-41b1-ba7f-e7a4db6129aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211633Z:6c2e1f6b-c0fe-4f8b-a32e-3c50496935f6" + "WESTUS:20150813T073211Z:b97f9e33-93b3-41b1-ba7f-e7a4db6129aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:16:32 GMT" + "Thu, 13 Aug 2015 07:32:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc5MTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODYwMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps8601' under resource group 'crptestps8601' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "bbce9d02-13d3-49c4-ad9e-23e16aa176da" + "1b6450ff-2801-47de-b486-a1f05d40970e" ], "x-ms-correlation-request-id": [ - "bbce9d02-13d3-49c4-ad9e-23e16aa176da" + "1b6450ff-2801-47de-b486-a1f05d40970e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211634Z:bbce9d02-13d3-49c4-ad9e-23e16aa176da" + "WESTUS:20150813T073212Z:1b6450ff-2801-47de-b486-a1f05d40970e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:16:34 GMT" + "Thu, 13 Aug 2015 07:32:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc5MTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODYwMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912\",\r\n \"etag\": \"W/\\\"2de6b679-adbf-4d1d-8803-88dfce69e908\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912/subnets/subnetpstestrg7912\",\r\n \"etag\": \"W/\\\"2de6b679-adbf-4d1d-8803-88dfce69e908\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601\",\r\n \"etag\": \"W/\\\"d3ab47e1-7fcc-4337-a546-8ab14806a9ab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cf349572-3406-4b9a-9687-53c81cebff4c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601/subnets/subnetcrptestps8601\",\r\n \"etag\": \"W/\\\"d3ab47e1-7fcc-4337-a546-8ab14806a9ab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "0ea0af5e-bb97-4a6d-a906-787780064097" + "562358be-d1d9-4a63-af74-675d9d6aae73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"2de6b679-adbf-4d1d-8803-88dfce69e908\"" + "W/\"d3ab47e1-7fcc-4337-a546-8ab14806a9ab\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14844" ], "x-ms-correlation-request-id": [ - "5014e4a4-104e-42ce-992d-5fc69c3930de" + "158348e8-8faa-4b23-9fe9-455daacc1f3e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211635Z:5014e4a4-104e-42ce-992d-5fc69c3930de" + "WESTUS:20150813T073223Z:158348e8-8faa-4b23-9fe9-455daacc1f3e" ], "Date": [ - "Tue, 28 Apr 2015 21:16:35 GMT" + "Thu, 13 Aug 2015 07:32:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc5MTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODYwMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912\",\r\n \"etag\": \"W/\\\"2de6b679-adbf-4d1d-8803-88dfce69e908\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912/subnets/subnetpstestrg7912\",\r\n \"etag\": \"W/\\\"2de6b679-adbf-4d1d-8803-88dfce69e908\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601\",\r\n \"etag\": \"W/\\\"d3ab47e1-7fcc-4337-a546-8ab14806a9ab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cf349572-3406-4b9a-9687-53c81cebff4c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601/subnets/subnetcrptestps8601\",\r\n \"etag\": \"W/\\\"d3ab47e1-7fcc-4337-a546-8ab14806a9ab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "aa01fcb2-8b3f-4da1-a1db-d159c88ad9bc" + "c053c6cb-15a4-4650-9366-821d2f74bf75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"2de6b679-adbf-4d1d-8803-88dfce69e908\"" + "W/\"d3ab47e1-7fcc-4337-a546-8ab14806a9ab\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14843" ], "x-ms-correlation-request-id": [ - "0e2907fd-930b-4854-a139-c584d1f8a87b" + "8be2dadf-5fef-49e7-9157-5f0d4e70aca0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211635Z:0e2907fd-930b-4854-a139-c584d1f8a87b" + "WESTUS:20150813T073223Z:8be2dadf-5fef-49e7-9157-5f0d4e70aca0" ], "Date": [ - "Tue, 28 Apr 2015 21:16:35 GMT" + "Thu, 13 Aug 2015 07:32:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc5MTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODYwMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7912\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7912\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps8601\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps8601\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912\",\r\n \"etag\": \"W/\\\"e87b1042-15d9-4b63-a580-3df02afc8d20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912/subnets/subnetpstestrg7912\",\r\n \"etag\": \"W/\\\"e87b1042-15d9-4b63-a580-3df02afc8d20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601\",\r\n \"etag\": \"W/\\\"c2241671-5220-4687-b480-db70d3e214c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cf349572-3406-4b9a-9687-53c81cebff4c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601/subnets/subnetcrptestps8601\",\r\n \"etag\": \"W/\\\"c2241671-5220-4687-b480-db70d3e214c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "2a698040-d4be-4525-914c-a96b2c08a0b0" + "dfa8d84b-5076-453b-873a-361b3b0bc4fc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/2a698040-d4be-4525-914c-a96b2c08a0b0?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/dfa8d84b-5076-453b-873a-361b3b0bc4fc?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "75a8cec2-acf1-48b4-8595-f824a6352043" + "374d45e6-6ea6-4f8c-bd4e-25e33b97a44a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211635Z:75a8cec2-acf1-48b4-8595-f824a6352043" + "WESTUS:20150813T073213Z:374d45e6-6ea6-4f8c-bd4e-25e33b97a44a" ], "Date": [ - "Tue, 28 Apr 2015 21:16:35 GMT" + "Thu, 13 Aug 2015 07:32:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/2a698040-d4be-4525-914c-a96b2c08a0b0?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmE2OTgwNDAtZDRiZS00NTI1LTkxNGMtYTk2YjJjMDhhMGIwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/dfa8d84b-5076-453b-873a-361b3b0bc4fc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZhOGQ4NGItNTA3Ni00NTNiLTg3M2EtMzYxYjNiMGJjNGZjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bcb3d415-27d1-4ec6-9e0e-c04af3ea2658" + ], + "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": [ + "14846" + ], + "x-ms-correlation-request-id": [ + "ab1c28fd-4b18-4851-96ae-722442a7a016" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T073213Z:ab1c28fd-4b18-4851-96ae-722442a7a016" + ], + "Date": [ + "Thu, 13 Aug 2015 07:32:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/dfa8d84b-5076-453b-873a-361b3b0bc4fc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGZhOGQ4NGItNTA3Ni00NTNiLTg3M2EtMzYxYjNiMGJjNGZjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "9694d455-2657-4140-a3df-9abe7dccc479" + "b006d5e6-2040-4c70-8b9c-12dbcd60ba70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14845" ], "x-ms-correlation-request-id": [ - "3ef9cd33-bcea-414e-a5a5-f5ad3278543f" + "003c99dc-6908-48b3-bd01-a33cbb84b632" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211635Z:3ef9cd33-bcea-414e-a5a5-f5ad3278543f" + "WESTUS:20150813T073223Z:003c99dc-6908-48b3-bd01-a33cbb84b632" ], "Date": [ - "Tue, 28 Apr 2015 21:16:35 GMT" + "Thu, 13 Aug 2015 07:32:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzc5MTIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODYwMS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps8601' under resource group 'crptestps8601' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "8997d6a0-af2d-47c0-911f-fda956b90927" + "b353071f-b293-4776-a0bb-938c58ccc824" ], "x-ms-correlation-request-id": [ - "8997d6a0-af2d-47c0-911f-fda956b90927" + "b353071f-b293-4776-a0bb-938c58ccc824" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211635Z:8997d6a0-af2d-47c0-911f-fda956b90927" + "WESTUS:20150813T073223Z:b353071f-b293-4776-a0bb-938c58ccc824" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +672,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:16:35 GMT" + "Thu, 13 Aug 2015 07:32:23 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzc5MTIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODYwMS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912\",\r\n \"etag\": \"W/\\\"02a8d3bb-c678-4f14-ba3b-56484128fad9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7912\",\r\n \"fqdn\": \"pubippstestrg7912.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601\",\r\n \"etag\": \"W/\\\"b1af1c14-60ec-4c3f-a01a-fcb9bdb4e42e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e48ddff-6654-40b8-ab22-8f39f674ab12\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8601\",\r\n \"fqdn\": \"pubipcrptestps8601.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "75de48f2-2f2b-44a0-9b05-c0d6cf4aae47" + "a542ee08-521a-49c3-959f-cbbe1c1d0c52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"02a8d3bb-c678-4f14-ba3b-56484128fad9\"" + "W/\"b1af1c14-60ec-4c3f-a01a-fcb9bdb4e42e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14840" ], "x-ms-correlation-request-id": [ - "da5a47f5-7f32-4ec2-813e-cf3f6e963fb1" + "00b4e56b-a5ef-4bb2-9d57-82fba0d9f2a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211637Z:da5a47f5-7f32-4ec2-813e-cf3f6e963fb1" + "WESTUS:20150813T073224Z:00b4e56b-a5ef-4bb2-9d57-82fba0d9f2a5" ], "Date": [ - "Tue, 28 Apr 2015 21:16:37 GMT" + "Thu, 13 Aug 2015 07:32:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzc5MTIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODYwMS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912\",\r\n \"etag\": \"W/\\\"02a8d3bb-c678-4f14-ba3b-56484128fad9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7912\",\r\n \"fqdn\": \"pubippstestrg7912.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601\",\r\n \"etag\": \"W/\\\"b1af1c14-60ec-4c3f-a01a-fcb9bdb4e42e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e48ddff-6654-40b8-ab22-8f39f674ab12\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8601\",\r\n \"fqdn\": \"pubipcrptestps8601.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "93c279f8-d4bd-44dd-afd7-d410ada06c6f" + "15258b18-3054-4875-8e5e-671e604baf55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +766,47 @@ "no-cache" ], "ETag": [ - "W/\"02a8d3bb-c678-4f14-ba3b-56484128fad9\"" + "W/\"b1af1c14-60ec-4c3f-a01a-fcb9bdb4e42e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14839" ], "x-ms-correlation-request-id": [ - "221ee83c-9ac2-45a9-ba34-37dbd9fef67e" + "93d55b5e-3e94-4033-a55e-256bfc50fdec" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211637Z:221ee83c-9ac2-45a9-ba34-37dbd9fef67e" + "WESTUS:20150813T073224Z:93d55b5e-3e94-4033-a55e-256bfc50fdec" ], "Date": [ - "Tue, 28 Apr 2015 21:16:37 GMT" + "Thu, 13 Aug 2015 07:32:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzc5MTIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODYwMS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7912\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg7912\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8601\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps8601\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "254" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912\",\r\n \"etag\": \"W/\\\"b37a34d1-aaa4-43dc-bb8d-79ece650b5cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7912\",\r\n \"fqdn\": \"pubippstestrg7912.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601\",\r\n \"etag\": \"W/\\\"8ddbc1b8-a7ef-416e-95d6-b3fb0aadb00b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8e48ddff-6654-40b8-ab22-8f39f674ab12\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8601\",\r\n \"fqdn\": \"pubipcrptestps8601.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "c345e0ae-2cc9-474e-a946-f67ce82bcfac" + "dbb8d6ef-6e15-4c49-abfc-8495e39926b5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/c345e0ae-2cc9-474e-a946-f67ce82bcfac?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/dbb8d6ef-6e15-4c49-abfc-8495e39926b5?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "18099d09-7786-4909-99d2-271b10fc4cc0" + "1134d918-50fd-466c-9de9-4f1d61de0df7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211636Z:18099d09-7786-4909-99d2-271b10fc4cc0" + "WESTUS:20150813T073224Z:1134d918-50fd-466c-9de9-4f1d61de0df7" ], "Date": [ - "Tue, 28 Apr 2015 21:16:36 GMT" + "Thu, 13 Aug 2015 07:32:23 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/c345e0ae-2cc9-474e-a946-f67ce82bcfac?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzM0NWUwYWUtMmNjOS00NzRlLWE5NDYtZjY3Y2U4MmJjZmFjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/dbb8d6ef-6e15-4c49-abfc-8495e39926b5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGJiOGQ2ZWYtNmUxNS00YzQ5LWFiZmMtODQ5NWUzOTkyNmI1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +879,7 @@ "no-cache" ], "x-ms-request-id": [ - "9f6f0622-3617-45b0-97ea-0124d6c63aa4" + "de4309b9-2e84-4079-8f39-fc2e51719461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +892,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14841" ], "x-ms-correlation-request-id": [ - "5dc21e4a-564b-4a39-815c-985db5dccaf2" + "7bad871b-ec20-4024-9e09-b3302a52b97f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211637Z:5dc21e4a-564b-4a39-815c-985db5dccaf2" + "WESTUS:20150813T073224Z:7bad871b-ec20-4024-9e09-b3302a52b97f" ], "Date": [ - "Tue, 28 Apr 2015 21:16:36 GMT" + "Thu, 13 Aug 2015 07:32:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,10 +916,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps8601' under resource group 'crptestps8601' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,13 +934,13 @@ "gateway" ], "x-ms-request-id": [ - "99d0fd79-3dd5-46b4-9ee9-37a380d48920" + "e703a135-45a7-4546-b396-b14f6a97d099" ], "x-ms-correlation-request-id": [ - "99d0fd79-3dd5-46b4-9ee9-37a380d48920" + "e703a135-45a7-4546-b396-b14f6a97d099" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211637Z:99d0fd79-3dd5-46b4-9ee9-37a380d48920" + "WESTUS:20150813T073224Z:e703a135-45a7-4546-b396-b14f6a97d099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +949,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:16:37 GMT" + "Thu, 13 Aug 2015 07:32:24 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912\",\r\n \"etag\": \"W/\\\"0db645bb-9381-49fc-95f6-cd62392be729\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0db645bb-9381-49fc-95f6-cd62392be729\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912/subnets/subnetpstestrg7912\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601\",\r\n \"etag\": \"W/\\\"1930d732-f71f-457c-8134-5863f572f26c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f297a2d-4b57-4745-8795-49d7f846d99d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1930d732-f71f-457c-8134-5863f572f26c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601/subnets/subnetcrptestps8601\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "3ff0931b-de62-43d2-ae57-d7ce3c480eb7" + "8c64aa39-0c70-4e57-a54e-08ad7aa5f599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +988,30 @@ "no-cache" ], "ETag": [ - "W/\"0db645bb-9381-49fc-95f6-cd62392be729\"" + "W/\"1930d732-f71f-457c-8134-5863f572f26c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14836" ], "x-ms-correlation-request-id": [ - "cb1ebfd4-6cd3-4708-a8d0-665e6302f8f3" + "f89b633f-a02e-4d03-b8a4-0a9838fdd738" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211638Z:cb1ebfd4-6cd3-4708-a8d0-665e6302f8f3" + "WESTUS:20150813T073225Z:f89b633f-a02e-4d03-b8a4-0a9838fdd738" ], "Date": [ - "Tue, 28 Apr 2015 21:16:38 GMT" + "Thu, 13 Aug 2015 07:32:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912\",\r\n \"etag\": \"W/\\\"0db645bb-9381-49fc-95f6-cd62392be729\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0db645bb-9381-49fc-95f6-cd62392be729\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912/subnets/subnetpstestrg7912\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601\",\r\n \"etag\": \"W/\\\"1930d732-f71f-457c-8134-5863f572f26c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f297a2d-4b57-4745-8795-49d7f846d99d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1930d732-f71f-457c-8134-5863f572f26c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601/subnets/subnetcrptestps8601\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "94e49d84-d76f-43c5-ab04-efaa09d51430" + "97e76645-1081-4d84-bb06-f8fd7e16582f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,47 +1043,47 @@ "no-cache" ], "ETag": [ - "W/\"0db645bb-9381-49fc-95f6-cd62392be729\"" + "W/\"1930d732-f71f-457c-8134-5863f572f26c\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14835" ], "x-ms-correlation-request-id": [ - "600a8b4e-01d0-4724-bc66-da6cfadcf152" + "afda4fd4-f551-4f12-ba14-e0c3983d1b71" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211638Z:600a8b4e-01d0-4724-bc66-da6cfadcf152" + "WESTUS:20150813T073225Z:afda4fd4-f551-4f12-ba14-e0c3983d1b71" ], "Date": [ - "Tue, 28 Apr 2015 21:16:38 GMT" + "Thu, 13 Aug 2015 07:32:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912/subnets/subnetpstestrg7912\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg7912\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601/subnets/subnetcrptestps8601\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps8601\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "857" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7912\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912\",\r\n \"etag\": \"W/\\\"0db645bb-9381-49fc-95f6-cd62392be729\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0db645bb-9381-49fc-95f6-cd62392be729\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7912\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7912/subnets/subnetpstestrg7912\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8601\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601\",\r\n \"etag\": \"W/\\\"1930d732-f71f-457c-8134-5863f572f26c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f297a2d-4b57-4745-8795-49d7f846d99d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1930d732-f71f-457c-8134-5863f572f26c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8601\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8601/subnets/subnetcrptestps8601\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -992,10 +1095,10 @@ "no-cache" ], "x-ms-request-id": [ - "a4a6f47d-28f5-437a-9f0f-67068d1e8ae5" + "ca4b9023-5ec8-4679-8dee-206aa76bf7f2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a4a6f47d-28f5-437a-9f0f-67068d1e8ae5?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/ca4b9023-5ec8-4679-8dee-206aa76bf7f2?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "f2828371-28f5-42c7-9865-387e3858d986" + "fac87378-220d-41e6-a93a-199289ff6009" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211638Z:f2828371-28f5-42c7-9865-387e3858d986" + "WESTUS:20150813T073225Z:fac87378-220d-41e6-a93a-199289ff6009" ], "Date": [ - "Tue, 28 Apr 2015 21:16:37 GMT" + "Thu, 13 Aug 2015 07:32:24 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a4a6f47d-28f5-437a-9f0f-67068d1e8ae5?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhNmY0N2QtMjhmNS00MzdhLTlmMGYtNjcwNjhkMWU4YWU1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/ca4b9023-5ec8-4679-8dee-206aa76bf7f2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2E0YjkwMjMtNWVjOC00Njc5LThkZWUtMjA2YWE3NmJmN2YyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,7 +1153,7 @@ "no-cache" ], "x-ms-request-id": [ - "9f47ccc6-676c-42dc-8d8c-76ed88ae99f7" + "bd953fc1-7119-4678-a9cb-f8a8ab48c108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14837" ], "x-ms-correlation-request-id": [ - "733971a7-703c-4c90-ac57-e413dcdf4819" + "6d877be5-5640-4bb1-85fe-a29f06ca0d3b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211638Z:733971a7-703c-4c90-ac57-e413dcdf4819" + "WESTUS:20150813T073225Z:6d877be5-5640-4bb1-85fe-a29f06ca0d3b" ], "Date": [ - "Tue, 28 Apr 2015 21:16:37 GMT" + "Thu, 13 Aug 2015 07:32:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Storage/storageAccounts/stopstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzkxMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Storage/storageAccounts/stocrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NjAxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1090,7 +1193,7 @@ "88" ], "x-ms-client-request-id": [ - "705bc6fa-ffea-42e7-9b55-3aabd4a75f61" + "84cf6492-0556-4382-836a-47adcc56981e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1114,44 +1217,44 @@ "25" ], "x-ms-request-id": [ - "349ebec7-f035-42ed-8083-425aa949325e" + "d9654ac0-e5be-4ed8-af82-aeb18069fd31" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/349ebec7-f035-42ed-8083-425aa949325e?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/d9654ac0-e5be-4ed8-af82-aeb18069fd31?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "8a9cecc4-95fe-4b41-a788-166664e64757" + "cffb3ab5-df2a-4f52-b00c-aec9768e5c62" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211639Z:8a9cecc4-95fe-4b41-a788-166664e64757" + "WESTUS:20150813T073226Z:cffb3ab5-df2a-4f52-b00c-aec9768e5c62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:16:38 GMT" + "Thu, 13 Aug 2015 07:32:26 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/349ebec7-f035-42ed-8083-425aa949325e?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzM0OWViZWM3LWYwMzUtNDJlZC04MDgzLTQyNWFhOTQ5MzI1ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/d9654ac0-e5be-4ed8-af82-aeb18069fd31?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q5NjU0YWMwLWU1YmUtNGVkOC1hZjgyLWFlYjE4MDY5ZmQzMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ce2e1f5-e403-4df0-a2b3-09d08bd26a76" + "6e58881e-6b25-405e-a5cd-56355f644be8" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1175,44 +1278,44 @@ "25" ], "x-ms-request-id": [ - "141a0bdf-009d-49a8-a789-f6a82268d8c3" + "91703aa5-c091-4b00-a606-6331a76ed491" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/349ebec7-f035-42ed-8083-425aa949325e?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/d9654ac0-e5be-4ed8-af82-aeb18069fd31?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14981" ], "x-ms-correlation-request-id": [ - "6b329c09-5b86-48a6-a390-e12173c69dca" + "648d6a15-2250-4738-89ec-7074c2bce8ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211640Z:6b329c09-5b86-48a6-a390-e12173c69dca" + "WESTUS:20150813T073227Z:648d6a15-2250-4738-89ec-7074c2bce8ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:16:39 GMT" + "Thu, 13 Aug 2015 07:32:27 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/349ebec7-f035-42ed-8083-425aa949325e?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzM0OWViZWM3LWYwMzUtNDJlZC04MDgzLTQyNWFhOTQ5MzI1ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/d9654ac0-e5be-4ed8-af82-aeb18069fd31?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q5NjU0YWMwLWU1YmUtNGVkOC1hZjgyLWFlYjE4MDY5ZmQzMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8a84245-cd12-460c-921b-527c663acd46" + "bef3676f-b7c7-4ff7-a6a9-c609b98539e9" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1233,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "c13516a8-b3fe-4ed1-bb9a-6cf677b75aa6" + "386f461e-8680-4871-8b42-831bb1bc55e4" ], "Cache-Control": [ "no-cache" @@ -1243,40 +1346,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14980" ], "x-ms-correlation-request-id": [ - "9824bd95-5cb5-41f0-b1ea-634ca8ce1cc5" + "b67552ab-b06c-412a-a28b-d3af43d191f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211705Z:9824bd95-5cb5-41f0-b1ea-634ca8ce1cc5" + "WESTUS:20150813T073252Z:b67552ab-b06c-412a-a28b-d3af43d191f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:17:05 GMT" + "Thu, 13 Aug 2015 07:32:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Storage/storageAccounts/stopstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzkxMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Storage/storageAccounts/stocrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NjAxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d254841b-9a9d-4cd0-a632-165088f0752f" + "523d72b3-0927-4197-be60-4a17b1cef37b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Storage/storageAccounts/stopstestrg7912\",\r\n \"name\": \"stopstestrg7912\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7912.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7912.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7912.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T21:16:27.2286744Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Storage/storageAccounts/stocrptestps8601\",\r\n \"name\": \"stocrptestps8601\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8601.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8601.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8601.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:32:26.0542522Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1288,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef111852-d82d-4c36-bcc9-47837ecd1521" + "aade15f8-78c8-4723-9139-699abaa84ac8" ], "Cache-Control": [ "no-cache" @@ -1298,40 +1401,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14979" ], "x-ms-correlation-request-id": [ - "f8a4eae3-0dbb-4f38-afd8-1a2b72ca7067" + "2fdc9455-cf6c-4165-bfe0-dddd416eaa44" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211705Z:f8a4eae3-0dbb-4f38-afd8-1a2b72ca7067" + "WESTUS:20150813T073252Z:2fdc9455-cf6c-4165-bfe0-dddd416eaa44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:17:05 GMT" + "Thu, 13 Aug 2015 07:32:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Storage/storageAccounts/stopstestrg7912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzkxMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Storage/storageAccounts/stocrptestps8601?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NjAxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7943e43-cfb9-4274-9755-b29297d5012d" + "f206be72-191d-4baa-983f-09e7d21f1af6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Storage/storageAccounts/stopstestrg7912\",\r\n \"name\": \"stopstestrg7912\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7912.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7912.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7912.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T21:16:27.2286744Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Storage/storageAccounts/stocrptestps8601\",\r\n \"name\": \"stocrptestps8601\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8601.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8601.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8601.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:32:26.0542522Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1343,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "1f7605b2-8feb-4329-8eab-48ae49fa2334" + "d2faa963-b003-42d8-93d9-c53a0fd141f6" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1456,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14978" ], "x-ms-correlation-request-id": [ - "4fd76ca8-976f-4381-85b0-b8a5db7bcc3c" + "21058ef8-584d-46ad-8c3d-ca536bc8ada0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211705Z:4fd76ca8-976f-4381-85b0-b8a5db7bcc3c" + "WESTUS:20150813T073252Z:21058ef8-584d-46ad-8c3d-ca536bc8ada0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:17:05 GMT" + "Thu, 13 Aug 2015 07:32:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,7 +1501,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "433774a2-7bee-4ba3-a9e5-f81a1cfd76ac" + "a114a5b3-b84c-4098-8fbc-831e2fc03a59" ], "Cache-Control": [ "no-cache" @@ -1408,31 +1511,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14975" ], "x-ms-correlation-request-id": [ - "bcb157ac-cffd-47a7-93f6-4c8925f5fedf" + "4440e06c-b22a-41e5-b870-589af269feac" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211709Z:bcb157ac-cffd-47a7-93f6-4c8925f5fedf" + "WESTUS:20150813T073253Z:4440e06c-b22a-41e5-b870-589af269feac" ], "Date": [ - "Tue, 28 Apr 2015 21:17:09 GMT" + "Thu, 13 Aug 2015 07:32:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1450,7 +1553,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0b201b9-fcab-4702-bcb6-8dcd59fec8b7" + "9b821e46-5936-490e-8ada-17e0a4587b28" ], "Cache-Control": [ "no-cache" @@ -1460,34 +1563,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14974" ], "x-ms-correlation-request-id": [ - "82176774-2ed0-4f90-98cf-392809e2ff81" + "64427a75-c865-45ac-80f3-77383cb9b2a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211709Z:82176774-2ed0-4f90-98cf-392809e2ff81" + "WESTUS:20150813T073253Z:64427a75-c865-45ac-80f3-77383cb9b2a0" ], "Date": [ - "Tue, 28 Apr 2015 21:17:09 GMT" + "Thu, 13 Aug 2015 07:32:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1502,7 +1605,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9879cf7e-3664-4edb-be7c-07c8c182d2cd" + "4c297e0b-b3ed-4b22-a6ff-2a2aa49e9049" ], "Cache-Control": [ "no-cache" @@ -1512,34 +1615,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14973" ], "x-ms-correlation-request-id": [ - "50b04a4c-f7d3-4fd3-92f7-b7caa981e323" + "c780fb02-7196-42e0-89c8-c0174b506c79" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211709Z:50b04a4c-f7d3-4fd3-92f7-b7caa981e323" + "WESTUS:20150813T073253Z:c780fb02-7196-42e0-89c8-c0174b506c79" ], "Date": [ - "Tue, 28 Apr 2015 21:17:09 GMT" + "Thu, 13 Aug 2015 07:32:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1554,7 +1657,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa439b1d-640f-4c82-8971-e4741c3508db" + "7977eb02-53e0-4e72-b3fe-ad064dce4ce5" ], "Cache-Control": [ "no-cache" @@ -1564,31 +1667,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14972" ], "x-ms-correlation-request-id": [ - "c9a24f21-4ac7-4cf9-acd5-d2bb1d94291b" + "ccdfedd4-751a-4558-b099-9799c91eb688" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211710Z:c9a24f21-4ac7-4cf9-acd5-d2bb1d94291b" + "WESTUS:20150813T073254Z:ccdfedd4-751a-4558-b099-9799c91eb688" ], "Date": [ - "Tue, 28 Apr 2015 21:17:09 GMT" + "Thu, 13 Aug 2015 07:32:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1606,7 +1709,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13c3ba50-0f96-4664-b28d-3b0fd6aecdc5" + "69f0be39-2cf9-4b99-bc80-ba1c74471fe6" ], "Cache-Control": [ "no-cache" @@ -1616,40 +1719,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14971" ], "x-ms-correlation-request-id": [ - "70b3060e-f14a-469b-8c98-aaedd106ffa9" + "8b9b614e-09ed-4fd0-933f-89cd580a3ac2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211710Z:70b3060e-f14a-469b-8c98-aaedd106ffa9" + "WESTUS:20150813T073254Z:8b9b614e-09ed-4fd0-933f-89cd580a3ac2" ], "Date": [ - "Tue, 28 Apr 2015 21:17:09 GMT" + "Thu, 13 Aug 2015 07:32:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Compute/virtualMachines/vmpstestrg7912?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzkxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3OTEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Compute/virtualMachines/vmcrptestps8601?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7912.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg7912\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7912\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8601.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps8601\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps8601\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1068" + "1058" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7912.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Network/networkInterfaces/nicpstestrg7912\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7912/providers/Microsoft.Compute/virtualMachines/vmpstestrg7912\",\r\n \"name\": \"vmpstestrg7912\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8601.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Network/networkInterfaces/niccrptestps8601\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8601/providers/Microsoft.Compute/virtualMachines/vmcrptestps8601\",\r\n \"name\": \"vmcrptestps8601\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1348" + "1339" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1661,13 +1764,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f44d7739-ebd0-4a0f-a1e8-c04963618f3b" + "e7f27a0c-dab7-4e15-ae28-a81506763b10" ], "Cache-Control": [ "no-cache" @@ -1677,31 +1783,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "9c87c5a9-27a1-4880-8dba-a82e39e2c0d4" + "e10ec906-9b05-41f2-86fd-d544696cc8b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211710Z:9c87c5a9-27a1-4880-8dba-a82e39e2c0d4" + "WESTUS:20150813T073254Z:e10ec906-9b05-41f2-86fd-d544696cc8b6" ], "Date": [ - "Tue, 28 Apr 2015 21:17:10 GMT" + "Thu, 13 Aug 2015 07:32:54 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1718,8 +1824,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "82a927df-0f11-4f31-9780-6f8475a2a5cb" + "73e09341-a945-4bc2-a264-3c64ae1297e6" ], "Cache-Control": [ "no-cache" @@ -1729,31 +1838,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14970" ], "x-ms-correlation-request-id": [ - "fb667f9e-4058-4ca5-b114-71ba30ac6036" + "1a58075b-0aba-448b-ac59-e7e7526da6b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211710Z:fb667f9e-4058-4ca5-b114-71ba30ac6036" + "WESTUS:20150813T073254Z:1a58075b-0aba-448b-ac59-e7e7526da6b4" ], "Date": [ - "Tue, 28 Apr 2015 21:17:10 GMT" + "Thu, 13 Aug 2015 07:32:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1770,8 +1879,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "46cd58e4-6bcd-4c2d-a198-1c28ccec8d80" + "8b7c4588-4bc0-4bb9-a5a2-26f627647f4b" ], "Cache-Control": [ "no-cache" @@ -1781,31 +1893,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14969" ], "x-ms-correlation-request-id": [ - "2a44f8b5-fbdf-4184-8b9e-4c35d2f4b606" + "277ce7f2-52fc-43eb-aa80-131cda3749a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211740Z:2a44f8b5-fbdf-4184-8b9e-4c35d2f4b606" + "WESTUS:20150813T073325Z:277ce7f2-52fc-43eb-aa80-131cda3749a2" ], "Date": [ - "Tue, 28 Apr 2015 21:17:40 GMT" + "Thu, 13 Aug 2015 07:33:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1822,8 +1934,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "a8570e1b-882f-4445-abb9-edbec37c956b" + "6c989b3e-eb25-4387-81ef-071c44be1536" ], "Cache-Control": [ "no-cache" @@ -1833,31 +1948,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14968" ], "x-ms-correlation-request-id": [ - "9ed6cc6f-e4e2-45ac-84b2-bc3d36a20fbf" + "b89352ae-5453-4157-86d7-79d711388eff" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211810Z:9ed6cc6f-e4e2-45ac-84b2-bc3d36a20fbf" + "WESTUS:20150813T073355Z:b89352ae-5453-4157-86d7-79d711388eff" ], "Date": [ - "Tue, 28 Apr 2015 21:18:10 GMT" + "Thu, 13 Aug 2015 07:33:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1874,8 +1989,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7fac1633-84e2-472b-9f61-cd1f8fae4f2d" + "da636d5e-79a3-4ca1-b459-abc981ff04fd" ], "Cache-Control": [ "no-cache" @@ -1885,31 +2003,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14967" ], "x-ms-correlation-request-id": [ - "7f521be7-01c3-4a3d-b7e6-644ef46b17eb" + "f514032a-a148-4240-be5b-25349537bc8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211841Z:7f521be7-01c3-4a3d-b7e6-644ef46b17eb" + "WESTUS:20150813T073425Z:f514032a-a148-4240-be5b-25349537bc8f" ], "Date": [ - "Tue, 28 Apr 2015 21:18:40 GMT" + "Thu, 13 Aug 2015 07:34:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1926,8 +2044,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b13994a5-a6c1-4d80-ab84-b265a832041a" + "c464ef6a-4beb-41c5-8719-9c4372186eb1" ], "Cache-Control": [ "no-cache" @@ -1937,31 +2058,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14966" ], "x-ms-correlation-request-id": [ - "ef1eaa0c-453a-4e16-a097-53bdc7a08311" + "3c987770-ea4e-4b3a-afd5-a8f568b70809" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211911Z:ef1eaa0c-453a-4e16-a097-53bdc7a08311" + "WESTUS:20150813T073455Z:3c987770-ea4e-4b3a-afd5-a8f568b70809" ], "Date": [ - "Tue, 28 Apr 2015 21:19:11 GMT" + "Thu, 13 Aug 2015 07:34:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1978,8 +2099,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "30e3e9db-9a83-47d2-83f9-ca4f63a6030e" + "e99b3d62-0204-4887-8185-054981475bdb" ], "Cache-Control": [ "no-cache" @@ -1989,31 +2113,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14965" ], "x-ms-correlation-request-id": [ - "ef1fe8ca-2326-4505-9d0c-5acc607d6447" + "00c9e5dc-f6ad-480d-916a-9317c9c6cf6f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T211941Z:ef1fe8ca-2326-4505-9d0c-5acc607d6447" + "WESTUS:20150813T073525Z:00c9e5dc-f6ad-480d-916a-9317c9c6cf6f" ], "Date": [ - "Tue, 28 Apr 2015 21:19:40 GMT" + "Thu, 13 Aug 2015 07:35:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2030,8 +2154,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "6fe50b52-1900-485b-a2fb-d9a34f96e432" + "12534e41-ce7d-49d9-ade9-5c89c6a847f3" ], "Cache-Control": [ "no-cache" @@ -2041,31 +2168,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14964" ], "x-ms-correlation-request-id": [ - "c72c9692-0326-4278-8723-bb91a53d6d43" + "9c191a70-7224-4c93-b1cd-4e2760cf4087" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212011Z:c72c9692-0326-4278-8723-bb91a53d6d43" + "WESTUS:20150813T073555Z:9c191a70-7224-4c93-b1cd-4e2760cf4087" ], "Date": [ - "Tue, 28 Apr 2015 21:20:11 GMT" + "Thu, 13 Aug 2015 07:35:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2082,8 +2209,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "d384d6ff-d8f8-4f3d-8a1d-5a25bf5c1656" + "08c8421d-7b1e-4f4d-95a7-cc481441902d" ], "Cache-Control": [ "no-cache" @@ -2093,31 +2223,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14963" ], "x-ms-correlation-request-id": [ - "d8cde8f4-df95-4c4b-ac01-da856c55c00c" + "8ea0edbc-add2-4476-a737-5253a1e53563" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212041Z:d8cde8f4-df95-4c4b-ac01-da856c55c00c" + "WESTUS:20150813T073625Z:8ea0edbc-add2-4476-a737-5253a1e53563" ], "Date": [ - "Tue, 28 Apr 2015 21:20:41 GMT" + "Thu, 13 Aug 2015 07:36:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2134,8 +2264,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "dd9d9e00-0001-4cdb-8138-d05f3c370a3f" + "c144a08b-6e1c-4c5f-82a7-61067b78e1e8" ], "Cache-Control": [ "no-cache" @@ -2145,31 +2278,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14962" ], "x-ms-correlation-request-id": [ - "6592df02-14e1-48b8-b6cf-3bc0122a0628" + "8afc146f-3d54-4c90-81b4-4238a2abfcb0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212111Z:6592df02-14e1-48b8-b6cf-3bc0122a0628" + "WESTUS:20150813T073655Z:8afc146f-3d54-4c90-81b4-4238a2abfcb0" ], "Date": [ - "Tue, 28 Apr 2015 21:21:10 GMT" + "Thu, 13 Aug 2015 07:36:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2186,8 +2319,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "f3de1a50-b114-4064-a4f7-21714bbd55e5" + "2d63fe89-98c0-42e9-af8d-df76d20e8b4e" ], "Cache-Control": [ "no-cache" @@ -2197,31 +2333,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14961" ], "x-ms-correlation-request-id": [ - "cdf374b0-a1b8-466e-8070-790507b3b51c" + "2e1df976-dd6e-4620-964c-45cf56201848" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212141Z:cdf374b0-a1b8-466e-8070-790507b3b51c" + "WESTUS:20150813T073725Z:2e1df976-dd6e-4620-964c-45cf56201848" ], "Date": [ - "Tue, 28 Apr 2015 21:21:41 GMT" + "Thu, 13 Aug 2015 07:37:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2238,8 +2374,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "351a1c5c-1d4d-485c-b6a6-e6ded5878566" + "387effce-2916-4722-8956-a7b4881d171b" ], "Cache-Control": [ "no-cache" @@ -2249,34 +2388,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14960" ], "x-ms-correlation-request-id": [ - "02fda63b-c5af-43e3-b920-9fc34303b8f4" + "d22dbf66-ae61-440c-a2b5-76d34f6ade82" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212211Z:02fda63b-c5af-43e3-b920-9fc34303b8f4" + "WESTUS:20150813T073756Z:d22dbf66-ae61-440c-a2b5-76d34f6ade82" ], "Date": [ - "Tue, 28 Apr 2015 21:22:10 GMT" + "Thu, 13 Aug 2015 07:37:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/f44d7739-ebd0-4a0f-a1e8-c04963618f3b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0ZDc3MzktZWJkMC00YTBmLWExZTgtYzA0OTYzNjE4ZjNiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"f44d7739-ebd0-4a0f-a1e8-c04963618f3b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T14:16:58.4350564-07:00\",\r\n \"endTime\": \"2015-04-28T14:22:12.1849938-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2290,8 +2429,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "97086557-bbc1-48f5-bcac-14fb3124af7f" + "ba823bec-3dcd-4cdb-8b28-b5b29730b576" ], "Cache-Control": [ "no-cache" @@ -2301,34 +2443,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14959" ], "x-ms-correlation-request-id": [ - "551d0d18-5330-4f27-842b-e20c534f6a7b" + "45c4d15a-27e2-441f-b619-c4ee1f3761e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212241Z:551d0d18-5330-4f27-842b-e20c534f6a7b" + "WESTUS:20150813T073826Z:45c4d15a-27e2-441f-b619-c4ee1f3761e1" ], "Date": [ - "Tue, 28 Apr 2015 21:22:41 GMT" + "Thu, 13 Aug 2015 07:38:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7912?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzkxMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2336,107 +2481,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "dbb540da-b819-4082-b621-8af9b61e99dc" - ], - "x-ms-correlation-request-id": [ - "dbb540da-b819-4082-b621-8af9b61e99dc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212242Z:dbb540da-b819-4082-b621-8af9b61e99dc" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:22:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "3861699b-8ef1-4a61-9fa0-4479d8ec36c3" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" - ], - "x-ms-request-id": [ - "68678a8b-a8c1-4299-9dee-d3a1ed534ae9" + "14958" ], "x-ms-correlation-request-id": [ - "68678a8b-a8c1-4299-9dee-d3a1ed534ae9" + "c6c10831-bf7f-42a0-8d71-b705918b2f33" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212242Z:68678a8b-a8c1-4299-9dee-d3a1ed534ae9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150813T073856Z:c6c10831-bf7f-42a0-8d71-b705918b2f33" ], "Date": [ - "Tue, 28 Apr 2015 21:22:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Thu, 13 Aug 2015 07:38:55 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e7f27a0c-dab7-4e15-ae28-a81506763b10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTdmMjdhMGMtZGFiNy00ZTE1LWFlMjgtYTgxNTA2NzYzYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e7f27a0c-dab7-4e15-ae28-a81506763b10\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T00:32:54.8342264-07:00\",\r\n \"endTime\": \"2015-08-13T00:39:03.3943691-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2444,99 +2536,43 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" - ], - "x-ms-request-id": [ - "963a7c63-4447-4493-8343-b7dadd149d37" - ], - "x-ms-correlation-request-id": [ - "963a7c63-4447-4493-8343-b7dadd149d37" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212257Z:963a7c63-4447-4493-8343-b7dadd149d37" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:22:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "1015e39b-16d9-4861-9478-57ff9095aab0" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" - ], - "x-ms-request-id": [ - "b0e88aa6-93b6-4af0-867a-27535698015c" + "14957" ], "x-ms-correlation-request-id": [ - "b0e88aa6-93b6-4af0-867a-27535698015c" + "38e44103-e908-4a6f-b393-07eb3ebcad0b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212312Z:b0e88aa6-93b6-4af0-867a-27535698015c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150813T073926Z:38e44103-e908-4a6f-b393-07eb3ebcad0b" ], "Date": [ - "Tue, 28 Apr 2015 21:23:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Thu, 13 Aug 2015 07:39:25 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8601?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg2MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2555,1313 +2591,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" - ], - "x-ms-request-id": [ - "defee689-f5ea-4961-932f-9b3e2a1ce0dc" - ], - "x-ms-correlation-request-id": [ - "defee689-f5ea-4961-932f-9b3e2a1ce0dc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212327Z:defee689-f5ea-4961-932f-9b3e2a1ce0dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:23:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" - ], - "x-ms-request-id": [ - "8862a599-e760-4d79-8cdf-ce680452f736" - ], - "x-ms-correlation-request-id": [ - "8862a599-e760-4d79-8cdf-ce680452f736" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212342Z:8862a599-e760-4d79-8cdf-ce680452f736" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:23:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" - ], - "x-ms-request-id": [ - "8791c0dd-1315-4e2e-8a4d-5dede38fd24d" - ], - "x-ms-correlation-request-id": [ - "8791c0dd-1315-4e2e-8a4d-5dede38fd24d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212357Z:8791c0dd-1315-4e2e-8a4d-5dede38fd24d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:23:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" - ], - "x-ms-request-id": [ - "6eaccc07-2793-40ec-9655-9eb9b5e5cf48" - ], - "x-ms-correlation-request-id": [ - "6eaccc07-2793-40ec-9655-9eb9b5e5cf48" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212412Z:6eaccc07-2793-40ec-9655-9eb9b5e5cf48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:24:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" - ], - "x-ms-request-id": [ - "163b62c2-b3d7-4518-91bd-5f552f9c8db8" - ], - "x-ms-correlation-request-id": [ - "163b62c2-b3d7-4518-91bd-5f552f9c8db8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212427Z:163b62c2-b3d7-4518-91bd-5f552f9c8db8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:24:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" - ], - "x-ms-request-id": [ - "aa68c93e-8529-4723-b0ca-ce8aebd422d4" - ], - "x-ms-correlation-request-id": [ - "aa68c93e-8529-4723-b0ca-ce8aebd422d4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212442Z:aa68c93e-8529-4723-b0ca-ce8aebd422d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:24:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" - ], - "x-ms-request-id": [ - "27c1d57b-c5d4-467f-865a-1191cddd6f3a" - ], - "x-ms-correlation-request-id": [ - "27c1d57b-c5d4-467f-865a-1191cddd6f3a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212457Z:27c1d57b-c5d4-467f-865a-1191cddd6f3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:24:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" - ], - "x-ms-request-id": [ - "47dddb6d-9eac-4464-ade7-c7feacf77630" - ], - "x-ms-correlation-request-id": [ - "47dddb6d-9eac-4464-ade7-c7feacf77630" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212512Z:47dddb6d-9eac-4464-ade7-c7feacf77630" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:25:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31954" - ], - "x-ms-request-id": [ - "0b99658b-3181-4967-a863-f151b3e7b847" - ], - "x-ms-correlation-request-id": [ - "0b99658b-3181-4967-a863-f151b3e7b847" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212527Z:0b99658b-3181-4967-a863-f151b3e7b847" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:25:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" - ], - "x-ms-request-id": [ - "fe557b2d-8b67-46c4-9199-946e013c737f" - ], - "x-ms-correlation-request-id": [ - "fe557b2d-8b67-46c4-9199-946e013c737f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212542Z:fe557b2d-8b67-46c4-9199-946e013c737f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:25:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" - ], - "x-ms-request-id": [ - "41db5f89-3985-46b9-984f-e0b8fc1e85d5" - ], - "x-ms-correlation-request-id": [ - "41db5f89-3985-46b9-984f-e0b8fc1e85d5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212557Z:41db5f89-3985-46b9-984f-e0b8fc1e85d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:25:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" - ], - "x-ms-request-id": [ - "70dd5db5-619b-4167-b4a3-e0cef6fef082" - ], - "x-ms-correlation-request-id": [ - "70dd5db5-619b-4167-b4a3-e0cef6fef082" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212612Z:70dd5db5-619b-4167-b4a3-e0cef6fef082" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:26:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" - ], - "x-ms-request-id": [ - "a907351e-39ab-4faf-be49-b1e1a3e763a6" - ], - "x-ms-correlation-request-id": [ - "a907351e-39ab-4faf-be49-b1e1a3e763a6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212628Z:a907351e-39ab-4faf-be49-b1e1a3e763a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:26:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" - ], - "x-ms-request-id": [ - "858bf1fd-961c-481d-83fd-7b61f6079e07" - ], - "x-ms-correlation-request-id": [ - "858bf1fd-961c-481d-83fd-7b61f6079e07" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212643Z:858bf1fd-961c-481d-83fd-7b61f6079e07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:26:42 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" - ], - "x-ms-request-id": [ - "7e2fed7d-f0b9-4702-9ac4-806c7a4141d4" - ], - "x-ms-correlation-request-id": [ - "7e2fed7d-f0b9-4702-9ac4-806c7a4141d4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212658Z:7e2fed7d-f0b9-4702-9ac4-806c7a4141d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:26:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" - ], - "x-ms-request-id": [ - "2e9a7843-d608-42ad-9234-d7f33c4f92d8" - ], - "x-ms-correlation-request-id": [ - "2e9a7843-d608-42ad-9234-d7f33c4f92d8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212713Z:2e9a7843-d608-42ad-9234-d7f33c4f92d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:27:13 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" - ], - "x-ms-request-id": [ - "01468139-b299-46db-9315-2db44331e4cc" - ], - "x-ms-correlation-request-id": [ - "01468139-b299-46db-9315-2db44331e4cc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212728Z:01468139-b299-46db-9315-2db44331e4cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:27:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" - ], - "x-ms-request-id": [ - "887a5486-3796-4a4f-abc1-b16c4c3172ac" - ], - "x-ms-correlation-request-id": [ - "887a5486-3796-4a4f-abc1-b16c4c3172ac" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212743Z:887a5486-3796-4a4f-abc1-b16c4c3172ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:27:43 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" - ], - "x-ms-request-id": [ - "911e92a6-af06-4c5e-bd9d-55bff7ff0829" - ], - "x-ms-correlation-request-id": [ - "911e92a6-af06-4c5e-bd9d-55bff7ff0829" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212758Z:911e92a6-af06-4c5e-bd9d-55bff7ff0829" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:27:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" - ], - "x-ms-request-id": [ - "5d9730b3-e2ff-47b8-920f-9ee188a73fbb" - ], - "x-ms-correlation-request-id": [ - "5d9730b3-e2ff-47b8-920f-9ee188a73fbb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212813Z:5d9730b3-e2ff-47b8-920f-9ee188a73fbb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:28:13 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" - ], - "x-ms-request-id": [ - "75b36d5e-9b1c-4e21-8cfd-42c9e8854de1" - ], - "x-ms-correlation-request-id": [ - "75b36d5e-9b1c-4e21-8cfd-42c9e8854de1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212828Z:75b36d5e-9b1c-4e21-8cfd-42c9e8854de1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:28:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" - ], - "x-ms-request-id": [ - "6b1f40b3-1dfa-437a-94e4-3ceaac9aae44" - ], - "x-ms-correlation-request-id": [ - "6b1f40b3-1dfa-437a-94e4-3ceaac9aae44" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212843Z:6b1f40b3-1dfa-437a-94e4-3ceaac9aae44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:28:43 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" - ], - "x-ms-request-id": [ - "86efeb55-9da9-4e69-af42-82dc9594388c" - ], - "x-ms-correlation-request-id": [ - "86efeb55-9da9-4e69-af42-82dc9594388c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212858Z:86efeb55-9da9-4e69-af42-82dc9594388c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:28:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" - ], - "x-ms-request-id": [ - "d02dc61f-df8b-4c61-a1fa-10d4952d47c6" - ], - "x-ms-correlation-request-id": [ - "d02dc61f-df8b-4c61-a1fa-10d4952d47c6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T212913Z:d02dc61f-df8b-4c61-a1fa-10d4952d47c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:29:13 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" ], "x-ms-request-id": [ - "302990ba-8ea6-4898-9e1f-6f98a0e2e262" + "bb2da851-a3f9-4ff6-9a55-5decbc57c6aa" ], "x-ms-correlation-request-id": [ - "302990ba-8ea6-4898-9e1f-6f98a0e2e262" + "bb2da851-a3f9-4ff6-9a55-5decbc57c6aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212929Z:302990ba-8ea6-4898-9e1f-6f98a0e2e262" + "WESTUS:20150813T073926Z:bb2da851-a3f9-4ff6-9a55-5decbc57c6aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3870,17 +2610,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:29:28 GMT" + "Thu, 13 Aug 2015 07:39:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3906,16 +2646,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "14925" ], "x-ms-request-id": [ - "d4fecbb4-91c4-4bd9-bf28-ea25ee4c1f18" + "a9e36a51-a794-4ea7-8111-d5118ad6281b" ], "x-ms-correlation-request-id": [ - "d4fecbb4-91c4-4bd9-bf28-ea25ee4c1f18" + "a9e36a51-a794-4ea7-8111-d5118ad6281b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212944Z:d4fecbb4-91c4-4bd9-bf28-ea25ee4c1f18" + "WESTUS:20150813T073926Z:a9e36a51-a794-4ea7-8111-d5118ad6281b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3924,17 +2664,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:29:43 GMT" + "Thu, 13 Aug 2015 07:39:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3960,16 +2700,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" + "14924" ], "x-ms-request-id": [ - "5e489763-f444-4c6d-bbba-dbfeef616d8d" + "1ac2ae57-19f1-4d41-8930-e467cf9145ea" ], "x-ms-correlation-request-id": [ - "5e489763-f444-4c6d-bbba-dbfeef616d8d" + "1ac2ae57-19f1-4d41-8930-e467cf9145ea" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T212959Z:5e489763-f444-4c6d-bbba-dbfeef616d8d" + "WESTUS:20150813T073942Z:1ac2ae57-19f1-4d41-8930-e467cf9145ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3978,17 +2718,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:29:59 GMT" + "Thu, 13 Aug 2015 07:39:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,16 +2754,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" + "14923" ], "x-ms-request-id": [ - "1c4ed183-03b8-40dd-b3ea-48f7169e4c07" + "e4899266-726a-48a2-bdd5-d5682c31ee51" ], "x-ms-correlation-request-id": [ - "1c4ed183-03b8-40dd-b3ea-48f7169e4c07" + "e4899266-726a-48a2-bdd5-d5682c31ee51" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213014Z:1c4ed183-03b8-40dd-b3ea-48f7169e4c07" + "WESTUS:20150813T073957Z:e4899266-726a-48a2-bdd5-d5682c31ee51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4032,17 +2772,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:30:13 GMT" + "Thu, 13 Aug 2015 07:39:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4068,16 +2808,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "14922" ], "x-ms-request-id": [ - "3ca6685a-f471-49f0-9e3b-fb30e4d679a7" + "9bd88acd-2d3a-48d2-a961-64c65c350b39" ], "x-ms-correlation-request-id": [ - "3ca6685a-f471-49f0-9e3b-fb30e4d679a7" + "9bd88acd-2d3a-48d2-a961-64c65c350b39" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213029Z:3ca6685a-f471-49f0-9e3b-fb30e4d679a7" + "WESTUS:20150813T074012Z:9bd88acd-2d3a-48d2-a961-64c65c350b39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4086,17 +2826,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:30:28 GMT" + "Thu, 13 Aug 2015 07:40:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4122,16 +2862,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "14921" ], "x-ms-request-id": [ - "097fc391-7a34-4dc9-8aa6-2d95c86b4df4" + "7cc94295-2af1-464b-9970-4d89bb2ec3da" ], "x-ms-correlation-request-id": [ - "097fc391-7a34-4dc9-8aa6-2d95c86b4df4" + "7cc94295-2af1-464b-9970-4d89bb2ec3da" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213044Z:097fc391-7a34-4dc9-8aa6-2d95c86b4df4" + "WESTUS:20150813T074027Z:7cc94295-2af1-464b-9970-4d89bb2ec3da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4140,17 +2880,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:30:44 GMT" + "Thu, 13 Aug 2015 07:40:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4176,16 +2916,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "14920" ], "x-ms-request-id": [ - "c5e92da1-6540-4080-aca8-4c35f1e96245" + "ecdd07b9-b338-4605-8c07-e9c735adba61" ], "x-ms-correlation-request-id": [ - "c5e92da1-6540-4080-aca8-4c35f1e96245" + "ecdd07b9-b338-4605-8c07-e9c735adba61" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213059Z:c5e92da1-6540-4080-aca8-4c35f1e96245" + "WESTUS:20150813T074042Z:ecdd07b9-b338-4605-8c07-e9c735adba61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4194,17 +2934,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:30:59 GMT" + "Thu, 13 Aug 2015 07:40:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4230,16 +2970,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "14919" ], "x-ms-request-id": [ - "e94bd949-0e11-4a2c-acb3-5900568e10b4" + "cd23e0d0-20f3-46f2-b8ca-02b83baf91ed" ], "x-ms-correlation-request-id": [ - "e94bd949-0e11-4a2c-acb3-5900568e10b4" + "cd23e0d0-20f3-46f2-b8ca-02b83baf91ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213114Z:e94bd949-0e11-4a2c-acb3-5900568e10b4" + "WESTUS:20150813T074057Z:cd23e0d0-20f3-46f2-b8ca-02b83baf91ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4248,17 +2988,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:31:13 GMT" + "Thu, 13 Aug 2015 07:40:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4284,16 +3024,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "14918" ], "x-ms-request-id": [ - "79914513-dd26-49bf-8835-4971d3a54fd4" + "1332f2aa-e67c-416f-af3d-54f3950ee455" ], "x-ms-correlation-request-id": [ - "79914513-dd26-49bf-8835-4971d3a54fd4" + "1332f2aa-e67c-416f-af3d-54f3950ee455" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213129Z:79914513-dd26-49bf-8835-4971d3a54fd4" + "WESTUS:20150813T074112Z:1332f2aa-e67c-416f-af3d-54f3950ee455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4302,17 +3042,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:31:29 GMT" + "Thu, 13 Aug 2015 07:41:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4338,16 +3078,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "14917" ], "x-ms-request-id": [ - "04340dcc-a20c-4337-a962-b03f0e622051" + "7ccbf4f7-3035-42dd-ba63-013fca662a14" ], "x-ms-correlation-request-id": [ - "04340dcc-a20c-4337-a962-b03f0e622051" + "7ccbf4f7-3035-42dd-ba63-013fca662a14" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213144Z:04340dcc-a20c-4337-a962-b03f0e622051" + "WESTUS:20150813T074127Z:7ccbf4f7-3035-42dd-ba63-013fca662a14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4356,17 +3096,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:31:43 GMT" + "Thu, 13 Aug 2015 07:41:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4392,16 +3132,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "14916" ], "x-ms-request-id": [ - "1b1f09b5-57f2-4a5c-851d-8d62889851f5" + "9727bbc7-6a67-46ed-8491-00872fe82660" ], "x-ms-correlation-request-id": [ - "1b1f09b5-57f2-4a5c-851d-8d62889851f5" + "9727bbc7-6a67-46ed-8491-00872fe82660" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213159Z:1b1f09b5-57f2-4a5c-851d-8d62889851f5" + "WESTUS:20150813T074142Z:9727bbc7-6a67-46ed-8491-00872fe82660" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4410,17 +3150,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:31:59 GMT" + "Thu, 13 Aug 2015 07:41:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4446,16 +3186,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" + "14915" ], "x-ms-request-id": [ - "a24a518e-31e2-4483-bf2d-97d3e260caa9" + "b119db5d-3f8d-45e6-b846-33994c06a4ba" ], "x-ms-correlation-request-id": [ - "a24a518e-31e2-4483-bf2d-97d3e260caa9" + "b119db5d-3f8d-45e6-b846-33994c06a4ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213214Z:a24a518e-31e2-4483-bf2d-97d3e260caa9" + "WESTUS:20150813T074157Z:b119db5d-3f8d-45e6-b846-33994c06a4ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4464,17 +3204,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:32:13 GMT" + "Thu, 13 Aug 2015 07:41:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4500,16 +3240,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "14914" ], "x-ms-request-id": [ - "47fa3009-e318-4fe4-8207-effc791382ff" + "0bef1750-ab05-43a5-815a-a49d885ce0d9" ], "x-ms-correlation-request-id": [ - "47fa3009-e318-4fe4-8207-effc791382ff" + "0bef1750-ab05-43a5-815a-a49d885ce0d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213229Z:47fa3009-e318-4fe4-8207-effc791382ff" + "WESTUS:20150813T074212Z:0bef1750-ab05-43a5-815a-a49d885ce0d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4518,17 +3258,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:32:29 GMT" + "Thu, 13 Aug 2015 07:42:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4554,16 +3294,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" + "14913" ], "x-ms-request-id": [ - "01b3a1fe-90c4-4b8a-b230-6f8db018d1a5" + "d9d39acd-863f-4504-8748-6c4949f55d57" ], "x-ms-correlation-request-id": [ - "01b3a1fe-90c4-4b8a-b230-6f8db018d1a5" + "d9d39acd-863f-4504-8748-6c4949f55d57" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213244Z:01b3a1fe-90c4-4b8a-b230-6f8db018d1a5" + "WESTUS:20150813T074227Z:d9d39acd-863f-4504-8748-6c4949f55d57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4572,17 +3312,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:32:44 GMT" + "Thu, 13 Aug 2015 07:42:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4608,16 +3348,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "14912" ], "x-ms-request-id": [ - "eab58506-c6b1-472e-9755-c3b4213c85eb" + "fe24b77a-507b-4653-bf82-0a9cb0b7cc23" ], "x-ms-correlation-request-id": [ - "eab58506-c6b1-472e-9755-c3b4213c85eb" + "fe24b77a-507b-4653-bf82-0a9cb0b7cc23" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213300Z:eab58506-c6b1-472e-9755-c3b4213c85eb" + "WESTUS:20150813T074242Z:fe24b77a-507b-4653-bf82-0a9cb0b7cc23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4626,17 +3366,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:32:59 GMT" + "Thu, 13 Aug 2015 07:42:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4662,16 +3402,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "14911" ], "x-ms-request-id": [ - "d5364a4c-26b5-4fff-985b-2f763e79f9ae" + "c45435f5-72ce-42a9-8712-2597291ce717" ], "x-ms-correlation-request-id": [ - "d5364a4c-26b5-4fff-985b-2f763e79f9ae" + "c45435f5-72ce-42a9-8712-2597291ce717" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213315Z:d5364a4c-26b5-4fff-985b-2f763e79f9ae" + "WESTUS:20150813T074257Z:c45435f5-72ce-42a9-8712-2597291ce717" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4680,17 +3420,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:33:14 GMT" + "Thu, 13 Aug 2015 07:42:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,16 +3456,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "14910" ], "x-ms-request-id": [ - "3a62d3e0-6882-4a64-89a6-d0c90e934e3b" + "8606fbf8-6b34-4247-ae84-52de68efbf48" ], "x-ms-correlation-request-id": [ - "3a62d3e0-6882-4a64-89a6-d0c90e934e3b" + "8606fbf8-6b34-4247-ae84-52de68efbf48" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213330Z:3a62d3e0-6882-4a64-89a6-d0c90e934e3b" + "WESTUS:20150813T074313Z:8606fbf8-6b34-4247-ae84-52de68efbf48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4734,17 +3474,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:33:29 GMT" + "Thu, 13 Aug 2015 07:43:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4770,16 +3510,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "14909" ], "x-ms-request-id": [ - "75927adf-62bb-4915-b18d-30daa59ebb63" + "b45bb90e-aae4-4904-b2b6-b1ba4b75386a" ], "x-ms-correlation-request-id": [ - "75927adf-62bb-4915-b18d-30daa59ebb63" + "b45bb90e-aae4-4904-b2b6-b1ba4b75386a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213345Z:75927adf-62bb-4915-b18d-30daa59ebb63" + "WESTUS:20150813T074328Z:b45bb90e-aae4-4904-b2b6-b1ba4b75386a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4788,17 +3528,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:33:44 GMT" + "Thu, 13 Aug 2015 07:43:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4824,16 +3564,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "14908" ], "x-ms-request-id": [ - "c220d85f-321f-4cc0-bb2b-022a470714f5" + "0d030c86-6da9-4f23-8b2c-fa81e0275ca1" ], "x-ms-correlation-request-id": [ - "c220d85f-321f-4cc0-bb2b-022a470714f5" + "0d030c86-6da9-4f23-8b2c-fa81e0275ca1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213400Z:c220d85f-321f-4cc0-bb2b-022a470714f5" + "WESTUS:20150813T074343Z:0d030c86-6da9-4f23-8b2c-fa81e0275ca1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4842,17 +3582,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:33:59 GMT" + "Thu, 13 Aug 2015 07:43:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4878,16 +3618,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "14907" ], "x-ms-request-id": [ - "f514d2fa-4d5d-40ce-acfd-c209d2b7fd9f" + "1aa5dce6-66a4-4822-ac68-b557a781ffae" ], "x-ms-correlation-request-id": [ - "f514d2fa-4d5d-40ce-acfd-c209d2b7fd9f" + "1aa5dce6-66a4-4822-ac68-b557a781ffae" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213415Z:f514d2fa-4d5d-40ce-acfd-c209d2b7fd9f" + "WESTUS:20150813T074358Z:1aa5dce6-66a4-4822-ac68-b557a781ffae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4896,17 +3636,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:34:14 GMT" + "Thu, 13 Aug 2015 07:43:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1TVRJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NjAxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TmpBeExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4929,16 +3669,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31918" + "14906" ], "x-ms-request-id": [ - "09266745-a3d5-4c62-8d8c-e8a5dab192ee" + "c1b0fdb1-9e38-4044-a530-1798676d679f" ], "x-ms-correlation-request-id": [ - "09266745-a3d5-4c62-8d8c-e8a5dab192ee" + "c1b0fdb1-9e38-4044-a530-1798676d679f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213430Z:09266745-a3d5-4c62-8d8c-e8a5dab192ee" + "WESTUS:20150813T074413Z:c1b0fdb1-9e38-4044-a530-1798676d679f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4947,7 +3687,7 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:34:30 GMT" + "Thu, 13 Aug 2015 07:44:12 GMT" ] }, "StatusCode": 200 @@ -4955,12 +3695,12 @@ ], "Names": { "Test-VirtualMachinePIRv2": [ - "pstestrg7912" + "crptestps8601" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan.json index 46bec7d6a33b..6cfc116d9b25 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9032?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTAzMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "490b1c3f-4954-4bd3-9280-4329ed264c8d" + ], + "x-ms-correlation-request-id": [ + "490b1c3f-4954-4bd3-9280-4329ed264c8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T070545Z:490b1c3f-4954-4bd3-9280-4329ed264c8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 07:05:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps3226?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14995" ], "x-ms-request-id": [ - "f8e4bae8-edb7-4129-9520-910eb7266e8c" + "4e5e679f-db0a-4a73-b78c-77072401b030" ], "x-ms-correlation-request-id": [ - "f8e4bae8-edb7-4129-9520-910eb7266e8c" + "4e5e679f-db0a-4a73-b78c-77072401b030" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213508Z:f8e4bae8-edb7-4129-9520-910eb7266e8c" + "WESTUS:20150813T070545Z:4e5e679f-db0a-4a73-b78c-77072401b030" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:35:07 GMT" + "Thu, 13 Aug 2015 07:05:44 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9032?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTAzMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps3226?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14993" ], "x-ms-request-id": [ - "f9e969d7-2472-40ff-abf6-a10847824497" + "92ff38a7-1b7d-4fff-9a09-09bdfde84a26" ], "x-ms-correlation-request-id": [ - "f9e969d7-2472-40ff-abf6-a10847824497" + "92ff38a7-1b7d-4fff-9a09-09bdfde84a26" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213627Z:f9e969d7-2472-40ff-abf6-a10847824497" + "WESTUS:20150813T070639Z:92ff38a7-1b7d-4fff-9a09-09bdfde84a26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:36:27 GMT" + "Thu, 13 Aug 2015 07:06:39 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9032?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTAzMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps3226?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032\",\r\n \"name\": \"pstestrg9032\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226\",\r\n \"name\": \"crptestps3226\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,13 +178,13 @@ "1198" ], "x-ms-request-id": [ - "588bcf0a-c6d6-4e5f-a8e9-5a846af3b5f3" + "a26378ae-2451-4357-ba98-f433242e26cc" ], "x-ms-correlation-request-id": [ - "588bcf0a-c6d6-4e5f-a8e9-5a846af3b5f3" + "a26378ae-2451-4357-ba98-f433242e26cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213508Z:588bcf0a-c6d6-4e5f-a8e9-5a846af3b5f3" + "WESTUS:20150813T070545Z:a26378ae-2451-4357-ba98-f433242e26cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:35:07 GMT" + "Thu, 13 Aug 2015 07:05:44 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14994" ], "x-ms-request-id": [ - "de09fb44-152e-41fe-8e1b-56dde30e278e" + "d350a9c4-1fa1-4fc9-8a26-bd659d403421" ], "x-ms-correlation-request-id": [ - "de09fb44-152e-41fe-8e1b-56dde30e278e" + "d350a9c4-1fa1-4fc9-8a26-bd659d403421" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213508Z:de09fb44-152e-41fe-8e1b-56dde30e278e" + "WESTUS:20150813T070545Z:d350a9c4-1fa1-4fc9-8a26-bd659d403421" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:35:07 GMT" + "Thu, 13 Aug 2015 07:05:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9032/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps3226/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:970ea58e-e3af-4292-a0a9-a569daa88b1f" + "westus:91436c4b-333b-436a-8cd2-04b881cba32d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14989" ], "x-ms-correlation-request-id": [ - "c47ff704-e818-485a-9e4c-c9b9984b4a9d" + "860a4086-5191-4c40-8b3c-5ffa098284fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213459Z:c47ff704-e818-485a-9e4c-c9b9984b4a9d" + "WESTUS:20150813T070545Z:860a4086-5191-4c40-8b3c-5ffa098284fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:34:59 GMT" + "Thu, 13 Aug 2015 07:05:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzkwMzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzIyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps3226' under resource group 'crptestps3226' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "be8019ef-461e-4f11-9ee5-894585e48346" + "5bbca7da-0844-42f0-9b70-0c1d63024bc0" ], "x-ms-correlation-request-id": [ - "be8019ef-461e-4f11-9ee5-894585e48346" + "5bbca7da-0844-42f0-9b70-0c1d63024bc0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213508Z:be8019ef-461e-4f11-9ee5-894585e48346" + "WESTUS:20150813T070546Z:5bbca7da-0844-42f0-9b70-0c1d63024bc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:35:07 GMT" + "Thu, 13 Aug 2015 07:05:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzkwMzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzIyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032\",\r\n \"etag\": \"W/\\\"ffb9db73-8818-43ef-9507-e95e48b2b2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032/subnets/subnetpstestrg9032\",\r\n \"etag\": \"W/\\\"ffb9db73-8818-43ef-9507-e95e48b2b2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226\",\r\n \"etag\": \"W/\\\"b87dc3ea-7869-4078-a014-a193f257538e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab9e905f-552f-4464-8ed5-1f6cf9fee08f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226/subnets/subnetcrptestps3226\",\r\n \"etag\": \"W/\\\"b87dc3ea-7869-4078-a014-a193f257538e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "694341f6-51d8-4cd5-87d4-8f08abe5a003" + "0a3a1c87-609c-4794-b1bb-a7308c54ac0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"ffb9db73-8818-43ef-9507-e95e48b2b2af\"" + "W/\"b87dc3ea-7869-4078-a014-a193f257538e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14983" ], "x-ms-correlation-request-id": [ - "c1c27fd8-9223-4340-89a6-f16dfbe94b24" + "fd84a556-944e-4ed5-b876-29fdff2f9c85" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213519Z:c1c27fd8-9223-4340-89a6-f16dfbe94b24" + "WESTUS:20150813T070557Z:fd84a556-944e-4ed5-b876-29fdff2f9c85" ], "Date": [ - "Tue, 28 Apr 2015 21:35:19 GMT" + "Thu, 13 Aug 2015 07:05:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzkwMzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzIyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032\",\r\n \"etag\": \"W/\\\"ffb9db73-8818-43ef-9507-e95e48b2b2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032/subnets/subnetpstestrg9032\",\r\n \"etag\": \"W/\\\"ffb9db73-8818-43ef-9507-e95e48b2b2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226\",\r\n \"etag\": \"W/\\\"b87dc3ea-7869-4078-a014-a193f257538e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab9e905f-552f-4464-8ed5-1f6cf9fee08f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226/subnets/subnetcrptestps3226\",\r\n \"etag\": \"W/\\\"b87dc3ea-7869-4078-a014-a193f257538e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "4bc1e5c1-5e4d-4dc8-a208-2931cc9de223" + "30f9dc41-f86e-4fe9-a63f-3963908fed94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"ffb9db73-8818-43ef-9507-e95e48b2b2af\"" + "W/\"b87dc3ea-7869-4078-a014-a193f257538e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14982" ], "x-ms-correlation-request-id": [ - "e2ef6f60-0dfe-466d-850f-f3f21f07f08d" + "9d994630-408d-4ccd-a1ce-65d73b48cc65" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213519Z:e2ef6f60-0dfe-466d-850f-f3f21f07f08d" + "WESTUS:20150813T070557Z:9d994630-408d-4ccd-a1ce-65d73b48cc65" ], "Date": [ - "Tue, 28 Apr 2015 21:35:19 GMT" + "Thu, 13 Aug 2015 07:05:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzkwMzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualnetworks/vnetcrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMzIyNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg9032\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg9032\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps3226\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps3226\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032\",\r\n \"etag\": \"W/\\\"ce3aaebd-17b8-47ff-9c9c-6cb34efb4e84\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032/subnets/subnetpstestrg9032\",\r\n \"etag\": \"W/\\\"ce3aaebd-17b8-47ff-9c9c-6cb34efb4e84\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226\",\r\n \"etag\": \"W/\\\"b86510ba-fa78-4d8b-b0c4-db6c2e72585a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ab9e905f-552f-4464-8ed5-1f6cf9fee08f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226/subnets/subnetcrptestps3226\",\r\n \"etag\": \"W/\\\"b86510ba-fa78-4d8b-b0c4-db6c2e72585a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "8095b7cb-ff8c-4929-8d67-a8b2085fca69" + "33afd4fb-f773-4af0-a2c3-9f3471ec8529" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/8095b7cb-ff8c-4929-8d67-a8b2085fca69?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/33afd4fb-f773-4af0-a2c3-9f3471ec8529?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "fe7b64ba-c26d-43e1-9d02-70470a619555" + "cfe0d1b1-88b4-4f41-af45-d75179c29a7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213509Z:fe7b64ba-c26d-43e1-9d02-70470a619555" + "WESTUS:20150813T070546Z:cfe0d1b1-88b4-4f41-af45-d75179c29a7b" ], "Date": [ - "Tue, 28 Apr 2015 21:35:08 GMT" + "Thu, 13 Aug 2015 07:05:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/8095b7cb-ff8c-4929-8d67-a8b2085fca69?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODA5NWI3Y2ItZmY4Yy00OTI5LThkNjctYThiMjA4NWZjYTY5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/33afd4fb-f773-4af0-a2c3-9f3471ec8529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNhZmQ0ZmItZjc3My00YWYwLWEyYzMtOWYzNDcxZWM4NTI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "c55ce893-3063-493f-a9cc-2b68be78050d" + "38eee702-4076-4312-ac4b-8a009d1546e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14985" ], "x-ms-correlation-request-id": [ - "b3fc1137-ee83-4913-ae0a-3eee92a43ef7" + "a7b9df2d-c2c3-4c40-9293-5026c61b7710" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213509Z:b3fc1137-ee83-4913-ae0a-3eee92a43ef7" + "WESTUS:20150813T070547Z:a7b9df2d-c2c3-4c40-9293-5026c61b7710" ], "Date": [ - "Tue, 28 Apr 2015 21:35:08 GMT" + "Thu, 13 Aug 2015 07:05:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/8095b7cb-ff8c-4929-8d67-a8b2085fca69?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODA5NWI3Y2ItZmY4Yy00OTI5LThkNjctYThiMjA4NWZjYTY5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/33afd4fb-f773-4af0-a2c3-9f3471ec8529?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNhZmQ0ZmItZjc3My00YWYwLWEyYzMtOWYzNDcxZWM4NTI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "53301e84-38ce-4620-850f-0cf1dfb339bd" + "ddc39583-9afb-48b3-9c3a-62a2ee21cc20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14984" ], "x-ms-correlation-request-id": [ - "82889894-0cff-4b96-9921-c28483360c17" + "8e8588d7-f981-4c49-980b-352080c85d12" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213519Z:82889894-0cff-4b96-9921-c28483360c17" + "WESTUS:20150813T070557Z:8e8588d7-f981-4c49-980b-352080c85d12" ], "Date": [ - "Tue, 28 Apr 2015 21:35:19 GMT" + "Thu, 13 Aug 2015 07:05:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzkwMzIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzIyNi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps3226' under resource group 'crptestps3226' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "817e7527-f70f-4002-b257-22ec4357753e" + "d7e91299-1907-43e5-8597-c1611a44c429" ], "x-ms-correlation-request-id": [ - "817e7527-f70f-4002-b257-22ec4357753e" + "d7e91299-1907-43e5-8597-c1611a44c429" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213519Z:817e7527-f70f-4002-b257-22ec4357753e" + "WESTUS:20150813T070557Z:d7e91299-1907-43e5-8597-c1611a44c429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +672,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:35:19 GMT" + "Thu, 13 Aug 2015 07:05:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzkwMzIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzIyNi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032\",\r\n \"etag\": \"W/\\\"f2aa1a1e-4960-43f3-af14-79fd83f9882d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9032\",\r\n \"fqdn\": \"pubippstestrg9032.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226\",\r\n \"etag\": \"W/\\\"61b8635d-ed13-43a6-bb20-d0275a560f5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16a49895-fc7f-49bf-b9ea-9621d38520d5\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3226\",\r\n \"fqdn\": \"pubipcrptestps3226.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "9f64ce92-cdca-456a-8fdc-3188c4d6baea" + "770c175d-707d-491d-a041-eb3d6cffd216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"f2aa1a1e-4960-43f3-af14-79fd83f9882d\"" + "W/\"61b8635d-ed13-43a6-bb20-d0275a560f5e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14978" ], "x-ms-correlation-request-id": [ - "d36b1319-1dff-422f-a33c-734ad7cb44cc" + "b8ddcd6c-34e3-42bc-a6e7-ca3731a408ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213531Z:d36b1319-1dff-422f-a33c-734ad7cb44cc" + "WESTUS:20150813T070608Z:b8ddcd6c-34e3-42bc-a6e7-ca3731a408ab" ], "Date": [ - "Tue, 28 Apr 2015 21:35:30 GMT" + "Thu, 13 Aug 2015 07:06:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzkwMzIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzIyNi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032\",\r\n \"etag\": \"W/\\\"f2aa1a1e-4960-43f3-af14-79fd83f9882d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9032\",\r\n \"fqdn\": \"pubippstestrg9032.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226\",\r\n \"etag\": \"W/\\\"61b8635d-ed13-43a6-bb20-d0275a560f5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16a49895-fc7f-49bf-b9ea-9621d38520d5\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3226\",\r\n \"fqdn\": \"pubipcrptestps3226.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "02f9d05a-5f1f-4f8c-baaf-05b026ab8bfc" + "fcafd56e-3705-4d5b-be13-575c815a24a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,47 +766,47 @@ "no-cache" ], "ETag": [ - "W/\"f2aa1a1e-4960-43f3-af14-79fd83f9882d\"" + "W/\"61b8635d-ed13-43a6-bb20-d0275a560f5e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14977" ], "x-ms-correlation-request-id": [ - "be7da72a-19f8-4bc4-b9f1-c1f4c0bffc09" + "33350d54-17ac-47f9-9c05-38ad8228fb20" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213531Z:be7da72a-19f8-4bc4-b9f1-c1f4c0bffc09" + "WESTUS:20150813T070609Z:33350d54-17ac-47f9-9c05-38ad8228fb20" ], "Date": [ - "Tue, 28 Apr 2015 21:35:30 GMT" + "Thu, 13 Aug 2015 07:06:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzkwMzIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMzIyNi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9032\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg9032\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3226\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps3226\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "254" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032\",\r\n \"etag\": \"W/\\\"5e2c1056-0428-4906-8d21-b6532d334e11\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9032\",\r\n \"fqdn\": \"pubippstestrg9032.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226\",\r\n \"etag\": \"W/\\\"f6df6318-5b38-46e5-8264-2f0b2a3d3fc9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"16a49895-fc7f-49bf-b9ea-9621d38520d5\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps3226\",\r\n \"fqdn\": \"pubipcrptestps3226.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -773,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "5fa038f4-d7d3-448d-9647-8025076bc1a3" + "f00c0a91-93ca-4a0b-8dc5-348f225a1b30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/5fa038f4-d7d3-448d-9647-8025076bc1a3?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/f00c0a91-93ca-4a0b-8dc5-348f225a1b30?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "f8f0513b-d6e6-4c33-ad4a-b008a34af8d3" + "d83291e7-bc15-43d6-9b28-436f255eecbc" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213520Z:f8f0513b-d6e6-4c33-ad4a-b008a34af8d3" + "WESTUS:20150813T070558Z:d83291e7-bc15-43d6-9b28-436f255eecbc" ], "Date": [ - "Tue, 28 Apr 2015 21:35:20 GMT" + "Thu, 13 Aug 2015 07:05:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/5fa038f4-d7d3-448d-9647-8025076bc1a3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZhMDM4ZjQtZDdkMy00NDhkLTk2NDctODAyNTA3NmJjMWEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/f00c0a91-93ca-4a0b-8dc5-348f225a1b30?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjAwYzBhOTEtOTNjYS00YTBiLThkYzUtMzQ4ZjIyNWExYjMwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,7 +879,7 @@ "no-cache" ], "x-ms-request-id": [ - "d60b405c-cfcf-4d93-b47e-885905b8bac1" + "e6246972-0bad-460a-89dc-96852cb7fd24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -844,23 +892,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14980" ], "x-ms-correlation-request-id": [ - "dc1671cc-44db-4c65-8b8c-0e78333a10bd" + "f0693d3a-6485-440e-87b1-fffa95e73c55" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213520Z:dc1671cc-44db-4c65-8b8c-0e78333a10bd" + "WESTUS:20150813T070558Z:f0693d3a-6485-440e-87b1-fffa95e73c55" ], "Date": [ - "Tue, 28 Apr 2015 21:35:20 GMT" + "Thu, 13 Aug 2015 07:05:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/5fa038f4-d7d3-448d-9647-8025076bc1a3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZhMDM4ZjQtZDdkMy00NDhkLTk2NDctODAyNTA3NmJjMWEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/f00c0a91-93ca-4a0b-8dc5-348f225a1b30?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjAwYzBhOTEtOTNjYS00YTBiLThkYzUtMzQ4ZjIyNWExYjMwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -886,7 +934,7 @@ "no-cache" ], "x-ms-request-id": [ - "40e6aa65-0669-4472-ba5b-890803d763a4" + "a447bd7a-5ad4-4c4e-bc6e-68e2c39206cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,23 +947,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14979" ], "x-ms-correlation-request-id": [ - "c8bff57a-e2db-469c-83ce-5a717b274dfc" + "fa2a5df1-85c1-4400-a59b-7e36b12666d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213531Z:c8bff57a-e2db-469c-83ce-5a717b274dfc" + "WESTUS:20150813T070608Z:fa2a5df1-85c1-4400-a59b-7e36b12666d6" ], "Date": [ - "Tue, 28 Apr 2015 21:35:30 GMT" + "Thu, 13 Aug 2015 07:06:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5MDMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,10 +971,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps3226' under resource group 'crptestps3226' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -941,13 +989,13 @@ "gateway" ], "x-ms-request-id": [ - "bda9d200-dea6-4e0d-a457-1d0735c46cc9" + "497573a1-92de-4293-baa6-4cfa216dd127" ], "x-ms-correlation-request-id": [ - "bda9d200-dea6-4e0d-a457-1d0735c46cc9" + "497573a1-92de-4293-baa6-4cfa216dd127" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213531Z:bda9d200-dea6-4e0d-a457-1d0735c46cc9" + "WESTUS:20150813T070609Z:497573a1-92de-4293-baa6-4cfa216dd127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -956,14 +1004,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:35:30 GMT" + "Thu, 13 Aug 2015 07:06:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5MDMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032\",\r\n \"etag\": \"W/\\\"3a7d98a6-602a-4af7-a880-39fdab627fc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3a7d98a6-602a-4af7-a880-39fdab627fc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032/subnets/subnetpstestrg9032\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226\",\r\n \"etag\": \"W/\\\"82c39746-eb43-41ba-86d4-e4c6247aa803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f421d9b-b2d2-4e6c-a021-4a149f651a64\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"82c39746-eb43-41ba-86d4-e4c6247aa803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226/subnets/subnetcrptestps3226\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "2f6ee875-15b7-4df2-a110-7f68c7e5f56d" + "4dca1501-3197-40f1-8452-31d105030977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,30 +1043,30 @@ "no-cache" ], "ETag": [ - "W/\"3a7d98a6-602a-4af7-a880-39fdab627fc1\"" + "W/\"82c39746-eb43-41ba-86d4-e4c6247aa803\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14974" ], "x-ms-correlation-request-id": [ - "ecc41d32-7b83-494e-b7ff-2d2d867fdf3b" + "11e36c0c-a075-4a92-a1c0-6db7a63c3775" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213532Z:ecc41d32-7b83-494e-b7ff-2d2d867fdf3b" + "WESTUS:20150813T070610Z:11e36c0c-a075-4a92-a1c0-6db7a63c3775" ], "Date": [ - "Tue, 28 Apr 2015 21:35:31 GMT" + "Thu, 13 Aug 2015 07:06:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5MDMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,10 +1074,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032\",\r\n \"etag\": \"W/\\\"3a7d98a6-602a-4af7-a880-39fdab627fc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3a7d98a6-602a-4af7-a880-39fdab627fc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032/subnets/subnetpstestrg9032\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226\",\r\n \"etag\": \"W/\\\"82c39746-eb43-41ba-86d4-e4c6247aa803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f421d9b-b2d2-4e6c-a021-4a149f651a64\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"82c39746-eb43-41ba-86d4-e4c6247aa803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226/subnets/subnetcrptestps3226\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,7 +1089,7 @@ "no-cache" ], "x-ms-request-id": [ - "8a95a945-7b0c-46d7-8608-e36420b7078b" + "3a6792a4-1f96-4889-8624-3757397e42f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,47 +1098,47 @@ "no-cache" ], "ETag": [ - "W/\"3a7d98a6-602a-4af7-a880-39fdab627fc1\"" + "W/\"82c39746-eb43-41ba-86d4-e4c6247aa803\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14973" ], "x-ms-correlation-request-id": [ - "11924ec0-095a-4c1a-9dd7-af1f996d4bc3" + "3e3fcf59-97da-438a-bf05-128f8dbbb72d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213532Z:11924ec0-095a-4c1a-9dd7-af1f996d4bc3" + "WESTUS:20150813T070610Z:3e3fcf59-97da-438a-bf05-128f8dbbb72d" ], "Date": [ - "Tue, 28 Apr 2015 21:35:31 GMT" + "Thu, 13 Aug 2015 07:06:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5MDMyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032/subnets/subnetpstestrg9032\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg9032\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226/subnets/subnetcrptestps3226\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps3226\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "857" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg9032\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032\",\r\n \"etag\": \"W/\\\"3a7d98a6-602a-4af7-a880-39fdab627fc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"3a7d98a6-602a-4af7-a880-39fdab627fc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9032\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9032/subnets/subnetpstestrg9032\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps3226\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226\",\r\n \"etag\": \"W/\\\"82c39746-eb43-41ba-86d4-e4c6247aa803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f421d9b-b2d2-4e6c-a021-4a149f651a64\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"82c39746-eb43-41ba-86d4-e4c6247aa803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps3226\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/virtualNetworks/vnetcrptestps3226/subnets/subnetcrptestps3226\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1102,10 +1150,10 @@ "no-cache" ], "x-ms-request-id": [ - "0d8afdba-52a7-4613-b389-938be547c91c" + "b7a9ac0c-1ab1-44d4-8ab8-93360104245b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0d8afdba-52a7-4613-b389-938be547c91c?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b7a9ac0c-1ab1-44d4-8ab8-93360104245b?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "01e08db2-7b1d-40d1-9080-151e3d51c9dd" + "d16c4dc1-2420-4634-beea-9d5a4bfc877c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213532Z:01e08db2-7b1d-40d1-9080-151e3d51c9dd" + "WESTUS:20150813T070610Z:d16c4dc1-2420-4634-beea-9d5a4bfc877c" ], "Date": [ - "Tue, 28 Apr 2015 21:35:31 GMT" + "Thu, 13 Aug 2015 07:06:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/0d8afdba-52a7-4613-b389-938be547c91c?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ4YWZkYmEtNTJhNy00NjEzLWIzODktOTM4YmU1NDdjOTFjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b7a9ac0c-1ab1-44d4-8ab8-93360104245b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhOWFjMGMtMWFiMS00NGQ0LThhYjgtOTMzNjAxMDQyNDViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1160,7 +1208,7 @@ "no-cache" ], "x-ms-request-id": [ - "eb918719-9fa1-4e8d-bd32-0df812beddbd" + "5e997b7a-a8af-4bcc-b5b5-121a5036ae10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,23 +1221,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14975" ], "x-ms-correlation-request-id": [ - "6cb7db4f-e6ce-47c0-b019-f36fca8f706e" + "5cfa72df-718c-4ebd-aa9d-2b86664dc060" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213532Z:6cb7db4f-e6ce-47c0-b019-f36fca8f706e" + "WESTUS:20150813T070610Z:5cfa72df-718c-4ebd-aa9d-2b86664dc060" ], "Date": [ - "Tue, 28 Apr 2015 21:35:31 GMT" + "Thu, 13 Aug 2015 07:06:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Storage/storageAccounts/stopstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTAzMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Storage/storageAccounts/stocrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzMjI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1200,7 +1248,7 @@ "88" ], "x-ms-client-request-id": [ - "44c441a2-6951-4ca2-8538-568147426f4c" + "6ddd9a37-5a85-4e34-b3b2-55e35084e72f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1224,44 +1272,44 @@ "25" ], "x-ms-request-id": [ - "41573537-950f-4f92-ac34-d15b4f41bde9" + "c466a207-e33d-40d2-ba85-0075651590c7" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/41573537-950f-4f92-ac34-d15b4f41bde9?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c466a207-e33d-40d2-ba85-0075651590c7?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "c7e9f546-d064-46f5-a760-ed49bd33d3e5" + "c36f7b0b-beb8-48d9-b699-bbc0358f0a16" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213536Z:c7e9f546-d064-46f5-a760-ed49bd33d3e5" + "WESTUS:20150813T070612Z:c36f7b0b-beb8-48d9-b699-bbc0358f0a16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:35:36 GMT" + "Thu, 13 Aug 2015 07:06:11 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/41573537-950f-4f92-ac34-d15b4f41bde9?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQxNTczNTM3LTk1MGYtNGY5Mi1hYzM0LWQxNWI0ZjQxYmRlOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c466a207-e33d-40d2-ba85-0075651590c7?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M0NjZhMjA3LWUzM2QtNDBkMi1iYTg1LTAwNzU2NTE1OTBjNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6046fe8-89e6-4505-8d4a-622ded789cf5" + "de1632a6-f9fa-452c-a99c-44eccf1607e0" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1285,44 +1333,44 @@ "25" ], "x-ms-request-id": [ - "3612960c-304f-4590-886b-6a7b8c092747" + "7015b62f-e10f-4c96-a427-bb00d3b9602a" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/41573537-950f-4f92-ac34-d15b4f41bde9?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c466a207-e33d-40d2-ba85-0075651590c7?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31917" + "14999" ], "x-ms-correlation-request-id": [ - "3ad08c4f-f25e-484f-a9de-032740cdfd47" + "181ed402-7784-4573-93ae-99817ff7d06f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213537Z:3ad08c4f-f25e-484f-a9de-032740cdfd47" + "WESTUS:20150813T070612Z:181ed402-7784-4573-93ae-99817ff7d06f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:35:36 GMT" + "Thu, 13 Aug 2015 07:06:11 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/41573537-950f-4f92-ac34-d15b4f41bde9?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQxNTczNTM3LTk1MGYtNGY5Mi1hYzM0LWQxNWI0ZjQxYmRlOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c466a207-e33d-40d2-ba85-0075651590c7?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M0NjZhMjA3LWUzM2QtNDBkMi1iYTg1LTAwNzU2NTE1OTBjNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65abef8b-ded1-4a66-aae9-18f007d278f9" + "33644ab7-9236-48cc-9255-e47a28f6cd8c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1343,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "8e5e9a89-b782-4ad0-a53b-fe0a8a2d04ba" + "f95c37f2-fb80-4c9b-bc26-940b83431809" ], "Cache-Control": [ "no-cache" @@ -1353,40 +1401,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31916" + "14998" ], "x-ms-correlation-request-id": [ - "68d5987b-b5be-4ded-99db-32c7ce72809a" + "dfc7ba57-42f2-4d4a-8369-73274db90e9d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213602Z:68d5987b-b5be-4ded-99db-32c7ce72809a" + "WESTUS:20150813T070637Z:dfc7ba57-42f2-4d4a-8369-73274db90e9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:36:02 GMT" + "Thu, 13 Aug 2015 07:06:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Storage/storageAccounts/stopstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTAzMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Storage/storageAccounts/stocrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzMjI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05ee3354-ce8c-478e-ac03-7b0f8fa91a93" + "8adb93bf-181e-49e6-aed0-3d0a35753909" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Storage/storageAccounts/stopstestrg9032\",\r\n \"name\": \"stopstestrg9032\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg9032.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9032.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9032.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T21:35:21.7301315Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Storage/storageAccounts/stocrptestps3226\",\r\n \"name\": \"stocrptestps3226\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3226.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3226.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3226.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:06:10.4816089Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "8a057bbd-b061-4136-b79f-d4bdf0ce93db" + "57c15886-4253-41be-870c-0ce8dc20853e" ], "Cache-Control": [ "no-cache" @@ -1408,40 +1456,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31915" + "14997" ], "x-ms-correlation-request-id": [ - "e75dc424-5577-4dd9-bbb5-8fd7c66c4713" + "e153af16-d5fb-4dcf-8943-f35890a88899" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213602Z:e75dc424-5577-4dd9-bbb5-8fd7c66c4713" + "WESTUS:20150813T070637Z:e153af16-d5fb-4dcf-8943-f35890a88899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:36:02 GMT" + "Thu, 13 Aug 2015 07:06:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Storage/storageAccounts/stopstestrg9032?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTAzMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Storage/storageAccounts/stocrptestps3226?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMzMjI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d73c3bc6-351e-4184-aaf9-67edfad08bc7" + "a781240a-1784-41e8-9019-a04b772a5e8c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Storage/storageAccounts/stopstestrg9032\",\r\n \"name\": \"stopstestrg9032\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg9032.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9032.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9032.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T21:35:21.7301315Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Storage/storageAccounts/stocrptestps3226\",\r\n \"name\": \"stocrptestps3226\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps3226.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps3226.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps3226.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:06:10.4816089Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1453,7 +1501,7 @@ "no-cache" ], "x-ms-request-id": [ - "7e7b1a5e-dab6-4ed3-b68e-6603f181e7ce" + "7c7107dc-538a-4baf-afa2-114db49c06e9" ], "Cache-Control": [ "no-cache" @@ -1463,37 +1511,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31914" + "14996" ], "x-ms-correlation-request-id": [ - "7e429379-951b-4ecb-9697-d2cfa296f54b" + "ea01bd98-a73a-47e4-9063-01b4abddb93f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213602Z:7e429379-951b-4ecb-9697-d2cfa296f54b" + "WESTUS:20150813T070637Z:ea01bd98-a73a-47e4-9063-01b4abddb93f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:36:02 GMT" + "Thu, 13 Aug 2015 07:06:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1508,7 +1556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57e49805-a753-4e5b-bede-f91a7fc629f5" + "9dd10dd5-ce50-4404-9ff6-44cd72b60988" ], "Cache-Control": [ "no-cache" @@ -1518,31 +1566,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31913" + "14988" ], "x-ms-correlation-request-id": [ - "92f4bdeb-ed04-4386-bf74-5b2a5e5095cc" + "2d5c8e8e-9190-408f-8b2c-ce58af623d1c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213603Z:92f4bdeb-ed04-4386-bf74-5b2a5e5095cc" + "WESTUS:20150813T070638Z:2d5c8e8e-9190-408f-8b2c-ce58af623d1c" ], "Date": [ - "Tue, 28 Apr 2015 21:36:03 GMT" + "Thu, 13 Aug 2015 07:06:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1560,7 +1608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b366355e-0b69-4c8b-9583-db3cf3110b64" + "334f2e59-0200-4224-b0d4-e2afeb368be2" ], "Cache-Control": [ "no-cache" @@ -1570,34 +1618,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31912" + "14987" ], "x-ms-correlation-request-id": [ - "c730b5a1-1491-484e-b360-a67f23b90c5f" + "fef99559-98f5-46a7-b1c2-cc803c23a6bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213603Z:c730b5a1-1491-484e-b360-a67f23b90c5f" + "WESTUS:20150813T070638Z:fef99559-98f5-46a7-b1c2-cc803c23a6bd" ], "Date": [ - "Tue, 28 Apr 2015 21:36:03 GMT" + "Thu, 13 Aug 2015 07:06:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1612,7 +1660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4afbf736-0159-42dd-9c2b-e96d8dd03d6e" + "cd61770c-32cd-48eb-a274-0ddcac4b40c3" ], "Cache-Control": [ "no-cache" @@ -1622,34 +1670,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31911" + "14986" ], "x-ms-correlation-request-id": [ - "6f5beddf-8ed5-47f4-9bef-80e2501990ff" + "4d8e3f65-430d-4631-aae6-7f6cc4fa5bdb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213603Z:6f5beddf-8ed5-47f4-9bef-80e2501990ff" + "WESTUS:20150813T070638Z:4d8e3f65-430d-4631-aae6-7f6cc4fa5bdb" ], "Date": [ - "Tue, 28 Apr 2015 21:36:03 GMT" + "Thu, 13 Aug 2015 07:06:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1664,7 +1712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af3c65f2-190d-4fce-9d1d-1bece89b5f9a" + "8c42e79c-7433-4545-8abb-a7f473ff3550" ], "Cache-Control": [ "no-cache" @@ -1674,31 +1722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31910" + "14985" ], "x-ms-correlation-request-id": [ - "68945470-edbe-40bd-bee0-f461228ee499" + "b903555a-2c60-4862-bcdb-17e917608899" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213603Z:68945470-edbe-40bd-bee0-f461228ee499" + "WESTUS:20150813T070638Z:b903555a-2c60-4862-bcdb-17e917608899" ], "Date": [ - "Tue, 28 Apr 2015 21:36:03 GMT" + "Thu, 13 Aug 2015 07:06:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1716,7 +1764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ad33b87-7e75-4c97-a359-6dfb8e849060" + "cff9d613-f07e-4c0b-a23f-13a1650d1557" ], "Cache-Control": [ "no-cache" @@ -1726,40 +1774,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31909" + "14984" ], "x-ms-correlation-request-id": [ - "baeb19a8-cd80-464a-a6a2-4047091379f5" + "c095c7d2-d3a9-4a75-8597-fe22146a28c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213603Z:baeb19a8-cd80-464a-a6a2-4047091379f5" + "WESTUS:20150813T070639Z:c095c7d2-d3a9-4a75-8597-fe22146a28c4" ], "Date": [ - "Tue, 28 Apr 2015 21:36:03 GMT" + "Thu, 13 Aug 2015 07:06:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Compute/virtualMachines/vmpstestrg9032?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTAzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc5MDMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Compute/virtualMachines/vmcrptestps3226?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczMyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"pstestrg875\",\r\n \"publisher\": \"pstestrg875\",\r\n \"product\": \"pstestrg875\",\r\n \"promotionCode\": \"pstestrg875\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg9032.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg9032\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9032/providers/Microsoft.Network/networkInterfaces/nicpstestrg9032\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg9032\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"crptestps6165\",\r\n \"publisher\": \"crptestps6165\",\r\n \"product\": \"crptestps6165\",\r\n \"promotionCode\": \"crptestps6165\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps3226.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps3226\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps3226/providers/Microsoft.Network/networkInterfaces/niccrptestps3226\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps3226\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1239" + "1237" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourcePurchaseValidationFailed\",\r\n \"message\": \"User failed validation to purchase resources. Error message: 'Invalid Request Parameters'\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourcePurchaseValidationFailed\",\r\n \"message\": \"User failed validation to purchase resources. Error message: 'Legal terms have not been accepted for this item on this subscription. To accept legal terms, please go to the Azure portal (http://go.microsoft.com/fwlink/?LinkId=534873) and configure programmatic deployment for the Marketplace item or create it there for the first time'\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "155" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1774,13 +1822,13 @@ "gateway" ], "x-ms-request-id": [ - "3e2599fa-80db-433a-98d2-c006babe83e9" + "4c43aa3d-d218-42d1-9c74-78e3a36b3a3a" ], "x-ms-correlation-request-id": [ - "3e2599fa-80db-433a-98d2-c006babe83e9" + "4c43aa3d-d218-42d1-9c74-78e3a36b3a3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213626Z:3e2599fa-80db-433a-98d2-c006babe83e9" + "WESTUS:20150813T070639Z:4c43aa3d-d218-42d1-9c74-78e3a36b3a3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1789,14 +1837,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:36:25 GMT" + "Thu, 13 Aug 2015 07:06:39 GMT" ] }, "StatusCode": 400 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9032?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTAzMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps3226?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczMyMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1822,67 +1870,13 @@ "1197" ], "x-ms-request-id": [ - "0abd9fb5-9072-49da-845f-cf223334e979" - ], - "x-ms-correlation-request-id": [ - "0abd9fb5-9072-49da-845f-cf223334e979" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T213627Z:0abd9fb5-9072-49da-845f-cf223334e979" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:36:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "1287655b-471e-4307-a438-c860bc8ab81d" + "ec8724be-b9e9-45b2-a9bf-64deff53637c" ], "x-ms-correlation-request-id": [ - "1287655b-471e-4307-a438-c860bc8ab81d" + "ec8724be-b9e9-45b2-a9bf-64deff53637c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213627Z:1287655b-471e-4307-a438-c860bc8ab81d" + "WESTUS:20150813T070640Z:ec8724be-b9e9-45b2-a9bf-64deff53637c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1891,17 +1885,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:36:27 GMT" + "Thu, 13 Aug 2015 07:06:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpJMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1927,16 +1921,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14992" ], "x-ms-request-id": [ - "aa292f41-51e4-4daf-8bb5-b8b0dbcc120b" + "a2bcbad5-a58c-461e-8818-a7e6965f69ce" ], "x-ms-correlation-request-id": [ - "aa292f41-51e4-4daf-8bb5-b8b0dbcc120b" + "a2bcbad5-a58c-461e-8818-a7e6965f69ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213642Z:aa292f41-51e4-4daf-8bb5-b8b0dbcc120b" + "WESTUS:20150813T070640Z:a2bcbad5-a58c-461e-8818-a7e6965f69ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1945,17 +1939,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:36:41 GMT" + "Thu, 13 Aug 2015 07:06:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpJMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1981,16 +1975,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14991" ], "x-ms-request-id": [ - "77e6ce35-6986-42f1-be19-197df8705095" + "cf08d05b-d961-48b7-8a48-98dc294e576e" ], "x-ms-correlation-request-id": [ - "77e6ce35-6986-42f1-be19-197df8705095" + "cf08d05b-d961-48b7-8a48-98dc294e576e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213657Z:77e6ce35-6986-42f1-be19-197df8705095" + "WESTUS:20150813T070655Z:cf08d05b-d961-48b7-8a48-98dc294e576e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1999,17 +1993,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:36:57 GMT" + "Thu, 13 Aug 2015 07:06:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpJMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2035,16 +2029,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14990" ], "x-ms-request-id": [ - "b642771c-df07-48b1-970d-b3f3efae6344" + "7aa2ffc3-debc-4794-b09f-506add0053ec" ], "x-ms-correlation-request-id": [ - "b642771c-df07-48b1-970d-b3f3efae6344" + "7aa2ffc3-debc-4794-b09f-506add0053ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213712Z:b642771c-df07-48b1-970d-b3f3efae6344" + "WESTUS:20150813T070710Z:7aa2ffc3-debc-4794-b09f-506add0053ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2053,17 +2047,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:37:12 GMT" + "Thu, 13 Aug 2015 07:07:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpJMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2089,16 +2083,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14989" ], "x-ms-request-id": [ - "d82bc408-f7c1-43f7-b14d-84af076e052f" + "acc30e5d-9d90-463f-842a-3498f30e1548" ], "x-ms-correlation-request-id": [ - "d82bc408-f7c1-43f7-b14d-84af076e052f" + "acc30e5d-9d90-463f-842a-3498f30e1548" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213727Z:d82bc408-f7c1-43f7-b14d-84af076e052f" + "WESTUS:20150813T070725Z:acc30e5d-9d90-463f-842a-3498f30e1548" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2107,17 +2101,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:37:27 GMT" + "Thu, 13 Aug 2015 07:07:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpJMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2143,16 +2137,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14988" ], "x-ms-request-id": [ - "ede4e0ba-4ef8-4dd6-9d4b-85c047a228ad" + "6ec6e398-8b34-4f19-9439-6f26b5d1ed7c" ], "x-ms-correlation-request-id": [ - "ede4e0ba-4ef8-4dd6-9d4b-85c047a228ad" + "6ec6e398-8b34-4f19-9439-6f26b5d1ed7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213742Z:ede4e0ba-4ef8-4dd6-9d4b-85c047a228ad" + "WESTUS:20150813T070740Z:6ec6e398-8b34-4f19-9439-6f26b5d1ed7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2161,17 +2155,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:37:42 GMT" + "Thu, 13 Aug 2015 07:07:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpJMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,16 +2191,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14987" ], "x-ms-request-id": [ - "e7512254-b45e-42af-8e24-c25bd528169e" + "aab3f1b2-4300-424d-aa96-62f2d2ffd84c" ], "x-ms-correlation-request-id": [ - "e7512254-b45e-42af-8e24-c25bd528169e" + "aab3f1b2-4300-424d-aa96-62f2d2ffd84c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213757Z:e7512254-b45e-42af-8e24-c25bd528169e" + "WESTUS:20150813T070755Z:aab3f1b2-4300-424d-aa96-62f2d2ffd84c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2215,17 +2209,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:37:56 GMT" + "Thu, 13 Aug 2015 07:07:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpJMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2251,16 +2245,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14986" ], "x-ms-request-id": [ - "b4a56619-2fdc-41e9-9462-cbf4299e5c72" + "e5978416-e524-4a33-a78f-801ecf2e9f84" ], "x-ms-correlation-request-id": [ - "b4a56619-2fdc-41e9-9462-cbf4299e5c72" + "e5978416-e524-4a33-a78f-801ecf2e9f84" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213812Z:b4a56619-2fdc-41e9-9462-cbf4299e5c72" + "WESTUS:20150813T070810Z:e5978416-e524-4a33-a78f-801ecf2e9f84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2269,17 +2263,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:38:12 GMT" + "Thu, 13 Aug 2015 07:08:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkwMzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt3TXpJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMzMjI2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk16TWpJMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2302,16 +2296,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14985" ], "x-ms-request-id": [ - "afe3e5ed-2680-4c60-b3e4-abf28eff672c" + "81b18feb-0089-4262-a86b-970ffc00933a" ], "x-ms-correlation-request-id": [ - "afe3e5ed-2680-4c60-b3e4-abf28eff672c" + "81b18feb-0089-4262-a86b-970ffc00933a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213827Z:afe3e5ed-2680-4c60-b3e4-abf28eff672c" + "WESTUS:20150813T070825Z:81b18feb-0089-4262-a86b-970ffc00933a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2320,7 +2314,7 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:38:27 GMT" + "Thu, 13 Aug 2015 07:08:25 GMT" ] }, "StatusCode": 200 @@ -2328,13 +2322,13 @@ ], "Names": { "Test-VirtualMachinePlan": [ - "pstestrg9032", - "pstestrg875" + "crptestps3226", + "crptestps6165" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan2.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan2.json index 80f0173b58c1..991fc88db816 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan2.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan2.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "x-ms-request-id": [ + "75bac1db-1b02-492e-83fc-94e2b226490c" + ], + "x-ms-correlation-request-id": [ + "75bac1db-1b02-492e-83fc-94e2b226490c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074502Z:75bac1db-1b02-492e-83fc-94e2b226490c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 07:45:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1356?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13924" + "14833" ], "x-ms-request-id": [ - "0e0771a1-2c34-4998-bf18-8ce5b818e9c0" + "6f2bcb58-785d-4624-9725-0c4258d288e8" ], "x-ms-correlation-request-id": [ - "0e0771a1-2c34-4998-bf18-8ce5b818e9c0" + "6f2bcb58-785d-4624-9725-0c4258d288e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212323Z:0e0771a1-2c34-4998-bf18-8ce5b818e9c0" + "WESTUS:20150813T074502Z:6f2bcb58-785d-4624-9725-0c4258d288e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:23:23 GMT" + "Thu, 13 Aug 2015 07:45:02 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1356?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14678" + "14952" ], "x-ms-request-id": [ - "03ae42a3-8eec-4fad-9eb7-5662ed28dd8c" + "35961529-9f5b-4e20-9557-a73cd4f0846f" ], "x-ms-correlation-request-id": [ - "03ae42a3-8eec-4fad-9eb7-5662ed28dd8c" + "35961529-9f5b-4e20-9557-a73cd4f0846f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212801Z:03ae42a3-8eec-4fad-9eb7-5662ed28dd8c" + "WESTUS:20150813T074939Z:35961529-9f5b-4e20-9557-a73cd4f0846f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:28:01 GMT" + "Thu, 13 Aug 2015 07:49:38 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1356?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425\",\r\n \"name\": \"crptestps4425\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356\",\r\n \"name\": \"crptestps1356\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-request-id": [ - "857b6034-aa0c-4219-ac7e-d0034bfaf1cf" + "463953c4-5fe7-4574-9cdc-8e66da2ff60a" ], "x-ms-correlation-request-id": [ - "857b6034-aa0c-4219-ac7e-d0034bfaf1cf" + "463953c4-5fe7-4574-9cdc-8e66da2ff60a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212324Z:857b6034-aa0c-4219-ac7e-d0034bfaf1cf" + "WESTUS:20150813T074503Z:463953c4-5fe7-4574-9cdc-8e66da2ff60a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:23:23 GMT" + "Thu, 13 Aug 2015 07:45:02 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13923" + "14832" ], "x-ms-request-id": [ - "a056a164-8bd6-4662-bfdd-86f6615ec923" + "0f985137-0ff8-4150-a3c3-2e8b8b140d31" ], "x-ms-correlation-request-id": [ - "a056a164-8bd6-4662-bfdd-86f6615ec923" + "0f985137-0ff8-4150-a3c3-2e8b8b140d31" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212324Z:a056a164-8bd6-4662-bfdd-86f6615ec923" + "WESTUS:20150813T074503Z:0f985137-0ff8-4150-a3c3-2e8b8b140d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:23:23 GMT" + "Thu, 13 Aug 2015 07:45:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1356/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:0e97a6fe-f625-41af-9eba-441c3f0ff6e9" + "westus:27f90f81-f329-4200-ba40-8c3163724879" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14014" + "14977" ], "x-ms-correlation-request-id": [ - "bb5faba4-7a3b-47d1-9b51-a0154c9e4b8c" + "5c2c762c-2782-4d6e-85e4-1d8523af3d01" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212324Z:bb5faba4-7a3b-47d1-9b51-a0154c9e4b8c" + "WESTUS:20150813T074503Z:5c2c762c-2782-4d6e-85e4-1d8523af3d01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,19 +292,19 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:23:23 GMT" + "Thu, 13 Aug 2015 07:45:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", @@ -277,10 +325,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b3b24849-7c32-4e32-9445-0f4b656b217e_130773150397702479" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "40927b26-9c42-44a5-a207-edb88c2732b5" + "14c3475d-ff68-400c-b301-b27d09560071" ], "Cache-Control": [ "no-cache" @@ -290,23 +338,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14905" ], "x-ms-correlation-request-id": [ - "80513a49-893f-4761-be08-762189d4f915" + "d2bad674-4ca0-497f-8c6c-e315c944939c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212328Z:80513a49-893f-4761-be08-762189d4f915" + "WESTUS:20150813T074504Z:d2bad674-4ca0-497f-8c6c-e315c944939c" ], "Date": [ - "Wed, 05 Aug 2015 21:23:28 GMT" + "Thu, 13 Aug 2015 07:45:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTM1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -314,7 +362,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps4425' under resource group 'crptestps4425' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps1356' under resource group 'crptestps1356' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -332,13 +380,13 @@ "gateway" ], "x-ms-request-id": [ - "d0870c1b-32fa-42a0-9a72-affe7e930016" + "8bb09952-c1da-4984-96a1-d4466c3a2f03" ], "x-ms-correlation-request-id": [ - "d0870c1b-32fa-42a0-9a72-affe7e930016" + "8bb09952-c1da-4984-96a1-d4466c3a2f03" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212328Z:d0870c1b-32fa-42a0-9a72-affe7e930016" + "WESTUS:20150813T074505Z:8bb09952-c1da-4984-96a1-d4466c3a2f03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -347,14 +395,14 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:23:27 GMT" + "Thu, 13 Aug 2015 07:45:04 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTM1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,7 +410,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425\",\r\n \"etag\": \"W/\\\"cef5c366-2717-4c61-b46d-4e91c113262f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55600054-eaab-4a0e-a08c-e5c0c7ade9ed\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425/subnets/subnetcrptestps4425\",\r\n \"etag\": \"W/\\\"cef5c366-2717-4c61-b46d-4e91c113262f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356\",\r\n \"etag\": \"W/\\\"f4dde186-fc63-42b6-8b65-34101c98627e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01d77e48-cec5-4fe5-9fce-a324ceed181d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356/subnets/subnetcrptestps1356\",\r\n \"etag\": \"W/\\\"f4dde186-fc63-42b6-8b65-34101c98627e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "93282a72-a8e2-4afb-ae79-61046431a6bf" + "961c3b29-577d-4f50-af93-64bd0222e0e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,30 +434,30 @@ "no-cache" ], "ETag": [ - "W/\"cef5c366-2717-4c61-b46d-4e91c113262f\"" + "W/\"f4dde186-fc63-42b6-8b65-34101c98627e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14059" + "14978" ], "x-ms-correlation-request-id": [ - "77eb36e2-2c9c-4169-9e26-66f212609d75" + "bf832aad-c007-4088-a8b4-97c0e63d5476" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212329Z:77eb36e2-2c9c-4169-9e26-66f212609d75" + "WESTUS:20150813T074506Z:bf832aad-c007-4088-a8b4-97c0e63d5476" ], "Date": [ - "Wed, 05 Aug 2015 21:23:28 GMT" + "Thu, 13 Aug 2015 07:45:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTM1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -417,7 +465,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425\",\r\n \"etag\": \"W/\\\"cef5c366-2717-4c61-b46d-4e91c113262f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"55600054-eaab-4a0e-a08c-e5c0c7ade9ed\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425/subnets/subnetcrptestps4425\",\r\n \"etag\": \"W/\\\"cef5c366-2717-4c61-b46d-4e91c113262f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356\",\r\n \"etag\": \"W/\\\"f4dde186-fc63-42b6-8b65-34101c98627e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01d77e48-cec5-4fe5-9fce-a324ceed181d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356/subnets/subnetcrptestps1356\",\r\n \"etag\": \"W/\\\"f4dde186-fc63-42b6-8b65-34101c98627e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -432,7 +480,7 @@ "no-cache" ], "x-ms-request-id": [ - "2992948f-ab11-4bd9-932e-777af8cb0c47" + "ebc8cbba-3dd1-4330-a587-96b78de87b87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,32 +489,32 @@ "no-cache" ], "ETag": [ - "W/\"cef5c366-2717-4c61-b46d-4e91c113262f\"" + "W/\"f4dde186-fc63-42b6-8b65-34101c98627e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14058" + "14977" ], "x-ms-correlation-request-id": [ - "27dcc699-d2eb-449b-a691-d036e56e37fb" + "bbee2b48-3033-4a17-adee-97f039cbf8da" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212329Z:27dcc699-d2eb-449b-a691-d036e56e37fb" + "WESTUS:20150813T074506Z:bbee2b48-3033-4a17-adee-97f039cbf8da" ], "Date": [ - "Wed, 05 Aug 2015 21:23:28 GMT" + "Thu, 13 Aug 2015 07:45:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTM1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps4425\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps4425\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps1356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps1356\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -478,7 +526,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425\",\r\n \"etag\": \"W/\\\"75de8cc2-2df9-4c24-acc6-f2c309274ba1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"55600054-eaab-4a0e-a08c-e5c0c7ade9ed\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425/subnets/subnetcrptestps4425\",\r\n \"etag\": \"W/\\\"75de8cc2-2df9-4c24-acc6-f2c309274ba1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356\",\r\n \"etag\": \"W/\\\"6105a067-d1a6-4f83-983c-31b94e88219c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"01d77e48-cec5-4fe5-9fce-a324ceed181d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356/subnets/subnetcrptestps1356\",\r\n \"etag\": \"W/\\\"6105a067-d1a6-4f83-983c-31b94e88219c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1026" @@ -496,10 +544,10 @@ "10" ], "x-ms-request-id": [ - "1d4bfacf-56db-4c15-ad0d-b2a7e0e6073b" + "a0d227e2-ef84-4720-8222-e7c436070a21" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/1d4bfacf-56db-4c15-ad0d-b2a7e0e6073b?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/a0d227e2-ef84-4720-8222-e7c436070a21?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1195" ], "x-ms-correlation-request-id": [ - "e6e320a3-5ee7-4443-9483-d0d1eac0b55a" + "6347203d-eee1-4874-9783-2fe521ebc59d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212329Z:e6e320a3-5ee7-4443-9483-d0d1eac0b55a" + "WESTUS:20150813T074505Z:6347203d-eee1-4874-9783-2fe521ebc59d" ], "Date": [ - "Wed, 05 Aug 2015 21:23:28 GMT" + "Thu, 13 Aug 2015 07:45:04 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/1d4bfacf-56db-4c15-ad0d-b2a7e0e6073b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWQ0YmZhY2YtNTZkYi00YzE1LWFkMGQtYjJhN2UwZTYwNzNiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/a0d227e2-ef84-4720-8222-e7c436070a21?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTBkMjI3ZTItZWY4NC00NzIwLTgyMjItZTdjNDM2MDcwYTIxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "34473c56-0479-4d14-a2d5-e2436ff718f7" + "7d30f79c-4c96-48fa-8cfd-a7e074ac6903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14060" + "14979" ], "x-ms-correlation-request-id": [ - "eb13605a-769b-4157-a072-850539825ec9" + "aa386d01-c64f-4e9c-bfbc-b57b25fa8a77" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212329Z:eb13605a-769b-4157-a072-850539825ec9" + "WESTUS:20150813T074505Z:aa386d01-c64f-4e9c-bfbc-b57b25fa8a77" ], "Date": [ - "Wed, 05 Aug 2015 21:23:28 GMT" + "Thu, 13 Aug 2015 07:45:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTM1Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,7 +639,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps4425' under resource group 'crptestps4425' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps1356' under resource group 'crptestps1356' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -609,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "5c14bc0b-d22d-40a6-afd1-4d5d7eb061b3" + "dc51ce89-1ba1-4aa5-aa60-7f9987a8a9bb" ], "x-ms-correlation-request-id": [ - "5c14bc0b-d22d-40a6-afd1-4d5d7eb061b3" + "dc51ce89-1ba1-4aa5-aa60-7f9987a8a9bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212329Z:5c14bc0b-d22d-40a6-afd1-4d5d7eb061b3" + "WESTUS:20150813T074506Z:dc51ce89-1ba1-4aa5-aa60-7f9987a8a9bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +672,14 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:23:28 GMT" + "Thu, 13 Aug 2015 07:45:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTM1Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,7 +687,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425\",\r\n \"etag\": \"W/\\\"799525fb-beb1-475f-9bed-ae3a23285a4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e374b924-071c-4cae-95de-a8dca277035c\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4425\",\r\n \"fqdn\": \"pubipcrptestps4425.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356\",\r\n \"etag\": \"W/\\\"29d03978-9cc0-47a1-9534-ca16b45f25db\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f58e469d-d63f-4952-9fcc-c8c239984152\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1356\",\r\n \"fqdn\": \"pubipcrptestps1356.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -654,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "12914f74-9d18-4aeb-96a5-f12f038dca3a" + "152b92af-c998-4271-bf2f-8a6ac3fe5c0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"799525fb-beb1-475f-9bed-ae3a23285a4f\"" + "W/\"29d03978-9cc0-47a1-9534-ca16b45f25db\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14055" + "14973" ], "x-ms-correlation-request-id": [ - "68c703ed-9756-4198-9950-3b5a720c9888" + "5aa3328a-f19d-449f-9dbc-73a5a76013ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212330Z:68c703ed-9756-4198-9950-3b5a720c9888" + "WESTUS:20150813T074517Z:5aa3328a-f19d-449f-9dbc-73a5a76013ab" ], "Date": [ - "Wed, 05 Aug 2015 21:23:29 GMT" + "Thu, 13 Aug 2015 07:45:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTM1Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,7 +742,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425\",\r\n \"etag\": \"W/\\\"799525fb-beb1-475f-9bed-ae3a23285a4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e374b924-071c-4cae-95de-a8dca277035c\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4425\",\r\n \"fqdn\": \"pubipcrptestps4425.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356\",\r\n \"etag\": \"W/\\\"29d03978-9cc0-47a1-9534-ca16b45f25db\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f58e469d-d63f-4952-9fcc-c8c239984152\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1356\",\r\n \"fqdn\": \"pubipcrptestps1356.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -709,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "607465e0-90f0-4811-bf3c-0710776d8e3c" + "f6ec6ddf-88e0-4b6a-adb5-63d5a1d8b085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,32 +766,32 @@ "no-cache" ], "ETag": [ - "W/\"799525fb-beb1-475f-9bed-ae3a23285a4f\"" + "W/\"29d03978-9cc0-47a1-9534-ca16b45f25db\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14054" + "14972" ], "x-ms-correlation-request-id": [ - "573707c9-511a-4d8e-a208-c4ed7a07e570" + "36270169-e620-45d7-8965-38d511b47db3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212330Z:573707c9-511a-4d8e-a208-c4ed7a07e570" + "WESTUS:20150813T074517Z:36270169-e620-45d7-8965-38d511b47db3" ], "Date": [ - "Wed, 05 Aug 2015 21:23:30 GMT" + "Thu, 13 Aug 2015 07:45:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTM1Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4425\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps4425\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1356\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps1356\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -755,7 +803,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425\",\r\n \"etag\": \"W/\\\"9de3c473-fc97-48b7-8107-8e1c7e683e0c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e374b924-071c-4cae-95de-a8dca277035c\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4425\",\r\n \"fqdn\": \"pubipcrptestps4425.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356\",\r\n \"etag\": \"W/\\\"9adf85fc-df33-4360-8fb8-8d443af80465\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f58e469d-d63f-4952-9fcc-c8c239984152\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1356\",\r\n \"fqdn\": \"pubipcrptestps1356.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -773,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "833af1ee-f53f-484e-9082-ca49022c179a" + "398df126-3524-4b63-b8d8-151bb6346a13" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/833af1ee-f53f-484e-9082-ca49022c179a?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/398df126-3524-4b63-b8d8-151bb6346a13?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +837,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1194" ], "x-ms-correlation-request-id": [ - "c2bd2831-ceb6-4b63-84bd-3ee4213c2438" + "6b8b8614-2cc1-4f28-9a7b-8ae91750fe26" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212330Z:c2bd2831-ceb6-4b63-84bd-3ee4213c2438" + "WESTUS:20150813T074507Z:6b8b8614-2cc1-4f28-9a7b-8ae91750fe26" ], "Date": [ - "Wed, 05 Aug 2015 21:23:29 GMT" + "Thu, 13 Aug 2015 07:45:06 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/833af1ee-f53f-484e-9082-ca49022c179a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMzYWYxZWUtZjUzZi00ODRlLTkwODItY2E0OTAyMmMxNzlhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/398df126-3524-4b63-b8d8-151bb6346a13?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk4ZGYxMjYtMzUyNC00YjYzLWI4ZDgtMTUxYmI2MzQ2YTEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0e9976d9-f394-4026-a786-9c060cc952b2" + ], + "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": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "7fa258d4-f125-4873-a3b8-4028a4de3133" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074507Z:7fa258d4-f125-4873-a3b8-4028a4de3133" + ], + "Date": [ + "Thu, 13 Aug 2015 07:45:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/398df126-3524-4b63-b8d8-151bb6346a13?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzk4ZGYxMjYtMzUyNC00YjYzLWI4ZDgtMTUxYmI2MzQ2YTEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,7 +934,7 @@ "no-cache" ], "x-ms-request-id": [ - "fe1f11e1-2117-4d22-86c4-5861880d5086" + "29fc31b9-a046-477e-a156-0c374bd0528d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -844,23 +947,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14056" + "14974" ], "x-ms-correlation-request-id": [ - "4488715e-476c-49b7-8960-0f0a645bcbf0" + "2029efe5-dcf0-4362-80d6-99275944078c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212330Z:4488715e-476c-49b7-8960-0f0a645bcbf0" + "WESTUS:20150813T074517Z:2029efe5-dcf0-4362-80d6-99275944078c" ], "Date": [ - "Wed, 05 Aug 2015 21:23:29 GMT" + "Thu, 13 Aug 2015 07:45:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,7 +971,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps4425' under resource group 'crptestps4425' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps1356' under resource group 'crptestps1356' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -886,13 +989,13 @@ "gateway" ], "x-ms-request-id": [ - "128fff96-dc89-4fad-8c67-dd37d9c3b3d7" + "d15c7c61-cff3-43e9-9e84-7a23abb19b27" ], "x-ms-correlation-request-id": [ - "128fff96-dc89-4fad-8c67-dd37d9c3b3d7" + "d15c7c61-cff3-43e9-9e84-7a23abb19b27" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212330Z:128fff96-dc89-4fad-8c67-dd37d9c3b3d7" + "WESTUS:20150813T074517Z:d15c7c61-cff3-43e9-9e84-7a23abb19b27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,14 +1004,14 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:23:30 GMT" + "Thu, 13 Aug 2015 07:45:17 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,7 +1019,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425\",\r\n \"etag\": \"W/\\\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9ed2a54-fd0c-4fa8-a7dd-bec8886f5275\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425/subnets/subnetcrptestps4425\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356\",\r\n \"etag\": \"W/\\\"0c6f9b6e-7d89-4c10-a585-67d9266cba45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49bbc542-7ab5-472c-b9ad-b68bdec1b5ac\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0c6f9b6e-7d89-4c10-a585-67d9266cba45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356/subnets/subnetcrptestps1356\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -931,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "63200e66-dab0-42fa-8236-3f8a8558e441" + "cdbeb336-4549-44b0-87ba-f01dd0e77175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,30 +1043,30 @@ "no-cache" ], "ETag": [ - "W/\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\"" + "W/\"0c6f9b6e-7d89-4c10-a585-67d9266cba45\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14051" + "14969" ], "x-ms-correlation-request-id": [ - "6bdbf67f-2ece-4641-bf31-387c9b88ef51" + "d60d97d3-4333-452f-8bfe-79c7cd9bcb4a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212331Z:6bdbf67f-2ece-4641-bf31-387c9b88ef51" + "WESTUS:20150813T074518Z:d60d97d3-4333-452f-8bfe-79c7cd9bcb4a" ], "Date": [ - "Wed, 05 Aug 2015 21:23:31 GMT" + "Thu, 13 Aug 2015 07:45:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,7 +1074,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425\",\r\n \"etag\": \"W/\\\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9ed2a54-fd0c-4fa8-a7dd-bec8886f5275\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425/subnets/subnetcrptestps4425\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356\",\r\n \"etag\": \"W/\\\"0c6f9b6e-7d89-4c10-a585-67d9266cba45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49bbc542-7ab5-472c-b9ad-b68bdec1b5ac\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0c6f9b6e-7d89-4c10-a585-67d9266cba45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356/subnets/subnetcrptestps1356\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -986,7 +1089,7 @@ "no-cache" ], "x-ms-request-id": [ - "b5bd35f2-9c5e-4358-a803-230a81384c45" + "f1c3fdad-3627-462d-9af8-4c165aba166a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,32 +1098,32 @@ "no-cache" ], "ETag": [ - "W/\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\"" + "W/\"0c6f9b6e-7d89-4c10-a585-67d9266cba45\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14050" + "14968" ], "x-ms-correlation-request-id": [ - "19c2e688-2015-495d-9078-81b3c329fc43" + "9eddfe04-96e8-4e02-9dbc-446ea697dc15" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212331Z:19c2e688-2015-495d-9078-81b3c329fc43" + "WESTUS:20150813T074518Z:9eddfe04-96e8-4e02-9dbc-446ea697dc15" ], "Date": [ - "Wed, 05 Aug 2015 21:23:31 GMT" + "Thu, 13 Aug 2015 07:45:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425/subnets/subnetcrptestps4425\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps4425\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356/subnets/subnetcrptestps1356\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps1356\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1032,7 +1135,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps4425\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425\",\r\n \"etag\": \"W/\\\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f9ed2a54-fd0c-4fa8-a7dd-bec8886f5275\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4425/subnets/subnetcrptestps4425\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps1356\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356\",\r\n \"etag\": \"W/\\\"0c6f9b6e-7d89-4c10-a585-67d9266cba45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49bbc542-7ab5-472c-b9ad-b68bdec1b5ac\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"0c6f9b6e-7d89-4c10-a585-67d9266cba45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1356\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1356/subnets/subnetcrptestps1356\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1405" @@ -1047,10 +1150,10 @@ "no-cache" ], "x-ms-request-id": [ - "e027b26b-3ebe-4ef1-92f7-cb065f674503" + "5df80cf3-05f2-4a01-88dd-0ee2806418e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/e027b26b-3ebe-4ef1-92f7-cb065f674503?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/5df80cf3-05f2-4a01-88dd-0ee2806418e9?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1193" ], "x-ms-correlation-request-id": [ - "3a8be8be-7dac-4ce1-8f20-75c094aff52f" + "33274fac-08b9-4ee5-9fe1-8516fa10ece4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212331Z:3a8be8be-7dac-4ce1-8f20-75c094aff52f" + "WESTUS:20150813T074517Z:33274fac-08b9-4ee5-9fe1-8516fa10ece4" ], "Date": [ - "Wed, 05 Aug 2015 21:23:30 GMT" + "Thu, 13 Aug 2015 07:45:17 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/e027b26b-3ebe-4ef1-92f7-cb065f674503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAyN2IyNmItM2ViZS00ZWYxLTkyZjctY2IwNjVmNjc0NTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/5df80cf3-05f2-4a01-88dd-0ee2806418e9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWRmODBjZjMtMDVmMi00YTAxLTg4ZGQtMGVlMjgwNjQxOGU5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1105,7 +1208,7 @@ "no-cache" ], "x-ms-request-id": [ - "b06573ea-a8a7-4c92-83f4-26c092aaef5b" + "783ed90b-c60f-43d0-bfc0-3fbc33f08112" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1221,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14052" + "14970" ], "x-ms-correlation-request-id": [ - "6ffd0b43-7e15-4fd2-85ad-70f1f667dfcd" + "8172aee9-87b5-4bdb-bd32-5ce88b59bb50" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212331Z:6ffd0b43-7e15-4fd2-85ad-70f1f667dfcd" + "WESTUS:20150813T074517Z:8172aee9-87b5-4bdb-bd32-5ce88b59bb50" ], "Date": [ - "Wed, 05 Aug 2015 21:23:31 GMT" + "Thu, 13 Aug 2015 07:45:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Storage/storageAccounts/stocrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Storage/storageAccounts/stocrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMzU2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1145,7 +1248,7 @@ "88" ], "x-ms-client-request-id": [ - "90f6fa1e-b66c-489e-a79a-ef6f581574e4" + "e0856832-1221-42f0-b645-ac566469e0e9" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1169,44 +1272,44 @@ "25" ], "x-ms-request-id": [ - "8de0752c-5403-43c8-9f6b-8def2cbb4a3d" + "10e07da7-a58e-41b5-aa84-22a954c4e1ff" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/8de0752c-5403-43c8-9f6b-8def2cbb4a3d?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/10e07da7-a58e-41b5-aa84-22a954c4e1ff?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "8deef018-4d6f-452f-afd6-6184694669d6" + "72192f91-a542-4229-8c2b-e8952a842044" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212333Z:8deef018-4d6f-452f-afd6-6184694669d6" + "WESTUS:20150813T074519Z:72192f91-a542-4229-8c2b-e8952a842044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 05 Aug 2015 21:23:33 GMT" + "Thu, 13 Aug 2015 07:45:19 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/8de0752c-5403-43c8-9f6b-8def2cbb4a3d?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhkZTA3NTJjLTU0MDMtNDNjOC05ZjZiLThkZWYyY2JiNGEzZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/10e07da7-a58e-41b5-aa84-22a954c4e1ff?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEwZTA3ZGE3LWE1OGUtNDFiNS1hYTg0LTIyYTk1NGM0ZTFmZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "619acb00-fde4-465a-a163-372141ea3db9" + "acfe3e16-9dd5-4398-a9e4-b1fb280505a2" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,44 +1333,44 @@ "25" ], "x-ms-request-id": [ - "4ea27d32-6ec2-4746-b73f-0363e80db562" + "9484e452-5a85-4f90-9fd9-7d5961c57e33" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/8de0752c-5403-43c8-9f6b-8def2cbb4a3d?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/10e07da7-a58e-41b5-aa84-22a954c4e1ff?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14057" + "14956" ], "x-ms-correlation-request-id": [ - "86943935-97d2-4fd4-8612-4fcdd82829a9" + "810e17a5-e224-458e-b4a2-701cab41a8c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212334Z:86943935-97d2-4fd4-8612-4fcdd82829a9" + "WESTUS:20150813T074520Z:810e17a5-e224-458e-b4a2-701cab41a8c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 05 Aug 2015 21:23:34 GMT" + "Thu, 13 Aug 2015 07:45:20 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/8de0752c-5403-43c8-9f6b-8def2cbb4a3d?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhkZTA3NTJjLTU0MDMtNDNjOC05ZjZiLThkZWYyY2JiNGEzZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/10e07da7-a58e-41b5-aa84-22a954c4e1ff?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzEwZTA3ZGE3LWE1OGUtNDFiNS1hYTg0LTIyYTk1NGM0ZTFmZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5d7555c-5516-4798-aadb-720795530a41" + "96c7e753-9321-4f04-bfb7-1b2021d12c6d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1288,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "53aeb409-891c-4495-98ba-a3a15d8ee2ad" + "60401480-e09e-428a-b561-e41d49f898c0" ], "Cache-Control": [ "no-cache" @@ -1298,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14056" + "14955" ], "x-ms-correlation-request-id": [ - "49fa3e85-2065-483e-84f9-784c767eec9d" + "bd5ecf14-25e1-4a0a-a591-40dc3a569b83" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212359Z:49fa3e85-2065-483e-84f9-784c767eec9d" + "WESTUS:20150813T074545Z:bd5ecf14-25e1-4a0a-a591-40dc3a569b83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 05 Aug 2015 21:23:58 GMT" + "Thu, 13 Aug 2015 07:45:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Storage/storageAccounts/stocrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Storage/storageAccounts/stocrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMzU2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1efaa830-3b8b-4a52-9783-ffd1ee15c03f" + "370af079-a670-47dd-b18f-17121178faa1" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Storage/storageAccounts/stocrptestps4425\",\r\n \"name\": \"stocrptestps4425\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4425.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4425.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4425.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-05T21:23:32.5149598Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Storage/storageAccounts/stocrptestps1356\",\r\n \"name\": \"stocrptestps1356\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1356.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1356.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1356.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:45:18.5168145Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1343,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "38386d03-82a4-4d50-bb06-b8d0fc8510ef" + "dc4d161e-2b54-4c91-b093-7b702fdf0801" ], "Cache-Control": [ "no-cache" @@ -1353,37 +1456,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14055" + "14954" ], "x-ms-correlation-request-id": [ - "0c808f3b-5f33-4c18-bc92-99793a35268d" + "177c1c17-def3-4e73-a706-e1ff434c6e29" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212359Z:0c808f3b-5f33-4c18-bc92-99793a35268d" + "WESTUS:20150813T074545Z:177c1c17-def3-4e73-a706-e1ff434c6e29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 05 Aug 2015 21:23:58 GMT" + "Thu, 13 Aug 2015 07:45:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Storage/storageAccounts/stocrptestps4425?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NDI1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Storage/storageAccounts/stocrptestps1356?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMzU2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03a2f2d6-a5bf-40c6-800d-974c85b18ce6" + "3c156c0b-5ae9-4894-a547-7803002f6588" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Storage/storageAccounts/stocrptestps4425\",\r\n \"name\": \"stocrptestps4425\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4425.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4425.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4425.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-05T21:23:32.5149598Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Storage/storageAccounts/stocrptestps1356\",\r\n \"name\": \"stocrptestps1356\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1356.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1356.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1356.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:45:18.5168145Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1398,7 +1501,7 @@ "no-cache" ], "x-ms-request-id": [ - "19b264ff-a7c3-4bcc-9871-8de971df6c6b" + "5d20f641-6990-469b-b2dd-effd44c4ccc5" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1511,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14054" + "14953" ], "x-ms-correlation-request-id": [ - "4b4475a3-271f-45bd-9500-537f12eeafaa" + "9d602352-0c99-404f-be1f-a9fe6d75e89b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212359Z:4b4475a3-271f-45bd-9500-537f12eeafaa" + "WESTUS:20150813T074545Z:9d602352-0c99-404f-be1f-a9fe6d75e89b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 05 Aug 2015 21:23:58 GMT" + "Thu, 13 Aug 2015 07:45:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "53697" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1453,7 +1556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1dfa0907-9e19-4b5d-9ee9-5de0b3b2a2b1" + "bbaff259-63ce-49e8-969b-7f3b9486152d" ], "Cache-Control": [ "no-cache" @@ -1463,31 +1566,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14013" + "14904" ], "x-ms-correlation-request-id": [ - "4a9bf7d3-82f6-4e99-8661-a22ad471df8b" + "f5f47128-d01d-4a56-91df-af68a2381ab5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212419Z:4a9bf7d3-82f6-4e99-8661-a22ad471df8b" + "WESTUS:20150813T074546Z:f5f47128-d01d-4a56-91df-af68a2381ab5" ], "Date": [ - "Wed, 05 Aug 2015 21:24:18 GMT" + "Thu, 13 Aug 2015 07:45:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/4psa/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHBzYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/4psa/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHBzYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"voipnow\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa/ArtifactTypes/VMImage/Offers/voipnow\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"voipnow\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa/ArtifactTypes/VMImage/Offers/voipnow\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "228" @@ -1505,7 +1608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0df088e3-06d7-42c4-ab95-94b073ac5f3f" + "344d8c6a-0efc-4ce9-aed3-c59467688ee3" ], "Cache-Control": [ "no-cache" @@ -1515,31 +1618,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14012" + "14903" ], "x-ms-correlation-request-id": [ - "a72b53dc-d23d-4689-84b9-a0b77476994d" + "c7abda5b-2709-4acc-bd7b-0aad28e1de6c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212419Z:a72b53dc-d23d-4689-84b9-a0b77476994d" + "WESTUS:20150813T074546Z:c7abda5b-2709-4acc-bd7b-0aad28e1de6c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:18 GMT" + "Thu, 13 Aug 2015 07:45:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/4psa/artifacttypes/vmimage/offers/voipnow/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHBzYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ZvaXBub3cvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/4psa/artifacttypes/vmimage/offers/voipnow/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHBzYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ZvaXBub3cvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vnp360-single\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa/ArtifactTypes/VMImage/Offers/voipnow/Skus/vnp360-single\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vnp360-single\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa/ArtifactTypes/VMImage/Offers/voipnow/Skus/vnp360-single\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "253" @@ -1557,7 +1660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07b65018-b921-4636-b7a7-83681dd95b6e" + "829e1707-f384-42ad-8fc7-9f820fa1814e" ], "Cache-Control": [ "no-cache" @@ -1567,31 +1670,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14011" + "14902" ], "x-ms-correlation-request-id": [ - "b796fc80-d007-462e-8774-e9dbcb01ceeb" + "2620a16f-1855-43e7-a5c3-10a68a2dc25e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212419Z:b796fc80-d007-462e-8774-e9dbcb01ceeb" + "WESTUS:20150813T074546Z:2620a16f-1855-43e7-a5c3-10a68a2dc25e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:18 GMT" + "Thu, 13 Aug 2015 07:45:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/4psa/artifacttypes/vmimage/offers/voipnow/skus/vnp360-single/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHBzYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ZvaXBub3cvc2t1cy92bnAzNjAtc2luZ2xlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/4psa/artifacttypes/vmimage/offers/voipnow/skus/vnp360-single/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHBzYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ZvaXBub3cvc2t1cy92bnAzNjAtc2luZ2xlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa/ArtifactTypes/VMImage/Offers/voipnow/Skus/vnp360-single/Versions/3.6.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa/ArtifactTypes/VMImage/Offers/voipnow/Skus/vnp360-single/Versions/3.6.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -1609,7 +1712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1375a2a-0d9f-4634-8fb0-f1907daa4735" + "0721a167-ab17-4be0-9106-8cf381c0cbbd" ], "Cache-Control": [ "no-cache" @@ -1619,31 +1722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14010" + "14901" ], "x-ms-correlation-request-id": [ - "54fe329a-e10e-45ae-877a-b3ef9703233e" + "4219f185-71f4-41d8-84a1-1e236b91512a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212419Z:54fe329a-e10e-45ae-877a-b3ef9703233e" + "WESTUS:20150813T074546Z:4219f185-71f4-41d8-84a1-1e236b91512a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:18 GMT" + "Thu, 13 Aug 2015 07:45:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/4psa/artifacttypes/vmimage/offers/voipnow/skus/vnp360-single/versions/3.6.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHBzYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ZvaXBub3cvc2t1cy92bnAzNjAtc2luZ2xlL3ZlcnNpb25zLzMuNi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/4psa/artifacttypes/vmimage/offers/voipnow/skus/vnp360-single/versions/3.6.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHBzYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ZvaXBub3cvc2t1cy92bnAzNjAtc2luZ2xlL3ZlcnNpb25zLzMuNi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"4psa\",\r\n \"name\": \"vnp360-single\",\r\n \"product\": \"voipnow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa/ArtifactTypes/VMImage/Offers/voipnow/Skus/vnp360-single/Versions/3.6.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"4psa\",\r\n \"name\": \"vnp360-single\",\r\n \"product\": \"voipnow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa/ArtifactTypes/VMImage/Offers/voipnow/Skus/vnp360-single/Versions/3.6.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "470" @@ -1661,7 +1764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7cb5fce0-268f-4abf-95b3-c99fa85e164a" + "e8cd9e45-c338-471a-9ec9-2669b8b03b5b" ], "Cache-Control": [ "no-cache" @@ -1671,31 +1774,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14009" + "14900" ], "x-ms-correlation-request-id": [ - "0da31270-dfe2-4b86-9adb-7ca23340c684" + "7834ddfd-07c6-47e0-87fd-9ee4f9f83c11" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212419Z:0da31270-dfe2-4b86-9adb-7ca23340c684" + "WESTUS:20150813T074547Z:7834ddfd-07c6-47e0-87fd-9ee4f9f83c11" ], "Date": [ - "Wed, 05 Aug 2015 21:24:19 GMT" + "Thu, 13 Aug 2015 07:45:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/4ward365/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHdhcmQzNjUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/4ward365/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHdhcmQzNjUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365/ArtifactTypes/VMImage/Offers/4ward365\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365/ArtifactTypes/VMImage/Offers/4ward365\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "234" @@ -1713,7 +1816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8781b79-6c62-485e-af6d-1770ed965a87" + "8496ff7e-c5c3-491c-a0f3-01252033367b" ], "Cache-Control": [ "no-cache" @@ -1723,31 +1826,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14008" + "14899" ], "x-ms-correlation-request-id": [ - "833e0ce1-f299-4e60-9605-7b118078f3bd" + "3f62ab74-2a9a-4709-ad67-cdf9b71124c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212419Z:833e0ce1-f299-4e60-9605-7b118078f3bd" + "WESTUS:20150813T074547Z:3f62ab74-2a9a-4709-ad67-cdf9b71124c5" ], "Date": [ - "Wed, 05 Aug 2015 21:24:19 GMT" + "Thu, 13 Aug 2015 07:45:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/4ward365/artifacttypes/vmimage/offers/4ward365/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHdhcmQzNjUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy80d2FyZDM2NS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/4ward365/artifacttypes/vmimage/offers/4ward365/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHdhcmQzNjUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy80d2FyZDM2NS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365_base\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365/ArtifactTypes/VMImage/Offers/4ward365/Skus/4ward365_base\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365_base\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365/ArtifactTypes/VMImage/Offers/4ward365/Skus/4ward365_base\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1765,7 +1868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfed8f7a-15e7-4ebe-92b6-a3f54e57eabf" + "2a01243e-ffa6-41c6-ad3b-d945253912a1" ], "Cache-Control": [ "no-cache" @@ -1775,31 +1878,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14007" + "14898" ], "x-ms-correlation-request-id": [ - "016f2999-f36d-4b27-b094-9b8662e00956" + "ccea5152-ca21-4cad-9ec0-ac91dfc6594d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212420Z:016f2999-f36d-4b27-b094-9b8662e00956" + "WESTUS:20150813T074547Z:ccea5152-ca21-4cad-9ec0-ac91dfc6594d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:19 GMT" + "Thu, 13 Aug 2015 07:45:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/4ward365/artifacttypes/vmimage/offers/4ward365/skus/4ward365_base/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHdhcmQzNjUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy80d2FyZDM2NS9za3VzLzR3YXJkMzY1X2Jhc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/4ward365/artifacttypes/vmimage/offers/4ward365/skus/4ward365_base/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHdhcmQzNjUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy80d2FyZDM2NS9za3VzLzR3YXJkMzY1X2Jhc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365/ArtifactTypes/VMImage/Offers/4ward365/Skus/4ward365_base/Versions/1.0.3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365/ArtifactTypes/VMImage/Offers/4ward365/Skus/4ward365_base/Versions/1.0.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "265" @@ -1817,7 +1920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d25ac97-80fc-48dd-8126-fa9f509c1875" + "a062272d-172a-4b14-96c3-e6b22616465c" ], "Cache-Control": [ "no-cache" @@ -1827,31 +1930,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14006" + "14897" ], "x-ms-correlation-request-id": [ - "20e2d5ec-18ea-483f-b274-a029d025ee7b" + "d991c0bb-b207-4f14-8c10-2c48ef12839e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212420Z:20e2d5ec-18ea-483f-b274-a029d025ee7b" + "WESTUS:20150813T074547Z:d991c0bb-b207-4f14-8c10-2c48ef12839e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:19 GMT" + "Thu, 13 Aug 2015 07:45:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/4ward365/artifacttypes/vmimage/offers/4ward365/skus/4ward365_base/versions/1.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHdhcmQzNjUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy80d2FyZDM2NS9za3VzLzR3YXJkMzY1X2Jhc2UvdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/4ward365/artifacttypes/vmimage/offers/4ward365/skus/4ward365_base/versions/1.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvNHdhcmQzNjUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy80d2FyZDM2NS9za3VzLzR3YXJkMzY1X2Jhc2UvdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"4ward365\",\r\n \"name\": \"4ward365_base\",\r\n \"product\": \"4ward365\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365/ArtifactTypes/VMImage/Offers/4ward365/Skus/4ward365_base/Versions/1.0.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"4ward365\",\r\n \"name\": \"4ward365_base\",\r\n \"product\": \"4ward365\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365/ArtifactTypes/VMImage/Offers/4ward365/Skus/4ward365_base/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "482" @@ -1869,7 +1972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf8ff1f1-96b4-4565-a42a-27f3eaff3934" + "ea51ef1a-5a3b-4197-84f8-85a601f48d57" ], "Cache-Control": [ "no-cache" @@ -1879,31 +1982,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14005" + "14896" ], "x-ms-correlation-request-id": [ - "e17ea15b-74f5-4ecc-9b6d-c89acbf8b45d" + "15b26eca-5c2a-40d9-aa1f-4748b53e4ec6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212420Z:e17ea15b-74f5-4ecc-9b6d-c89acbf8b45d" + "WESTUS:20150813T074547Z:15b26eca-5c2a-40d9-aa1f-4748b53e4ec6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:19 GMT" + "Thu, 13 Aug 2015 07:45:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/7isolutions/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvN2lzb2x1dGlvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/7isolutions/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvN2lzb2x1dGlvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sapp-project-server-2015-05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions/ArtifactTypes/VMImage/Offers/sapp-project-server-2015-05\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sapp-project-server-2015-05\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions/ArtifactTypes/VMImage/Offers/sapp-project-server-2015-05\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "275" @@ -1921,7 +2024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4807d729-a4bd-4527-a747-b6195bb44634" + "4bb8f5a1-c774-4419-9829-32d60e43eeb2" ], "Cache-Control": [ "no-cache" @@ -1931,31 +2034,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14004" + "14895" ], "x-ms-correlation-request-id": [ - "9a60dd0a-959f-4111-a8ad-5fcc61579255" + "0c787316-2f2a-4ff6-b1d0-86f175da26f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212420Z:9a60dd0a-959f-4111-a8ad-5fcc61579255" + "WESTUS:20150813T074548Z:0c787316-2f2a-4ff6-b1d0-86f175da26f6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:19 GMT" + "Thu, 13 Aug 2015 07:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/7isolutions/artifacttypes/vmimage/offers/sapp-project-server-2015-05/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvN2lzb2x1dGlvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/7isolutions/artifacttypes/vmimage/offers/sapp-project-server-2015-05/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvN2lzb2x1dGlvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sapp-project-server-2015-06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions/ArtifactTypes/VMImage/Offers/sapp-project-server-2015-05/Skus/sapp-project-server-2015-06\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sapp-project-server-2015-06\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions/ArtifactTypes/VMImage/Offers/sapp-project-server-2015-05/Skus/sapp-project-server-2015-06\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "308" @@ -1973,7 +2076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a1482b2-c781-4276-bc43-6379188944e8" + "d9c3fbaa-f275-466f-8d5f-ea653375ffd0" ], "Cache-Control": [ "no-cache" @@ -1983,31 +2086,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14003" + "14894" ], "x-ms-correlation-request-id": [ - "958f5357-bb4c-4688-9c7b-b07d437757ae" + "fc47caf3-d78c-49b2-9884-1514154e8789" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212420Z:958f5357-bb4c-4688-9c7b-b07d437757ae" + "WESTUS:20150813T074548Z:fc47caf3-d78c-49b2-9884-1514154e8789" ], "Date": [ - "Wed, 05 Aug 2015 21:24:19 GMT" + "Thu, 13 Aug 2015 07:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/7isolutions/artifacttypes/vmimage/offers/sapp-project-server-2015-05/skus/sapp-project-server-2015-06/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvN2lzb2x1dGlvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDUvc2t1cy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/7isolutions/artifacttypes/vmimage/offers/sapp-project-server-2015-05/skus/sapp-project-server-2015-06/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvN2lzb2x1dGlvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDUvc2t1cy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.06.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions/ArtifactTypes/VMImage/Offers/sapp-project-server-2015-05/Skus/sapp-project-server-2015-06/Versions/15.06.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.06.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions/ArtifactTypes/VMImage/Offers/sapp-project-server-2015-05/Skus/sapp-project-server-2015-06/Versions/15.06.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "305" @@ -2025,7 +2128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2f0b311-d940-490e-a935-32ccbb547df1" + "fe4ab3dd-72b2-427a-8254-07eaf216092c" ], "Cache-Control": [ "no-cache" @@ -2035,31 +2138,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14002" + "14893" ], "x-ms-correlation-request-id": [ - "b6d0d4d7-00f5-4d14-b176-38993eb34a3e" + "0b0effad-c542-4e51-8123-b1fbc4d62f46" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212420Z:b6d0d4d7-00f5-4d14-b176-38993eb34a3e" + "WESTUS:20150813T074548Z:0b0effad-c542-4e51-8123-b1fbc4d62f46" ], "Date": [ - "Wed, 05 Aug 2015 21:24:19 GMT" + "Thu, 13 Aug 2015 07:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/7isolutions/artifacttypes/vmimage/offers/sapp-project-server-2015-05/skus/sapp-project-server-2015-06/versions/15.06.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvN2lzb2x1dGlvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDUvc2t1cy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDYvdmVyc2lvbnMvMTUuMDYuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/7isolutions/artifacttypes/vmimage/offers/sapp-project-server-2015-05/skus/sapp-project-server-2015-06/versions/15.06.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvN2lzb2x1dGlvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDUvc2t1cy9zYXBwLXByb2plY3Qtc2VydmVyLTIwMTUtMDYvdmVyc2lvbnMvMTUuMDYuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"7isolutions\",\r\n \"name\": \"sapp-project-server-2015-06\",\r\n \"product\": \"sapp-project-server-2015-05\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.06.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions/ArtifactTypes/VMImage/Offers/sapp-project-server-2015-05/Skus/sapp-project-server-2015-06/Versions/15.06.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"7isolutions\",\r\n \"name\": \"sapp-project-server-2015-06\",\r\n \"product\": \"sapp-project-server-2015-05\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.06.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions/ArtifactTypes/VMImage/Offers/sapp-project-server-2015-05/Skus/sapp-project-server-2015-06/Versions/15.06.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "556" @@ -2077,7 +2180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1ddf527-fad9-4aca-a014-0e0c2e0fdc7e" + "9f48081f-8308-4359-9c55-d5773ba6f61d" ], "Cache-Control": [ "no-cache" @@ -2087,31 +2190,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14001" + "14892" ], "x-ms-correlation-request-id": [ - "46453ca0-5c75-4771-871a-6ce628972a6e" + "557deb32-eef7-4abf-b96c-6c528aa4e954" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212420Z:46453ca0-5c75-4771-871a-6ce628972a6e" + "WESTUS:20150813T074548Z:557deb32-eef7-4abf-b96c-6c528aa4e954" ], "Date": [ - "Wed, 05 Aug 2015 21:24:20 GMT" + "Thu, 13 Aug 2015 07:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10-vthunder-adc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10-vthunder-adc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "253" @@ -2129,7 +2232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da3693d0-c005-4db7-8abd-2b1435028ad0" + "756b5e60-ec1b-4706-8316-223a1e1efc96" ], "Cache-Control": [ "no-cache" @@ -2139,31 +2242,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14000" + "14891" ], "x-ms-correlation-request-id": [ - "2ceb86ca-6e9e-49b7-9cf6-70d99199a668" + "e005944b-e842-48ec-8db4-be9937c9ac29" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212421Z:2ceb86ca-6e9e-49b7-9cf6-70d99199a668" + "WESTUS:20150813T074549Z:e005944b-e842-48ec-8db4-be9937c9ac29" ], "Date": [ - "Wed, 05 Aug 2015 21:24:20 GMT" + "Thu, 13 Aug 2015 07:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_100mbps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_100mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_10mbps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_10mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_200mbps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_200mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_500mbps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_500mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_50mbps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_50mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_100mbps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_100mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_10mbps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_10mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_200mbps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_200mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_500mbps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_500mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_50mbps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_50mbps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vthunder_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1625" @@ -2181,7 +2284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26aa4789-a24b-4c50-8fac-54b12c93ec83" + "c3020bfc-1b5d-4ec6-a517-d78a66cd8c12" ], "Cache-Control": [ "no-cache" @@ -2191,31 +2294,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13999" + "14890" ], "x-ms-correlation-request-id": [ - "d4b5f00a-1914-43da-82b5-241fa747ad5f" + "2a788bce-0436-43b9-9e6a-87efd5b12274" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212421Z:d4b5f00a-1914-43da-82b5-241fa747ad5f" + "WESTUS:20150813T074549Z:2a788bce-0436-43b9-9e6a-87efd5b12274" ], "Date": [ - "Wed, 05 Aug 2015 21:24:20 GMT" + "Thu, 13 Aug 2015 07:45:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_100mbps/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMTAwbWJwcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_100mbps/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMTAwbWJwcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_100mbps/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_100mbps/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -2233,7 +2336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0c6ad65-b406-467d-aed9-d38a9567cba9" + "83f1b124-f720-4100-8616-56c8dcb816bc" ], "Cache-Control": [ "no-cache" @@ -2243,31 +2346,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13998" + "14889" ], "x-ms-correlation-request-id": [ - "fcdc0f65-5fc7-4dd3-965b-5548ebcdf466" + "e27aa179-c940-4f32-88c1-53444f44d2e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212421Z:fcdc0f65-5fc7-4dd3-965b-5548ebcdf466" + "WESTUS:20150813T074549Z:e27aa179-c940-4f32-88c1-53444f44d2e3" ], "Date": [ - "Wed, 05 Aug 2015 21:24:20 GMT" + "Thu, 13 Aug 2015 07:45:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_100mbps/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMTAwbWJwcy92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_100mbps/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMTAwbWJwcy92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_100mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_100mbps/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_100mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_100mbps/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -2285,7 +2388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ccc66e2f-a457-40af-bd3c-7281b4e30f8d" + "9d2d2361-5821-4dc7-a74c-21af814312e8" ], "Cache-Control": [ "no-cache" @@ -2295,31 +2398,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13997" + "14888" ], "x-ms-correlation-request-id": [ - "743e2c7e-0f74-424a-95e1-c79c3c8a1d00" + "5f0cbe32-5b99-4c13-b3e8-a54d79c1f95e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212421Z:743e2c7e-0f74-424a-95e1-c79c3c8a1d00" + "WESTUS:20150813T074549Z:5f0cbe32-5b99-4c13-b3e8-a54d79c1f95e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:20 GMT" + "Thu, 13 Aug 2015 07:45:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_10mbps/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMTBtYnBzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_10mbps/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMTBtYnBzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_10mbps/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_10mbps/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "278" @@ -2337,7 +2440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b64296e-4cca-4c06-8470-ed5e25a44f6b" + "45f026ae-65d3-4792-94bb-d06b373f7f32" ], "Cache-Control": [ "no-cache" @@ -2347,31 +2450,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13996" + "14887" ], "x-ms-correlation-request-id": [ - "765cf4d1-59d7-489e-bd71-de0357c8f39e" + "41f1f829-371b-4b54-bd6a-8c0b2977d2f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212421Z:765cf4d1-59d7-489e-bd71-de0357c8f39e" + "WESTUS:20150813T074549Z:41f1f829-371b-4b54-bd6a-8c0b2977d2f6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:20 GMT" + "Thu, 13 Aug 2015 07:45:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_10mbps/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMTBtYnBzL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_10mbps/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMTBtYnBzL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_10mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_10mbps/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_10mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_10mbps/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -2389,7 +2492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6b3cbd5-42ab-463e-a56c-14183216418c" + "4fbdd7f9-c722-4872-a4ff-95ba272ae382" ], "Cache-Control": [ "no-cache" @@ -2399,31 +2502,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13995" + "14886" ], "x-ms-correlation-request-id": [ - "6f9a297a-d4bb-4c5a-8871-bb85591b1304" + "ab85ac15-ee4e-4459-9fa7-34ecdd5b9702" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212421Z:6f9a297a-d4bb-4c5a-8871-bb85591b1304" + "WESTUS:20150813T074549Z:ab85ac15-ee4e-4459-9fa7-34ecdd5b9702" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_200mbps/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMjAwbWJwcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_200mbps/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMjAwbWJwcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_200mbps/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_200mbps/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -2441,7 +2544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "973b6be0-73e7-4f68-af91-320f3669be10" + "1aef7be9-c090-48bd-8017-ddc7ab9634d4" ], "Cache-Control": [ "no-cache" @@ -2451,31 +2554,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13994" + "14885" ], "x-ms-correlation-request-id": [ - "b12879c4-da71-4f6b-84c1-91c53832968e" + "4eb98c08-c8e4-4480-aa37-13369e0660d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212421Z:b12879c4-da71-4f6b-84c1-91c53832968e" + "WESTUS:20150813T074550Z:4eb98c08-c8e4-4480-aa37-13369e0660d9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_200mbps/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMjAwbWJwcy92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_200mbps/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfMjAwbWJwcy92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_200mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_200mbps/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_200mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_200mbps/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -2493,7 +2596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e0934eb-f5a4-40dd-a533-5ee26edd3ece" + "9366e295-e3c8-4fe5-9609-72b48f5b5db6" ], "Cache-Control": [ "no-cache" @@ -2503,31 +2606,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13993" + "14884" ], "x-ms-correlation-request-id": [ - "73cc11f6-d0b2-4e66-a0c0-592dc62873ff" + "ae632360-fd01-4979-83f3-c0bdecf2d4c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212422Z:73cc11f6-d0b2-4e66-a0c0-592dc62873ff" + "WESTUS:20150813T074550Z:ae632360-fd01-4979-83f3-c0bdecf2d4c3" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_500mbps/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfNTAwbWJwcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_500mbps/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfNTAwbWJwcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_500mbps/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_500mbps/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -2545,7 +2648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b305e46-99e5-4f66-8abb-9c8a64547a6a" + "2ac2b2dc-2ccd-47b1-8211-c617baff64cc" ], "Cache-Control": [ "no-cache" @@ -2555,31 +2658,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13992" + "14883" ], "x-ms-correlation-request-id": [ - "42445bb8-9ffe-4d0c-8ffd-47613e298cda" + "28464751-9af6-4658-ae10-5eb6d694feed" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212422Z:42445bb8-9ffe-4d0c-8ffd-47613e298cda" + "WESTUS:20150813T074550Z:28464751-9af6-4658-ae10-5eb6d694feed" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_500mbps/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfNTAwbWJwcy92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_500mbps/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfNTAwbWJwcy92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_500mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_500mbps/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_500mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_500mbps/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -2597,7 +2700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6412532f-f307-4fa2-808b-b5057d99aa84" + "eece7450-16dc-4d75-8d07-8f2dd2f91862" ], "Cache-Control": [ "no-cache" @@ -2607,31 +2710,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13991" + "14882" ], "x-ms-correlation-request-id": [ - "207e2ca2-9d45-442b-a068-0828d21e0dc9" + "347dadfb-4488-441d-9c83-99232618c993" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212422Z:207e2ca2-9d45-442b-a068-0828d21e0dc9" + "WESTUS:20150813T074550Z:347dadfb-4488-441d-9c83-99232618c993" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_50mbps/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfNTBtYnBzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_50mbps/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfNTBtYnBzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_50mbps/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_50mbps/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "278" @@ -2649,7 +2752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8f82a0d-7ea8-4361-8cee-4f6e5c2f2537" + "82bec50e-24f5-459f-a634-bdcb470eff25" ], "Cache-Control": [ "no-cache" @@ -2659,31 +2762,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13990" + "14881" ], "x-ms-correlation-request-id": [ - "b7d688a6-6bed-4db8-861a-1afbc4e47cd6" + "cb440df7-96bc-46ff-ad44-df1163cb4031" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212422Z:b7d688a6-6bed-4db8-861a-1afbc4e47cd6" + "WESTUS:20150813T074550Z:cb440df7-96bc-46ff-ad44-df1163cb4031" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_50mbps/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfNTBtYnBzL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_50mbps/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfNTBtYnBzL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_50mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_50mbps/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_50mbps\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_50mbps/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -2701,7 +2804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77462186-9834-4bfe-bf9e-97f05b4f720b" + "30693bad-00c6-4195-ae94-c3d87eea4fef" ], "Cache-Control": [ "no-cache" @@ -2711,31 +2814,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13989" + "14880" ], "x-ms-correlation-request-id": [ - "9cc949ea-5d54-47a2-bd73-79a68fbe16c8" + "aa073906-fa70-4bbe-b355-462004b90c7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212422Z:9cc949ea-5d54-47a2-bd73-79a68fbe16c8" + "WESTUS:20150813T074550Z:aa073906-fa70-4bbe-b355-462004b90c7d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_byol/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_byol/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -2753,7 +2856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "249a3fed-5bd7-4008-a3ff-addf017fde07" + "a5c5c119-a19d-4f17-aad5-b1952b7f28ae" ], "Cache-Control": [ "no-cache" @@ -2763,31 +2866,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13988" + "14879" ], "x-ms-correlation-request-id": [ - "fece664d-cc56-4300-a218-61a5cbf10db8" + "2a33b3b9-0e31-422f-88c6-7788473647a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212422Z:fece664d-cc56-4300-a218-61a5cbf10db8" + "WESTUS:20150813T074550Z:2a33b3b9-0e31-422f-88c6-7788473647a6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_byol/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfYnlvbC92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_byol/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfYnlvbC92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_byol\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_byol/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_byol\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_byol/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "502" @@ -2805,7 +2908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59b9f7df-8130-486f-95fb-1d1135c96d7a" + "318cb757-e8b7-4339-b1c7-fc56569e13cf" ], "Cache-Control": [ "no-cache" @@ -2815,31 +2918,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13987" + "14878" ], "x-ms-correlation-request-id": [ - "ee043959-c26b-4dd5-83d4-c270a03c1cdb" + "e2dd9bb9-1fea-40d4-bf74-17e692da475c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212422Z:ee043959-c26b-4dd5-83d4-c270a03c1cdb" + "WESTUS:20150813T074550Z:e2dd9bb9-1fea-40d4-bf74-17e692da475c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:21 GMT" + "Thu, 13 Aug 2015 07:45:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/abiquo/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWJpcXVvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/abiquo/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWJpcXVvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo-hybrid-cloud-34\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo/ArtifactTypes/VMImage/Offers/abiquo-hybrid-cloud-34\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo-hybrid-cloud-34\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo/ArtifactTypes/VMImage/Offers/abiquo-hybrid-cloud-34\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -2857,7 +2960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdddaa61-6d8b-4954-a7f7-64e4eeaf84bc" + "8b630790-bb02-40cc-a150-4ab92d6b1d31" ], "Cache-Control": [ "no-cache" @@ -2867,31 +2970,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13986" + "14877" ], "x-ms-correlation-request-id": [ - "eaa1a125-c82d-4ee7-9ccf-f49ac02d925b" + "6068870b-a1ed-4f2c-ab78-9fc8be025997" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212422Z:eaa1a125-c82d-4ee7-9ccf-f49ac02d925b" + "WESTUS:20150813T074551Z:6068870b-a1ed-4f2c-ab78-9fc8be025997" ], "Date": [ - "Wed, 05 Aug 2015 21:24:22 GMT" + "Thu, 13 Aug 2015 07:45:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/abiquo/artifacttypes/vmimage/offers/abiquo-hybrid-cloud-34/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWJpcXVvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWJpcXVvLWh5YnJpZC1jbG91ZC0zNC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/abiquo/artifacttypes/vmimage/offers/abiquo-hybrid-cloud-34/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWJpcXVvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWJpcXVvLWh5YnJpZC1jbG91ZC0zNC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo-340-monolithic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo/ArtifactTypes/VMImage/Offers/abiquo-hybrid-cloud-34/Skus/abiquo-340-monolithic\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo-340-monolithic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo/ArtifactTypes/VMImage/Offers/abiquo-hybrid-cloud-34/Skus/abiquo-340-monolithic\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "286" @@ -2909,7 +3012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c10d875c-6449-4a2b-8c99-737d9e3f45fa" + "be799588-1637-4dcb-ba20-ae17a1727a92" ], "Cache-Control": [ "no-cache" @@ -2919,31 +3022,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13985" + "14876" ], "x-ms-correlation-request-id": [ - "8dcfdaf8-3793-4590-8245-10b2fa5e11bc" + "8578384b-643f-4dcb-a2f5-af3e24875532" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212423Z:8dcfdaf8-3793-4590-8245-10b2fa5e11bc" + "WESTUS:20150813T074551Z:8578384b-643f-4dcb-a2f5-af3e24875532" ], "Date": [ - "Wed, 05 Aug 2015 21:24:22 GMT" + "Thu, 13 Aug 2015 07:45:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/abiquo/artifacttypes/vmimage/offers/abiquo-hybrid-cloud-34/skus/abiquo-340-monolithic/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWJpcXVvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWJpcXVvLWh5YnJpZC1jbG91ZC0zNC9za3VzL2FiaXF1by0zNDAtbW9ub2xpdGhpYy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/abiquo/artifacttypes/vmimage/offers/abiquo-hybrid-cloud-34/skus/abiquo-340-monolithic/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWJpcXVvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWJpcXVvLWh5YnJpZC1jbG91ZC0zNC9za3VzL2FiaXF1by0zNDAtbW9ub2xpdGhpYy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo/ArtifactTypes/VMImage/Offers/abiquo-hybrid-cloud-34/Skus/abiquo-340-monolithic/Versions/4.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo/ArtifactTypes/VMImage/Offers/abiquo-hybrid-cloud-34/Skus/abiquo-340-monolithic/Versions/4.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "285" @@ -2961,7 +3064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f4db079-0a94-497a-a6b2-528b6eb76fc6" + "e130a95f-107a-4a16-a6d9-fe0a360fba39" ], "Cache-Control": [ "no-cache" @@ -2971,31 +3074,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13984" + "14875" ], "x-ms-correlation-request-id": [ - "9978db03-0e2a-4b3b-8fb1-60608a43a08c" + "246e8cd8-d6d5-48a9-a087-a496f4ad48cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212423Z:9978db03-0e2a-4b3b-8fb1-60608a43a08c" + "WESTUS:20150813T074551Z:246e8cd8-d6d5-48a9-a087-a496f4ad48cd" ], "Date": [ - "Wed, 05 Aug 2015 21:24:22 GMT" + "Thu, 13 Aug 2015 07:45:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/abiquo/artifacttypes/vmimage/offers/abiquo-hybrid-cloud-34/skus/abiquo-340-monolithic/versions/4.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWJpcXVvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWJpcXVvLWh5YnJpZC1jbG91ZC0zNC9za3VzL2FiaXF1by0zNDAtbW9ub2xpdGhpYy92ZXJzaW9ucy80LjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/abiquo/artifacttypes/vmimage/offers/abiquo-hybrid-cloud-34/skus/abiquo-340-monolithic/versions/4.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWJpcXVvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWJpcXVvLWh5YnJpZC1jbG91ZC0zNC9za3VzL2FiaXF1by0zNDAtbW9ub2xpdGhpYy92ZXJzaW9ucy80LjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"abiquo\",\r\n \"name\": \"abiquo-340-monolithic\",\r\n \"product\": \"abiquo-hybrid-cloud-34\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo/ArtifactTypes/VMImage/Offers/abiquo-hybrid-cloud-34/Skus/abiquo-340-monolithic/Versions/4.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"abiquo\",\r\n \"name\": \"abiquo-340-monolithic\",\r\n \"product\": \"abiquo-hybrid-cloud-34\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo/ArtifactTypes/VMImage/Offers/abiquo-hybrid-cloud-34/Skus/abiquo-340-monolithic/Versions/4.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "520" @@ -3013,7 +3116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff4f2e8c-2246-46a0-a440-91a19a6e3335" + "cd3b9faa-463e-4b87-a7ab-7129d3e680eb" ], "Cache-Control": [ "no-cache" @@ -3023,31 +3126,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13983" + "14874" ], "x-ms-correlation-request-id": [ - "face2c8c-e8cb-4465-ae75-d9b80b2b6f8b" + "0df8fa49-fc47-4cbc-b2c1-b09076d3e0ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212423Z:face2c8c-e8cb-4465-ae75-d9b80b2b6f8b" + "WESTUS:20150813T074551Z:0df8fa49-fc47-4cbc-b2c1-b09076d3e0ca" ], "Date": [ - "Wed, 05 Aug 2015 21:24:22 GMT" + "Thu, 13 Aug 2015 07:45:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/active-navigation/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlLW5hdmlnYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/active-navigation/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlLW5hdmlnYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"an_discovery_center_azure_starter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation/ArtifactTypes/VMImage/Offers/an_discovery_center_azure_starter\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"an_discovery_center_azure_starter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation/ArtifactTypes/VMImage/Offers/an_discovery_center_azure_starter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "293" @@ -3065,7 +3168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4dc45885-280a-45b1-86c0-c455bbe463fa" + "0c16af75-1daf-433a-a2af-336de4fc3432" ], "Cache-Control": [ "no-cache" @@ -3075,31 +3178,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13982" + "14873" ], "x-ms-correlation-request-id": [ - "87ea2ff9-f44f-4f40-9634-c3d898120324" + "c88e8e79-a93b-4952-8d36-ce415f953076" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212423Z:87ea2ff9-f44f-4f40-9634-c3d898120324" + "WESTUS:20150813T074552Z:c88e8e79-a93b-4952-8d36-ce415f953076" ], "Date": [ - "Wed, 05 Aug 2015 21:24:22 GMT" + "Thu, 13 Aug 2015 07:45:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/active-navigation/artifacttypes/vmimage/offers/an_discovery_center_azure_starter/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlLW5hdmlnYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbl9kaXNjb3ZlcnlfY2VudGVyX2F6dXJlX3N0YXJ0ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/active-navigation/artifacttypes/vmimage/offers/an_discovery_center_azure_starter/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlLW5hdmlnYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbl9kaXNjb3ZlcnlfY2VudGVyX2F6dXJlX3N0YXJ0ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"an_disc_msaz_starter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation/ArtifactTypes/VMImage/Offers/an_discovery_center_azure_starter/Skus/an_disc_msaz_starter\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"an_disc_msaz_starter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation/ArtifactTypes/VMImage/Offers/an_discovery_center_azure_starter/Skus/an_disc_msaz_starter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "306" @@ -3117,7 +3220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3dbaf85c-d1c4-421d-8238-66dfa0074261" + "52f920a5-cf72-47ae-95de-7c6b35133b87" ], "Cache-Control": [ "no-cache" @@ -3127,31 +3230,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13981" + "14872" ], "x-ms-correlation-request-id": [ - "cad2d5c2-d4dd-4c19-9518-d0d97080b684" + "24ec267e-1cce-4e50-a628-555de2635f86" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212423Z:cad2d5c2-d4dd-4c19-9518-d0d97080b684" + "WESTUS:20150813T074552Z:24ec267e-1cce-4e50-a628-555de2635f86" ], "Date": [ - "Wed, 05 Aug 2015 21:24:22 GMT" + "Thu, 13 Aug 2015 07:45:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/active-navigation/artifacttypes/vmimage/offers/an_discovery_center_azure_starter/skus/an_disc_msaz_starter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlLW5hdmlnYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbl9kaXNjb3ZlcnlfY2VudGVyX2F6dXJlX3N0YXJ0ZXIvc2t1cy9hbl9kaXNjX21zYXpfc3RhcnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/active-navigation/artifacttypes/vmimage/offers/an_discovery_center_azure_starter/skus/an_disc_msaz_starter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlLW5hdmlnYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbl9kaXNjb3ZlcnlfY2VudGVyX2F6dXJlX3N0YXJ0ZXIvc2t1cy9hbl9kaXNjX21zYXpfc3RhcnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation/ArtifactTypes/VMImage/Offers/an_discovery_center_azure_starter/Skus/an_disc_msaz_starter/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation/ArtifactTypes/VMImage/Offers/an_discovery_center_azure_starter/Skus/an_disc_msaz_starter/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "306" @@ -3169,7 +3272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ca9297a-37d7-4ddc-af6b-0e1afd401bc5" + "8ad7b612-cf40-4960-8168-50f22720a730" ], "Cache-Control": [ "no-cache" @@ -3179,31 +3282,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13980" + "14871" ], "x-ms-correlation-request-id": [ - "344d7b9b-5e55-4482-834a-d6866e179e32" + "d97acc2f-be5d-4203-b720-9689f692c476" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212423Z:344d7b9b-5e55-4482-834a-d6866e179e32" + "WESTUS:20150813T074552Z:d97acc2f-be5d-4203-b720-9689f692c476" ], "Date": [ - "Wed, 05 Aug 2015 21:24:22 GMT" + "Thu, 13 Aug 2015 07:45:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/active-navigation/artifacttypes/vmimage/offers/an_discovery_center_azure_starter/skus/an_disc_msaz_starter/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlLW5hdmlnYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbl9kaXNjb3ZlcnlfY2VudGVyX2F6dXJlX3N0YXJ0ZXIvc2t1cy9hbl9kaXNjX21zYXpfc3RhcnRlci92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/active-navigation/artifacttypes/vmimage/offers/an_discovery_center_azure_starter/skus/an_disc_msaz_starter/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlLW5hdmlnYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbl9kaXNjb3ZlcnlfY2VudGVyX2F6dXJlX3N0YXJ0ZXIvc2t1cy9hbl9kaXNjX21zYXpfc3RhcnRlci92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"active-navigation\",\r\n \"name\": \"an_disc_msaz_starter\",\r\n \"product\": \"an_discovery_center_azure_starter\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation/ArtifactTypes/VMImage/Offers/an_discovery_center_azure_starter/Skus/an_disc_msaz_starter/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"active-navigation\",\r\n \"name\": \"an_disc_msaz_starter\",\r\n \"product\": \"an_discovery_center_azure_starter\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation/ArtifactTypes/VMImage/Offers/an_discovery_center_azure_starter/Skus/an_disc_msaz_starter/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "564" @@ -3221,7 +3324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "961cc157-28e5-4505-aefb-91222aa748d9" + "95e0cb1e-0c9c-4050-92f5-e532b80a29dd" ], "Cache-Control": [ "no-cache" @@ -3231,31 +3334,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13979" + "14870" ], "x-ms-correlation-request-id": [ - "a06c89de-aa25-431f-8324-ce5ca330f21d" + "368259ef-a85a-40e1-a779-da18a125e866" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212423Z:a06c89de-aa25-431f-8324-ce5ca330f21d" + "WESTUS:20150813T074552Z:368259ef-a85a-40e1-a779-da18a125e866" ], "Date": [ - "Wed, 05 Aug 2015 21:24:23 GMT" + "Thu, 13 Aug 2015 07:45:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/activeeon/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlZW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/activeeon/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlZW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon-workload-scheduler\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon-workload-scheduler\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "275" @@ -3273,7 +3376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d06c3b33-7067-4a00-b9c0-0c620b0048ab" + "995b7d84-afd3-4284-81f7-d9215aaa5d52" ], "Cache-Control": [ "no-cache" @@ -3283,31 +3386,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13978" + "14869" ], "x-ms-correlation-request-id": [ - "d8412127-6f66-4286-8303-d240ce164b2e" + "2916a1fc-5ec9-45de-ba5f-471cf2abbcc7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212424Z:d8412127-6f66-4286-8303-d240ce164b2e" + "WESTUS:20150813T074553Z:2916a1fc-5ec9-45de-ba5f-471cf2abbcc7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:23 GMT" + "Thu, 13 Aug 2015 07:45:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/activeeon/artifacttypes/vmimage/offers/activeeon-workload-scheduler/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlZW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlZW9uLXdvcmtsb2FkLXNjaGVkdWxlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/activeeon/artifacttypes/vmimage/offers/activeeon-workload-scheduler/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlZW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlZW9uLXdvcmtsb2FkLXNjaGVkdWxlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler/Skus/free\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler/Skus/free\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "261" @@ -3325,7 +3428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "290a2959-54ab-4ef8-8975-6de1c02b13bf" + "eae20429-ea61-4c92-a40b-76d03602b886" ], "Cache-Control": [ "no-cache" @@ -3335,31 +3438,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13977" + "14868" ], "x-ms-correlation-request-id": [ - "2be09ef4-2767-4a4d-ae65-26f32b07b92b" + "50d04ef4-00a0-47d0-b12b-d5cb2dc8dbcd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212424Z:2be09ef4-2767-4a4d-ae65-26f32b07b92b" + "WESTUS:20150813T074553Z:50d04ef4-00a0-47d0-b12b-d5cb2dc8dbcd" ], "Date": [ - "Wed, 05 Aug 2015 21:24:23 GMT" + "Thu, 13 Aug 2015 07:45:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/activeeon/artifacttypes/vmimage/offers/activeeon-workload-scheduler/skus/free/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlZW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlZW9uLXdvcmtsb2FkLXNjaGVkdWxlci9za3VzL2ZyZWUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/activeeon/artifacttypes/vmimage/offers/activeeon-workload-scheduler/skus/free/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlZW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlZW9uLXdvcmtsb2FkLXNjaGVkdWxlci9za3VzL2ZyZWUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler/Skus/free/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler/Skus/free/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -3377,7 +3480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6d9fdb2-1ff8-4c24-b9f7-ab7257054fe5" + "8dabb862-4740-43e2-83ac-64c377c3d8b8" ], "Cache-Control": [ "no-cache" @@ -3387,31 +3490,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13976" + "14867" ], "x-ms-correlation-request-id": [ - "c8ece904-c286-4e7e-82f2-a3fa77b30900" + "706b6883-8473-45a8-aef1-06600467a001" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212424Z:c8ece904-c286-4e7e-82f2-a3fa77b30900" + "WESTUS:20150813T074553Z:706b6883-8473-45a8-aef1-06600467a001" ], "Date": [ - "Wed, 05 Aug 2015 21:24:23 GMT" + "Thu, 13 Aug 2015 07:45:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/activeeon/artifacttypes/vmimage/offers/activeeon-workload-scheduler/skus/free/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlZW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlZW9uLXdvcmtsb2FkLXNjaGVkdWxlci9za3VzL2ZyZWUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/activeeon/artifacttypes/vmimage/offers/activeeon-workload-scheduler/skus/free/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWN0aXZlZW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlZW9uLXdvcmtsb2FkLXNjaGVkdWxlci9za3VzL2ZyZWUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"activeeon\",\r\n \"name\": \"free\",\r\n \"product\": \"activeeon-workload-scheduler\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler/Skus/free/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"activeeon\",\r\n \"name\": \"free\",\r\n \"product\": \"activeeon-workload-scheduler\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler/Skus/free/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "504" @@ -3429,7 +3532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7150c662-0fe6-498c-a8a8-05a587be07b7" + "16daf3e1-92bb-49b0-86f8-d34347011ff9" ], "Cache-Control": [ "no-cache" @@ -3439,31 +3542,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13975" + "14866" ], "x-ms-correlation-request-id": [ - "6554fae7-2848-4126-a93e-9c8c906a53bc" + "ee6be283-6afa-4f91-8b16-6be667487f10" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212424Z:6554fae7-2848-4126-a93e-9c8c906a53bc" + "WESTUS:20150813T074553Z:ee6be283-6afa-4f91-8b16-6be667487f10" ], "Date": [ - "Wed, 05 Aug 2015 21:24:23 GMT" + "Thu, 13 Aug 2015 07:45:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adam-software/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhbS1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adam-software/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhbS1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software/ArtifactTypes/VMImage/Offers/adam\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software/ArtifactTypes/VMImage/Offers/adam\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "231" @@ -3481,7 +3584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c29c1ad4-b201-4a41-b607-8103d5354330" + "cd389a3c-eefa-4248-a511-63e63d6f0409" ], "Cache-Control": [ "no-cache" @@ -3491,31 +3594,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13974" + "14865" ], "x-ms-correlation-request-id": [ - "10c10a20-d7da-41a3-b5d0-a99ecfc639fb" + "15390be4-b1b3-4472-91fe-d1dc884f5634" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212424Z:10c10a20-d7da-41a3-b5d0-a99ecfc639fb" + "WESTUS:20150813T074553Z:15390be4-b1b3-4472-91fe-d1dc884f5634" ], "Date": [ - "Wed, 05 Aug 2015 21:24:23 GMT" + "Thu, 13 Aug 2015 07:45:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adam-software/artifacttypes/vmimage/offers/adam/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhbS1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FkYW0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adam-software/artifacttypes/vmimage/offers/adam/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhbS1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FkYW0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adamsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software/ArtifactTypes/VMImage/Offers/adam/Skus/adamsoftware\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adamsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software/ArtifactTypes/VMImage/Offers/adam/Skus/adamsoftware\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -3533,7 +3636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2163c2e2-fa00-4867-ac18-0e068ea34816" + "6c32ded7-e6da-4075-83dc-a5240edc25f5" ], "Cache-Control": [ "no-cache" @@ -3543,31 +3646,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13973" + "14864" ], "x-ms-correlation-request-id": [ - "da5b20f4-ddcf-4f50-8f7a-bc8b78e8da0a" + "566e8698-8e6a-4a27-a330-5be9ba368f61" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212424Z:da5b20f4-ddcf-4f50-8f7a-bc8b78e8da0a" + "WESTUS:20150813T074554Z:566e8698-8e6a-4a27-a330-5be9ba368f61" ], "Date": [ - "Wed, 05 Aug 2015 21:24:23 GMT" + "Thu, 13 Aug 2015 07:45:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adam-software/artifacttypes/vmimage/offers/adam/skus/adamsoftware/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhbS1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FkYW0vc2t1cy9hZGFtc29mdHdhcmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adam-software/artifacttypes/vmimage/offers/adam/skus/adamsoftware/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhbS1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FkYW0vc2t1cy9hZGFtc29mdHdhcmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software/ArtifactTypes/VMImage/Offers/adam/Skus/adamsoftware/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software/ArtifactTypes/VMImage/Offers/adam/Skus/adamsoftware/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "265" @@ -3585,7 +3688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f61870e-921b-444f-97cd-ca21a08c185e" + "ae326599-267d-48f8-ba6a-dbddc98233c7" ], "Cache-Control": [ "no-cache" @@ -3595,31 +3698,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13972" + "14863" ], "x-ms-correlation-request-id": [ - "6554cd7a-fb64-4478-a810-146777110e9a" + "0c521d86-21dd-4c93-b85a-dda5ba6fbbb0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212424Z:6554cd7a-fb64-4478-a810-146777110e9a" + "WESTUS:20150813T074554Z:0c521d86-21dd-4c93-b85a-dda5ba6fbbb0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:24 GMT" + "Thu, 13 Aug 2015 07:45:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adam-software/artifacttypes/vmimage/offers/adam/skus/adamsoftware/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhbS1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FkYW0vc2t1cy9hZGFtc29mdHdhcmUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adam-software/artifacttypes/vmimage/offers/adam/skus/adamsoftware/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhbS1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FkYW0vc2t1cy9hZGFtc29mdHdhcmUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"adam-software\",\r\n \"name\": \"adamsoftware\",\r\n \"product\": \"adam\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software/ArtifactTypes/VMImage/Offers/adam/Skus/adamsoftware/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"adam-software\",\r\n \"name\": \"adamsoftware\",\r\n \"product\": \"adam\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software/ArtifactTypes/VMImage/Offers/adam/Skus/adamsoftware/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -3637,7 +3740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "518c3892-d069-4acf-9c7a-f167b0972e6b" + "5275c77f-1b6c-4c56-957c-0dc434af673c" ], "Cache-Control": [ "no-cache" @@ -3647,28 +3750,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13971" + "14862" ], "x-ms-correlation-request-id": [ - "961d60ae-4c8c-412d-bda9-29ceea11d4f0" + "97032e90-9264-4072-88ec-3301c242db56" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212425Z:961d60ae-4c8c-412d-bda9-29ceea11d4f0" + "WESTUS:20150813T074554Z:97032e90-9264-4072-88ec-3301c242db56" ], "Date": [ - "Wed, 05 Aug 2015 21:24:24 GMT" + "Thu, 13 Aug 2015 07:45:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adatao/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhdGFvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adatao/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRhdGFvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -3689,7 +3792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cad2bc52-db20-4263-a12a-de1e87b696a8" + "8c7c9b4b-d53e-4b72-90d1-19b16393f48d" ], "Cache-Control": [ "no-cache" @@ -3699,31 +3802,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13970" + "14861" ], "x-ms-correlation-request-id": [ - "b613fd39-d736-4cfb-bdad-8d6767b6693d" + "f3219d26-2987-452b-bcea-70afe1ddbba7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212425Z:b613fd39-d736-4cfb-bdad-8d6767b6693d" + "WESTUS:20150813T074554Z:f3219d26-2987-452b-bcea-70afe1ddbba7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:24 GMT" + "Thu, 13 Aug 2015 07:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_aem\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_aem\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_campaign_test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_aem\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_aem\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_campaign_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "483" @@ -3741,7 +3844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b2ac56d-aaa5-400c-b85f-978c0f057ab8" + "711727dd-6228-485c-b875-be5f88095a5f" ], "Cache-Control": [ "no-cache" @@ -3751,31 +3854,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13969" + "14860" ], "x-ms-correlation-request-id": [ - "829143b1-cf10-46f1-876c-32b8165f849e" + "fec5bc41-9585-46cf-8014-5c31370ce83c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212425Z:829143b1-cf10-46f1-876c-32b8165f849e" + "WESTUS:20150813T074554Z:fec5bc41-9585-46cf-8014-5c31370ce83c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:24 GMT" + "Thu, 13 Aug 2015 07:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_aem/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9hZW0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_aem/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9hZW0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobeaem\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_aem/Skus/adobeaem\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobeaem\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_aem/Skus/adobeaem\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "246" @@ -3793,7 +3896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be9165f4-0de6-4833-b43f-0f0de66cad6d" + "3f6f27ac-0dca-4615-a39f-5dc440430958" ], "Cache-Control": [ "no-cache" @@ -3803,31 +3906,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13968" + "14859" ], "x-ms-correlation-request-id": [ - "81d0552b-faf1-4c26-984f-24ccdc41a8d7" + "3aa0dec9-6493-4af4-86aa-fc6e131e5975" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212425Z:81d0552b-faf1-4c26-984f-24ccdc41a8d7" + "WESTUS:20150813T074555Z:3aa0dec9-6493-4af4-86aa-fc6e131e5975" ], "Date": [ - "Wed, 05 Aug 2015 21:24:24 GMT" + "Thu, 13 Aug 2015 07:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_aem/skus/adobeaem/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9hZW0vc2t1cy9hZG9iZWFlbS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_aem/skus/adobeaem/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9hZW0vc2t1cy9hZG9iZWFlbS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_aem/Skus/adobeaem/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_aem/Skus/adobeaem/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -3845,7 +3948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9b22f2e-7ddc-4c48-887f-2026307c6909" + "3f0bd3e7-d84c-405f-8581-1a13884f1595" ], "Cache-Control": [ "no-cache" @@ -3855,31 +3958,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13967" + "14858" ], "x-ms-correlation-request-id": [ - "c71a9d1d-18c0-42db-b0df-a2df5e4423b9" + "a33a5edf-8a9c-4b5c-9460-49f57afa2a6a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212425Z:c71a9d1d-18c0-42db-b0df-a2df5e4423b9" + "WESTUS:20150813T074555Z:a33a5edf-8a9c-4b5c-9460-49f57afa2a6a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:24 GMT" + "Thu, 13 Aug 2015 07:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_aem/skus/adobeaem/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9hZW0vc2t1cy9hZG9iZWFlbS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_aem/skus/adobeaem/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9hZW0vc2t1cy9hZG9iZWFlbS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"adobe\",\r\n \"name\": \"adobeaem\",\r\n \"product\": \"adobe_aem\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_aem/Skus/adobeaem/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"adobe\",\r\n \"name\": \"adobeaem\",\r\n \"product\": \"adobe_aem\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_aem/Skus/adobeaem/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "468" @@ -3897,7 +4000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "726b7c7a-26da-4e64-9b5e-6be0f101e74d" + "91d83ae4-9c42-4cb5-bc9a-7852a4bc8486" ], "Cache-Control": [ "no-cache" @@ -3907,31 +4010,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13966" + "14857" ], "x-ms-correlation-request-id": [ - "4cdf0b4d-39b1-4779-9d61-3aea6e429064" + "f94daaf4-ef2b-498c-8880-f9ea6e391b7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212425Z:4cdf0b4d-39b1-4779-9d61-3aea6e429064" + "WESTUS:20150813T074555Z:f94daaf4-ef2b-498c-8880-f9ea6e391b7b" ], "Date": [ - "Wed, 05 Aug 2015 21:24:24 GMT" + "Thu, 13 Aug 2015 07:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_campaign_test/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9jYW1wYWlnbl90ZXN0L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_campaign_test/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9jYW1wYWlnbl90ZXN0L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_camp_test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test/Skus/adobe_camp_test\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_camp_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test/Skus/adobe_camp_test\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "270" @@ -3949,7 +4052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bff42519-7925-4c19-86fa-bf7a81b89396" + "6725eea1-1d82-41b9-9459-5880d8251321" ], "Cache-Control": [ "no-cache" @@ -3959,31 +4062,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13965" + "14856" ], "x-ms-correlation-request-id": [ - "45094b8d-a3e6-42ea-a7bf-798061649012" + "51cc705f-ad0c-4fa9-9401-35e5e885c9b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212425Z:45094b8d-a3e6-42ea-a7bf-798061649012" + "WESTUS:20150813T074555Z:51cc705f-ad0c-4fa9-9401-35e5e885c9b9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:24 GMT" + "Thu, 13 Aug 2015 07:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_campaign_test/skus/adobe_camp_test/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9jYW1wYWlnbl90ZXN0L3NrdXMvYWRvYmVfY2FtcF90ZXN0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_campaign_test/skus/adobe_camp_test/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9jYW1wYWlnbl90ZXN0L3NrdXMvYWRvYmVfY2FtcF90ZXN0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test/Skus/adobe_camp_test/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test/Skus/adobe_camp_test/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "275" @@ -4001,7 +4104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca1c0401-4a7e-4396-bbf4-0250c31c4024" + "51c57e24-dec1-4979-8466-7f4229c075e5" ], "Cache-Control": [ "no-cache" @@ -4011,31 +4114,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13964" + "14855" ], "x-ms-correlation-request-id": [ - "515bd525-2d79-43f0-9e60-91a81dbd6103" + "5b8515bb-5275-438f-affe-8424c1c220b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212425Z:515bd525-2d79-43f0-9e60-91a81dbd6103" + "WESTUS:20150813T074555Z:5b8515bb-5275-438f-affe-8424c1c220b0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:25 GMT" + "Thu, 13 Aug 2015 07:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_campaign_test/skus/adobe_camp_test/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9jYW1wYWlnbl90ZXN0L3NrdXMvYWRvYmVfY2FtcF90ZXN0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/adobe/artifacttypes/vmimage/offers/adobe_campaign_test/skus/adobe_camp_test/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWRvYmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZG9iZV9jYW1wYWlnbl90ZXN0L3NrdXMvYWRvYmVfY2FtcF90ZXN0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"adobe\",\r\n \"name\": \"adobe_camp_test\",\r\n \"product\": \"adobe_campaign_test\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test/Skus/adobe_camp_test/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"adobe\",\r\n \"name\": \"adobe_camp_test\",\r\n \"product\": \"adobe_campaign_test\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test/Skus/adobe_camp_test/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "502" @@ -4053,7 +4156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f9372b3-89ce-4ffb-a043-54d237ffc19c" + "bf873c05-a823-4e24-a14c-834073c97acb" ], "Cache-Control": [ "no-cache" @@ -4063,31 +4166,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13963" + "14854" ], "x-ms-correlation-request-id": [ - "eb141a16-7b99-4977-ba1c-441cb3b964e8" + "4ff71e78-e81b-438b-8e4c-b7e9c83519ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212426Z:eb141a16-7b99-4977-ba1c-441cb3b964e8" + "WESTUS:20150813T074555Z:4ff71e78-e81b-438b-8e4c-b7e9c83519ac" ], "Date": [ - "Wed, 05 Aug 2015 21:24:25 GMT" + "Thu, 13 Aug 2015 07:45:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"susiaccess30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech/ArtifactTypes/VMImage/Offers/susiaccess30\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"susiaccess30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech/ArtifactTypes/VMImage/Offers/susiaccess30\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "243" @@ -4105,7 +4208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a693f65-bd11-462e-98a5-4883d23a4816" + "89f67323-ee40-4fd9-bd81-798244a85ec5" ], "Cache-Control": [ "no-cache" @@ -4115,31 +4218,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13962" + "14853" ], "x-ms-correlation-request-id": [ - "721504bb-a804-4c40-9643-6498f8b0c26c" + "41e60a57-97bc-43e4-a471-20642de26a87" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212426Z:721504bb-a804-4c40-9643-6498f8b0c26c" + "WESTUS:20150813T074555Z:41e60a57-97bc-43e4-a471-20642de26a87" ], "Date": [ - "Wed, 05 Aug 2015 21:24:25 GMT" + "Thu, 13 Aug 2015 07:45:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech/artifacttypes/vmimage/offers/susiaccess30/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VzaWFjY2VzczMwL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech/artifacttypes/vmimage/offers/susiaccess30/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VzaWFjY2VzczMwL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech/ArtifactTypes/VMImage/Offers/susiaccess30/Skus/std\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech/ArtifactTypes/VMImage/Offers/susiaccess30/Skus/std\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "243" @@ -4157,7 +4260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f49343f0-cccc-448d-8f25-026851e970f5" + "22420f3b-3ef4-44bc-a3a1-1e71e75fe109" ], "Cache-Control": [ "no-cache" @@ -4167,31 +4270,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13961" + "14852" ], "x-ms-correlation-request-id": [ - "d870b53b-f746-4931-a3bf-05edc9043062" + "52cd39f4-d003-4d0c-a2a4-e451311eabfa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212426Z:d870b53b-f746-4931-a3bf-05edc9043062" + "WESTUS:20150813T074556Z:52cd39f4-d003-4d0c-a2a4-e451311eabfa" ], "Date": [ - "Wed, 05 Aug 2015 21:24:25 GMT" + "Thu, 13 Aug 2015 07:45:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech/artifacttypes/vmimage/offers/susiaccess30/skus/std/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VzaWFjY2VzczMwL3NrdXMvc3RkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech/artifacttypes/vmimage/offers/susiaccess30/skus/std/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VzaWFjY2VzczMwL3NrdXMvc3RkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech/ArtifactTypes/VMImage/Offers/susiaccess30/Skus/std/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech/ArtifactTypes/VMImage/Offers/susiaccess30/Skus/std/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -4209,7 +4312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30652fc8-a3ba-45ec-9532-37beae2106b1" + "b3898635-d440-48cd-9285-ea5e39430508" ], "Cache-Control": [ "no-cache" @@ -4219,31 +4322,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13960" + "14851" ], "x-ms-correlation-request-id": [ - "263999d9-6b8d-4d9f-a044-4c054d813206" + "5f34fd5d-4ddf-4ac5-a279-7e4075521324" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212426Z:263999d9-6b8d-4d9f-a044-4c054d813206" + "WESTUS:20150813T074556Z:5f34fd5d-4ddf-4ac5-a279-7e4075521324" ], "Date": [ - "Wed, 05 Aug 2015 21:24:25 GMT" + "Thu, 13 Aug 2015 07:45:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech/artifacttypes/vmimage/offers/susiaccess30/skus/std/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VzaWFjY2VzczMwL3NrdXMvc3RkL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech/artifacttypes/vmimage/offers/susiaccess30/skus/std/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VzaWFjY2VzczMwL3NrdXMvc3RkL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"advantech\",\r\n \"name\": \"std\",\r\n \"product\": \"susiaccess30\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech/ArtifactTypes/VMImage/Offers/susiaccess30/Skus/std/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"advantech\",\r\n \"name\": \"std\",\r\n \"product\": \"susiaccess30\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech/ArtifactTypes/VMImage/Offers/susiaccess30/Skus/std/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "472" @@ -4261,7 +4364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e7a223f-2b0c-46c7-af7a-1118ae150fac" + "c150eeeb-1841-4121-be6a-d88de548c7a3" ], "Cache-Control": [ "no-cache" @@ -4271,31 +4374,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13959" + "14850" ], "x-ms-correlation-request-id": [ - "c0dc5ba4-5d72-4cd1-a416-517900020e27" + "ac48f7ef-1bfd-47b2-9877-473772264a95" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212426Z:c0dc5ba4-5d72-4cd1-a416-517900020e27" + "WESTUS:20150813T074556Z:ac48f7ef-1bfd-47b2-9877-473772264a95" ], "Date": [ - "Wed, 05 Aug 2015 21:24:25 GMT" + "Thu, 13 Aug 2015 07:45:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"webaccess-8_0_1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"webaccess-8_0_1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "259" @@ -4313,7 +4416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5ea2a14-7b6b-40d8-8074-7b1c6b193d4d" + "0414ace0-15df-4008-978f-cadea87bd56a" ], "Cache-Control": [ "no-cache" @@ -4323,31 +4426,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13958" + "14849" ], "x-ms-correlation-request-id": [ - "010feffa-abf3-4ded-a8c1-606d89282cb7" + "8f1871ce-89db-40c7-a5e6-79328732a324" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212426Z:010feffa-abf3-4ded-a8c1-606d89282cb7" + "WESTUS:20150813T074556Z:8f1871ce-89db-40c7-a5e6-79328732a324" ], "Date": [ - "Wed, 05 Aug 2015 21:24:25 GMT" + "Thu, 13 Aug 2015 07:45:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1500tags\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/1500tags\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ver8_0_0626\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/ver8_0_0626\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1500tags\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/1500tags\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ver8_0_0626\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/ver8_0_0626\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "535" @@ -4365,7 +4468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04ad5c2e-7ffc-4eaf-bacc-1431d4831f5d" + "6790f177-937e-4cd8-8af4-275a264fe89d" ], "Cache-Control": [ "no-cache" @@ -4375,31 +4478,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13957" + "14848" ], "x-ms-correlation-request-id": [ - "f7c5c47b-c056-44d9-9f08-fc0b9614c652" + "a23f396d-d22a-4abd-8339-7d4505fa1253" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212426Z:f7c5c47b-c056-44d9-9f08-fc0b9614c652" + "WESTUS:20150813T074556Z:a23f396d-d22a-4abd-8339-7d4505fa1253" ], "Date": [ - "Wed, 05 Aug 2015 21:24:26 GMT" + "Thu, 13 Aug 2015 07:45:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus/1500tags/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzLzE1MDB0YWdzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus/1500tags/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzLzE1MDB0YWdzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/1500tags/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/1500tags/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "278" @@ -4417,7 +4520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92c020af-2e6f-4ff1-b72b-24a206a3b6e0" + "3dfd653d-a381-451f-a709-caf2d963b691" ], "Cache-Control": [ "no-cache" @@ -4427,31 +4530,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13956" + "14847" ], "x-ms-correlation-request-id": [ - "ad68e4ed-6b48-464d-98f1-01c054fc0d7c" + "c08f2bb8-5e2d-46e2-9070-2fc936d7d29b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212427Z:ad68e4ed-6b48-464d-98f1-01c054fc0d7c" + "WESTUS:20150813T074557Z:c08f2bb8-5e2d-46e2-9070-2fc936d7d29b" ], "Date": [ - "Wed, 05 Aug 2015 21:24:26 GMT" + "Thu, 13 Aug 2015 07:45:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus/1500tags/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzLzE1MDB0YWdzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus/1500tags/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzLzE1MDB0YWdzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"advantech-webaccess\",\r\n \"name\": \"1500tags\",\r\n \"product\": \"webaccess-8_0_1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/1500tags/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"advantech-webaccess\",\r\n \"name\": \"1500tags\",\r\n \"product\": \"webaccess-8_0_1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/1500tags/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -4469,7 +4572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b019e97-bb47-4efd-91ca-30ca28292ded" + "dec11917-c223-4ac7-8018-a9fb7fad8fa5" ], "Cache-Control": [ "no-cache" @@ -4479,31 +4582,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13955" + "14846" ], "x-ms-correlation-request-id": [ - "ef05efc6-898b-475d-977f-b2e15098c644" + "a47e8307-ee0a-4d51-bbe8-1e3cbea6f09d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212427Z:ef05efc6-898b-475d-977f-b2e15098c644" + "WESTUS:20150813T074557Z:a47e8307-ee0a-4d51-bbe8-1e3cbea6f09d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:26 GMT" + "Thu, 13 Aug 2015 07:45:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus/ver8_0_0626/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzL3ZlcjhfMF8wNjI2L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus/ver8_0_0626/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzL3ZlcjhfMF8wNjI2L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/ver8_0_0626/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/ver8_0_0626/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "281" @@ -4521,7 +4624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e82fc3e-a885-488f-ad5e-96a13cd2a4b1" + "a27b8566-4248-48de-8402-e351f3afd00f" ], "Cache-Control": [ "no-cache" @@ -4531,31 +4634,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13954" + "14845" ], "x-ms-correlation-request-id": [ - "7a873e48-05f2-484a-b4a1-87716859b014" + "88eb1317-1e31-4507-8402-94be6a8d4160" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212427Z:7a873e48-05f2-484a-b4a1-87716859b014" + "WESTUS:20150813T074557Z:88eb1317-1e31-4507-8402-94be6a8d4160" ], "Date": [ - "Wed, 05 Aug 2015 21:24:26 GMT" + "Thu, 13 Aug 2015 07:45:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus/ver8_0_0626/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzL3ZlcjhfMF8wNjI2L3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/advantech-webaccess/artifacttypes/vmimage/offers/webaccess-8_0_1/skus/ver8_0_0626/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWR2YW50ZWNoLXdlYmFjY2Vzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYmFjY2Vzcy04XzBfMS9za3VzL3ZlcjhfMF8wNjI2L3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"advantech-webaccess\",\r\n \"name\": \"ver8_0_0626\",\r\n \"product\": \"webaccess-8_0_1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/ver8_0_0626/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"advantech-webaccess\",\r\n \"name\": \"ver8_0_0626\",\r\n \"product\": \"webaccess-8_0_1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/ver8_0_0626/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "514" @@ -4573,7 +4676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30f6d44a-61b0-4f89-865f-19f6b63ff888" + "0838f9d2-177c-4f1f-bb07-a2bc2b577aed" ], "Cache-Control": [ "no-cache" @@ -4583,31 +4686,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13953" + "14844" ], "x-ms-correlation-request-id": [ - "a03c8407-4e0d-4339-86d6-78e351736401" + "b1bdfa80-3b04-467c-9508-bf710e6604fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212427Z:a03c8407-4e0d-4339-86d6-78e351736401" + "WESTUS:20150813T074557Z:b1bdfa80-3b04-467c-9508-bf710e6604fd" ], "Date": [ - "Wed, 05 Aug 2015 21:24:26 GMT" + "Thu, 13 Aug 2015 07:45:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aerospike/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWVyb3NwaWtlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aerospike/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWVyb3NwaWtlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike-database-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike-database-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "261" @@ -4625,7 +4728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ced06d9-e872-4259-8702-dfd77dc7f1b0" + "447c5ff6-c2f5-4b34-8569-a200bc72a1d6" ], "Cache-Control": [ "no-cache" @@ -4635,31 +4738,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13952" + "14843" ], "x-ms-correlation-request-id": [ - "b16dcb1c-8378-4ca0-bd36-7ad8b42b9243" + "0847664c-1e3a-4a8e-828f-4064657ad7a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212427Z:b16dcb1c-8378-4ca0-bd36-7ad8b42b9243" + "WESTUS:20150813T074557Z:0847664c-1e3a-4a8e-828f-4064657ad7a6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:26 GMT" + "Thu, 13 Aug 2015 07:45:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aerospike/artifacttypes/vmimage/offers/aerospike-database-vm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWVyb3NwaWtlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWVyb3NwaWtlLWRhdGFiYXNlLXZtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aerospike/artifacttypes/vmimage/offers/aerospike-database-vm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWVyb3NwaWtlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWVyb3NwaWtlLWRhdGFiYXNlLXZtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospikedb001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm/Skus/aerospikedb001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospikedb001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm/Skus/aerospikedb001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "274" @@ -4677,7 +4780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ae5e8ab-3d81-4fcc-b83a-7b05e9041fc8" + "8de612f6-025d-4527-9e2f-49c307a4562f" ], "Cache-Control": [ "no-cache" @@ -4687,31 +4790,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13951" + "14842" ], "x-ms-correlation-request-id": [ - "1e33fe35-02c2-4e79-aaec-be3650ee40aa" + "1cdcb5ea-936c-4556-a9b7-1aad3422b15c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212427Z:1e33fe35-02c2-4e79-aaec-be3650ee40aa" + "WESTUS:20150813T074557Z:1cdcb5ea-936c-4556-a9b7-1aad3422b15c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:26 GMT" + "Thu, 13 Aug 2015 07:45:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aerospike/artifacttypes/vmimage/offers/aerospike-database-vm/skus/aerospikedb001/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWVyb3NwaWtlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWVyb3NwaWtlLWRhdGFiYXNlLXZtL3NrdXMvYWVyb3NwaWtlZGIwMDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aerospike/artifacttypes/vmimage/offers/aerospike-database-vm/skus/aerospikedb001/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWVyb3NwaWtlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWVyb3NwaWtlLWRhdGFiYXNlLXZtL3NrdXMvYWVyb3NwaWtlZGIwMDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm/Skus/aerospikedb001/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm/Skus/aerospikedb001/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -4729,7 +4832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c6a1aa28-0bc0-460c-9ca2-ce91ca83b35e" + "8ad95647-f44c-4fcb-915e-26c1364d6013" ], "Cache-Control": [ "no-cache" @@ -4739,31 +4842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13950" + "14841" ], "x-ms-correlation-request-id": [ - "5c98d07e-aeb6-4709-974b-cc295e4e7b68" + "67e63ee3-57c1-45dc-9cf1-349e7cc2d51a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212427Z:5c98d07e-aeb6-4709-974b-cc295e4e7b68" + "WESTUS:20150813T074558Z:67e63ee3-57c1-45dc-9cf1-349e7cc2d51a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:27 GMT" + "Thu, 13 Aug 2015 07:45:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aerospike/artifacttypes/vmimage/offers/aerospike-database-vm/skus/aerospikedb001/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWVyb3NwaWtlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWVyb3NwaWtlLWRhdGFiYXNlLXZtL3NrdXMvYWVyb3NwaWtlZGIwMDEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aerospike/artifacttypes/vmimage/offers/aerospike-database-vm/skus/aerospikedb001/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWVyb3NwaWtlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWVyb3NwaWtlLWRhdGFiYXNlLXZtL3NrdXMvYWVyb3NwaWtlZGIwMDEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aerospike\",\r\n \"name\": \"aerospikedb001\",\r\n \"product\": \"aerospike-database-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm/Skus/aerospikedb001/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aerospike\",\r\n \"name\": \"aerospikedb001\",\r\n \"product\": \"aerospike-database-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm/Skus/aerospikedb001/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "510" @@ -4781,7 +4884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8180a1b4-02e0-4574-afd6-9967de9a8c63" + "dd7fef94-1ce0-4176-811f-1568f89c706a" ], "Cache-Control": [ "no-cache" @@ -4791,31 +4894,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13949" + "14840" ], "x-ms-correlation-request-id": [ - "36499216-2e11-47af-8b4a-1e43d2b23b7b" + "5524d5d5-55be-49ac-89b5-c7287a8f9d57" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212428Z:36499216-2e11-47af-8b4a-1e43d2b23b7b" + "WESTUS:20150813T074558Z:5524d5d5-55be-49ac-89b5-c7287a8f9d57" ], "Date": [ - "Wed, 05 Aug 2015 21:24:27 GMT" + "Thu, 13 Aug 2015 07:45:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aimobile-site-acceleration\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aimobile-site-acceleration\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiprotect-ddos-firewall\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiprotect-ddos-firewall\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-traffic-manager-caching\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiscaler-traffic-manager-caching\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aimobile-site-acceleration\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aimobile-site-acceleration\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiprotect-ddos-firewall\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiprotect-ddos-firewall\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-traffic-manager-caching\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiscaler-traffic-manager-caching\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "924" @@ -4833,7 +4936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c52f5a89-ebb0-434a-a553-df2ec8a456fa" + "cac9753c-7852-4e71-97d8-9ae0d2b9ba71" ], "Cache-Control": [ "no-cache" @@ -4843,31 +4946,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13948" + "14839" ], "x-ms-correlation-request-id": [ - "efa8c74d-b195-405e-ae8a-77a88c2979a6" + "53169497-0751-4d72-8366-01f86a0a35f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212428Z:efa8c74d-b195-405e-ae8a-77a88c2979a6" + "WESTUS:20150813T074558Z:53169497-0751-4d72-8366-01f86a0a35f6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:27 GMT" + "Thu, 13 Aug 2015 07:45:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aimobile-site-acceleration/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpbW9iaWxlLXNpdGUtYWNjZWxlcmF0aW9uL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aimobile-site-acceleration/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpbW9iaWxlLXNpdGUtYWNjZWxlcmF0aW9uL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aimobile-site-acceleration/Skus/byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aimobile-site-acceleration/Skus/byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "296" @@ -4885,7 +4988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "714a577f-5306-405e-af6d-385b207a7c2d" + "9bf1edd1-a397-4d14-9610-32909cd41c47" ], "Cache-Control": [ "no-cache" @@ -4895,31 +4998,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13947" + "14838" ], "x-ms-correlation-request-id": [ - "2f3a1310-fb4f-433f-a281-b35cc552c89b" + "b13acbc5-ef23-40f1-9917-4a86893a2623" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212428Z:2f3a1310-fb4f-433f-a281-b35cc552c89b" + "WESTUS:20150813T074558Z:b13acbc5-ef23-40f1-9917-4a86893a2623" ], "Date": [ - "Wed, 05 Aug 2015 21:24:27 GMT" + "Thu, 13 Aug 2015 07:45:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aimobile-site-acceleration/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpbW9iaWxlLXNpdGUtYWNjZWxlcmF0aW9uL3NrdXMvYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aimobile-site-acceleration/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpbW9iaWxlLXNpdGUtYWNjZWxlcmF0aW9uL3NrdXMvYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aimobile-site-acceleration/Skus/byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aimobile-site-acceleration/Skus/byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "312" @@ -4937,7 +5040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8374c77d-d861-4ca0-bc7d-c0f5ae31d9c1" + "8a4d7fb1-aeb1-4994-92d5-58deada64dce" ], "Cache-Control": [ "no-cache" @@ -4947,31 +5050,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13946" + "14837" ], "x-ms-correlation-request-id": [ - "0bca5376-8c4d-4f43-92b2-3bf37ec8efed" + "2686dad9-0aa0-44c2-bbff-1fc77709e00f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212428Z:0bca5376-8c4d-4f43-92b2-3bf37ec8efed" + "WESTUS:20150813T074558Z:2686dad9-0aa0-44c2-bbff-1fc77709e00f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:27 GMT" + "Thu, 13 Aug 2015 07:45:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aimobile-site-acceleration/skus/byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpbW9iaWxlLXNpdGUtYWNjZWxlcmF0aW9uL3NrdXMvYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aimobile-site-acceleration/skus/byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpbW9iaWxlLXNpdGUtYWNjZWxlcmF0aW9uL3NrdXMvYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"name\": \"byol\",\r\n \"product\": \"aimobile-site-acceleration\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aimobile-site-acceleration/Skus/byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"name\": \"byol\",\r\n \"product\": \"aimobile-site-acceleration\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aimobile-site-acceleration/Skus/byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "574" @@ -4989,7 +5092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf69848d-ccaf-4ab5-ab65-d7ff3a76bc89" + "ab3a2b30-6a39-487f-bd20-38ea42b58063" ], "Cache-Control": [ "no-cache" @@ -4999,31 +5102,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13945" + "14836" ], "x-ms-correlation-request-id": [ - "b3427d28-cd09-47ce-998b-30cb72f9a1f1" + "f4e790ee-02c6-4b5c-873d-b60b5516f1d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212428Z:b3427d28-cd09-47ce-998b-30cb72f9a1f1" + "WESTUS:20150813T074558Z:f4e790ee-02c6-4b5c-873d-b60b5516f1d6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:27 GMT" + "Thu, 13 Aug 2015 07:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiprotect-ddos-firewall/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpcHJvdGVjdC1kZG9zLWZpcmV3YWxsL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiprotect-ddos-firewall/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpcHJvdGVjdC1kZG9zLWZpcmV3YWxsL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiprotect-ddos-firewall/Skus/byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiprotect-ddos-firewall/Skus/byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "293" @@ -5041,7 +5144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "671b6001-2359-4983-96b6-250f1d71c8aa" + "5b81f786-02fa-4635-a3be-7dbb86690f60" ], "Cache-Control": [ "no-cache" @@ -5051,31 +5154,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13944" + "14835" ], "x-ms-correlation-request-id": [ - "c4efb9b4-ae29-44d0-825d-20fd0a206e21" + "03027c98-c656-4d98-b814-12f64b392895" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212428Z:c4efb9b4-ae29-44d0-825d-20fd0a206e21" + "WESTUS:20150813T074559Z:03027c98-c656-4d98-b814-12f64b392895" ], "Date": [ - "Wed, 05 Aug 2015 21:24:27 GMT" + "Thu, 13 Aug 2015 07:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiprotect-ddos-firewall/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpcHJvdGVjdC1kZG9zLWZpcmV3YWxsL3NrdXMvYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiprotect-ddos-firewall/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpcHJvdGVjdC1kZG9zLWZpcmV3YWxsL3NrdXMvYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiprotect-ddos-firewall/Skus/byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiprotect-ddos-firewall/Skus/byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "309" @@ -5093,7 +5196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec253b3f-59c6-480e-a812-5756cf59e839" + "910724d0-189c-4ab7-be2e-ebf60d8c3c03" ], "Cache-Control": [ "no-cache" @@ -5103,31 +5206,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13943" + "14834" ], "x-ms-correlation-request-id": [ - "6eb2721e-0b82-46e1-be19-136446062014" + "79f0bd84-9d0d-4f3a-b15a-dc4eba016a01" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212428Z:6eb2721e-0b82-46e1-be19-136446062014" + "WESTUS:20150813T074559Z:79f0bd84-9d0d-4f3a-b15a-dc4eba016a01" ], "Date": [ - "Wed, 05 Aug 2015 21:24:28 GMT" + "Thu, 13 Aug 2015 07:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiprotect-ddos-firewall/skus/byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpcHJvdGVjdC1kZG9zLWZpcmV3YWxsL3NrdXMvYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiprotect-ddos-firewall/skus/byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FpcHJvdGVjdC1kZG9zLWZpcmV3YWxsL3NrdXMvYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"name\": \"byol\",\r\n \"product\": \"aiprotect-ddos-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiprotect-ddos-firewall/Skus/byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"name\": \"byol\",\r\n \"product\": \"aiprotect-ddos-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiprotect-ddos-firewall/Skus/byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "568" @@ -5145,7 +5248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa97eca5-d928-416f-ab9d-ef24914a8148" + "2e5fcea3-4e1f-49f7-8784-c7351e4ba313" ], "Cache-Control": [ "no-cache" @@ -5155,31 +5258,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13942" + "14833" ], "x-ms-correlation-request-id": [ - "932f1f02-c60e-4e63-96c7-e29c451b8e1d" + "d457847e-e879-4b06-b638-fb9186f45e34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212429Z:932f1f02-c60e-4e63-96c7-e29c451b8e1d" + "WESTUS:20150813T074559Z:d457847e-e879-4b06-b638-fb9186f45e34" ], "Date": [ - "Wed, 05 Aug 2015 21:24:28 GMT" + "Thu, 13 Aug 2015 07:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiscaler-traffic-manager-caching/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Fpc2NhbGVyLXRyYWZmaWMtbWFuYWdlci1jYWNoaW5nL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiscaler-traffic-manager-caching/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Fpc2NhbGVyLXRyYWZmaWMtbWFuYWdlci1jYWNoaW5nL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiscaler-traffic-manager-caching/Skus/byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiscaler-traffic-manager-caching/Skus/byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "302" @@ -5197,7 +5300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "350402d4-e159-4180-806f-1eb8fe258468" + "6ec7549b-4e2a-45db-956e-ba61fae7c03e" ], "Cache-Control": [ "no-cache" @@ -5207,31 +5310,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13941" + "14832" ], "x-ms-correlation-request-id": [ - "015958a4-1abd-4489-bb9e-990a0b2e1ac7" + "650e310e-2813-4412-ab21-e3e4d96c180c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212429Z:015958a4-1abd-4489-bb9e-990a0b2e1ac7" + "WESTUS:20150813T074559Z:650e310e-2813-4412-ab21-e3e4d96c180c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:28 GMT" + "Thu, 13 Aug 2015 07:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiscaler-traffic-manager-caching/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Fpc2NhbGVyLXRyYWZmaWMtbWFuYWdlci1jYWNoaW5nL3NrdXMvYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiscaler-traffic-manager-caching/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Fpc2NhbGVyLXRyYWZmaWMtbWFuYWdlci1jYWNoaW5nL3NrdXMvYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiscaler-traffic-manager-caching/Skus/byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiscaler-traffic-manager-caching/Skus/byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "318" @@ -5249,7 +5352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3821785-c9a3-48f3-8a61-63fbafa70a92" + "262006c0-1d37-4620-baf5-704185b71ba9" ], "Cache-Control": [ "no-cache" @@ -5259,31 +5362,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13940" + "14831" ], "x-ms-correlation-request-id": [ - "82dabbd0-7c27-4718-98cd-2b46a9a78ff2" + "102ba098-f6f6-4e89-b4bb-9737d33957fa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212429Z:82dabbd0-7c27-4718-98cd-2b46a9a78ff2" + "WESTUS:20150813T074559Z:102ba098-f6f6-4e89-b4bb-9737d33957fa" ], "Date": [ - "Wed, 05 Aug 2015 21:24:28 GMT" + "Thu, 13 Aug 2015 07:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiscaler-traffic-manager-caching/skus/byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Fpc2NhbGVyLXRyYWZmaWMtbWFuYWdlci1jYWNoaW5nL3NrdXMvYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aiscaler-cache-control-ddos-and-url-rewriting-/artifacttypes/vmimage/offers/aiscaler-traffic-manager-caching/skus/byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWlzY2FsZXItY2FjaGUtY29udHJvbC1kZG9zLWFuZC11cmwtcmV3cml0aW5nLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Fpc2NhbGVyLXRyYWZmaWMtbWFuYWdlci1jYWNoaW5nL3NrdXMvYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"name\": \"byol\",\r\n \"product\": \"aiscaler-traffic-manager-caching\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiscaler-traffic-manager-caching/Skus/byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"name\": \"byol\",\r\n \"product\": \"aiscaler-traffic-manager-caching\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-/ArtifactTypes/VMImage/Offers/aiscaler-traffic-manager-caching/Skus/byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "586" @@ -5301,7 +5404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "045ff2fe-c787-40c5-a8df-8a2a4d88daa9" + "dfa09bc5-2cb8-4061-85d3-15e70464e48e" ], "Cache-Control": [ "no-cache" @@ -5311,31 +5414,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13939" + "14830" ], "x-ms-correlation-request-id": [ - "dd24e732-1e37-461d-9343-3864da3ff311" + "01562d73-c2af-4f8a-9e3b-e4ae4904886b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212429Z:dd24e732-1e37-461d-9343-3864da3ff311" + "WESTUS:20150813T074559Z:01562d73-c2af-4f8a-9e3b-e4ae4904886b" ], "Date": [ - "Wed, 05 Aug 2015 21:24:28 GMT" + "Thu, 13 Aug 2015 07:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alachisoft/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxhY2hpc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alachisoft/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxhY2hpc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncache-opensource\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncache-opensource\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "254" @@ -5353,7 +5456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "503b62db-950e-49be-86e5-e881015582cf" + "6242eda6-56ee-490a-b85d-f05d489a4f5d" ], "Cache-Control": [ "no-cache" @@ -5363,31 +5466,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13938" + "14829" ], "x-ms-correlation-request-id": [ - "b662ff3a-c256-43f0-b1b1-2fcda062c231" + "119ce5ae-7eb5-4c22-af53-199fafada137" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212429Z:b662ff3a-c256-43f0-b1b1-2fcda062c231" + "WESTUS:20150813T074559Z:119ce5ae-7eb5-4c22-af53-199fafada137" ], "Date": [ - "Wed, 05 Aug 2015 21:24:28 GMT" + "Thu, 13 Aug 2015 07:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alachisoft/artifacttypes/vmimage/offers/ncache-opensource/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxhY2hpc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYWNoZS1vcGVuc291cmNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alachisoft/artifacttypes/vmimage/offers/ncache-opensource/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxhY2hpc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYWNoZS1vcGVuc291cmNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncache-opensource\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource/Skus/ncache-opensource\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncache-opensource\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource/Skus/ncache-opensource\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -5405,7 +5508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0b5597b-3f2e-49f5-aef0-37b3d35bb627" + "6fcc9242-6ff4-44fc-86e7-aa8fe4534a04" ], "Cache-Control": [ "no-cache" @@ -5415,31 +5518,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13937" + "14828" ], "x-ms-correlation-request-id": [ - "823dcb73-fedd-4b7d-b448-e49d3a0afd52" + "9586025a-1631-4d74-9e68-9b6d042f7ba4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212429Z:823dcb73-fedd-4b7d-b448-e49d3a0afd52" + "WESTUS:20150813T074600Z:9586025a-1631-4d74-9e68-9b6d042f7ba4" ], "Date": [ - "Wed, 05 Aug 2015 21:24:28 GMT" + "Thu, 13 Aug 2015 07:45:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alachisoft/artifacttypes/vmimage/offers/ncache-opensource/skus/ncache-opensource/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxhY2hpc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYWNoZS1vcGVuc291cmNlL3NrdXMvbmNhY2hlLW9wZW5zb3VyY2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alachisoft/artifacttypes/vmimage/offers/ncache-opensource/skus/ncache-opensource/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxhY2hpc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYWNoZS1vcGVuc291cmNlL3NrdXMvbmNhY2hlLW9wZW5zb3VyY2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource/Skus/ncache-opensource/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource/Skus/ncache-opensource/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -5457,7 +5560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "284e53ac-cf63-471c-bfd6-7552a944b1cc" + "57f9499a-227f-4e18-8e0e-9f17556d19b0" ], "Cache-Control": [ "no-cache" @@ -5467,31 +5570,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13936" + "14827" ], "x-ms-correlation-request-id": [ - "314a0297-e221-4f3e-b4fd-9b39f92306de" + "826d4033-10b9-4d28-89af-381d17a2e427" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212429Z:314a0297-e221-4f3e-b4fd-9b39f92306de" + "WESTUS:20150813T074600Z:826d4033-10b9-4d28-89af-381d17a2e427" ], "Date": [ - "Wed, 05 Aug 2015 21:24:28 GMT" + "Thu, 13 Aug 2015 07:45:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alachisoft/artifacttypes/vmimage/offers/ncache-opensource/skus/ncache-opensource/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxhY2hpc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYWNoZS1vcGVuc291cmNlL3NrdXMvbmNhY2hlLW9wZW5zb3VyY2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alachisoft/artifacttypes/vmimage/offers/ncache-opensource/skus/ncache-opensource/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxhY2hpc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYWNoZS1vcGVuc291cmNlL3NrdXMvbmNhY2hlLW9wZW5zb3VyY2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alachisoft\",\r\n \"name\": \"ncache-opensource\",\r\n \"product\": \"ncache-opensource\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource/Skus/ncache-opensource/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alachisoft\",\r\n \"name\": \"ncache-opensource\",\r\n \"product\": \"ncache-opensource\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource/Skus/ncache-opensource/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "512" @@ -5509,7 +5612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7456930-d89e-47a4-b11c-83d344567394" + "5916d1ad-8e80-4e73-8636-40e1b7466973" ], "Cache-Control": [ "no-cache" @@ -5519,31 +5622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13935" + "14826" ], "x-ms-correlation-request-id": [ - "6b16c860-42dd-467f-866e-1a0684231447" + "807113fd-5a12-4db4-a7eb-61927375a531" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212430Z:6b16c860-42dd-467f-866e-1a0684231447" + "WESTUS:20150813T074600Z:807113fd-5a12-4db4-a7eb-61927375a531" ], "Date": [ - "Wed, 05 Aug 2015 21:24:29 GMT" + "Thu, 13 Aug 2015 07:45:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alert-logic-tm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-tm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alert-logic-wsm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alert-logic-tm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-tm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alert-logic-wsm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "495" @@ -5561,7 +5664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5628a0a6-8cab-4414-8e92-5a10cdca5881" + "45bbbcc4-f19c-49e9-8ca9-29ce59b979de" ], "Cache-Control": [ "no-cache" @@ -5571,31 +5674,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13934" + "14825" ], "x-ms-correlation-request-id": [ - "443f1273-9a13-4347-b541-2daec6400f8e" + "ef26ea7c-b3ac-47e6-91b0-32f7abbef1b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212430Z:443f1273-9a13-4347-b541-2daec6400f8e" + "WESTUS:20150813T074600Z:ef26ea7c-b3ac-47e6-91b0-32f7abbef1b2" ], "Date": [ - "Wed, 05 Aug 2015 21:24:29 GMT" + "Thu, 13 Aug 2015 07:45:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-tm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXRtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-tm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXRtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20215000100-tmpbyol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-tm/Skus/20215000100-tmpbyol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20215000100-tmpbyol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-tm/Skus/20215000100-tmpbyol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "278" @@ -5613,7 +5716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de9ad8d7-3668-4daf-b8b5-a6c0ee6fe38b" + "c526daec-acab-419a-81de-fa715870ed9a" ], "Cache-Control": [ "no-cache" @@ -5623,31 +5726,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13933" + "14824" ], "x-ms-correlation-request-id": [ - "02664998-472d-4603-a0ca-5dfc00c25183" + "c0be43fc-f1e0-4f2e-a346-396a662c1110" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212430Z:02664998-472d-4603-a0ca-5dfc00c25183" + "WESTUS:20150813T074600Z:c0be43fc-f1e0-4f2e-a346-396a662c1110" ], "Date": [ - "Wed, 05 Aug 2015 21:24:29 GMT" + "Thu, 13 Aug 2015 07:45:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-tm/skus/20215000100-tmpbyol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXRtL3NrdXMvMjAyMTUwMDAxMDAtdG1wYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-tm/skus/20215000100-tmpbyol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXRtL3NrdXMvMjAyMTUwMDAxMDAtdG1wYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-tm/Skus/20215000100-tmpbyol/Versions/1.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-tm/Skus/20215000100-tmpbyol/Versions/1.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -5665,7 +5768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce026762-c544-4f0b-bc1f-1711708bada4" + "43ba6a1d-86c7-42db-ac6c-cda20b3d16c8" ], "Cache-Control": [ "no-cache" @@ -5675,31 +5778,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13932" + "14823" ], "x-ms-correlation-request-id": [ - "f3fd4e57-81eb-48c8-8559-f4bffd86b813" + "c59aae22-bdec-42e9-b891-e8df7922b581" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212430Z:f3fd4e57-81eb-48c8-8559-f4bffd86b813" + "WESTUS:20150813T074600Z:c59aae22-bdec-42e9-b891-e8df7922b581" ], "Date": [ - "Wed, 05 Aug 2015 21:24:29 GMT" + "Thu, 13 Aug 2015 07:45:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-tm/skus/20215000100-tmpbyol/versions/1.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXRtL3NrdXMvMjAyMTUwMDAxMDAtdG1wYnlvbC92ZXJzaW9ucy8xLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-tm/skus/20215000100-tmpbyol/versions/1.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXRtL3NrdXMvMjAyMTUwMDAxMDAtdG1wYnlvbC92ZXJzaW9ucy8xLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alertlogic\",\r\n \"name\": \"20215000100-tmpbyol\",\r\n \"product\": \"alert-logic-tm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-tm/Skus/20215000100-tmpbyol/Versions/1.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alertlogic\",\r\n \"name\": \"20215000100-tmpbyol\",\r\n \"product\": \"alert-logic-tm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-tm/Skus/20215000100-tmpbyol/Versions/1.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -5717,7 +5820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "419ea26e-1b53-49b7-a5b8-a616013b3f94" + "c01a93a0-797e-44a0-9923-7e7038e2cab1" ], "Cache-Control": [ "no-cache" @@ -5727,31 +5830,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13931" + "14822" ], "x-ms-correlation-request-id": [ - "93fc99ee-0ad2-4999-a714-8be7b1ddebe2" + "e058c8cd-dcfe-40a0-9860-54c2c06d7027" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212430Z:93fc99ee-0ad2-4999-a714-8be7b1ddebe2" + "WESTUS:20150813T074600Z:e058c8cd-dcfe-40a0-9860-54c2c06d7027" ], "Date": [ - "Wed, 05 Aug 2015 21:24:29 GMT" + "Thu, 13 Aug 2015 07:46:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-wsm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXdzbS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-wsm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXdzbS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20216000100-wsmpbyl\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm/Skus/20216000100-wsmpbyl\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20216000100-wsmpbyl\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm/Skus/20216000100-wsmpbyl\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -5769,7 +5872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c85a91b-cdb6-4841-b021-7add1d92bd14" + "cf1486c6-e4b1-4426-915a-d18fc6f889fe" ], "Cache-Control": [ "no-cache" @@ -5779,31 +5882,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13930" + "14821" ], "x-ms-correlation-request-id": [ - "8186c9f4-32d6-427c-8a76-bf38f5c4aa96" + "6ea3882f-bd75-4b69-a0ca-1df4715fd571" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212430Z:8186c9f4-32d6-427c-8a76-bf38f5c4aa96" + "WESTUS:20150813T074601Z:6ea3882f-bd75-4b69-a0ca-1df4715fd571" ], "Date": [ - "Wed, 05 Aug 2015 21:24:29 GMT" + "Thu, 13 Aug 2015 07:46:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-wsm/skus/20216000100-wsmpbyl/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXdzbS9za3VzLzIwMjE2MDAwMTAwLXdzbXBieWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-wsm/skus/20216000100-wsmpbyl/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXdzbS9za3VzLzIwMjE2MDAwMTAwLXdzbXBieWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm/Skus/20216000100-wsmpbyl/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm/Skus/20216000100-wsmpbyl/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -5821,7 +5924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "037abf66-a051-46db-8d2a-4634e4a0eeb9" + "356d2489-55db-4720-a022-d0b56c17af35" ], "Cache-Control": [ "no-cache" @@ -5831,31 +5934,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13929" + "14820" ], "x-ms-correlation-request-id": [ - "40501538-4d9f-44f0-bfba-731ed616c52e" + "9d8165ec-9488-4688-8986-6881430bf9a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212430Z:40501538-4d9f-44f0-bfba-731ed616c52e" + "WESTUS:20150813T074601Z:9d8165ec-9488-4688-8986-6881430bf9a2" ], "Date": [ - "Wed, 05 Aug 2015 21:24:29 GMT" + "Thu, 13 Aug 2015 07:46:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-wsm/skus/20216000100-wsmpbyl/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXdzbS9za3VzLzIwMjE2MDAwMTAwLXdzbXBieWwvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alertlogic/artifacttypes/vmimage/offers/alert-logic-wsm/skus/20216000100-wsmpbyl/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxlcnRsb2dpYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FsZXJ0LWxvZ2ljLXdzbS9za3VzLzIwMjE2MDAwMTAwLXdzbXBieWwvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alertlogic\",\r\n \"name\": \"20216000100-wsmpbyl\",\r\n \"product\": \"alert-logic-wsm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm/Skus/20216000100-wsmpbyl/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alertlogic\",\r\n \"name\": \"20216000100-wsmpbyl\",\r\n \"product\": \"alert-logic-wsm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm/Skus/20216000100-wsmpbyl/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "510" @@ -5873,7 +5976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43ed6b7d-ab9e-4eeb-82c7-8a1a0e51fb0b" + "ebe8c053-5b30-4747-9f05-754eacfe211c" ], "Cache-Control": [ "no-cache" @@ -5883,28 +5986,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13928" + "14819" ], "x-ms-correlation-request-id": [ - "8b51b48f-a33f-478b-8c7f-3c6b52d965f8" + "752d847f-b9d9-46d3-9759-246f45a4f284" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212431Z:8b51b48f-a33f-478b-8c7f-3c6b52d965f8" + "WESTUS:20150813T074601Z:752d847f-b9d9-46d3-9759-246f45a4f284" ], "Date": [ - "Wed, 05 Aug 2015 21:24:30 GMT" + "Thu, 13 Aug 2015 07:46:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/AlertLogic.Extension/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQWxlcnRMb2dpYy5FeHRlbnNpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/AlertLogic.Extension/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQWxlcnRMb2dpYy5FeHRlbnNpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -5925,7 +6028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf4a2b30-78b4-40db-884a-14939da2b3f0" + "b6ee6574-40b6-4e54-bc9e-25096ac5297b" ], "Cache-Control": [ "no-cache" @@ -5935,31 +6038,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13927" + "14818" ], "x-ms-correlation-request-id": [ - "fe883707-2dac-467a-8097-91298eae45ad" + "1ddf0fb7-305a-4480-94fc-0de37cb073f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212431Z:fe883707-2dac-467a-8097-91298eae45ad" + "WESTUS:20150813T074601Z:1ddf0fb7-305a-4480-94fc-0de37cb073f1" ], "Date": [ - "Wed, 05 Aug 2015 21:24:30 GMT" + "Thu, 13 Aug 2015 07:46:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-analytics-enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-analytics-enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "543" @@ -5977,7 +6080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "627b61a4-c678-4f3a-ba91-5449215a6b9c" + "26d4e51f-62bd-45c2-b559-d8e45234fdfa" ], "Cache-Control": [ "no-cache" @@ -5987,31 +6090,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13926" + "14817" ], "x-ms-correlation-request-id": [ - "cbd4defb-2ef2-489e-a393-2f926c25b9c2" + "7d915469-1d78-406b-b5d1-a86fe4e01cc3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212431Z:cbd4defb-2ef2-489e-a393-2f926c25b9c2" + "WESTUS:20150813T074601Z:7d915469-1d78-406b-b5d1-a86fe4e01cc3" ], "Date": [ - "Wed, 05 Aug 2015 21:24:30 GMT" + "Thu, 13 Aug 2015 07:46:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraixanalytics_std\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics/Skus/algebraixanalytics_std\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraixanalytics_std\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics/Skus/algebraixanalytics_std\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "293" @@ -6029,7 +6132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49c6e1f9-b97b-4a64-99d3-f86f0dd123e8" + "49844244-b797-4349-ac1a-10cb86f0e2b5" ], "Cache-Control": [ "no-cache" @@ -6039,31 +6142,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13925" + "14816" ], "x-ms-correlation-request-id": [ - "4ae85ddf-bfef-40d8-a2b5-52b2556e78fc" + "9e4dd044-deb9-4765-894a-f755587ff6df" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212431Z:4ae85ddf-bfef-40d8-a2b5-52b2556e78fc" + "WESTUS:20150813T074602Z:9e4dd044-deb9-4765-894a-f755587ff6df" ], "Date": [ - "Wed, 05 Aug 2015 21:24:30 GMT" + "Thu, 13 Aug 2015 07:46:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics/skus/algebraixanalytics_std/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzL3NrdXMvYWxnZWJyYWl4YW5hbHl0aWNzX3N0ZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics/skus/algebraixanalytics_std/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzL3NrdXMvYWxnZWJyYWl4YW5hbHl0aWNzX3N0ZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics/Skus/algebraixanalytics_std/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics/Skus/algebraixanalytics_std/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "291" @@ -6081,7 +6184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8bb49e24-0bb3-4509-ac26-b9d138c6101f" + "70f0dbaf-ff60-4c9f-adde-44c4a5854dbf" ], "Cache-Control": [ "no-cache" @@ -6091,31 +6194,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13924" + "14815" ], "x-ms-correlation-request-id": [ - "2ae29225-0174-440e-b928-1b412151ef49" + "8be21420-acef-4b59-8b22-4552df7c7f60" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212431Z:2ae29225-0174-440e-b928-1b412151ef49" + "WESTUS:20150813T074602Z:8be21420-acef-4b59-8b22-4552df7c7f60" ], "Date": [ - "Wed, 05 Aug 2015 21:24:30 GMT" + "Thu, 13 Aug 2015 07:46:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics/skus/algebraixanalytics_std/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzL3NrdXMvYWxnZWJyYWl4YW5hbHl0aWNzX3N0ZC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics/skus/algebraixanalytics_std/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzL3NrdXMvYWxnZWJyYWl4YW5hbHl0aWNzX3N0ZC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"algebraix-data\",\r\n \"name\": \"algebraixanalytics_std\",\r\n \"product\": \"algebraix-analytics\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics/Skus/algebraixanalytics_std/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"algebraix-data\",\r\n \"name\": \"algebraixanalytics_std\",\r\n \"product\": \"algebraix-analytics\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics/Skus/algebraixanalytics_std/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "687" @@ -6133,7 +6236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1931f063-321e-4fd3-b363-276bf3992bdd" + "333479ed-11ca-456d-9ff5-1fb9ddb253a0" ], "Cache-Control": [ "no-cache" @@ -6143,31 +6246,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13923" + "14814" ], "x-ms-correlation-request-id": [ - "6da113da-6130-4b0c-ae11-a2894994d2c9" + "238aca88-8483-481b-b9d6-d9126cc4b871" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212431Z:6da113da-6130-4b0c-ae11-a2894994d2c9" + "WESTUS:20150813T074602Z:238aca88-8483-481b-b9d6-d9126cc4b871" ], "Date": [ - "Wed, 05 Aug 2015 21:24:30 GMT" + "Thu, 13 Aug 2015 07:46:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics-enterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzLWVudGVycHJpc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics-enterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzLWVudGVycHJpc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraixanalytics_ent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise/Skus/algebraixanalytics_ent\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraixanalytics_ent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise/Skus/algebraixanalytics_ent\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "304" @@ -6185,7 +6288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03526960-40f4-4f6e-ab07-ecbdfbda6af3" + "db088679-51d1-4898-97b5-6bea56523de6" ], "Cache-Control": [ "no-cache" @@ -6195,31 +6298,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13922" + "14813" ], "x-ms-correlation-request-id": [ - "958c85d3-63fd-4b18-b614-be113fe49311" + "df9dec17-b1ec-4865-9fbb-71576a968089" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212431Z:958c85d3-63fd-4b18-b614-be113fe49311" + "WESTUS:20150813T074602Z:df9dec17-b1ec-4865-9fbb-71576a968089" ], "Date": [ - "Wed, 05 Aug 2015 21:24:30 GMT" + "Thu, 13 Aug 2015 07:46:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics-enterprise/skus/algebraixanalytics_ent/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzLWVudGVycHJpc2Uvc2t1cy9hbGdlYnJhaXhhbmFseXRpY3NfZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics-enterprise/skus/algebraixanalytics_ent/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzLWVudGVycHJpc2Uvc2t1cy9hbGdlYnJhaXhhbmFseXRpY3NfZW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise/Skus/algebraixanalytics_ent/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise/Skus/algebraixanalytics_ent/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "302" @@ -6237,7 +6340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ffc819d0-6cdb-43ce-a90a-60a50ec8ec06" + "b705173d-2fdb-459e-a13c-cd6dd68c32c5" ], "Cache-Control": [ "no-cache" @@ -6247,31 +6350,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13921" + "14812" ], "x-ms-correlation-request-id": [ - "6eebbf39-2fa0-43c0-93f3-09f319caacc0" + "d9ab2819-6137-499c-888b-0bd30005d1c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:6eebbf39-2fa0-43c0-93f3-09f319caacc0" + "WESTUS:20150813T074602Z:d9ab2819-6137-499c-888b-0bd30005d1c5" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics-enterprise/skus/algebraixanalytics_ent/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzLWVudGVycHJpc2Uvc2t1cy9hbGdlYnJhaXhhbmFseXRpY3NfZW50L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/algebraix-data/artifacttypes/vmimage/offers/algebraix-analytics-enterprise/skus/algebraixanalytics_ent/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxnZWJyYWl4LWRhdGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hbGdlYnJhaXgtYW5hbHl0aWNzLWVudGVycHJpc2Uvc2t1cy9hbGdlYnJhaXhhbmFseXRpY3NfZW50L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"algebraix-data\",\r\n \"name\": \"algebraixanalytics_ent\",\r\n \"product\": \"algebraix-analytics-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise/Skus/algebraixanalytics_ent/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"algebraix-data\",\r\n \"name\": \"algebraixanalytics_ent\",\r\n \"product\": \"algebraix-analytics-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise/Skus/algebraixanalytics_ent/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "709" @@ -6289,7 +6392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b6ca1b2-ad3a-4612-925b-4dc4a3e7ea06" + "f532fe50-c46f-469a-b0bb-498416811fb4" ], "Cache-Control": [ "no-cache" @@ -6299,31 +6402,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13920" + "14811" ], "x-ms-correlation-request-id": [ - "11145ca0-59d8-4bf1-86b6-20cf73742991" + "80266dc1-d336-4296-a826-ada02564b3c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:11145ca0-59d8-4bf1-86b6-20cf73742991" + "WESTUS:20150813T074603Z:80266dc1-d336-4296-a826-ada02564b3c8" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity-microsoft-media-services\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-microsoft-media-services\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity-uploader\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity-microsoft-media-services\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-microsoft-media-services\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity-uploader\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "593" @@ -6341,7 +6444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0500401a-0e4a-42a5-a9f2-cd7b318274f6" + "a5879177-731f-415d-9b0f-bb233236114f" ], "Cache-Control": [ "no-cache" @@ -6351,31 +6454,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13919" + "14810" ], "x-ms-correlation-request-id": [ - "ec7757ec-459a-4c01-b57e-652137b8ac2e" + "f6a64cc1-ff65-4996-af53-cb3f01df5183" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:ec7757ec-459a-4c01-b57e-652137b8ac2e" + "WESTUS:20150813T074603Z:f6a64cc1-ff65-4996-af53-cb3f01df5183" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-microsoft-media-services/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LW1pY3Jvc29mdC1tZWRpYS1zZXJ2aWNlcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-microsoft-media-services/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LW1pY3Jvc29mdC1tZWRpYS1zZXJ2aWNlcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brevity-uploader-with-microsoft-media-services\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-microsoft-media-services/Skus/brevity-uploader-with-microsoft-media-services\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brevity-uploader-with-microsoft-media-services\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-microsoft-media-services/Skus/brevity-uploader-with-microsoft-media-services\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "369" @@ -6393,7 +6496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7fb381c-fa7a-4555-bea8-da178f475a9b" + "1aae7000-281d-4a49-b1a2-d9c7993164d6" ], "Cache-Control": [ "no-cache" @@ -6403,31 +6506,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13918" + "14809" ], "x-ms-correlation-request-id": [ - "6e520e7a-b908-4283-b980-a3014f04363e" + "c99b4ee5-9f2b-45ce-8fc0-325ac10c5665" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:6e520e7a-b908-4283-b980-a3014f04363e" + "WESTUS:20150813T074603Z:c99b4ee5-9f2b-45ce-8fc0-325ac10c5665" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-microsoft-media-services/skus/brevity-uploader-with-microsoft-media-services/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LW1pY3Jvc29mdC1tZWRpYS1zZXJ2aWNlcy9za3VzL2JyZXZpdHktdXBsb2FkZXItd2l0aC1taWNyb3NvZnQtbWVkaWEtc2VydmljZXMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-microsoft-media-services/skus/brevity-uploader-with-microsoft-media-services/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LW1pY3Jvc29mdC1tZWRpYS1zZXJ2aWNlcy9za3VzL2JyZXZpdHktdXBsb2FkZXItd2l0aC1taWNyb3NvZnQtbWVkaWEtc2VydmljZXMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-microsoft-media-services/Skus/brevity-uploader-with-microsoft-media-services/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-microsoft-media-services/Skus/brevity-uploader-with-microsoft-media-services/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "343" @@ -6445,7 +6548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a74c5399-23e9-41e0-87e9-6b33dcd5bd81" + "694b52a8-2f0a-46e9-879e-91c50b70a270" ], "Cache-Control": [ "no-cache" @@ -6455,31 +6558,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13917" + "14808" ], "x-ms-correlation-request-id": [ - "468c453b-fd79-4ef6-a482-8c795c53242b" + "75f19cd5-b717-4568-b60f-f0763bedef0d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:468c453b-fd79-4ef6-a482-8c795c53242b" + "WESTUS:20150813T074603Z:75f19cd5-b717-4568-b60f-f0763bedef0d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-microsoft-media-services/skus/brevity-uploader-with-microsoft-media-services/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LW1pY3Jvc29mdC1tZWRpYS1zZXJ2aWNlcy9za3VzL2JyZXZpdHktdXBsb2FkZXItd2l0aC1taWNyb3NvZnQtbWVkaWEtc2VydmljZXMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-microsoft-media-services/skus/brevity-uploader-with-microsoft-media-services/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LW1pY3Jvc29mdC1tZWRpYS1zZXJ2aWNlcy9za3VzL2JyZXZpdHktdXBsb2FkZXItd2l0aC1taWNyb3NvZnQtbWVkaWEtc2VydmljZXMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alldigital-brevity\",\r\n \"name\": \"brevity-uploader-with-microsoft-media-services\",\r\n \"product\": \"alldigital-brevity-microsoft-media-services\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-microsoft-media-services/Skus/brevity-uploader-with-microsoft-media-services/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alldigital-brevity\",\r\n \"name\": \"brevity-uploader-with-microsoft-media-services\",\r\n \"product\": \"alldigital-brevity-microsoft-media-services\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-microsoft-media-services/Skus/brevity-uploader-with-microsoft-media-services/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "636" @@ -6497,7 +6600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9235a2cd-46db-4371-8f88-9748aa1982a8" + "5832a9c5-4ac3-40ee-a18f-e18cc99a3844" ], "Cache-Control": [ "no-cache" @@ -6507,31 +6610,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13916" + "14807" ], "x-ms-correlation-request-id": [ - "5f01447c-a78b-466e-b201-07cca7d79465" + "ef532764-d65c-498b-bd62-79bb7e3fca5e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:5f01447c-a78b-466e-b201-07cca7d79465" + "WESTUS:20150813T074603Z:ef532764-d65c-498b-bd62-79bb7e3fca5e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-uploader/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LXVwbG9hZGVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-uploader/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LXVwbG9hZGVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brevity-uploader\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader/Skus/brevity-uploader\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brevity-uploader\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader/Skus/brevity-uploader\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "293" @@ -6549,7 +6652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbc34260-8636-475d-a323-01c9917f042c" + "e1f0be3b-6766-447b-9ade-ac61b42bc90e" ], "Cache-Control": [ "no-cache" @@ -6559,31 +6662,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13915" + "14806" ], "x-ms-correlation-request-id": [ - "1f459743-3a89-4e75-acb3-dc20e57a519a" + "f2694538-189d-4aad-81a1-38a899dcb72b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:1f459743-3a89-4e75-acb3-dc20e57a519a" + "WESTUS:20150813T074603Z:f2694538-189d-4aad-81a1-38a899dcb72b" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-uploader/skus/brevity-uploader/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LXVwbG9hZGVyL3NrdXMvYnJldml0eS11cGxvYWRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-uploader/skus/brevity-uploader/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LXVwbG9hZGVyL3NrdXMvYnJldml0eS11cGxvYWRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader/Skus/brevity-uploader/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader/Skus/brevity-uploader/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "297" @@ -6601,7 +6704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9f69b9c-ea88-4469-815b-ef4384f17033" + "52c2d415-3403-47a8-91b4-6a449ffcb7e4" ], "Cache-Control": [ "no-cache" @@ -6611,31 +6714,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13914" + "14805" ], "x-ms-correlation-request-id": [ - "4c18a220-d869-4ea5-99ec-7a771807a46b" + "84336196-b96d-411b-86e0-eb0851b7b47b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:4c18a220-d869-4ea5-99ec-7a771807a46b" + "WESTUS:20150813T074604Z:84336196-b96d-411b-86e0-eb0851b7b47b" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-uploader/skus/brevity-uploader/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LXVwbG9hZGVyL3NrdXMvYnJldml0eS11cGxvYWRlci92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/alldigital-brevity/artifacttypes/vmimage/offers/alldigital-brevity-uploader/skus/brevity-uploader/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWxsZGlnaXRhbC1icmV2aXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWxsZGlnaXRhbC1icmV2aXR5LXVwbG9hZGVyL3NrdXMvYnJldml0eS11cGxvYWRlci92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alldigital-brevity\",\r\n \"name\": \"brevity-uploader\",\r\n \"product\": \"alldigital-brevity-uploader\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader/Skus/brevity-uploader/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"alldigital-brevity\",\r\n \"name\": \"brevity-uploader\",\r\n \"product\": \"alldigital-brevity-uploader\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader/Skus/brevity-uploader/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "544" @@ -6653,7 +6756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d9eb6ad-ee43-42a5-9fa1-5bf9320dd049" + "50204743-2cac-4a4c-aa4c-8dd2fc938296" ], "Cache-Control": [ "no-cache" @@ -6663,31 +6766,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13913" + "14804" ], "x-ms-correlation-request-id": [ - "cef20614-c9b1-474b-864d-a6dcc9f16b1d" + "6876a45d-51c3-482c-90bd-1fb058ae77a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212432Z:cef20614-c9b1-474b-864d-a6dcc9f16b1d" + "WESTUS:20150813T074604Z:6876a45d-51c3-482c-90bd-1fb058ae77a1" ], "Date": [ - "Wed, 05 Aug 2015 21:24:31 GMT" + "Thu, 13 Aug 2015 07:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/altiar/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWx0aWFyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/altiar/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWx0aWFyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ecm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar/ArtifactTypes/VMImage/Offers/ecm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ecm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar/ArtifactTypes/VMImage/Offers/ecm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "222" @@ -6705,7 +6808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9961a6fb-34db-4b1a-a68b-a4fd3bd4e56d" + "3d27272a-e32d-4daf-a9f9-f484206261ea" ], "Cache-Control": [ "no-cache" @@ -6715,31 +6818,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13912" + "14803" ], "x-ms-correlation-request-id": [ - "5aa7ff94-3b3e-411f-a866-b43014fb3d2d" + "3375bd40-d733-4cb0-8e8a-0396eb135de0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:5aa7ff94-3b3e-411f-a866-b43014fb3d2d" + "WESTUS:20150813T074604Z:3375bd40-d733-4cb0-8e8a-0396eb135de0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/altiar/artifacttypes/vmimage/offers/ecm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWx0aWFyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWNtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/altiar/artifacttypes/vmimage/offers/ecm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWx0aWFyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWNtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar/ArtifactTypes/VMImage/Offers/ecm/Skus/enterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar/ArtifactTypes/VMImage/Offers/ecm/Skus/enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "245" @@ -6757,7 +6860,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83672b17-5152-4084-894a-e70f97f0dd09" + "6ee00ff2-c182-4b6b-9a4d-7f57a8b1ce49" ], "Cache-Control": [ "no-cache" @@ -6767,31 +6870,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13911" + "14802" ], "x-ms-correlation-request-id": [ - "5c871648-de93-4767-a2b0-5b0bd44561ab" + "2eca3907-cc59-4b61-b78a-d12252a811be" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:5c871648-de93-4767-a2b0-5b0bd44561ab" + "WESTUS:20150813T074604Z:2eca3907-cc59-4b61-b78a-d12252a811be" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/altiar/artifacttypes/vmimage/offers/ecm/skus/enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWx0aWFyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWNtL3NrdXMvZW50ZXJwcmlzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/altiar/artifacttypes/vmimage/offers/ecm/skus/enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWx0aWFyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWNtL3NrdXMvZW50ZXJwcmlzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar/ArtifactTypes/VMImage/Offers/ecm/Skus/enterprise/Versions/3.6.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar/ArtifactTypes/VMImage/Offers/ecm/Skus/enterprise/Versions/3.8.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "255" @@ -6809,7 +6912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74e97754-cf47-4f62-9136-d95d8c382724" + "9cadac21-7e24-4719-b7c1-5edbf9026487" ], "Cache-Control": [ "no-cache" @@ -6819,31 +6922,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13910" + "14801" ], "x-ms-correlation-request-id": [ - "2305e8b4-350c-4042-9ddc-3e2429def1a2" + "e3638699-ec56-4d20-9ce1-6775602e948c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:2305e8b4-350c-4042-9ddc-3e2429def1a2" + "WESTUS:20150813T074604Z:e3638699-ec56-4d20-9ce1-6775602e948c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/altiar/artifacttypes/vmimage/offers/ecm/skus/enterprise/versions/3.6.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWx0aWFyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWNtL3NrdXMvZW50ZXJwcmlzZS92ZXJzaW9ucy8zLjYuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/altiar/artifacttypes/vmimage/offers/ecm/skus/enterprise/versions/3.8.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYWx0aWFyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWNtL3NrdXMvZW50ZXJwcmlzZS92ZXJzaW9ucy8zLjguND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"altiar\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"ecm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar/ArtifactTypes/VMImage/Offers/ecm/Skus/enterprise/Versions/3.6.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"altiar\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"ecm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar/ArtifactTypes/VMImage/Offers/ecm/Skus/enterprise/Versions/3.8.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ "462" @@ -6861,7 +6964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8fd2946-5a68-4741-9af2-1cbc4ca421a7" + "2c68fde6-1bd2-4e60-b5a0-6d435fd8957c" ], "Cache-Control": [ "no-cache" @@ -6871,34 +6974,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13909" + "14800" ], "x-ms-correlation-request-id": [ - "851627ff-d0ff-4a19-aeba-7c98ef4e584c" + "efabb92f-fbc6-4c6f-9a06-c01ec81f2b45" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:851627ff-d0ff-4a19-aeba-7c98ef4e584c" + "WESTUS:20150813T074604Z:efabb92f-fbc6-4c6f-9a06-c01ec81f2b45" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appcitoinc/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwY2l0b2luYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appcitoinc/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwY2l0b2luYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcito-pep-marketplace\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc/ArtifactTypes/VMImage/Offers/appcito-pep-marketplace\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6913,7 +7016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "123cf2df-08ed-4933-90b2-19fc48713979" + "f891b430-18ae-4c15-bceb-e88cd26669d6" ], "Cache-Control": [ "no-cache" @@ -6923,34 +7026,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13908" + "14799" ], "x-ms-correlation-request-id": [ - "a2b7155d-0b89-4ba8-b387-844b242662da" + "78d264f1-447f-46e5-9510-8821344aeaf2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:a2b7155d-0b89-4ba8-b387-844b242662da" + "WESTUS:20150813T074604Z:78d264f1-447f-46e5-9510-8821344aeaf2" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appex-networks/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwZXgtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appcitoinc/artifacttypes/vmimage/offers/appcito-pep-marketplace/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwY2l0b2luYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGNpdG8tcGVwLW1hcmtldHBsYWNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudexpress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apcto-pep-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc/ArtifactTypes/VMImage/Offers/appcito-pep-marketplace/Skus/apcto-pep-azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "248" + "279" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6965,7 +7068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2773641a-5f3c-4f0d-8aa2-95cf6f7b0544" + "a6629d46-7d1c-469e-abb8-b2c5a9d47791" ], "Cache-Control": [ "no-cache" @@ -6975,34 +7078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13907" + "14798" ], "x-ms-correlation-request-id": [ - "b148860f-18e0-4e3c-99c2-0ba9f69515c7" + "f3f2c702-9cf1-464c-adff-a8f56d248fa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:b148860f-18e0-4e3c-99c2-0ba9f69515c7" + "WESTUS:20150813T074605Z:f3f2c702-9cf1-464c-adff-a8f56d248fa5" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appex-networks/artifacttypes/vmimage/offers/cloudexpress/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwZXgtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbG91ZGV4cHJlc3Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appcitoinc/artifacttypes/vmimage/offers/appcito-pep-marketplace/skus/apcto-pep-azure/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwY2l0b2luYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGNpdG8tcGVwLW1hcmtldHBsYWNlL3NrdXMvYXBjdG8tcGVwLWF6dXJlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress/Skus/standard-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc/ArtifactTypes/VMImage/Offers/appcito-pep-marketplace/Skus/apcto-pep-azure/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "268" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7017,7 +7120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f4d3972-e593-4380-b234-a80a92a5e143" + "1bea0a79-14d6-4e5a-a51f-874eab3b4a9e" ], "Cache-Control": [ "no-cache" @@ -7027,34 +7130,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13906" + "14797" ], "x-ms-correlation-request-id": [ - "e379c185-3b44-45d7-8214-9a2fc869628c" + "55075dea-3407-473f-bce9-141e8e49e096" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:e379c185-3b44-45d7-8214-9a2fc869628c" + "WESTUS:20150813T074605Z:55075dea-3407-473f-bce9-141e8e49e096" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appex-networks/artifacttypes/vmimage/offers/cloudexpress/skus/standard-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwZXgtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbG91ZGV4cHJlc3Mvc2t1cy9zdGFuZGFyZC1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appcitoinc/artifacttypes/vmimage/offers/appcito-pep-marketplace/skus/apcto-pep-azure/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwY2l0b2luYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGNpdG8tcGVwLW1hcmtldHBsYWNlL3NrdXMvYXBjdG8tcGVwLWF6dXJlL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress/Skus/standard-byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appcitoinc\",\r\n \"name\": \"apcto-pep-azure\",\r\n \"product\": \"appcito-pep-marketplace\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc/ArtifactTypes/VMImage/Offers/appcito-pep-marketplace/Skus/apcto-pep-azure/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "275" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7069,7 +7172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "272c8d7d-0ab1-4e69-a619-d4a6a8573b4f" + "863efc11-984f-42ba-9427-3137cbb20ff4" ], "Cache-Control": [ "no-cache" @@ -7079,34 +7182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13905" + "14796" ], "x-ms-correlation-request-id": [ - "9f2ba42a-61f5-4691-b5d1-0738a751ed21" + "904d421a-ef8f-4ad6-812d-adf6088d73fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:9f2ba42a-61f5-4691-b5d1-0738a751ed21" + "WESTUS:20150813T074605Z:904d421a-ef8f-4ad6-812d-adf6088d73fe" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appex-networks/artifacttypes/vmimage/offers/cloudexpress/skus/standard-byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwZXgtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbG91ZGV4cHJlc3Mvc2t1cy9zdGFuZGFyZC1ieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appex-networks/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwZXgtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appex-networks\",\r\n \"name\": \"standard-byol\",\r\n \"product\": \"cloudexpress\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress/Skus/standard-byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudexpress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "500" + "248" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7121,7 +7224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92427d8b-2bdf-4201-9137-08f669a14432" + "9d17257c-c465-4fe5-8d99-a1a2b026f132" ], "Cache-Control": [ "no-cache" @@ -7131,34 +7234,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13904" + "14795" ], "x-ms-correlation-request-id": [ - "17b6bd10-6718-453c-8bb1-0d122bc4832f" + "5d9a56a5-6504-46ec-bdf3-e3bdc6876d41" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212433Z:17b6bd10-6718-453c-8bb1-0d122bc4832f" + "WESTUS:20150813T074605Z:5d9a56a5-6504-46ec-bdf3-e3bdc6876d41" ], "Date": [ - "Wed, 05 Aug 2015 21:24:32 GMT" + "Thu, 13 Aug 2015 07:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appistry/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwaXN0cnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appex-networks/artifacttypes/vmimage/offers/cloudexpress/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwZXgtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbG91ZGV4cHJlc3Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"genomepilot\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry/ArtifactTypes/VMImage/Offers/genomepilot\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress/Skus/standard-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "240" + "268" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7173,7 +7276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff0573a4-6179-45fd-8711-226d48c7752c" + "7bd52a50-bd9c-40d9-a64e-d5fd5d26d637" ], "Cache-Control": [ "no-cache" @@ -7183,34 +7286,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13903" + "14794" ], "x-ms-correlation-request-id": [ - "f2ba9758-9e1f-44cf-bfff-b64d0d88fa5c" + "da98d522-143f-49cf-94ba-4fa4bf8ba4f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:f2ba9758-9e1f-44cf-bfff-b64d0d88fa5c" + "WESTUS:20150813T074605Z:da98d522-143f-49cf-94ba-4fa4bf8ba4f8" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appistry/artifacttypes/vmimage/offers/genomepilot/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwaXN0cnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9nZW5vbWVwaWxvdC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appex-networks/artifacttypes/vmimage/offers/cloudexpress/skus/standard-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwZXgtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbG91ZGV4cHJlc3Mvc2t1cy9zdGFuZGFyZC1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"onebox-genome-pilot\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry/ArtifactTypes/VMImage/Offers/genomepilot/Skus/onebox-genome-pilot\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress/Skus/standard-byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "273" + "275" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7225,7 +7328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "032100e6-bffc-4f45-8f9a-7eb125c84261" + "bf6cb3ed-de7c-401a-81fa-a99a6fd47c7a" ], "Cache-Control": [ "no-cache" @@ -7235,34 +7338,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13902" + "14793" ], "x-ms-correlation-request-id": [ - "9415c55d-c0ea-4457-b240-ac271c1a81ad" + "a153e739-3e9f-43a0-8939-1870ec546a89" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:9415c55d-c0ea-4457-b240-ac271c1a81ad" + "WESTUS:20150813T074605Z:a153e739-3e9f-43a0-8939-1870ec546a89" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appistry/artifacttypes/vmimage/offers/genomepilot/skus/onebox-genome-pilot/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwaXN0cnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9nZW5vbWVwaWxvdC9za3VzL29uZWJveC1nZW5vbWUtcGlsb3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appex-networks/artifacttypes/vmimage/offers/cloudexpress/skus/standard-byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwZXgtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbG91ZGV4cHJlc3Mvc2t1cy9zdGFuZGFyZC1ieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry/ArtifactTypes/VMImage/Offers/genomepilot/Skus/onebox-genome-pilot/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appex-networks\",\r\n \"name\": \"standard-byol\",\r\n \"product\": \"cloudexpress\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress/Skus/standard-byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "274" + "500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7277,7 +7380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d47f09a1-bb56-4a8c-892a-1de721a6dd5f" + "3539215a-6e79-432b-99c2-552ed5914820" ], "Cache-Control": [ "no-cache" @@ -7287,34 +7390,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13901" + "14792" ], "x-ms-correlation-request-id": [ - "5d255746-e8e9-4084-ada2-23d65badeae2" + "2a78b865-a86d-435b-8a99-d16539841f74" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:5d255746-e8e9-4084-ada2-23d65badeae2" + "WESTUS:20150813T074605Z:2a78b865-a86d-435b-8a99-d16539841f74" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appistry/artifacttypes/vmimage/offers/genomepilot/skus/onebox-genome-pilot/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwaXN0cnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9nZW5vbWVwaWxvdC9za3VzL29uZWJveC1nZW5vbWUtcGlsb3QvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appistry/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwaXN0cnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appistry\",\r\n \"name\": \"onebox-genome-pilot\",\r\n \"product\": \"genomepilot\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry/ArtifactTypes/VMImage/Offers/genomepilot/Skus/onebox-genome-pilot/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"genomepilot\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry/ArtifactTypes/VMImage/Offers/genomepilot\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "614" + "240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7329,7 +7432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2acaeda1-bc6c-444a-957b-7426d540235b" + "a968e79f-c95e-4f03-84d9-15fb331a445f" ], "Cache-Control": [ "no-cache" @@ -7339,34 +7442,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13900" + "14791" ], "x-ms-correlation-request-id": [ - "6e6981be-8ac2-43c8-bc3d-2284ae10d28a" + "2b3cf29d-b3df-4c8b-9e01-10ba79c84116" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:6e6981be-8ac2-43c8-bc3d-2284ae10d28a" + "WESTUS:20150813T074606Z:2b3cf29d-b3df-4c8b-9e01-10ba79c84116" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/apprenda/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwcmVuZGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appistry/artifacttypes/vmimage/offers/genomepilot/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwaXN0cnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9nZW5vbWVwaWxvdC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda/ArtifactTypes/VMImage/Offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"onebox-genome-pilot\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry/ArtifactTypes/VMImage/Offers/genomepilot/Skus/onebox-genome-pilot\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "312" + "273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7381,7 +7484,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7de03894-5dae-4d35-b049-980528567d47" + "92b3d448-111e-4d1a-ab34-eb0c9f017978" ], "Cache-Control": [ "no-cache" @@ -7391,34 +7494,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13899" + "14790" ], "x-ms-correlation-request-id": [ - "7b403be5-ad75-4e64-ade1-751e6723ad7c" + "a8d7257e-f882-4d2c-bb93-b311c45f799e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:7b403be5-ad75-4e64-ade1-751e6723ad7c" + "WESTUS:20150813T074606Z:a8d7257e-f882-4d2c-bb93-b311c45f799e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/apprenda/artifacttypes/vmimage/offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwcmVuZGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW4yazEycjJfZGNlbnRlcl9hcHByZW5kYV81XzVfZXhwX3NxbF8yMDEyX2V4cC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appistry/artifacttypes/vmimage/offers/genomepilot/skus/onebox-genome-pilot/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwaXN0cnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9nZW5vbWVwaWxvdC9za3VzL29uZWJveC1nZW5vbWUtcGlsb3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda_paas_5-5_express\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda/ArtifactTypes/VMImage/Offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/Skus/apprenda_paas_5-5_express\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry/ArtifactTypes/VMImage/Offers/genomepilot/Skus/onebox-genome-pilot/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "321" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7433,7 +7536,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a909e0d-2bbc-4a3d-b9a4-905985356764" + "3df6ce78-6de5-4a1b-bfb5-b112e26b7428" ], "Cache-Control": [ "no-cache" @@ -7443,34 +7546,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13898" + "14789" ], "x-ms-correlation-request-id": [ - "ad3d0041-1b31-491f-9fbb-b1f209d3d195" + "5fe6c973-0762-433f-b6e3-d711ce1bac51" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:ad3d0041-1b31-491f-9fbb-b1f209d3d195" + "WESTUS:20150813T074606Z:5fe6c973-0762-433f-b6e3-d711ce1bac51" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/apprenda/artifacttypes/vmimage/offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/skus/apprenda_paas_5-5_express/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwcmVuZGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW4yazEycjJfZGNlbnRlcl9hcHByZW5kYV81XzVfZXhwX3NxbF8yMDEyX2V4cC9za3VzL2FwcHJlbmRhX3BhYXNfNS01X2V4cHJlc3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appistry/artifacttypes/vmimage/offers/genomepilot/skus/onebox-genome-pilot/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwaXN0cnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9nZW5vbWVwaWxvdC9za3VzL29uZWJveC1nZW5vbWUtcGlsb3QvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda/ArtifactTypes/VMImage/Offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/Skus/apprenda_paas_5-5_express/Versions/5.5.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appistry\",\r\n \"name\": \"onebox-genome-pilot\",\r\n \"product\": \"genomepilot\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry/ArtifactTypes/VMImage/Offers/genomepilot/Skus/onebox-genome-pilot/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "316" + "614" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7485,7 +7588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "091817bf-b3cd-42e6-b8cf-582c586b2767" + "fca46a63-65d3-4895-9886-2611bcbaa2ac" ], "Cache-Control": [ "no-cache" @@ -7495,34 +7598,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13897" + "14788" ], "x-ms-correlation-request-id": [ - "4f0ca6ee-8590-4438-82bc-eabd2e63cc6e" + "fabd8dad-27e4-4b21-b1d3-119f4fadbbb4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:4f0ca6ee-8590-4438-82bc-eabd2e63cc6e" + "WESTUS:20150813T074606Z:fabd8dad-27e4-4b21-b1d3-119f4fadbbb4" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/apprenda/artifacttypes/vmimage/offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/skus/apprenda_paas_5-5_express/versions/5.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwcmVuZGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW4yazEycjJfZGNlbnRlcl9hcHByZW5kYV81XzVfZXhwX3NxbF8yMDEyX2V4cC9za3VzL2FwcHJlbmRhX3BhYXNfNS01X2V4cHJlc3MvdmVyc2lvbnMvNS41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/apprenda/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwcmVuZGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"apprenda\",\r\n \"name\": \"apprenda_paas_5-5_express\",\r\n \"product\": \"win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda/ArtifactTypes/VMImage/Offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/Skus/apprenda_paas_5-5_express/Versions/5.5.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda/ArtifactTypes/VMImage/Offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "584" + "312" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7537,7 +7640,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e38013f8-435d-4495-8960-c656ba60360d" + "0e1bf5ee-4f0f-420e-b39c-44269bc72fa4" ], "Cache-Control": [ "no-cache" @@ -7547,34 +7650,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13896" + "14787" ], "x-ms-correlation-request-id": [ - "5e39f42d-f002-4d35-aecd-a8a4d51406cd" + "4ce8244b-c638-4e18-af03-8b246ebfe65f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:5e39f42d-f002-4d35-aecd-a8a4d51406cd" + "WESTUS:20150813T074606Z:4ce8244b-c638-4e18-af03-8b246ebfe65f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appveyorci/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwdmV5b3JjaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/apprenda/artifacttypes/vmimage/offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwcmVuZGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW4yazEycjJfZGNlbnRlcl9hcHByZW5kYV81XzVfZXhwX3NxbF8yMDEyX2V4cC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyor-ci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci/ArtifactTypes/VMImage/Offers/appveyor-ci\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda_paas_5-5_express\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda/ArtifactTypes/VMImage/Offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/Skus/apprenda_paas_5-5_express\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "242" + "321" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7589,7 +7692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c215003-927a-4620-a7f4-4cb76b3c1f38" + "016c198b-fa09-488e-9732-a01530167549" ], "Cache-Control": [ "no-cache" @@ -7599,34 +7702,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13895" + "14786" ], "x-ms-correlation-request-id": [ - "0600bc1a-2fad-4b52-aa42-ec986cab3aed" + "ceaff80a-5502-4827-8426-c2d70933abaa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212434Z:0600bc1a-2fad-4b52-aa42-ec986cab3aed" + "WESTUS:20150813T074606Z:ceaff80a-5502-4827-8426-c2d70933abaa" ], "Date": [ - "Wed, 05 Aug 2015 21:24:33 GMT" + "Thu, 13 Aug 2015 07:46:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appveyorci/artifacttypes/vmimage/offers/appveyor-ci/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwdmV5b3JjaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHZleW9yLWNpL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/apprenda/artifacttypes/vmimage/offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/skus/apprenda_paas_5-5_express/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwcmVuZGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW4yazEycjJfZGNlbnRlcl9hcHByZW5kYV81XzVfZXhwX3NxbF8yMDEyX2V4cC9za3VzL2FwcHJlbmRhX3BhYXNfNS01X2V4cHJlc3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"express\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci/ArtifactTypes/VMImage/Offers/appveyor-ci/Skus/express\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda/ArtifactTypes/VMImage/Offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/Skus/apprenda_paas_5-5_express/Versions/5.5.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "251" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7641,7 +7744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d689440-e5a3-4980-a503-93ca0a46b0e1" + "4ecb067d-1be5-4ab6-9b46-1a29c929df64" ], "Cache-Control": [ "no-cache" @@ -7651,34 +7754,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13894" + "14785" ], "x-ms-correlation-request-id": [ - "29737519-8481-4eb3-b646-fe5d544c55e8" + "41991b3c-3672-48d7-9507-6696947230dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212435Z:29737519-8481-4eb3-b646-fe5d544c55e8" + "WESTUS:20150813T074606Z:41991b3c-3672-48d7-9507-6696947230dc" ], "Date": [ - "Wed, 05 Aug 2015 21:24:35 GMT" + "Thu, 13 Aug 2015 07:46:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appveyorci/artifacttypes/vmimage/offers/appveyor-ci/skus/express/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwdmV5b3JjaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHZleW9yLWNpL3NrdXMvZXhwcmVzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/apprenda/artifacttypes/vmimage/offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/skus/apprenda_paas_5-5_express/versions/5.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwcmVuZGEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93aW4yazEycjJfZGNlbnRlcl9hcHByZW5kYV81XzVfZXhwX3NxbF8yMDEyX2V4cC9za3VzL2FwcHJlbmRhX3BhYXNfNS01X2V4cHJlc3MvdmVyc2lvbnMvNS41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci/ArtifactTypes/VMImage/Offers/appveyor-ci/Skus/express/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"apprenda\",\r\n \"name\": \"apprenda_paas_5-5_express\",\r\n \"product\": \"win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda/ArtifactTypes/VMImage/Offers/win2k12r2_dcenter_apprenda_5_5_exp_sql_2012_exp/Skus/apprenda_paas_5-5_express/Versions/5.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "264" + "584" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7693,7 +7796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2585c3cf-8369-43d6-b55d-4b7b1de73daa" + "947d5be9-6a38-41dd-acc4-47243bb6bead" ], "Cache-Control": [ "no-cache" @@ -7703,34 +7806,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13893" + "14784" ], "x-ms-correlation-request-id": [ - "60f317af-1042-4942-a903-8b3fec88cf64" + "578a4884-099e-4517-9f63-b78d79764b57" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212435Z:60f317af-1042-4942-a903-8b3fec88cf64" + "WESTUS:20150813T074607Z:578a4884-099e-4517-9f63-b78d79764b57" ], "Date": [ - "Wed, 05 Aug 2015 21:24:35 GMT" + "Thu, 13 Aug 2015 07:46:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appveyorci/artifacttypes/vmimage/offers/appveyor-ci/skus/express/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwdmV5b3JjaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHZleW9yLWNpL3NrdXMvZXhwcmVzcy92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appveyorci/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwdmV5b3JjaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appveyorci\",\r\n \"name\": \"express\",\r\n \"product\": \"appveyor-ci\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci/ArtifactTypes/VMImage/Offers/appveyor-ci/Skus/express/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyor-ci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci/ArtifactTypes/VMImage/Offers/appveyor-ci\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "480" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7745,7 +7848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af8da761-605a-4b8f-84fb-eb725a3e1104" + "6225ff41-5d4f-4391-8c51-4fd7dbd0928b" ], "Cache-Control": [ "no-cache" @@ -7755,31 +7858,187 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13892" + "14783" ], "x-ms-correlation-request-id": [ - "7cc45d9b-8654-4844-9655-25323d8bc696" + "4c84866f-abdc-4e77-b655-32d434574e12" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212435Z:7cc45d9b-8654-4844-9655-25323d8bc696" + "WESTUS:20150813T074607Z:4c84866f-abdc-4e77-b655-32d434574e12" ], "Date": [ - "Wed, 05 Aug 2015 21:24:35 GMT" + "Thu, 13 Aug 2015 07:46:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appzero/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwemVyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appveyorci/artifacttypes/vmimage/offers/appveyor-ci/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwdmV5b3JjaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHZleW9yLWNpL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero/ArtifactTypes/VMImage/Offers/appzero\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"express\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci/ArtifactTypes/VMImage/Offers/appveyor-ci/Skus/express\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "251" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c16f579-02d1-41f5-87a4-535c096f0d68" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-correlation-request-id": [ + "e2d13ea2-d935-4bf1-a003-21286fa1972c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074607Z:e2d13ea2-d935-4bf1-a003-21286fa1972c" + ], + "Date": [ + "Thu, 13 Aug 2015 07:46:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appveyorci/artifacttypes/vmimage/offers/appveyor-ci/skus/express/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwdmV5b3JjaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHZleW9yLWNpL3NrdXMvZXhwcmVzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci/ArtifactTypes/VMImage/Offers/appveyor-ci/Skus/express/Versions/1.0.1\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a5c5660-73e3-431c-a0a8-54a76a4ae2e4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "81be0ad3-c3ad-411a-83f4-bce6baaa1c5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074607Z:81be0ad3-c3ad-411a-83f4-bce6baaa1c5b" + ], + "Date": [ + "Thu, 13 Aug 2015 07:46:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appveyorci/artifacttypes/vmimage/offers/appveyor-ci/skus/express/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwdmV5b3JjaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHZleW9yLWNpL3NrdXMvZXhwcmVzcy92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appveyorci\",\r\n \"name\": \"express\",\r\n \"product\": \"appveyor-ci\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci/ArtifactTypes/VMImage/Offers/appveyor-ci/Skus/express/Versions/1.0.1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cfc6f0d8-2072-462e-b0fb-01136b9b33bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-correlation-request-id": [ + "a3139b7b-79ae-48b4-a6ad-701f427f966d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074607Z:a3139b7b-79ae-48b4-a6ad-701f427f966d" + ], + "Date": [ + "Thu, 13 Aug 2015 07:46:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appzero/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwemVyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero/ArtifactTypes/VMImage/Offers/appzero\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "231" @@ -7797,7 +8056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f683762-9819-478b-8ac7-61636e923ea4" + "ca5f9dc5-3a77-4012-891b-81c829dfb137" ], "Cache-Control": [ "no-cache" @@ -7807,31 +8066,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13891" + "14779" ], "x-ms-correlation-request-id": [ - "27e719b0-7b48-44f3-a206-e6f04b884f9f" + "fd4863bf-824f-4e1b-8a3c-9f631c7657fa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212435Z:27e719b0-7b48-44f3-a206-e6f04b884f9f" + "WESTUS:20150813T074608Z:fd4863bf-824f-4e1b-8a3c-9f631c7657fa" ], "Date": [ - "Wed, 05 Aug 2015 21:24:35 GMT" + "Thu, 13 Aug 2015 07:46:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appzero/artifacttypes/vmimage/offers/appzero/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwemVyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHplcm8vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appzero/artifacttypes/vmimage/offers/appzero/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwemVyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHplcm8vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero/ArtifactTypes/VMImage/Offers/appzero/Skus/appzero\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero/ArtifactTypes/VMImage/Offers/appzero/Skus/appzero\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "244" @@ -7849,7 +8108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "570e191b-f958-4d8d-b2f5-ff548fd9f4aa" + "2526d1cf-ec96-476b-b06f-dace7c032f37" ], "Cache-Control": [ "no-cache" @@ -7859,31 +8118,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13890" + "14778" ], "x-ms-correlation-request-id": [ - "e8a45c35-73a6-484f-b7ad-dfde5760f48a" + "06ad7f30-e921-46e9-ba5e-84b31b2ece94" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212435Z:e8a45c35-73a6-484f-b7ad-dfde5760f48a" + "WESTUS:20150813T074608Z:06ad7f30-e921-46e9-ba5e-84b31b2ece94" ], "Date": [ - "Wed, 05 Aug 2015 21:24:35 GMT" + "Thu, 13 Aug 2015 07:46:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appzero/artifacttypes/vmimage/offers/appzero/skus/appzero/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwemVyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHplcm8vc2t1cy9hcHB6ZXJvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appzero/artifacttypes/vmimage/offers/appzero/skus/appzero/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwemVyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHplcm8vc2t1cy9hcHB6ZXJvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero/ArtifactTypes/VMImage/Offers/appzero/Skus/appzero/Versions/6.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero/ArtifactTypes/VMImage/Offers/appzero/Skus/appzero/Versions/6.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -7901,7 +8160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2330612-55a6-4579-88bb-04cc78b17903" + "9a7d339c-7189-411c-b6d8-8aa821704455" ], "Cache-Control": [ "no-cache" @@ -7911,31 +8170,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13889" + "14777" ], "x-ms-correlation-request-id": [ - "95738f14-d479-4663-aadc-d389c3c4530c" + "db0fa528-5a09-4300-91b0-f4d79f2d02bc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212435Z:95738f14-d479-4663-aadc-d389c3c4530c" + "WESTUS:20150813T074608Z:db0fa528-5a09-4300-91b0-f4d79f2d02bc" ], "Date": [ - "Wed, 05 Aug 2015 21:24:35 GMT" + "Thu, 13 Aug 2015 07:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/appzero/artifacttypes/vmimage/offers/appzero/skus/appzero/versions/6.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwemVyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHplcm8vc2t1cy9hcHB6ZXJvL3ZlcnNpb25zLzYuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/appzero/artifacttypes/vmimage/offers/appzero/skus/appzero/versions/6.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXBwemVyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcHplcm8vc2t1cy9hcHB6ZXJvL3ZlcnNpb25zLzYuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appzero\",\r\n \"name\": \"appzero\",\r\n \"product\": \"appzero\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero/ArtifactTypes/VMImage/Offers/appzero/Skus/appzero/Versions/6.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"appzero\",\r\n \"name\": \"appzero\",\r\n \"product\": \"appzero\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero/ArtifactTypes/VMImage/Offers/appzero/Skus/appzero/Versions/6.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "466" @@ -7953,7 +8212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ecf9a16-f183-4d85-b1d3-37298bc35942" + "d1db0a4a-ded7-4edb-8eaf-9a3936490fb5" ], "Cache-Control": [ "no-cache" @@ -7963,31 +8222,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13888" + "14776" ], "x-ms-correlation-request-id": [ - "fc8ba315-036c-4bfd-a16e-6ac4f040fea8" + "19ccf42c-a198-4105-bd24-8625408f212e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212435Z:fc8ba315-036c-4bfd-a16e-6ac4f040fea8" + "WESTUS:20150813T074608Z:19ccf42c-a198-4105-bd24-8625408f212e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:35 GMT" + "Thu, 13 Aug 2015 07:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/arangodb/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhbmdvZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/arangodb/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhbmdvZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb/ArtifactTypes/VMImage/Offers/arangodb\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb/ArtifactTypes/VMImage/Offers/arangodb\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "234" @@ -8005,7 +8264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13ffbec8-331a-4b35-9b93-72d4e579b00a" + "6a6511bc-2290-4ee1-b39f-8beb658d89e0" ], "Cache-Control": [ "no-cache" @@ -8015,31 +8274,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13887" + "14775" ], "x-ms-correlation-request-id": [ - "d646ba7a-bebb-4f62-a8a0-cfd430e80d54" + "c29ee753-0788-448a-b36e-19bfd2e7d9cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212436Z:d646ba7a-bebb-4f62-a8a0-cfd430e80d54" + "WESTUS:20150813T074608Z:c29ee753-0788-448a-b36e-19bfd2e7d9cd" ], "Date": [ - "Wed, 05 Aug 2015 21:24:35 GMT" + "Thu, 13 Aug 2015 07:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/arangodb/artifacttypes/vmimage/offers/arangodb/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhbmdvZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcmFuZ29kYi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/arangodb/artifacttypes/vmimage/offers/arangodb/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhbmdvZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcmFuZ29kYi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb254\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb/ArtifactTypes/VMImage/Offers/arangodb/Skus/arangodb254\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb254\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb/ArtifactTypes/VMImage/Offers/arangodb/Skus/arangodb254\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "254" @@ -8057,7 +8316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc2bf54c-8ad2-40d9-b9fe-d2508f1c1d42" + "fbea898b-3f12-4dee-9524-3e3fb6e50710" ], "Cache-Control": [ "no-cache" @@ -8067,31 +8326,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13886" + "14774" ], "x-ms-correlation-request-id": [ - "891f2735-5b84-4225-b59f-112dfdb19966" + "22a9cd7f-9d83-4062-b43c-9799de414522" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212436Z:891f2735-5b84-4225-b59f-112dfdb19966" + "WESTUS:20150813T074608Z:22a9cd7f-9d83-4062-b43c-9799de414522" ], "Date": [ - "Wed, 05 Aug 2015 21:24:36 GMT" + "Thu, 13 Aug 2015 07:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/arangodb/artifacttypes/vmimage/offers/arangodb/skus/arangodb254/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhbmdvZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcmFuZ29kYi9za3VzL2FyYW5nb2RiMjU0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/arangodb/artifacttypes/vmimage/offers/arangodb/skus/arangodb254/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhbmdvZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcmFuZ29kYi9za3VzL2FyYW5nb2RiMjU0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.5.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb/ArtifactTypes/VMImage/Offers/arangodb/Skus/arangodb254/Versions/2.5.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.5.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb/ArtifactTypes/VMImage/Offers/arangodb/Skus/arangodb254/Versions/2.5.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "263" @@ -8109,7 +8368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13c1e6dd-5714-497f-92c4-088638c0eaa6" + "b1b1b3cf-e077-45ff-8cef-224cb68ceb60" ], "Cache-Control": [ "no-cache" @@ -8119,31 +8378,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13885" + "14773" ], "x-ms-correlation-request-id": [ - "f5abbe3a-bdb1-4b00-a454-1b4aa44c5751" + "bb3fab4f-c527-40fc-9869-74f6c4e00d84" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212436Z:f5abbe3a-bdb1-4b00-a454-1b4aa44c5751" + "WESTUS:20150813T074608Z:bb3fab4f-c527-40fc-9869-74f6c4e00d84" ], "Date": [ - "Wed, 05 Aug 2015 21:24:36 GMT" + "Thu, 13 Aug 2015 07:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/arangodb/artifacttypes/vmimage/offers/arangodb/skus/arangodb254/versions/2.5.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhbmdvZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcmFuZ29kYi9za3VzL2FyYW5nb2RiMjU0L3ZlcnNpb25zLzIuNS40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/arangodb/artifacttypes/vmimage/offers/arangodb/skus/arangodb254/versions/2.5.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhbmdvZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcmFuZ29kYi9za3VzL2FyYW5nb2RiMjU0L3ZlcnNpb25zLzIuNS40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"arangodb\",\r\n \"name\": \"arangodb254\",\r\n \"product\": \"arangodb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.5.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb/ArtifactTypes/VMImage/Offers/arangodb/Skus/arangodb254/Versions/2.5.4\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"arangodb\",\r\n \"name\": \"arangodb254\",\r\n \"product\": \"arangodb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.5.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb/ArtifactTypes/VMImage/Offers/arangodb/Skus/arangodb254/Versions/2.5.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ "476" @@ -8161,7 +8420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08a011f4-32fe-43e1-aac1-4c98030682bc" + "89826bd2-f810-4832-88ff-6fd5f3c59bd0" ], "Cache-Control": [ "no-cache" @@ -8171,31 +8430,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13884" + "14772" ], "x-ms-correlation-request-id": [ - "5749d10f-d0cb-4bf7-9d4e-2d5fd13b8343" + "9f5fc212-7f2a-4fac-bca2-5e90e63d82a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212436Z:5749d10f-d0cb-4bf7-9d4e-2d5fd13b8343" + "WESTUS:20150813T074608Z:9f5fc212-7f2a-4fac-bca2-5e90e63d82a7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:36 GMT" + "Thu, 13 Aug 2015 07:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aras/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aras/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras-innovator-plm-suite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras/ArtifactTypes/VMImage/Offers/aras-innovator-plm-suite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras-innovator-plm-suite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras/ArtifactTypes/VMImage/Offers/aras-innovator-plm-suite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "262" @@ -8213,7 +8472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "704488b5-ba66-4900-9d2a-2538eaf33121" + "09ce9c65-80e6-4ae2-a252-560e6a34c652" ], "Cache-Control": [ "no-cache" @@ -8223,31 +8482,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13883" + "14771" ], "x-ms-correlation-request-id": [ - "7d0cbebc-1d0a-4483-81e9-85ac992aed77" + "8a90f5f7-f374-4efb-a8ab-d5154af9bd54" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212436Z:7d0cbebc-1d0a-4483-81e9-85ac992aed77" + "WESTUS:20150813T074609Z:8a90f5f7-f374-4efb-a8ab-d5154af9bd54" ], "Date": [ - "Wed, 05 Aug 2015 21:24:36 GMT" + "Thu, 13 Aug 2015 07:46:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aras/artifacttypes/vmimage/offers/aras-innovator-plm-suite/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyYXMtaW5ub3ZhdG9yLXBsbS1zdWl0ZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aras/artifacttypes/vmimage/offers/aras-innovator-plm-suite/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyYXMtaW5ub3ZhdG9yLXBsbS1zdWl0ZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras_innovator_plm_suite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras/ArtifactTypes/VMImage/Offers/aras-innovator-plm-suite/Skus/aras_innovator_plm_suite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras_innovator_plm_suite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras/ArtifactTypes/VMImage/Offers/aras-innovator-plm-suite/Skus/aras_innovator_plm_suite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "292" @@ -8265,7 +8524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5636366e-7605-4502-a547-cce13882f357" + "fb3edfa9-9cba-4986-b6db-b5c105cfdf35" ], "Cache-Control": [ "no-cache" @@ -8275,31 +8534,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13882" + "14770" ], "x-ms-correlation-request-id": [ - "e8a1ad36-a2a7-4819-914f-5ce2503582f1" + "5f52a35f-35b0-42ec-bf52-cbd7f38a1ade" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212436Z:e8a1ad36-a2a7-4819-914f-5ce2503582f1" + "WESTUS:20150813T074609Z:5f52a35f-35b0-42ec-bf52-cbd7f38a1ade" ], "Date": [ - "Wed, 05 Aug 2015 21:24:36 GMT" + "Thu, 13 Aug 2015 07:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aras/artifacttypes/vmimage/offers/aras-innovator-plm-suite/skus/aras_innovator_plm_suite/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyYXMtaW5ub3ZhdG9yLXBsbS1zdWl0ZS9za3VzL2FyYXNfaW5ub3ZhdG9yX3BsbV9zdWl0ZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aras/artifacttypes/vmimage/offers/aras-innovator-plm-suite/skus/aras_innovator_plm_suite/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyYXMtaW5ub3ZhdG9yLXBsbS1zdWl0ZS9za3VzL2FyYXNfaW5ub3ZhdG9yX3BsbV9zdWl0ZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.6073\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras/ArtifactTypes/VMImage/Offers/aras-innovator-plm-suite/Skus/aras_innovator_plm_suite/Versions/11.0.6073\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.6073\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras/ArtifactTypes/VMImage/Offers/aras-innovator-plm-suite/Skus/aras_innovator_plm_suite/Versions/11.0.6073\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "296" @@ -8317,7 +8576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab0d823b-bf1b-47dd-baf9-004f2e3cec65" + "85891ebd-b4bb-4d62-b46f-9902e26c50fb" ], "Cache-Control": [ "no-cache" @@ -8327,31 +8586,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13881" + "14769" ], "x-ms-correlation-request-id": [ - "da58f65f-0c10-4614-8b28-4ff83e70378c" + "23d3e3cc-2fe9-4f07-ae90-b1017c8994cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212436Z:da58f65f-0c10-4614-8b28-4ff83e70378c" + "WESTUS:20150813T074609Z:23d3e3cc-2fe9-4f07-ae90-b1017c8994cd" ], "Date": [ - "Wed, 05 Aug 2015 21:24:36 GMT" + "Thu, 13 Aug 2015 07:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/aras/artifacttypes/vmimage/offers/aras-innovator-plm-suite/skus/aras_innovator_plm_suite/versions/11.0.6073?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyYXMtaW5ub3ZhdG9yLXBsbS1zdWl0ZS9za3VzL2FyYXNfaW5ub3ZhdG9yX3BsbV9zdWl0ZS92ZXJzaW9ucy8xMS4wLjYwNzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/aras/artifacttypes/vmimage/offers/aras-innovator-plm-suite/skus/aras_innovator_plm_suite/versions/11.0.6073?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXJhcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyYXMtaW5ub3ZhdG9yLXBsbS1zdWl0ZS9za3VzL2FyYXNfaW5ub3ZhdG9yX3BsbV9zdWl0ZS92ZXJzaW9ucy8xMS4wLjYwNzM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aras\",\r\n \"name\": \"aras_innovator_plm_suite\",\r\n \"product\": \"aras-innovator-plm-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.6073\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras/ArtifactTypes/VMImage/Offers/aras-innovator-plm-suite/Skus/aras_innovator_plm_suite/Versions/11.0.6073\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"aras\",\r\n \"name\": \"aras_innovator_plm_suite\",\r\n \"product\": \"aras-innovator-plm-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.6073\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras/ArtifactTypes/VMImage/Offers/aras-innovator-plm-suite/Skus/aras_innovator_plm_suite/Versions/11.0.6073\"\r\n}", "ResponseHeaders": { "Content-Length": [ "763" @@ -8369,7 +8628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3729435-f72e-4f5b-ae16-477d07bdee17" + "87f56d1b-8652-4460-b469-124d7e866c09" ], "Cache-Control": [ "no-cache" @@ -8379,31 +8638,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13880" + "14768" ], "x-ms-correlation-request-id": [ - "856459f1-1bef-4213-b726-56c314711bcb" + "c216c70f-fd9d-47f6-8f78-bd1dcf754e6c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212436Z:856459f1-1bef-4213-b726-56c314711bcb" + "WESTUS:20150813T074609Z:c216c70f-fd9d-47f6-8f78-bd1dcf754e6c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:36 GMT" + "Thu, 13 Aug 2015 07:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/attunity_cloudbeam/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXR0dW5pdHlfY2xvdWRiZWFtL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/attunity_cloudbeam/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXR0dW5pdHlfY2xvdWRiZWFtL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbeam-dw-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam/ArtifactTypes/VMImage/Offers/cloudbeam-dw-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbeam-dw-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam/ArtifactTypes/VMImage/Offers/cloudbeam-dw-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "262" @@ -8421,7 +8680,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8153ef03-1680-4042-9eeb-1859fcff2ea6" + "1f9759b0-9f64-4333-9eea-677dc60b0aef" ], "Cache-Control": [ "no-cache" @@ -8431,31 +8690,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13879" + "14767" ], "x-ms-correlation-request-id": [ - "13ee4886-2c83-4517-9223-5050e7149569" + "b42fad60-f414-47a5-8b1d-65ba308d15af" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212437Z:13ee4886-2c83-4517-9223-5050e7149569" + "WESTUS:20150813T074609Z:b42fad60-f414-47a5-8b1d-65ba308d15af" ], "Date": [ - "Wed, 05 Aug 2015 21:24:37 GMT" + "Thu, 13 Aug 2015 07:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/attunity_cloudbeam/artifacttypes/vmimage/offers/cloudbeam-dw-byol/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXR0dW5pdHlfY2xvdWRiZWFtL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRiZWFtLWR3LWJ5b2wvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/attunity_cloudbeam/artifacttypes/vmimage/offers/cloudbeam-dw-byol/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXR0dW5pdHlfY2xvdWRiZWFtL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRiZWFtLWR3LWJ5b2wvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity-cloudbeam-for-microsoft-azure-dw-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam/ArtifactTypes/VMImage/Offers/cloudbeam-dw-byol/Skus/attunity-cloudbeam-for-microsoft-azure-dw-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity-cloudbeam-for-microsoft-azure-dw-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam/ArtifactTypes/VMImage/Offers/cloudbeam-dw-byol/Skus/attunity-cloudbeam-for-microsoft-azure-dw-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "343" @@ -8473,7 +8732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d0c430e-e138-407c-a46a-e18dc3ed2ae5" + "e49c9e6d-9085-4708-bee6-74cac58d5692" ], "Cache-Control": [ "no-cache" @@ -8483,31 +8742,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13878" + "14766" ], "x-ms-correlation-request-id": [ - "bd6076f0-099c-4eb4-be38-94aa2578fff2" + "2645e772-32b5-489d-87cb-d7997ddea63c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212437Z:bd6076f0-099c-4eb4-be38-94aa2578fff2" + "WESTUS:20150813T074610Z:2645e772-32b5-489d-87cb-d7997ddea63c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:37 GMT" + "Thu, 13 Aug 2015 07:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/attunity_cloudbeam/artifacttypes/vmimage/offers/cloudbeam-dw-byol/skus/attunity-cloudbeam-for-microsoft-azure-dw-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXR0dW5pdHlfY2xvdWRiZWFtL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRiZWFtLWR3LWJ5b2wvc2t1cy9hdHR1bml0eS1jbG91ZGJlYW0tZm9yLW1pY3Jvc29mdC1henVyZS1kdy1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/attunity_cloudbeam/artifacttypes/vmimage/offers/cloudbeam-dw-byol/skus/attunity-cloudbeam-for-microsoft-azure-dw-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXR0dW5pdHlfY2xvdWRiZWFtL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRiZWFtLWR3LWJ5b2wvc2t1cy9hdHR1bml0eS1jbG91ZGJlYW0tZm9yLW1pY3Jvc29mdC1henVyZS1kdy1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam/ArtifactTypes/VMImage/Offers/cloudbeam-dw-byol/Skus/attunity-cloudbeam-for-microsoft-azure-dw-byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam/ArtifactTypes/VMImage/Offers/cloudbeam-dw-byol/Skus/attunity-cloudbeam-for-microsoft-azure-dw-byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "317" @@ -8525,7 +8784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76acf77f-7e36-4e03-8506-6896410a980a" + "e8f10d31-300c-41f0-8436-17ab34cfa492" ], "Cache-Control": [ "no-cache" @@ -8535,31 +8794,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13877" + "14765" ], "x-ms-correlation-request-id": [ - "bf84ab3e-5407-4976-9edb-eafeca37ed83" + "a3510909-7da2-4267-b085-823958010521" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212437Z:bf84ab3e-5407-4976-9edb-eafeca37ed83" + "WESTUS:20150813T074610Z:a3510909-7da2-4267-b085-823958010521" ], "Date": [ - "Wed, 05 Aug 2015 21:24:37 GMT" + "Thu, 13 Aug 2015 07:46:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/attunity_cloudbeam/artifacttypes/vmimage/offers/cloudbeam-dw-byol/skus/attunity-cloudbeam-for-microsoft-azure-dw-byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXR0dW5pdHlfY2xvdWRiZWFtL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRiZWFtLWR3LWJ5b2wvc2t1cy9hdHR1bml0eS1jbG91ZGJlYW0tZm9yLW1pY3Jvc29mdC1henVyZS1kdy1ieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/attunity_cloudbeam/artifacttypes/vmimage/offers/cloudbeam-dw-byol/skus/attunity-cloudbeam-for-microsoft-azure-dw-byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXR0dW5pdHlfY2xvdWRiZWFtL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRiZWFtLWR3LWJ5b2wvc2t1cy9hdHR1bml0eS1jbG91ZGJlYW0tZm9yLW1pY3Jvc29mdC1henVyZS1kdy1ieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"attunity_cloudbeam\",\r\n \"name\": \"attunity-cloudbeam-for-microsoft-azure-dw-byol\",\r\n \"product\": \"cloudbeam-dw-byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam/ArtifactTypes/VMImage/Offers/cloudbeam-dw-byol/Skus/attunity-cloudbeam-for-microsoft-azure-dw-byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"attunity_cloudbeam\",\r\n \"name\": \"attunity-cloudbeam-for-microsoft-azure-dw-byol\",\r\n \"product\": \"cloudbeam-dw-byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam/ArtifactTypes/VMImage/Offers/cloudbeam-dw-byol/Skus/attunity-cloudbeam-for-microsoft-azure-dw-byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "586" @@ -8577,7 +8836,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d64b02cb-aa4f-432b-92e7-f3cd2c3733a2" + "bc919a59-2e64-49f6-80be-dbd83535715e" ], "Cache-Control": [ "no-cache" @@ -8587,31 +8846,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13876" + "14764" ], "x-ms-correlation-request-id": [ - "0ddbc7ac-7960-4611-a06e-1fc5c713f966" + "c904c19c-60ba-45f0-a014-df4416288e10" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212437Z:0ddbc7ac-7960-4611-a06e-1fc5c713f966" + "WESTUS:20150813T074610Z:c904c19c-60ba-45f0-a014-df4416288e10" ], "Date": [ - "Wed, 05 Aug 2015 21:24:37 GMT" + "Thu, 13 Aug 2015 07:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/auriq-systems/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXVyaXEtc3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/auriq-systems/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXVyaXEtc3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"essentia\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems/ArtifactTypes/VMImage/Offers/essentia\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"essentia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems/ArtifactTypes/VMImage/Offers/essentia\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "239" @@ -8629,7 +8888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16934c2a-03ef-44d4-a281-01edaf842883" + "c7709f16-5b06-47f5-82dc-0135d98ed543" ], "Cache-Control": [ "no-cache" @@ -8639,31 +8898,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13875" + "14763" ], "x-ms-correlation-request-id": [ - "b0f4bf9b-8680-4a57-bc6a-7722cce17a95" + "b230b77f-530a-4a73-b2fe-e6ded388bc9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212437Z:b0f4bf9b-8680-4a57-bc6a-7722cce17a95" + "WESTUS:20150813T074610Z:b230b77f-530a-4a73-b2fe-e6ded388bc9f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:37 GMT" + "Thu, 13 Aug 2015 07:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/auriq-systems/artifacttypes/vmimage/offers/essentia/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXVyaXEtc3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vzc2VudGlhL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/auriq-systems/artifacttypes/vmimage/offers/essentia/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXVyaXEtc3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vzc2VudGlhL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"data-viewer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems/ArtifactTypes/VMImage/Offers/essentia/Skus/data-viewer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"data-viewer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems/ArtifactTypes/VMImage/Offers/essentia/Skus/data-viewer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "259" @@ -8681,7 +8940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "574856e4-c163-45c3-93f0-e79d5989b6d7" + "e450281c-51d8-48c0-806f-9c2c38ee1b49" ], "Cache-Control": [ "no-cache" @@ -8691,31 +8950,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13874" + "14762" ], "x-ms-correlation-request-id": [ - "4eb736e2-8a00-4cb3-96a7-e7276001ce48" + "4099e983-d350-420f-9d2c-14985b3eb59a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212437Z:4eb736e2-8a00-4cb3-96a7-e7276001ce48" + "WESTUS:20150813T074610Z:4099e983-d350-420f-9d2c-14985b3eb59a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:37 GMT" + "Thu, 13 Aug 2015 07:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/auriq-systems/artifacttypes/vmimage/offers/essentia/skus/data-viewer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXVyaXEtc3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vzc2VudGlhL3NrdXMvZGF0YS12aWV3ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/auriq-systems/artifacttypes/vmimage/offers/essentia/skus/data-viewer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXVyaXEtc3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vzc2VudGlhL3NrdXMvZGF0YS12aWV3ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems/ArtifactTypes/VMImage/Offers/essentia/Skus/data-viewer/Versions/3.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems/ArtifactTypes/VMImage/Offers/essentia/Skus/data-viewer/Versions/3.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "268" @@ -8733,7 +8992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8ae560d-04df-4da2-941e-856518c4be58" + "7e5becd2-0a55-4aca-827e-750fd146144d" ], "Cache-Control": [ "no-cache" @@ -8743,31 +9002,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13873" + "14761" ], "x-ms-correlation-request-id": [ - "a7875a0f-50de-45df-bcce-88d81173242f" + "1dfc1c0f-a26f-42e4-b6d4-faf8b9421a68" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212437Z:a7875a0f-50de-45df-bcce-88d81173242f" + "WESTUS:20150813T074610Z:1dfc1c0f-a26f-42e4-b6d4-faf8b9421a68" ], "Date": [ - "Wed, 05 Aug 2015 21:24:37 GMT" + "Thu, 13 Aug 2015 07:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/auriq-systems/artifacttypes/vmimage/offers/essentia/skus/data-viewer/versions/3.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXVyaXEtc3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vzc2VudGlhL3NrdXMvZGF0YS12aWV3ZXIvdmVyc2lvbnMvMy4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/auriq-systems/artifacttypes/vmimage/offers/essentia/skus/data-viewer/versions/3.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXVyaXEtc3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vzc2VudGlhL3NrdXMvZGF0YS12aWV3ZXIvdmVyc2lvbnMvMy4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"auriq-systems\",\r\n \"name\": \"data-viewer\",\r\n \"product\": \"essentia\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems/ArtifactTypes/VMImage/Offers/essentia/Skus/data-viewer/Versions/3.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"auriq-systems\",\r\n \"name\": \"data-viewer\",\r\n \"product\": \"essentia\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems/ArtifactTypes/VMImage/Offers/essentia/Skus/data-viewer/Versions/3.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "486" @@ -8785,7 +9044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c58f5ebd-90fc-4099-a2d6-ef7fb257cccb" + "2aef027b-3766-484f-a976-a16603090117" ], "Cache-Control": [ "no-cache" @@ -8795,31 +9054,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13872" + "14760" ], "x-ms-correlation-request-id": [ - "e7ae0769-cc85-48a8-921f-a9f9eb130dbb" + "8178b908-e86f-48cf-ba0e-d038cfd833a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212437Z:e7ae0769-cc85-48a8-921f-a9f9eb130dbb" + "WESTUS:20150813T074610Z:8178b908-e86f-48cf-ba0e-d038cfd833a7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:37 GMT" + "Thu, 13 Aug 2015 07:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/awingu/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXdpbmd1L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/awingu/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXdpbmd1L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu/ArtifactTypes/VMImage/Offers/awingu\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu/ArtifactTypes/VMImage/Offers/awingu\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "228" @@ -8837,7 +9096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54449cfa-2f63-4d2a-a6b6-1eddcac570aa" + "0a0ce164-3d70-41ac-9821-c40c56686318" ], "Cache-Control": [ "no-cache" @@ -8847,31 +9106,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13871" + "14759" ], "x-ms-correlation-request-id": [ - "94fae7ca-74b2-4170-8572-b4945fd1f078" + "7751058c-d235-4ff9-ab01-135972b551b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:94fae7ca-74b2-4170-8572-b4945fd1f078" + "WESTUS:20150813T074611Z:7751058c-d235-4ff9-ab01-135972b551b3" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/awingu/artifacttypes/vmimage/offers/awingu/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXdpbmd1L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXdpbmd1L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/awingu/artifacttypes/vmimage/offers/awingu/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXdpbmd1L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXdpbmd1L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"az0-000c-01c\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu/ArtifactTypes/VMImage/Offers/awingu/Skus/az0-000c-01c\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"az0-000c-01c\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu/ArtifactTypes/VMImage/Offers/awingu/Skus/az0-000c-01c\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "252" @@ -8889,7 +9148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80945b7e-cf8b-4e04-b928-d370236836ef" + "88f01112-10a3-42c5-9db1-433799ace62e" ], "Cache-Control": [ "no-cache" @@ -8899,31 +9158,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13870" + "14758" ], "x-ms-correlation-request-id": [ - "ee3a2a76-e967-47b3-8e84-13abd85a8bd1" + "7c0fe89a-bb19-4fef-98bd-796e2537b651" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:ee3a2a76-e967-47b3-8e84-13abd85a8bd1" + "WESTUS:20150813T074611Z:7c0fe89a-bb19-4fef-98bd-796e2537b651" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/awingu/artifacttypes/vmimage/offers/awingu/skus/az0-000c-01c/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXdpbmd1L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXdpbmd1L3NrdXMvYXowLTAwMGMtMDFjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/awingu/artifacttypes/vmimage/offers/awingu/skus/az0-000c-01c/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXdpbmd1L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXdpbmd1L3NrdXMvYXowLTAwMGMtMDFjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu/ArtifactTypes/VMImage/Offers/awingu/Skus/az0-000c-01c/Versions/2.3.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu/ArtifactTypes/VMImage/Offers/awingu/Skus/az0-000c-01c/Versions/2.3.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -8941,7 +9200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d46281f-e349-481a-8c14-f374069f9432" + "c802fa55-b052-4062-85a1-cf7c683e6125" ], "Cache-Control": [ "no-cache" @@ -8951,31 +9210,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13869" + "14757" ], "x-ms-correlation-request-id": [ - "9593bf43-8851-4802-9437-ce984d553919" + "25ab1b8e-8ce6-4e40-a0a0-60a2709e7783" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:9593bf43-8851-4802-9437-ce984d553919" + "WESTUS:20150813T074611Z:25ab1b8e-8ce6-4e40-a0a0-60a2709e7783" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/awingu/artifacttypes/vmimage/offers/awingu/skus/az0-000c-01c/versions/2.3.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXdpbmd1L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXdpbmd1L3NrdXMvYXowLTAwMGMtMDFjL3ZlcnNpb25zLzIuMy4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/awingu/artifacttypes/vmimage/offers/awingu/skus/az0-000c-01c/versions/2.3.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXdpbmd1L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXdpbmd1L3NrdXMvYXowLTAwMGMtMDFjL3ZlcnNpb25zLzIuMy4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"awingu\",\r\n \"name\": \"az0-000c-01c\",\r\n \"product\": \"awingu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu/ArtifactTypes/VMImage/Offers/awingu/Skus/az0-000c-01c/Versions/2.3.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"awingu\",\r\n \"name\": \"az0-000c-01c\",\r\n \"product\": \"awingu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu/ArtifactTypes/VMImage/Offers/awingu/Skus/az0-000c-01c/Versions/2.3.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "470" @@ -8993,7 +9252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7776499-19ff-428c-85bc-c8a416b4c27a" + "4b0df642-8efd-4e41-97d5-807c9bfe8b70" ], "Cache-Control": [ "no-cache" @@ -9003,31 +9262,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13868" + "14756" ], "x-ms-correlation-request-id": [ - "0c1733d3-d752-4776-a7f8-8140f2c9b054" + "5cf0d01e-741f-4684-ad02-6e14fecac0f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:0c1733d3-d752-4776-a7f8-8140f2c9b054" + "WESTUS:20150813T074611Z:5cf0d01e-741f-4684-ad02-6e14fecac0f4" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/azul/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXp1bC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/azul/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXp1bC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zulu-enterprise-ondemand-ub1404\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul/ArtifactTypes/VMImage/Offers/zulu-enterprise-ondemand-ub1404\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zulu-enterprise-ondemand-ub1404\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul/ArtifactTypes/VMImage/Offers/zulu-enterprise-ondemand-ub1404\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -9045,7 +9304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6660c7e-5320-4b46-b0f7-7d6a3dcb6e42" + "26c7d9fc-1bcd-4ba9-ae23-ad08bf331c05" ], "Cache-Control": [ "no-cache" @@ -9055,31 +9314,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13867" + "14755" ], "x-ms-correlation-request-id": [ - "a9c2e1ed-e43b-4388-a026-7d8d0df1e01a" + "162cffdd-7ed5-43ba-a848-53d503ba7c57" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:a9c2e1ed-e43b-4388-a026-7d8d0df1e01a" + "WESTUS:20150813T074611Z:162cffdd-7ed5-43ba-a848-53d503ba7c57" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/azul/artifacttypes/vmimage/offers/zulu-enterprise-ondemand-ub1404/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXp1bC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3p1bHUtZW50ZXJwcmlzZS1vbmRlbWFuZC11YjE0MDQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/azul/artifacttypes/vmimage/offers/zulu-enterprise-ondemand-ub1404/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXp1bC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3p1bHUtZW50ZXJwcmlzZS1vbmRlbWFuZC11YjE0MDQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul-zulu-ub1404\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul/ArtifactTypes/VMImage/Offers/zulu-enterprise-ondemand-ub1404/Skus/azul-zulu-ub1404\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul-zulu-ub1404\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul/ArtifactTypes/VMImage/Offers/zulu-enterprise-ondemand-ub1404/Skus/azul-zulu-ub1404\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "283" @@ -9097,7 +9356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "169c6ca8-6762-467c-acd9-eaed7ca02f07" + "3363355a-44d5-4942-88ee-ecbd646e5119" ], "Cache-Control": [ "no-cache" @@ -9107,31 +9366,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13866" + "14754" ], "x-ms-correlation-request-id": [ - "33203ea1-57f5-4b41-a4be-f23ea2664a8c" + "62bea3ad-dbb3-4224-9384-0dc3d9af0cbc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:33203ea1-57f5-4b41-a4be-f23ea2664a8c" + "WESTUS:20150813T074611Z:62bea3ad-dbb3-4224-9384-0dc3d9af0cbc" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/azul/artifacttypes/vmimage/offers/zulu-enterprise-ondemand-ub1404/skus/azul-zulu-ub1404/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXp1bC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3p1bHUtZW50ZXJwcmlzZS1vbmRlbWFuZC11YjE0MDQvc2t1cy9henVsLXp1bHUtdWIxNDA0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/azul/artifacttypes/vmimage/offers/zulu-enterprise-ondemand-ub1404/skus/azul-zulu-ub1404/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXp1bC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3p1bHUtZW50ZXJwcmlzZS1vbmRlbWFuZC11YjE0MDQvc2t1cy9henVsLXp1bHUtdWIxNDA0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul/ArtifactTypes/VMImage/Offers/zulu-enterprise-ondemand-ub1404/Skus/azul-zulu-ub1404/Versions/15.05.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul/ArtifactTypes/VMImage/Offers/zulu-enterprise-ondemand-ub1404/Skus/azul-zulu-ub1404/Versions/15.05.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "291" @@ -9149,7 +9408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd96ccda-5329-42de-bdcc-01fd4309926f" + "efe39254-32cb-4ccd-a8c6-aac45c0f40fb" ], "Cache-Control": [ "no-cache" @@ -9159,31 +9418,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13865" + "14753" ], "x-ms-correlation-request-id": [ - "c0859c0c-ac62-4d91-811e-d3c626da5cf6" + "2a660d6a-871c-45b7-b4f7-6780a16c7777" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:c0859c0c-ac62-4d91-811e-d3c626da5cf6" + "WESTUS:20150813T074611Z:2a660d6a-871c-45b7-b4f7-6780a16c7777" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/azul/artifacttypes/vmimage/offers/zulu-enterprise-ondemand-ub1404/skus/azul-zulu-ub1404/versions/15.05.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXp1bC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3p1bHUtZW50ZXJwcmlzZS1vbmRlbWFuZC11YjE0MDQvc2t1cy9henVsLXp1bHUtdWIxNDA0L3ZlcnNpb25zLzE1LjA1LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/azul/artifacttypes/vmimage/offers/zulu-enterprise-ondemand-ub1404/skus/azul-zulu-ub1404/versions/15.05.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYXp1bC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3p1bHUtZW50ZXJwcmlzZS1vbmRlbWFuZC11YjE0MDQvc2t1cy9henVsLXp1bHUtdWIxNDA0L3ZlcnNpb25zLzE1LjA1LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"azul\",\r\n \"name\": \"azul-zulu-ub1404\",\r\n \"product\": \"zulu-enterprise-ondemand-ub1404\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul/ArtifactTypes/VMImage/Offers/zulu-enterprise-ondemand-ub1404/Skus/azul-zulu-ub1404/Versions/15.05.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"azul\",\r\n \"name\": \"azul-zulu-ub1404\",\r\n \"product\": \"zulu-enterprise-ondemand-ub1404\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul/ArtifactTypes/VMImage/Offers/zulu-enterprise-ondemand-ub1404/Skus/azul-zulu-ub1404/Versions/15.05.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "528" @@ -9201,7 +9460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8233afe-0334-45fa-9d0d-b0261c6a68c6" + "14b921ef-cdc6-4e37-b663-b76a21689bd3" ], "Cache-Control": [ "no-cache" @@ -9211,28 +9470,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13864" + "14752" ], "x-ms-correlation-request-id": [ - "5b69dca3-d181-48d5-8719-a671026d8af9" + "311cf5a0-af3e-4a13-afc5-02632e4f7532" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:5b69dca3-d181-48d5-8719-a671026d8af9" + "WESTUS:20150813T074612Z:311cf5a0-af3e-4a13-afc5-02632e4f7532" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/AzureRT.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQXp1cmVSVC5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/AzureRT.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQXp1cmVSVC5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -9253,7 +9512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f99fe7a6-d39f-4bab-9d87-931f1bf978b9" + "6a64aa2e-51eb-420e-a9fa-e6a0d5317ebf" ], "Cache-Control": [ "no-cache" @@ -9263,28 +9522,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13863" + "14751" ], "x-ms-correlation-request-id": [ - "b1c75784-e4a8-4c40-8fef-1819c7cad35a" + "ef35167b-0c45-43f7-a045-51deb7178960" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212438Z:b1c75784-e4a8-4c40-8fef-1819c7cad35a" + "WESTUS:20150813T074612Z:ef35167b-0c45-43f7-a045-51deb7178960" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Barracuda.Azure.ConnectivityAgent/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQmFycmFjdWRhLkF6dXJlLkNvbm5lY3Rpdml0eUFnZW50L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Barracuda.Azure.ConnectivityAgent/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQmFycmFjdWRhLkF6dXJlLkNvbm5lY3Rpdml0eUFnZW50L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -9305,7 +9564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cba34a0b-8f99-42fa-868e-713d1dc34463" + "3411d06c-cc02-4c3e-8028-a9204974bf0b" ], "Cache-Control": [ "no-cache" @@ -9315,31 +9574,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13862" + "14750" ], "x-ms-correlation-request-id": [ - "64765487-22f6-4143-85c1-943900faf40e" + "8dd460c8-85b2-4fc5-b607-b08e39a991f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:64765487-22f6-4143-85c1-943900faf40e" + "WESTUS:20150813T074612Z:8dd460c8-85b2-4fc5-b607-b08e39a991f1" ], "Date": [ - "Wed, 05 Aug 2015 21:24:38 GMT" + "Thu, 13 Aug 2015 07:46:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracuda-message-archiver\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-message-archiver\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracuda-ng-firewall\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracuda-spam-firewall\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waf\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracuda-message-archiver\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-message-archiver\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracuda-ng-firewall\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracuda-spam-firewall\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1045" @@ -9357,7 +9616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "acdc088c-821f-484d-8c0a-6f288d2be1c8" + "187145d1-c36f-4572-94f4-c50f0731a0cc" ], "Cache-Control": [ "no-cache" @@ -9367,31 +9626,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13861" + "14749" ], "x-ms-correlation-request-id": [ - "54a7911c-ed33-4cd4-a080-7a7350629ed7" + "53a67949-d33b-4aae-8e6a-a23bf432f844" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:54a7911c-ed33-4cd4-a080-7a7350629ed7" + "WESTUS:20150813T074612Z:53a67949-d33b-4aae-8e6a-a23bf432f844" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-message-archiver/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbWVzc2FnZS1hcmNoaXZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-message-archiver/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbWVzc2FnZS1hcmNoaXZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-message-archiver/Skus/byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-message-archiver/Skus/byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -9409,7 +9668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8bb2a51f-6fe6-4edf-87f1-8dc4a2defa33" + "e242734e-d268-4982-84c2-a7b58b470c26" ], "Cache-Control": [ "no-cache" @@ -9419,31 +9678,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13860" + "14748" ], "x-ms-correlation-request-id": [ - "067f8615-5fa9-40d3-923b-b92ed512fb0b" + "81e47dc7-a4aa-476d-8754-01f7d7f9fee6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:067f8615-5fa9-40d3-923b-b92ed512fb0b" + "WESTUS:20150813T074612Z:81e47dc7-a4aa-476d-8754-01f7d7f9fee6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-message-archiver/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbWVzc2FnZS1hcmNoaXZlci9za3VzL2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-message-archiver/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbWVzc2FnZS1hcmNoaXZlci9za3VzL2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1017\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-message-archiver/Skus/byol/Versions/4.0.1017\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1017\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-message-archiver/Skus/byol/Versions/4.0.1017\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "289" @@ -9461,7 +9720,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1354844-2ced-4ec4-b660-303713e6b0f0" + "4b21e02c-80c5-499b-8ddf-d25fa2841bdf" ], "Cache-Control": [ "no-cache" @@ -9471,31 +9730,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13859" + "14747" ], "x-ms-correlation-request-id": [ - "d9f2d257-8908-45b4-939f-a83e7bc317cf" + "f897f138-3e60-48e6-bae2-3dd69002fc05" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:d9f2d257-8908-45b4-939f-a83e7bc317cf" + "WESTUS:20150813T074612Z:f897f138-3e60-48e6-bae2-3dd69002fc05" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-message-archiver/skus/byol/versions/4.0.1017?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbWVzc2FnZS1hcmNoaXZlci9za3VzL2J5b2wvdmVyc2lvbnMvNC4wLjEwMTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-message-archiver/skus/byol/versions/4.0.1017?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbWVzc2FnZS1hcmNoaXZlci9za3VzL2J5b2wvdmVyc2lvbnMvNC4wLjEwMTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"byol\",\r\n \"product\": \"barracuda-message-archiver\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1017\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-message-archiver/Skus/byol/Versions/4.0.1017\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"byol\",\r\n \"product\": \"barracuda-message-archiver\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1017\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-message-archiver/Skus/byol/Versions/4.0.1017\"\r\n}", "ResponseHeaders": { "Content-Length": [ "522" @@ -9513,7 +9772,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a207f3c2-bc8c-4720-8118-918c24902262" + "cc9a8699-6af0-494f-9b7b-1fbcf44fde94" ], "Cache-Control": [ "no-cache" @@ -9523,31 +9782,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13858" + "14746" ], "x-ms-correlation-request-id": [ - "c4ee5632-b444-4116-92da-7dde67412e7d" + "b3477aea-6b21-4136-9854-775c071aabba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:c4ee5632-b444-4116-92da-7dde67412e7d" + "WESTUS:20150813T074613Z:b3477aea-6b21-4136-9854-775c071aabba" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hourly\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/hourly\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hourly\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/hourly\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "525" @@ -9565,7 +9824,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cee9c3f-c13b-4527-b8ef-ec247d81e867" + "9e52752d-569c-4f7e-9872-065f88b9e736" ], "Cache-Control": [ "no-cache" @@ -9575,31 +9834,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13857" + "14745" ], "x-ms-correlation-request-id": [ - "80b2bc38-af77-466e-aeba-618bb5e35f18" + "13d5466d-c88e-4609-bf24-0b650c293d18" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:80b2bc38-af77-466e-aeba-618bb5e35f18" + "WESTUS:20150813T074613Z:13d5466d-c88e-4609-bf24-0b650c293d18" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cy9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cy9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.107500\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/byol/Versions/6.1.107500\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.107500\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/byol/Versions/6.1.107500\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "288" @@ -9617,7 +9876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d43b726-a6c0-4450-87b3-5b97ad2ceb0f" + "19228063-0a12-4273-a494-375b61cbe885" ], "Cache-Control": [ "no-cache" @@ -9627,31 +9886,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13856" + "14744" ], "x-ms-correlation-request-id": [ - "18055e43-94ba-44af-a93f-2b873d0233bf" + "89ab6af1-83ca-4b2c-b066-f4eba7b66217" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:18055e43-94ba-44af-a93f-2b873d0233bf" + "WESTUS:20150813T074613Z:89ab6af1-83ca-4b2c-b066-f4eba7b66217" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus/byol/versions/6.1.107500?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cy9ieW9sL3ZlcnNpb25zLzYuMS4xMDc1MDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus/byol/versions/6.1.107500?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cy9ieW9sL3ZlcnNpb25zLzYuMS4xMDc1MDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"byol\",\r\n \"product\": \"barracuda-ng-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.107500\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/byol/Versions/6.1.107500\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"byol\",\r\n \"product\": \"barracuda-ng-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.107500\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/byol/Versions/6.1.107500\"\r\n}", "ResponseHeaders": { "Content-Length": [ "516" @@ -9669,7 +9928,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "845a2ebf-8d2a-42b8-ad38-23099a0e9660" + "656f1755-c62c-4c83-947d-28b05b994dce" ], "Cache-Control": [ "no-cache" @@ -9679,31 +9938,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13855" + "14743" ], "x-ms-correlation-request-id": [ - "655cbf01-0a5f-4769-8c1d-30323c176e26" + "4b6e1ada-aaa9-4ad0-893c-0d6a0d15bbf5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:655cbf01-0a5f-4769-8c1d-30323c176e26" + "WESTUS:20150813T074613Z:4b6e1ada-aaa9-4ad0-893c-0d6a0d15bbf5" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus/hourly/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cy9ob3VybHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus/hourly/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cy9ob3VybHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.107500\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/hourly/Versions/6.1.107500\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.107500\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/hourly/Versions/6.1.107500\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "290" @@ -9721,7 +9980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "605b3345-15a6-4ec6-935c-fbfa8247b29e" + "fbd12a3e-b3b4-4f69-aab1-47bcab23c3fc" ], "Cache-Control": [ "no-cache" @@ -9731,31 +9990,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13854" + "14742" ], "x-ms-correlation-request-id": [ - "0f31fc29-a716-4ebe-bec0-66122d0c5f07" + "79889847-455b-48f5-bf78-9b5d9d020f18" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212439Z:0f31fc29-a716-4ebe-bec0-66122d0c5f07" + "WESTUS:20150813T074613Z:79889847-455b-48f5-bf78-9b5d9d020f18" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus/hourly/versions/6.1.107500?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cy9ob3VybHkvdmVyc2lvbnMvNi4xLjEwNzUwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-ng-firewall/skus/hourly/versions/6.1.107500?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtbmctZmlyZXdhbGwvc2t1cy9ob3VybHkvdmVyc2lvbnMvNi4xLjEwNzUwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"hourly\",\r\n \"product\": \"barracuda-ng-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.107500\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/hourly/Versions/6.1.107500\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"hourly\",\r\n \"product\": \"barracuda-ng-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.107500\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-ng-firewall/Skus/hourly/Versions/6.1.107500\"\r\n}", "ResponseHeaders": { "Content-Length": [ "520" @@ -9773,7 +10032,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ed64d29-de80-4fcf-b571-a7121c2eeae5" + "4a5231b2-4d14-4963-9570-94ffd55b63b5" ], "Cache-Control": [ "no-cache" @@ -9783,31 +10042,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13853" + "14741" ], "x-ms-correlation-request-id": [ - "07b95141-fc8c-47d3-b8d2-5205c159f252" + "b203882c-46ab-4ceb-8120-2a352102e560" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:07b95141-fc8c-47d3-b8d2-5205c159f252" + "WESTUS:20150813T074613Z:b203882c-46ab-4ceb-8120-2a352102e560" ], "Date": [ - "Wed, 05 Aug 2015 21:24:39 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hourly\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/hourly\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hourly\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/hourly\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "529" @@ -9825,7 +10084,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd64d8be-88b5-4c25-b2fb-20c4ab2b1d97" + "46258a46-04e9-4b8f-b9ac-7622aa49e11a" ], "Cache-Control": [ "no-cache" @@ -9835,31 +10094,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13852" + "14740" ], "x-ms-correlation-request-id": [ - "9b9fa9a5-e891-4ca0-ae40-5aa9e9ebc653" + "d04f4953-d3d3-4a36-bc33-dda7c654dea5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:9b9fa9a5-e891-4ca0-ae40-5aa9e9ebc653" + "WESTUS:20150813T074613Z:d04f4953-d3d3-4a36-bc33-dda7c654dea5" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzL2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzL2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0004\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/byol/Versions/7.0.0004\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0004\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/byol/Versions/7.0.0004\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "286" @@ -9877,7 +10136,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9dfe2fbd-5ca7-40c5-b299-c6506df8ded5" + "3a2cee5e-9f49-4c8f-a55e-6c60e561f33b" ], "Cache-Control": [ "no-cache" @@ -9887,31 +10146,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13851" + "14739" ], "x-ms-correlation-request-id": [ - "17342858-882d-4e77-a84b-9273923d1153" + "add4a963-7d1c-40a5-a07e-d04629c677d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:17342858-882d-4e77-a84b-9273923d1153" + "WESTUS:20150813T074613Z:add4a963-7d1c-40a5-a07e-d04629c677d7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus/byol/versions/7.0.0004?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzL2J5b2wvdmVyc2lvbnMvNy4wLjAwMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus/byol/versions/7.0.0004?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzL2J5b2wvdmVyc2lvbnMvNy4wLjAwMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"byol\",\r\n \"product\": \"barracuda-spam-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0004\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/byol/Versions/7.0.0004\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"byol\",\r\n \"product\": \"barracuda-spam-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0004\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/byol/Versions/7.0.0004\"\r\n}", "ResponseHeaders": { "Content-Length": [ "516" @@ -9929,7 +10188,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d84ea394-ec30-4145-919a-ca0ec5553376" + "94ab815d-ce8f-4917-8397-cbe41d38d2db" ], "Cache-Control": [ "no-cache" @@ -9939,31 +10198,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13850" + "14738" ], "x-ms-correlation-request-id": [ - "6895acd9-3e46-4e5a-93ec-43690cb67d3a" + "e0c6447c-209c-4af9-bfaf-a2869efef309" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:6895acd9-3e46-4e5a-93ec-43690cb67d3a" + "WESTUS:20150813T074613Z:e0c6447c-209c-4af9-bfaf-a2869efef309" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus/hourly/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzL2hvdXJseS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus/hourly/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzL2hvdXJseS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0004\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/hourly/Versions/7.0.0004\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0004\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/hourly/Versions/7.0.0004\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "288" @@ -9981,7 +10240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af4a1a56-1163-4f0e-b4e1-5ac089f3c6c9" + "5a0b7ff7-0c82-4ba5-ae54-506e43eed934" ], "Cache-Control": [ "no-cache" @@ -9991,31 +10250,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13849" + "14737" ], "x-ms-correlation-request-id": [ - "a1d38404-70fc-41f2-85bb-1f1fbda81582" + "3a8c095e-b75a-4e5e-895e-e17cd5bca6b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:a1d38404-70fc-41f2-85bb-1f1fbda81582" + "WESTUS:20150813T074613Z:3a8c095e-b75a-4e5e-895e-e17cd5bca6b3" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus/hourly/versions/7.0.0004?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzL2hvdXJseS92ZXJzaW9ucy83LjAuMDAwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/barracuda-spam-firewall/skus/hourly/versions/7.0.0004?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9iYXJyYWN1ZGEtc3BhbS1maXJld2FsbC9za3VzL2hvdXJseS92ZXJzaW9ucy83LjAuMDAwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"hourly\",\r\n \"product\": \"barracuda-spam-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0004\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/hourly/Versions/7.0.0004\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"hourly\",\r\n \"product\": \"barracuda-spam-firewall\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0004\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/barracuda-spam-firewall/Skus/hourly/Versions/7.0.0004\"\r\n}", "ResponseHeaders": { "Content-Length": [ "520" @@ -10033,7 +10292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8da026fd-ab97-41d7-9a0c-faf46dd92dcb" + "cd6322be-9e2b-45a0-ae07-28ad0211a348" ], "Cache-Control": [ "no-cache" @@ -10043,31 +10302,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13848" + "14736" ], "x-ms-correlation-request-id": [ - "540336d6-82a1-453a-ae00-1eaa310699db" + "849d3af2-f98b-4ba7-b660-7a8a0e612eab" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:540336d6-82a1-453a-ae00-1eaa310699db" + "WESTUS:20150813T074614Z:849d3af2-f98b-4ba7-b660-7a8a0e612eab" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hourly\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/hourly\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hourly\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/hourly\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "489" @@ -10085,7 +10344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32eea98f-0bad-4385-938c-087a80db43f5" + "ffa413a7-908b-45ea-8a0f-e5369647bdeb" ], "Cache-Control": [ "no-cache" @@ -10095,31 +10354,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13847" + "14735" ], "x-ms-correlation-request-id": [ - "121895da-8092-43d8-9b5f-dca8a50b6c60" + "4ff816ce-26a6-4079-8333-615aaad817a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:121895da-8092-43d8-9b5f-dca8a50b6c60" + "WESTUS:20150813T074614Z:4ff816ce-26a6-4079-8333-615aaad817a6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cy9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cy9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.002100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/byol/Versions/7.9.002100\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.002100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/byol/Versions/7.9.002100\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "270" @@ -10137,7 +10396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d32c18c1-5d77-4bd2-8662-d53408bde215" + "44f0b737-1046-4622-b4b5-a6e32bf1e585" ], "Cache-Control": [ "no-cache" @@ -10147,31 +10406,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13846" + "14734" ], "x-ms-correlation-request-id": [ - "2b7305d4-d298-487a-b587-10e6d737d8a7" + "2b00ed73-b686-4b37-aa8c-12217e2a1f93" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:2b7305d4-d298-487a-b587-10e6d737d8a7" + "WESTUS:20150813T074614Z:2b00ed73-b686-4b37-aa8c-12217e2a1f93" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus/byol/versions/7.9.002100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cy9ieW9sL3ZlcnNpb25zLzcuOS4wMDIxMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus/byol/versions/7.9.002100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cy9ieW9sL3ZlcnNpb25zLzcuOS4wMDIxMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"byol\",\r\n \"product\": \"waf\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.002100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/byol/Versions/7.9.002100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"byol\",\r\n \"product\": \"waf\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.002100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/byol/Versions/7.9.002100\"\r\n}", "ResponseHeaders": { "Content-Length": [ "480" @@ -10189,7 +10448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b6ca4d3-86b2-4ee1-b39f-fcf4fe567e61" + "92705394-cb46-4ade-a382-17b879afc6ff" ], "Cache-Control": [ "no-cache" @@ -10199,31 +10458,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13845" + "14733" ], "x-ms-correlation-request-id": [ - "351e346b-ac6b-473a-bb93-8bd71d3ad5f0" + "a39eea29-e23f-41a2-8ecb-12acff8c28db" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:351e346b-ac6b-473a-bb93-8bd71d3ad5f0" + "WESTUS:20150813T074614Z:a39eea29-e23f-41a2-8ecb-12acff8c28db" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus/hourly/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cy9ob3VybHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus/hourly/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cy9ob3VybHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.002100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/hourly/Versions/7.9.002100\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.002100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/hourly/Versions/7.9.002100\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -10241,7 +10500,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "037101ee-0fa9-478c-81c2-e740cf88b85b" + "c1b98e04-d86e-4757-a93d-f2e371c25b7e" ], "Cache-Control": [ "no-cache" @@ -10251,31 +10510,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13844" + "14732" ], "x-ms-correlation-request-id": [ - "62f684c0-0753-49c1-89f3-3ee8409aaf79" + "d06ba692-6f44-4cac-a016-135c50f2430f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212440Z:62f684c0-0753-49c1-89f3-3ee8409aaf79" + "WESTUS:20150813T074614Z:d06ba692-6f44-4cac-a016-135c50f2430f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus/hourly/versions/7.9.002100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cy9ob3VybHkvdmVyc2lvbnMvNy45LjAwMjEwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/barracudanetworks/artifacttypes/vmimage/offers/waf/skus/hourly/versions/7.9.002100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFycmFjdWRhbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93YWYvc2t1cy9ob3VybHkvdmVyc2lvbnMvNy45LjAwMjEwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"hourly\",\r\n \"product\": \"waf\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.002100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/hourly/Versions/7.9.002100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"barracudanetworks\",\r\n \"name\": \"hourly\",\r\n \"product\": \"waf\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.9.002100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks/ArtifactTypes/VMImage/Offers/waf/Skus/hourly/Versions/7.9.002100\"\r\n}", "ResponseHeaders": { "Content-Length": [ "484" @@ -10293,7 +10552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "470b82ef-e14e-46e0-a650-5309c84aa023" + "a9fdd20c-3a98-423c-b675-de606156b477" ], "Cache-Control": [ "no-cache" @@ -10303,31 +10562,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13843" + "14731" ], "x-ms-correlation-request-id": [ - "6f5866e9-7205-431f-b132-3c62eb4cfbe2" + "d8dc1728-01fd-49ae-8507-436b7c3befbf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212441Z:6f5866e9-7205-431f-b132-3c62eb4cfbe2" + "WESTUS:20150813T074614Z:d8dc1728-01fd-49ae-8507-436b7c3befbf" ], "Date": [ - "Wed, 05 Aug 2015 21:24:40 GMT" + "Thu, 13 Aug 2015 07:46:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/basho/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFzaG8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/basho/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFzaG8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riak-2-0-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riak-2-0-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "235" @@ -10345,7 +10604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e525d7f0-b446-4f80-8919-897ff6da8ca7" + "aec968a7-a687-4b33-b130-b6e51e2c741a" ], "Cache-Control": [ "no-cache" @@ -10355,31 +10614,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13842" + "14730" ], "x-ms-correlation-request-id": [ - "ce464e0d-8729-4e4c-aa94-a52325a73a23" + "6e762d9f-ca33-45ea-a22c-62fb8b902747" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212441Z:ce464e0d-8729-4e4c-aa94-a52325a73a23" + "WESTUS:20150813T074614Z:6e762d9f-ca33-45ea-a22c-62fb8b902747" ], "Date": [ - "Wed, 05 Aug 2015 21:24:41 GMT" + "Thu, 13 Aug 2015 07:46:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/basho/artifacttypes/vmimage/offers/riak-2-0-1/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFzaG8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaWFrLTItMC0xL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/basho/artifacttypes/vmimage/offers/riak-2-0-1/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFzaG8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaWFrLTItMC0xL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rs201-o\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1/Skus/rs201-o\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rs201-o\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1/Skus/rs201-o\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "245" @@ -10397,7 +10656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6c8b319-9feb-403d-b978-efb66746662d" + "64ab5331-2a6f-43b1-a733-e806d57b3851" ], "Cache-Control": [ "no-cache" @@ -10407,31 +10666,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13841" + "14729" ], "x-ms-correlation-request-id": [ - "a89fb41e-e9fc-4352-a1ba-bf18bd2c757a" + "7f3ba32b-d629-4daf-b607-bff47716b277" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212441Z:a89fb41e-e9fc-4352-a1ba-bf18bd2c757a" + "WESTUS:20150813T074614Z:7f3ba32b-d629-4daf-b607-bff47716b277" ], "Date": [ - "Wed, 05 Aug 2015 21:24:41 GMT" + "Thu, 13 Aug 2015 07:46:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/basho/artifacttypes/vmimage/offers/riak-2-0-1/skus/rs201-o/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFzaG8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaWFrLTItMC0xL3NrdXMvcnMyMDEtby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/basho/artifacttypes/vmimage/offers/riak-2-0-1/skus/rs201-o/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFzaG8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaWFrLTItMC0xL3NrdXMvcnMyMDEtby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1/Skus/rs201-o/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1/Skus/rs201-o/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -10449,7 +10708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "038c9b49-21cc-4cfc-a981-c866526544b3" + "09c90485-06ce-4855-8c0c-b90dafca7553" ], "Cache-Control": [ "no-cache" @@ -10459,31 +10718,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13840" + "14728" ], "x-ms-correlation-request-id": [ - "829135e1-f035-4a1d-9d13-c40904cf39d8" + "713f5a63-78da-404c-9a13-b2bbeba3535d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212441Z:829135e1-f035-4a1d-9d13-c40904cf39d8" + "WESTUS:20150813T074614Z:713f5a63-78da-404c-9a13-b2bbeba3535d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:41 GMT" + "Thu, 13 Aug 2015 07:46:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/basho/artifacttypes/vmimage/offers/riak-2-0-1/skus/rs201-o/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFzaG8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaWFrLTItMC0xL3NrdXMvcnMyMDEtby92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/basho/artifacttypes/vmimage/offers/riak-2-0-1/skus/rs201-o/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmFzaG8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaWFrLTItMC0xL3NrdXMvcnMyMDEtby92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"basho\",\r\n \"name\": \"rs201-o\",\r\n \"product\": \"riak-2-0-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1/Skus/rs201-o/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"basho\",\r\n \"name\": \"rs201-o\",\r\n \"product\": \"riak-2-0-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1/Skus/rs201-o/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "466" @@ -10501,7 +10760,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99fa6d34-37aa-4098-a1c6-364bfe081aef" + "77f5b918-113a-484d-8d01-645b5b101aee" ], "Cache-Control": [ "no-cache" @@ -10511,31 +10770,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13839" + "14727" ], "x-ms-correlation-request-id": [ - "47ef0ff9-1fc5-481d-8414-0415b5cc50c6" + "9182905a-89be-4358-8846-e5831d81a363" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212441Z:47ef0ff9-1fc5-481d-8414-0415b5cc50c6" + "WESTUS:20150813T074615Z:9182905a-89be-4358-8846-e5831d81a363" ], "Date": [ - "Wed, 05 Aug 2015 21:24:41 GMT" + "Thu, 13 Aug 2015 07:46:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"DreamFactory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/DreamFactory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eXo-Platform\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/eXo-Platform\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redmine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/redmine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wordpress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/wordpress\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"DreamFactory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/DreamFactory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eXo-Platform\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/eXo-Platform\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redmine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/redmine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wordpress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/wordpress\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "939" @@ -10553,7 +10812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "949b0b6d-f7c7-4bc4-ae69-f6cd593ee324" + "14103c9f-85f9-4836-87a3-94e497f5710f" ], "Cache-Control": [ "no-cache" @@ -10563,31 +10822,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13838" + "14726" ], "x-ms-correlation-request-id": [ - "fa5448a7-06bc-4f03-81bc-5fda8377c5f3" + "0664c48f-f165-4890-b2ad-4239f96f0208" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212441Z:fa5448a7-06bc-4f03-81bc-5fda8377c5f3" + "WESTUS:20150813T074615Z:0664c48f-f165-4890-b2ad-4239f96f0208" ], "Date": [ - "Wed, 05 Aug 2015 21:24:41 GMT" + "Thu, 13 Aug 2015 07:46:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/DreamFactory/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0RyZWFtRmFjdG9yeS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/DreamFactory/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0RyZWFtRmFjdG9yeS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/DreamFactory/Skus/1.7\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/DreamFactory/Skus/1.7\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "241" @@ -10605,7 +10864,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea4aceb8-af13-403a-80d0-493fd599a896" + "86233331-f72b-4be3-ace7-2819daf5a88d" ], "Cache-Control": [ "no-cache" @@ -10615,31 +10874,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13837" + "14725" ], "x-ms-correlation-request-id": [ - "485c20a9-54dc-4703-8391-413562734a5e" + "d492ed25-9a71-4a56-833d-4552d5d05a3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212441Z:485c20a9-54dc-4703-8391-413562734a5e" + "WESTUS:20150813T074615Z:d492ed25-9a71-4a56-833d-4552d5d05a3a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:41 GMT" + "Thu, 13 Aug 2015 07:46:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/DreamFactory/skus/1.7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0RyZWFtRmFjdG9yeS9za3VzLzEuNy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/DreamFactory/skus/1.7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0RyZWFtRmFjdG9yeS9za3VzLzEuNy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.7.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/DreamFactory/Skus/1.7/Versions/1.7.8\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.7.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/DreamFactory/Skus/1.7/Versions/1.7.8\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -10657,7 +10916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f5ed17b-3f1e-4da7-9db9-c0361310ebee" + "89e38426-463d-4f5c-82bc-4732d26cf844" ], "Cache-Control": [ "no-cache" @@ -10667,31 +10926,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13836" + "14724" ], "x-ms-correlation-request-id": [ - "db5eaaaa-c21e-45fa-a6fe-14a0b09cf623" + "c358e657-3af2-4cc7-9138-614ac3c1695c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212442Z:db5eaaaa-c21e-45fa-a6fe-14a0b09cf623" + "WESTUS:20150813T074615Z:c358e657-3af2-4cc7-9138-614ac3c1695c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:41 GMT" + "Thu, 13 Aug 2015 07:46:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/DreamFactory/skus/1.7/versions/1.7.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0RyZWFtRmFjdG9yeS9za3VzLzEuNy92ZXJzaW9ucy8xLjcuOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/DreamFactory/skus/1.7/versions/1.7.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0RyZWFtRmFjdG9yeS9za3VzLzEuNy92ZXJzaW9ucy8xLjcuOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.7.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/DreamFactory/Skus/1.7/Versions/1.7.8\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.7.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/DreamFactory/Skus/1.7/Versions/1.7.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "357" @@ -10709,7 +10968,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "549f8e53-0df5-4de2-8bff-ac0f16a7b9ab" + "3690528e-8d4b-47fc-860c-462f58e5cea2" ], "Cache-Control": [ "no-cache" @@ -10719,31 +10978,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13835" + "14723" ], "x-ms-correlation-request-id": [ - "d0c29fe0-c407-4dcb-9615-083aa294f742" + "5716e572-cabe-4546-822e-9366a531a0d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212442Z:d0c29fe0-c407-4dcb-9615-083aa294f742" + "WESTUS:20150813T074615Z:5716e572-cabe-4546-822e-9366a531a0d9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:42 GMT" + "Thu, 13 Aug 2015 07:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/eXo-Platform/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VYby1QbGF0Zm9ybS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/eXo-Platform/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VYby1QbGF0Zm9ybS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Express-4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/eXo-Platform/Skus/Express-4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Express-4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/eXo-Platform/Skus/Express-4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "253" @@ -10761,7 +11020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d9eb02cc-0d74-43c1-85e2-c38822bb7f7b" + "ebf4e006-caf3-4e14-810d-8af55c18823e" ], "Cache-Control": [ "no-cache" @@ -10771,31 +11030,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13834" + "14722" ], "x-ms-correlation-request-id": [ - "f923fecb-16b0-4bae-a931-51042ca5ad70" + "f19d78ee-7929-411c-842d-f9dcd9df259f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212442Z:f923fecb-16b0-4bae-a931-51042ca5ad70" + "WESTUS:20150813T074615Z:f19d78ee-7929-411c-842d-f9dcd9df259f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:42 GMT" + "Thu, 13 Aug 2015 07:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/eXo-Platform/skus/Express-4/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VYby1QbGF0Zm9ybS9za3VzL0V4cHJlc3MtNC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/eXo-Platform/skus/Express-4/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VYby1QbGF0Zm9ybS9za3VzL0V4cHJlc3MtNC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/eXo-Platform/Skus/Express-4/Versions/4.0.7\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/eXo-Platform/Skus/Express-4/Versions/4.0.7\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -10813,7 +11072,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "caca638d-6aa8-4b2a-aa3b-b8bbed5b5b64" + "25876efe-e09a-4c78-abcb-e55e9828151c" ], "Cache-Control": [ "no-cache" @@ -10823,31 +11082,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13833" + "14721" ], "x-ms-correlation-request-id": [ - "4c45dcdb-a993-4db0-8f8c-4d0a89b9d694" + "a99c495e-010d-42ad-9f1e-2ec460021b66" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212442Z:4c45dcdb-a993-4db0-8f8c-4d0a89b9d694" + "WESTUS:20150813T074615Z:a99c495e-010d-42ad-9f1e-2ec460021b66" ], "Date": [ - "Wed, 05 Aug 2015 21:24:42 GMT" + "Thu, 13 Aug 2015 07:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/eXo-Platform/skus/Express-4/versions/4.0.7?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VYby1QbGF0Zm9ybS9za3VzL0V4cHJlc3MtNC92ZXJzaW9ucy80LjAuNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/eXo-Platform/skus/Express-4/versions/4.0.7?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VYby1QbGF0Zm9ybS9za3VzL0V4cHJlc3MtNC92ZXJzaW9ucy80LjAuNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/eXo-Platform/Skus/Express-4/Versions/4.0.7\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/eXo-Platform/Skus/Express-4/Versions/4.0.7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -10865,7 +11124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b622286c-141d-4581-bedd-7dc8d2fef7d1" + "74765b0e-dc4a-4615-8303-c1ffa0b17ee2" ], "Cache-Control": [ "no-cache" @@ -10875,31 +11134,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13832" + "14720" ], "x-ms-correlation-request-id": [ - "7f107466-88d0-4e55-84fa-8edda97953c3" + "55a20512-e408-428b-914a-0f0982d3998c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212442Z:7f107466-88d0-4e55-84fa-8edda97953c3" + "WESTUS:20150813T074616Z:55a20512-e408-428b-914a-0f0982d3998c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:42 GMT" + "Thu, 13 Aug 2015 07:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/redmine/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JlZG1pbmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/redmine/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JlZG1pbmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/redmine/Skus/3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/redmine/Skus/3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "232" @@ -10917,7 +11176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e3fa046-4569-40b1-aa22-5ce5fa32f7df" + "b703df33-5800-4abf-8025-5afc859a14f2" ], "Cache-Control": [ "no-cache" @@ -10927,31 +11186,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13831" + "14719" ], "x-ms-correlation-request-id": [ - "f6a0dfbe-97a9-4a5e-a1ff-63d2b332b19a" + "562098dc-7cf8-4b3d-92a4-2623474f9441" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212442Z:f6a0dfbe-97a9-4a5e-a1ff-63d2b332b19a" + "WESTUS:20150813T074616Z:562098dc-7cf8-4b3d-92a4-2623474f9441" ], "Date": [ - "Wed, 05 Aug 2015 21:24:42 GMT" + "Thu, 13 Aug 2015 07:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/redmine/skus/3/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JlZG1pbmUvc2t1cy8zL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/redmine/skus/3/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JlZG1pbmUvc2t1cy8zL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/redmine/Skus/3/Versions/3.0.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/redmine/Skus/3/Versions/3.0.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "251" @@ -10969,7 +11228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4613ddf2-9bcc-4029-a75a-3d4182eca981" + "24e9401e-742b-4f4f-862e-e7fff4ec283b" ], "Cache-Control": [ "no-cache" @@ -10979,31 +11238,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13830" + "14718" ], "x-ms-correlation-request-id": [ - "6a24956e-c840-4387-9859-b3fbc7b90d99" + "e1d63a56-824b-4712-a0e7-a2c450e2229a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212442Z:6a24956e-c840-4387-9859-b3fbc7b90d99" + "WESTUS:20150813T074616Z:e1d63a56-824b-4712-a0e7-a2c450e2229a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:42 GMT" + "Thu, 13 Aug 2015 07:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/redmine/skus/3/versions/3.0.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JlZG1pbmUvc2t1cy8zL3ZlcnNpb25zLzMuMC40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/redmine/skus/3/versions/3.0.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JlZG1pbmUvc2t1cy8zL3ZlcnNpb25zLzMuMC40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bitnami\",\r\n \"name\": \"3\",\r\n \"product\": \"redmine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/redmine/Skus/3/Versions/3.0.4\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bitnami\",\r\n \"name\": \"3\",\r\n \"product\": \"redmine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/redmine/Skus/3/Versions/3.0.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ "452" @@ -11021,7 +11280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "965dc18f-c0dd-4a4d-9213-f1b5c3ef8cfd" + "ad3c9ddf-293c-479c-83b3-aedf4f3cde61" ], "Cache-Control": [ "no-cache" @@ -11031,31 +11290,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13829" + "14717" ], "x-ms-correlation-request-id": [ - "ef460b02-e1da-4b59-90c0-3dc490c70fda" + "0246efda-390a-43f4-baf0-cb5876ecf505" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212442Z:ef460b02-e1da-4b59-90c0-3dc490c70fda" + "WESTUS:20150813T074616Z:0246efda-390a-43f4-baf0-cb5876ecf505" ], "Date": [ - "Wed, 05 Aug 2015 21:24:42 GMT" + "Thu, 13 Aug 2015 07:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/wordpress/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dvcmRwcmVzcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/wordpress/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dvcmRwcmVzcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4-2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/wordpress/Skus/4-2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4-2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/wordpress/Skus/4-2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "238" @@ -11073,7 +11332,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f00929c-1689-42ff-98c7-af6bfe64b0d1" + "626692cf-bbe9-44c7-bd41-2ea25ed6e3fd" ], "Cache-Control": [ "no-cache" @@ -11083,31 +11342,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13828" + "14716" ], "x-ms-correlation-request-id": [ - "1e7a02bc-f675-40e0-8039-d975c79a7e86" + "7f2d2c30-1509-4677-86f1-7400ab050bcc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:1e7a02bc-f675-40e0-8039-d975c79a7e86" + "WESTUS:20150813T074616Z:7f2d2c30-1509-4677-86f1-7400ab050bcc" ], "Date": [ - "Wed, 05 Aug 2015 21:24:42 GMT" + "Thu, 13 Aug 2015 07:46:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/wordpress/skus/4-2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dvcmRwcmVzcy9za3VzLzQtMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/wordpress/skus/4-2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dvcmRwcmVzcy9za3VzLzQtMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/wordpress/Skus/4-2/Versions/4.2.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/wordpress/Skus/4-2/Versions/4.2.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "255" @@ -11125,7 +11384,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ad76f0f-8eef-4644-a44b-7e66934c996c" + "f6cf9e13-d0fe-406e-9e94-df6a617dfea0" ], "Cache-Control": [ "no-cache" @@ -11135,31 +11394,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13827" + "14715" ], "x-ms-correlation-request-id": [ - "164d5139-8231-4b44-a12b-64cde9684084" + "60006f80-3b5c-41be-ae4c-f09c6cb0ffe0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:164d5139-8231-4b44-a12b-64cde9684084" + "WESTUS:20150813T074616Z:60006f80-3b5c-41be-ae4c-f09c6cb0ffe0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/wordpress/skus/4-2/versions/4.2.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dvcmRwcmVzcy9za3VzLzQtMi92ZXJzaW9ucy80LjIuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Bitnami/artifacttypes/vmimage/offers/wordpress/skus/4-2/versions/4.2.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQml0bmFtaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dvcmRwcmVzcy9za3VzLzQtMi92ZXJzaW9ucy80LjIuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bitnami\",\r\n \"name\": \"4-2\",\r\n \"product\": \"wordpress\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/wordpress/Skus/4-2/Versions/4.2.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bitnami\",\r\n \"name\": \"4-2\",\r\n \"product\": \"wordpress\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami/ArtifactTypes/VMImage/Offers/wordpress/Skus/4-2/Versions/4.2.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "460" @@ -11177,7 +11436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a95f5b40-409c-4ef4-bf63-90998405b6e7" + "4a6d8383-b509-4836-a99f-cf33a5668d60" ], "Cache-Control": [ "no-cache" @@ -11187,31 +11446,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13826" + "14714" ], "x-ms-correlation-request-id": [ - "decadd4f-b0eb-4599-ba7c-069640bc6cc4" + "97f696e0-72bb-431c-86c9-b38517b51390" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:decadd4f-b0eb-4599-ba7c-069640bc6cc4" + "WESTUS:20150813T074616Z:97f696e0-72bb-431c-86c9-b38517b51390" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bluetalon/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmx1ZXRhbG9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bluetalon/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmx1ZXRhbG9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "237" @@ -11229,7 +11488,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63ca2400-590a-4f0c-90cc-5e14ce6925fe" + "c70af7f3-f4e4-4ace-a8b4-e6d23bffaea1" ], "Cache-Control": [ "no-cache" @@ -11239,31 +11498,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13825" + "14713" ], "x-ms-correlation-request-id": [ - "a8f71b09-0cdc-4d61-879d-b9f641e7e28a" + "95d9ceb1-4c00-47ea-892b-c1179532dfdb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:a8f71b09-0cdc-4d61-879d-b9f641e7e28a" + "WESTUS:20150813T074616Z:95d9ceb1-4c00-47ea-892b-c1179532dfdb" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bluetalon/artifacttypes/vmimage/offers/bluetalon/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmx1ZXRhbG9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYmx1ZXRhbG9uL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bluetalon/artifacttypes/vmimage/offers/bluetalon/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmx1ZXRhbG9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYmx1ZXRhbG9uL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon/Skus/bluetalon\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon/Skus/bluetalon\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "252" @@ -11281,7 +11540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a46934fb-a852-410e-988c-54ea5ed2ed4b" + "f4179354-2909-4401-83c9-a4579ea06aa5" ], "Cache-Control": [ "no-cache" @@ -11291,31 +11550,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13824" + "14712" ], "x-ms-correlation-request-id": [ - "2383983e-9a8a-4542-aedd-373b47873ae8" + "23ca85d5-1a37-4694-bcd6-b4d59e741f8e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:2383983e-9a8a-4542-aedd-373b47873ae8" + "WESTUS:20150813T074616Z:23ca85d5-1a37-4694-bcd6-b4d59e741f8e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bluetalon/artifacttypes/vmimage/offers/bluetalon/skus/bluetalon/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmx1ZXRhbG9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYmx1ZXRhbG9uL3NrdXMvYmx1ZXRhbG9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bluetalon/artifacttypes/vmimage/offers/bluetalon/skus/bluetalon/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmx1ZXRhbG9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYmx1ZXRhbG9uL3NrdXMvYmx1ZXRhbG9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon/Skus/bluetalon/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon/Skus/bluetalon/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "263" @@ -11333,7 +11592,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33b16c4f-f012-4ad7-867e-850a1381be0d" + "71e6a7f3-b308-46a2-a34e-1de562fb28cc" ], "Cache-Control": [ "no-cache" @@ -11343,31 +11602,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13823" + "14711" ], "x-ms-correlation-request-id": [ - "498e6f7e-8f0a-44a4-a00e-3eea7852c9f1" + "57aac11c-4024-4a17-8bb5-e49130ae4b33" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:498e6f7e-8f0a-44a4-a00e-3eea7852c9f1" + "WESTUS:20150813T074617Z:57aac11c-4024-4a17-8bb5-e49130ae4b33" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bluetalon/artifacttypes/vmimage/offers/bluetalon/skus/bluetalon/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmx1ZXRhbG9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYmx1ZXRhbG9uL3NrdXMvYmx1ZXRhbG9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bluetalon/artifacttypes/vmimage/offers/bluetalon/skus/bluetalon/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYmx1ZXRhbG9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYmx1ZXRhbG9uL3NrdXMvYmx1ZXRhbG9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bluetalon\",\r\n \"name\": \"bluetalon\",\r\n \"product\": \"bluetalon\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon/Skus/bluetalon/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bluetalon\",\r\n \"name\": \"bluetalon\",\r\n \"product\": \"bluetalon\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon/Skus/bluetalon/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "476" @@ -11385,7 +11644,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4170a245-0c9a-475e-8075-1e54eeb7de27" + "127a13ae-ef62-4bbd-8afa-90815821ddc3" ], "Cache-Control": [ "no-cache" @@ -11395,31 +11654,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13822" + "14710" ], "x-ms-correlation-request-id": [ - "1a6e9fbd-e9e5-4740-8f98-203a0a55d72c" + "237089c9-e3c6-4947-86bf-42b5586d63c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:1a6e9fbd-e9e5-4740-8f98-203a0a55d72c" + "WESTUS:20150813T074617Z:237089c9-e3c6-4947-86bf-42b5586d63c9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/boundlessgeo/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm91bmRsZXNzZ2VvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/boundlessgeo/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm91bmRsZXNzZ2VvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opengeosuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opengeosuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "246" @@ -11437,7 +11696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76aed6fd-88e9-4784-8da3-db9ff7698ea0" + "f7667ac4-cce5-41fa-aec3-bfbe0d62a8fc" ], "Cache-Control": [ "no-cache" @@ -11447,31 +11706,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13821" + "14709" ], "x-ms-correlation-request-id": [ - "f5a6dede-43a5-4445-97c9-ab051aec0d06" + "dde95983-1d38-4d3d-953e-2e1c4fdaa691" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:f5a6dede-43a5-4445-97c9-ab051aec0d06" + "WESTUS:20150813T074617Z:dde95983-1d38-4d3d-953e-2e1c4fdaa691" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/boundlessgeo/artifacttypes/vmimage/offers/opengeosuite/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm91bmRsZXNzZ2VvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3Blbmdlb3N1aXRlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/boundlessgeo/artifacttypes/vmimage/offers/opengeosuite/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm91bmRsZXNzZ2VvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3Blbmdlb3N1aXRlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opengeosuite_postgis_tomcat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite/Skus/opengeosuite_postgis_tomcat\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opengeosuite_postgis_tomcat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite/Skus/opengeosuite_postgis_tomcat\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "294" @@ -11489,7 +11748,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae3afeb0-c2ba-4616-99b0-2317c89954c8" + "cc925e1b-8986-4f91-b0c2-5fdf89ea30f5" ], "Cache-Control": [ "no-cache" @@ -11499,31 +11758,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13820" + "14708" ], "x-ms-correlation-request-id": [ - "f56d1da6-1d23-4d60-b226-30dc9e369c84" + "6412863a-8ed8-4612-9665-6df9df91f082" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:f56d1da6-1d23-4d60-b226-30dc9e369c84" + "WESTUS:20150813T074617Z:6412863a-8ed8-4612-9665-6df9df91f082" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/boundlessgeo/artifacttypes/vmimage/offers/opengeosuite/skus/opengeosuite_postgis_tomcat/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm91bmRsZXNzZ2VvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3Blbmdlb3N1aXRlL3NrdXMvb3Blbmdlb3N1aXRlX3Bvc3RnaXNfdG9tY2F0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/boundlessgeo/artifacttypes/vmimage/offers/opengeosuite/skus/opengeosuite_postgis_tomcat/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm91bmRsZXNzZ2VvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3Blbmdlb3N1aXRlL3NrdXMvb3Blbmdlb3N1aXRlX3Bvc3RnaXNfdG9tY2F0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite/Skus/opengeosuite_postgis_tomcat/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite/Skus/opengeosuite_postgis_tomcat/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "287" @@ -11541,7 +11800,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cdbb37d-a171-4634-80f1-58ae29188ae2" + "c2ae8324-da15-4e5d-9507-4393ce222e2b" ], "Cache-Control": [ "no-cache" @@ -11551,31 +11810,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13819" + "14707" ], "x-ms-correlation-request-id": [ - "efa93ddf-bdb9-4e64-9764-b1543e75e43e" + "b880bd91-52ce-41ec-b59d-44e7f029ecb9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212443Z:efa93ddf-bdb9-4e64-9764-b1543e75e43e" + "WESTUS:20150813T074617Z:b880bd91-52ce-41ec-b59d-44e7f029ecb9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/boundlessgeo/artifacttypes/vmimage/offers/opengeosuite/skus/opengeosuite_postgis_tomcat/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm91bmRsZXNzZ2VvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3Blbmdlb3N1aXRlL3NrdXMvb3Blbmdlb3N1aXRlX3Bvc3RnaXNfdG9tY2F0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/boundlessgeo/artifacttypes/vmimage/offers/opengeosuite/skus/opengeosuite_postgis_tomcat/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm91bmRsZXNzZ2VvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3Blbmdlb3N1aXRlL3NrdXMvb3Blbmdlb3N1aXRlX3Bvc3RnaXNfdG9tY2F0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"boundlessgeo\",\r\n \"name\": \"opengeosuite_postgis_tomcat\",\r\n \"product\": \"opengeosuite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite/Skus/opengeosuite_postgis_tomcat/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"boundlessgeo\",\r\n \"name\": \"opengeosuite_postgis_tomcat\",\r\n \"product\": \"opengeosuite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite/Skus/opengeosuite_postgis_tomcat/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -11593,7 +11852,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c7de0a7-724a-4a71-8880-0fa6d0232770" + "feaf0b8f-1ec7-4c45-b27c-d8d3ecabd4ba" ], "Cache-Control": [ "no-cache" @@ -11603,31 +11862,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13818" + "14706" ], "x-ms-correlation-request-id": [ - "5ef273dd-13cb-4308-bccc-20a188c1c25d" + "7a6a98e6-b50f-4537-8050-1f47a4076f6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212444Z:5ef273dd-13cb-4308-bccc-20a188c1c25d" + "WESTUS:20150813T074617Z:7a6a98e6-b50f-4537-8050-1f47a4076f6e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:43 GMT" + "Thu, 13 Aug 2015 07:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/boxless/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm94bGVzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/boxless/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm94bGVzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless/ArtifactTypes/VMImage/Offers/boxless\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless/ArtifactTypes/VMImage/Offers/boxless\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "231" @@ -11645,7 +11904,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "354e23fd-1479-451d-98a7-8a45db912100" + "ff76b060-1c6c-4504-a1fe-0a405fa193e1" ], "Cache-Control": [ "no-cache" @@ -11655,31 +11914,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13817" + "14705" ], "x-ms-correlation-request-id": [ - "0f339deb-5d1d-49e7-b8c5-cca49f38c639" + "28001cd9-6e45-4675-975f-f7a57f336302" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212444Z:0f339deb-5d1d-49e7-b8c5-cca49f38c639" + "WESTUS:20150813T074618Z:28001cd9-6e45-4675-975f-f7a57f336302" ], "Date": [ - "Wed, 05 Aug 2015 21:24:44 GMT" + "Thu, 13 Aug 2015 07:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/boxless/artifacttypes/vmimage/offers/boxless/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm94bGVzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JveGxlc3Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/boxless/artifacttypes/vmimage/offers/boxless/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm94bGVzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JveGxlc3Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless/ArtifactTypes/VMImage/Offers/boxless/Skus/boxless\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless/ArtifactTypes/VMImage/Offers/boxless/Skus/boxless\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "244" @@ -11697,7 +11956,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30b0a902-fe5c-40a9-90d8-c44b876322ab" + "fb5e8a6a-e5a6-4bdc-ab0e-b0f370c4c063" ], "Cache-Control": [ "no-cache" @@ -11707,31 +11966,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13816" + "14704" ], "x-ms-correlation-request-id": [ - "1210736b-82a9-4db3-874b-da51def42a43" + "4ebc2cb9-cc49-4c4a-b528-c6b06f5c6418" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212444Z:1210736b-82a9-4db3-874b-da51def42a43" + "WESTUS:20150813T074618Z:4ebc2cb9-cc49-4c4a-b528-c6b06f5c6418" ], "Date": [ - "Wed, 05 Aug 2015 21:24:44 GMT" + "Thu, 13 Aug 2015 07:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/boxless/artifacttypes/vmimage/offers/boxless/skus/boxless/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm94bGVzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JveGxlc3Mvc2t1cy9ib3hsZXNzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/boxless/artifacttypes/vmimage/offers/boxless/skus/boxless/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm94bGVzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JveGxlc3Mvc2t1cy9ib3hsZXNzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless/ArtifactTypes/VMImage/Offers/boxless/Skus/boxless/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless/ArtifactTypes/VMImage/Offers/boxless/Skus/boxless/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -11749,7 +12008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e6c0c67-929d-43ee-a55b-f7b62a5f3aaa" + "45b7413b-c4d7-46aa-9b19-86e70ef47453" ], "Cache-Control": [ "no-cache" @@ -11759,31 +12018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13815" + "14703" ], "x-ms-correlation-request-id": [ - "6353a2e7-8141-4cfd-8fea-4257090d09fe" + "282a7642-c374-4397-924a-f25642afad31" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212444Z:6353a2e7-8141-4cfd-8fea-4257090d09fe" + "WESTUS:20150813T074618Z:282a7642-c374-4397-924a-f25642afad31" ], "Date": [ - "Wed, 05 Aug 2015 21:24:44 GMT" + "Thu, 13 Aug 2015 07:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/boxless/artifacttypes/vmimage/offers/boxless/skus/boxless/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm94bGVzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JveGxlc3Mvc2t1cy9ib3hsZXNzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/boxless/artifacttypes/vmimage/offers/boxless/skus/boxless/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYm94bGVzcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JveGxlc3Mvc2t1cy9ib3hsZXNzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"boxless\",\r\n \"name\": \"boxless\",\r\n \"product\": \"boxless\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless/ArtifactTypes/VMImage/Offers/boxless/Skus/boxless/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"boxless\",\r\n \"name\": \"boxless\",\r\n \"product\": \"boxless\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless/ArtifactTypes/VMImage/Offers/boxless/Skus/boxless/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -11801,7 +12060,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d852667-4427-44dd-8ad1-b923882550c9" + "3325c9d6-7e1c-4450-93c1-9072c97ba878" ], "Cache-Control": [ "no-cache" @@ -11811,31 +12070,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13814" + "14702" ], "x-ms-correlation-request-id": [ - "8ee25fd5-acac-4e5c-92ee-99b1db6494cf" + "e7df9deb-afde-4543-aa1c-b7b51ffc8c61" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212444Z:8ee25fd5-acac-4e5c-92ee-99b1db6494cf" + "WESTUS:20150813T074618Z:e7df9deb-afde-4543-aa1c-b7b51ffc8c61" ], "Date": [ - "Wed, 05 Aug 2015 21:24:44 GMT" + "Thu, 13 Aug 2015 07:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bryte/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnJ5dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bryte/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnJ5dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryteflow-cdc-free-trial\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryteflow-cdc-free-trial\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "263" @@ -11853,7 +12112,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14246882-15fa-4337-a7c9-36e63fa9f1ed" + "4e115034-8107-4239-8a15-56932429cd80" ], "Cache-Control": [ "no-cache" @@ -11863,31 +12122,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13813" + "14701" ], "x-ms-correlation-request-id": [ - "10c0592b-bae1-4736-9ec3-61fa4624bcc8" + "e38fe77e-e561-4dc3-b632-2e8b2b3497ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212444Z:10c0592b-bae1-4736-9ec3-61fa4624bcc8" + "WESTUS:20150813T074618Z:e38fe77e-e561-4dc3-b632-2e8b2b3497ed" ], "Date": [ - "Wed, 05 Aug 2015 21:24:44 GMT" + "Thu, 13 Aug 2015 07:46:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bryte/artifacttypes/vmimage/offers/bryteflow-cdc-free-trial/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnJ5dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icnl0ZWZsb3ctY2RjLWZyZWUtdHJpYWwvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bryte/artifacttypes/vmimage/offers/bryteflow-cdc-free-trial/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnJ5dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icnl0ZWZsb3ctY2RjLWZyZWUtdHJpYWwvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryteflowcdc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial/Skus/bryteflowcdc\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryteflowcdc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial/Skus/bryteflowcdc\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -11905,7 +12164,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6174559-201b-4da6-950d-c0706785638f" + "0f2cc164-8366-4239-941b-03b7b9dcf453" ], "Cache-Control": [ "no-cache" @@ -11915,31 +12174,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13812" + "14700" ], "x-ms-correlation-request-id": [ - "e42ff7f8-f506-49f7-8b15-0651db254976" + "d6fbef4c-3989-4f46-8b9f-54cda12b5df0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212444Z:e42ff7f8-f506-49f7-8b15-0651db254976" + "WESTUS:20150813T074618Z:d6fbef4c-3989-4f46-8b9f-54cda12b5df0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:44 GMT" + "Thu, 13 Aug 2015 07:46:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bryte/artifacttypes/vmimage/offers/bryteflow-cdc-free-trial/skus/bryteflowcdc/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnJ5dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icnl0ZWZsb3ctY2RjLWZyZWUtdHJpYWwvc2t1cy9icnl0ZWZsb3djZGMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bryte/artifacttypes/vmimage/offers/bryteflow-cdc-free-trial/skus/bryteflowcdc/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnJ5dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icnl0ZWZsb3ctY2RjLWZyZWUtdHJpYWwvc2t1cy9icnl0ZWZsb3djZGMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial/Skus/bryteflowcdc/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial/Skus/bryteflowcdc/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -11957,7 +12216,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76fb0c25-5a7a-48f3-be6c-a96206d8aa32" + "ced239a4-5db8-42bc-b5f1-6a45afa4b8c8" ], "Cache-Control": [ "no-cache" @@ -11967,31 +12226,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13811" + "14699" ], "x-ms-correlation-request-id": [ - "feb6d038-7c5b-4789-ae62-7d9893b4b574" + "f11bd953-9000-4132-9f36-49d4b6fbc687" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212444Z:feb6d038-7c5b-4789-ae62-7d9893b4b574" + "WESTUS:20150813T074619Z:f11bd953-9000-4132-9f36-49d4b6fbc687" ], "Date": [ - "Wed, 05 Aug 2015 21:24:44 GMT" + "Thu, 13 Aug 2015 07:46:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bryte/artifacttypes/vmimage/offers/bryteflow-cdc-free-trial/skus/bryteflowcdc/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnJ5dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icnl0ZWZsb3ctY2RjLWZyZWUtdHJpYWwvc2t1cy9icnl0ZWZsb3djZGMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bryte/artifacttypes/vmimage/offers/bryteflow-cdc-free-trial/skus/bryteflowcdc/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnJ5dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icnl0ZWZsb3ctY2RjLWZyZWUtdHJpYWwvc2t1cy9icnl0ZWZsb3djZGMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bryte\",\r\n \"name\": \"bryteflowcdc\",\r\n \"product\": \"bryteflow-cdc-free-trial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial/Skus/bryteflowcdc/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bryte\",\r\n \"name\": \"bryteflowcdc\",\r\n \"product\": \"bryteflow-cdc-free-trial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial/Skus/bryteflowcdc/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -12009,7 +12268,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5c11303-87e9-4c9e-8274-a524c924c326" + "a426c4a3-bb98-40ce-b235-b7ff41e683b4" ], "Cache-Control": [ "no-cache" @@ -12019,31 +12278,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13810" + "14698" ], "x-ms-correlation-request-id": [ - "f281803b-69c9-4fa2-b187-a9e0a9a491a7" + "c92e0b3c-3ac2-44f5-abaa-f42ce54aefda" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212445Z:f281803b-69c9-4fa2-b187-a9e0a9a491a7" + "WESTUS:20150813T074619Z:c92e0b3c-3ac2-44f5-abaa-f42ce54aefda" ], "Date": [ - "Wed, 05 Aug 2015 21:24:44 GMT" + "Thu, 13 Aug 2015 07:46:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bssw/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnNzdy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bssw/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnNzdy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluestripe-factfinder\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw/ArtifactTypes/VMImage/Offers/bluestripe-factfinder\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluestripe-factfinder\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw/ArtifactTypes/VMImage/Offers/bluestripe-factfinder\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "256" @@ -12061,7 +12320,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41e21c96-c84b-41c0-b056-ef8d5ebefd10" + "61a4a922-4528-4d2b-a283-4bb2fcbb4d40" ], "Cache-Control": [ "no-cache" @@ -12071,31 +12330,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13809" + "14697" ], "x-ms-correlation-request-id": [ - "afcb6423-bb6a-4a88-a529-3879dbc26d8f" + "9b780813-911f-4211-943e-7e34f5b02e27" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212445Z:afcb6423-bb6a-4a88-a529-3879dbc26d8f" + "WESTUS:20150813T074619Z:9b780813-911f-4211-943e-7e34f5b02e27" ], "Date": [ - "Wed, 05 Aug 2015 21:24:45 GMT" + "Thu, 13 Aug 2015 07:46:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bssw/artifacttypes/vmimage/offers/bluestripe-factfinder/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnNzdy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JsdWVzdHJpcGUtZmFjdGZpbmRlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bssw/artifacttypes/vmimage/offers/bluestripe-factfinder/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnNzdy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JsdWVzdHJpcGUtZmFjdGZpbmRlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"factfinder-win-ms-4-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw/ArtifactTypes/VMImage/Offers/bluestripe-factfinder/Skus/factfinder-win-ms-4-azure\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"factfinder-win-ms-4-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw/ArtifactTypes/VMImage/Offers/bluestripe-factfinder/Skus/factfinder-win-ms-4-azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "291" @@ -12113,7 +12372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8b22aee-b1b5-4e03-9196-7e352a78e5c2" + "fa0008c5-dfec-4153-b0f5-1d1afe50f73b" ], "Cache-Control": [ "no-cache" @@ -12123,31 +12382,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13808" + "14696" ], "x-ms-correlation-request-id": [ - "26739c08-61d6-4390-b138-979377594b43" + "43b378d6-bdc0-465d-86bf-efeac93d0fbb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212445Z:26739c08-61d6-4390-b138-979377594b43" + "WESTUS:20150813T074619Z:43b378d6-bdc0-465d-86bf-efeac93d0fbb" ], "Date": [ - "Wed, 05 Aug 2015 21:24:45 GMT" + "Thu, 13 Aug 2015 07:46:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bssw/artifacttypes/vmimage/offers/bluestripe-factfinder/skus/factfinder-win-ms-4-azure/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnNzdy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JsdWVzdHJpcGUtZmFjdGZpbmRlci9za3VzL2ZhY3RmaW5kZXItd2luLW1zLTQtYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bssw/artifacttypes/vmimage/offers/bluestripe-factfinder/skus/factfinder-win-ms-4-azure/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnNzdy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JsdWVzdHJpcGUtZmFjdGZpbmRlci9za3VzL2ZhY3RmaW5kZXItd2luLW1zLTQtYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw/ArtifactTypes/VMImage/Offers/bluestripe-factfinder/Skus/factfinder-win-ms-4-azure/Versions/8.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw/ArtifactTypes/VMImage/Offers/bluestripe-factfinder/Skus/factfinder-win-ms-4-azure/Versions/8.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "286" @@ -12165,7 +12424,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67087a0e-c2a5-4579-a300-54a8c0a6e80d" + "25ad3b8a-26c5-46cc-b60c-08240075145b" ], "Cache-Control": [ "no-cache" @@ -12175,31 +12434,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13807" + "14695" ], "x-ms-correlation-request-id": [ - "0687c0a6-8a7f-489e-b1fc-aa591fe19437" + "ae6244ad-4069-4174-9299-1725516aaf75" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212445Z:0687c0a6-8a7f-489e-b1fc-aa591fe19437" + "WESTUS:20150813T074619Z:ae6244ad-4069-4174-9299-1725516aaf75" ], "Date": [ - "Wed, 05 Aug 2015 21:24:45 GMT" + "Thu, 13 Aug 2015 07:46:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bssw/artifacttypes/vmimage/offers/bluestripe-factfinder/skus/factfinder-win-ms-4-azure/versions/8.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnNzdy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JsdWVzdHJpcGUtZmFjdGZpbmRlci9za3VzL2ZhY3RmaW5kZXItd2luLW1zLTQtYXp1cmUvdmVyc2lvbnMvOC4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bssw/artifacttypes/vmimage/offers/bluestripe-factfinder/skus/factfinder-win-ms-4-azure/versions/8.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnNzdy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JsdWVzdHJpcGUtZmFjdGZpbmRlci9za3VzL2ZhY3RmaW5kZXItd2luLW1zLTQtYXp1cmUvdmVyc2lvbnMvOC4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bssw\",\r\n \"name\": \"factfinder-win-ms-4-azure\",\r\n \"product\": \"bluestripe-factfinder\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw/ArtifactTypes/VMImage/Offers/bluestripe-factfinder/Skus/factfinder-win-ms-4-azure/Versions/8.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bssw\",\r\n \"name\": \"factfinder-win-ms-4-azure\",\r\n \"product\": \"bluestripe-factfinder\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw/ArtifactTypes/VMImage/Offers/bluestripe-factfinder/Skus/factfinder-win-ms-4-azure/Versions/8.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -12217,7 +12476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2e24b45-9d8e-4e25-8633-0ce13bfe5c48" + "99dfe517-4e9c-4ac2-b038-b739ebd7cce4" ], "Cache-Control": [ "no-cache" @@ -12227,31 +12486,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13806" + "14694" ], "x-ms-correlation-request-id": [ - "60ff975b-b52c-46d3-8c36-5ea71b87e880" + "dc3e9211-bf1a-4288-a03f-2e54c85a4931" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212445Z:60ff975b-b52c-46d3-8c36-5ea71b87e880" + "WESTUS:20150813T074619Z:dc3e9211-bf1a-4288-a03f-2e54c85a4931" ], "Date": [ - "Wed, 05 Aug 2015 21:24:45 GMT" + "Thu, 13 Aug 2015 07:46:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/buddhalabs/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnVkZGhhbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/buddhalabs/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnVkZGhhbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sles_12_pci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sles_12_pci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "242" @@ -12269,7 +12528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90644702-f79e-4f6c-aa64-b1994bfa1eb7" + "32f306b8-a851-4d75-b97a-25f71383d6bc" ], "Cache-Control": [ "no-cache" @@ -12279,31 +12538,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13805" + "14693" ], "x-ms-correlation-request-id": [ - "2635936b-066d-4fb1-b0dc-bf48ff2a09dc" + "be127d56-405f-4647-a8f3-4631dfdde267" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212445Z:2635936b-066d-4fb1-b0dc-bf48ff2a09dc" + "WESTUS:20150813T074619Z:be127d56-405f-4647-a8f3-4631dfdde267" ], "Date": [ - "Wed, 05 Aug 2015 21:24:45 GMT" + "Thu, 13 Aug 2015 07:46:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/buddhalabs/artifacttypes/vmimage/offers/sles_12_pci/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnVkZGhhbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NsZXNfMTJfcGNpL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/buddhalabs/artifacttypes/vmimage/offers/sles_12_pci/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnVkZGhhbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NsZXNfMTJfcGNpL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sles12-pci\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci/Skus/sles12-pci\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sles12-pci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci/Skus/sles12-pci\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -12321,7 +12580,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cda67ca5-d100-4a3f-ac34-ad8bb94c2d44" + "377bbea6-c186-483c-99c5-23279e33ced2" ], "Cache-Control": [ "no-cache" @@ -12331,31 +12590,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13804" + "14692" ], "x-ms-correlation-request-id": [ - "da14eec3-a045-4513-902c-5e877c2bdd60" + "155f35c7-7b60-476f-a2ec-8a6f8a0068eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212445Z:da14eec3-a045-4513-902c-5e877c2bdd60" + "WESTUS:20150813T074619Z:155f35c7-7b60-476f-a2ec-8a6f8a0068eb" ], "Date": [ - "Wed, 05 Aug 2015 21:24:45 GMT" + "Thu, 13 Aug 2015 07:46:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/buddhalabs/artifacttypes/vmimage/offers/sles_12_pci/skus/sles12-pci/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnVkZGhhbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NsZXNfMTJfcGNpL3NrdXMvc2xlczEyLXBjaS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/buddhalabs/artifacttypes/vmimage/offers/sles_12_pci/skus/sles12-pci/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnVkZGhhbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NsZXNfMTJfcGNpL3NrdXMvc2xlczEyLXBjaS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci/Skus/sles12-pci/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci/Skus/sles12-pci/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -12373,7 +12632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5fcc1d4-905f-44c4-b0b8-70f52dd31ae2" + "01983a6d-ec82-45b0-9304-22ee8098a098" ], "Cache-Control": [ "no-cache" @@ -12383,31 +12642,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13803" + "14691" ], "x-ms-correlation-request-id": [ - "8d06c143-258f-4436-b141-e138a2237ca7" + "01266547-3e76-4bc3-af0a-421cf4bb5bef" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212445Z:8d06c143-258f-4436-b141-e138a2237ca7" + "WESTUS:20150813T074619Z:01266547-3e76-4bc3-af0a-421cf4bb5bef" ], "Date": [ - "Wed, 05 Aug 2015 21:24:45 GMT" + "Thu, 13 Aug 2015 07:46:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/buddhalabs/artifacttypes/vmimage/offers/sles_12_pci/skus/sles12-pci/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnVkZGhhbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NsZXNfMTJfcGNpL3NrdXMvc2xlczEyLXBjaS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/buddhalabs/artifacttypes/vmimage/offers/sles_12_pci/skus/sles12-pci/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYnVkZGhhbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NsZXNfMTJfcGNpL3NrdXMvc2xlczEyLXBjaS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"buddhalabs\",\r\n \"name\": \"sles12-pci\",\r\n \"product\": \"sles_12_pci\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci/Skus/sles12-pci/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"buddhalabs\",\r\n \"name\": \"sles12-pci\",\r\n \"product\": \"sles_12_pci\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci/Skus/sles12-pci/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "484" @@ -12425,7 +12684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a407cc2b-607d-4a00-934d-6ac8bdb27071" + "a2400489-763c-4f46-899a-e18e12211c91" ], "Cache-Control": [ "no-cache" @@ -12435,31 +12694,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13802" + "14690" ], "x-ms-correlation-request-id": [ - "33ec2943-130c-472f-8301-33127f1ecfc1" + "d69b04cd-c80d-4cbb-902e-282589e8d632" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212446Z:33ec2943-130c-472f-8301-33127f1ecfc1" + "WESTUS:20150813T074620Z:d69b04cd-c80d-4cbb-902e-282589e8d632" ], "Date": [ - "Wed, 05 Aug 2015 21:24:45 GMT" + "Thu, 13 Aug 2015 07:46:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bwappengine/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYndhcHBlbmdpbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bwappengine/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYndhcHBlbmdpbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boardwalk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boardwalk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "239" @@ -12477,7 +12736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "817798a4-5f00-4464-8edb-3a80a234624c" + "fc3248d0-1085-4f11-817e-49c654a2a46b" ], "Cache-Control": [ "no-cache" @@ -12487,31 +12746,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13801" + "14689" ], "x-ms-correlation-request-id": [ - "9723d189-af70-42f5-a60b-742cb7f2299d" + "28f435d2-9b0b-465b-99d5-1d5b846e2853" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212446Z:9723d189-af70-42f5-a60b-742cb7f2299d" + "WESTUS:20150813T074620Z:28f435d2-9b0b-465b-99d5-1d5b846e2853" ], "Date": [ - "Wed, 05 Aug 2015 21:24:46 GMT" + "Thu, 13 Aug 2015 07:46:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bwappengine/artifacttypes/vmimage/offers/boardwalk/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYndhcHBlbmdpbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ib2FyZHdhbGsvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bwappengine/artifacttypes/vmimage/offers/boardwalk/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYndhcHBlbmdpbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ib2FyZHdhbGsvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boardwalk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk/Skus/boardwalk\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boardwalk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk/Skus/boardwalk\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "254" @@ -12529,7 +12788,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c61e057-35f0-4b0e-a314-859404948164" + "9923490e-2a5d-4fd5-86de-9e417b506116" ], "Cache-Control": [ "no-cache" @@ -12539,31 +12798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13800" + "14688" ], "x-ms-correlation-request-id": [ - "0f7e33a8-4e68-4b2d-9069-28159379c626" + "a5b19329-2afc-4062-bad0-a0927ca9b45d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212446Z:0f7e33a8-4e68-4b2d-9069-28159379c626" + "WESTUS:20150813T074620Z:a5b19329-2afc-4062-bad0-a0927ca9b45d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:46 GMT" + "Thu, 13 Aug 2015 07:46:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bwappengine/artifacttypes/vmimage/offers/boardwalk/skus/boardwalk/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYndhcHBlbmdpbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ib2FyZHdhbGsvc2t1cy9ib2FyZHdhbGsvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bwappengine/artifacttypes/vmimage/offers/boardwalk/skus/boardwalk/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYndhcHBlbmdpbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ib2FyZHdhbGsvc2t1cy9ib2FyZHdhbGsvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk/Skus/boardwalk/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk/Skus/boardwalk/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "265" @@ -12581,7 +12840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6be4fe79-ff68-47b2-be2e-3aa678385c40" + "d8e9b34f-b116-4074-af04-7db28f82dd65" ], "Cache-Control": [ "no-cache" @@ -12591,31 +12850,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13799" + "14687" ], "x-ms-correlation-request-id": [ - "d6c46095-ab00-400e-87db-11407de1838b" + "84b00eac-70fe-49aa-91da-23eddff334c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212446Z:d6c46095-ab00-400e-87db-11407de1838b" + "WESTUS:20150813T074620Z:84b00eac-70fe-49aa-91da-23eddff334c0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:46 GMT" + "Thu, 13 Aug 2015 07:46:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/bwappengine/artifacttypes/vmimage/offers/boardwalk/skus/boardwalk/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYndhcHBlbmdpbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ib2FyZHdhbGsvc2t1cy9ib2FyZHdhbGsvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/bwappengine/artifacttypes/vmimage/offers/boardwalk/skus/boardwalk/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYndhcHBlbmdpbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ib2FyZHdhbGsvc2t1cy9ib2FyZHdhbGsvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bwappengine\",\r\n \"name\": \"boardwalk\",\r\n \"product\": \"boardwalk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk/Skus/boardwalk/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"bwappengine\",\r\n \"name\": \"boardwalk\",\r\n \"product\": \"boardwalk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk/Skus/boardwalk/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "482" @@ -12633,7 +12892,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b983c919-ad16-439c-a018-3a04c2b734dd" + "4276d4dd-47b2-4a75-b272-bb0eb72c65f2" ], "Cache-Control": [ "no-cache" @@ -12643,31 +12902,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13798" + "14686" ], "x-ms-correlation-request-id": [ - "9cde18e4-d094-4b6f-b780-50c44ad3a42b" + "29a695d7-0522-4cf9-8b8e-d90eb4a6b728" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212446Z:9cde18e4-d094-4b6f-b780-50c44ad3a42b" + "WESTUS:20150813T074620Z:29a695d7-0522-4cf9-8b8e-d90eb4a6b728" ], "Date": [ - "Wed, 05 Aug 2015 21:24:46 GMT" + "Thu, 13 Aug 2015 07:46:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Ubuntu15.04Snappy\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Ubuntu15.04SnappyDocker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"UbunturollingSnappy\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"UbuntuServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Ubuntu15.04Snappy\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Ubuntu15.04SnappyDocker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"UbunturollingSnappy\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"UbuntuServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1009" @@ -12685,7 +12944,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f6e7689-224a-4298-b11a-78fa86fc8ab4" + "bab5e09e-e467-4282-a031-d54882c82750" ], "Cache-Control": [ "no-cache" @@ -12695,31 +12954,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13797" + "14685" ], "x-ms-correlation-request-id": [ - "e49b4e0a-3351-40f9-b1b0-4e9d46156c77" + "f74e2e88-1bca-455a-a82f-c3d8b006d7b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212446Z:e49b4e0a-3351-40f9-b1b0-4e9d46156c77" + "WESTUS:20150813T074621Z:f74e2e88-1bca-455a-a82f-c3d8b006d7b7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:46 GMT" + "Thu, 13 Aug 2015 07:46:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-Snappy\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-Snappy\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "266" @@ -12737,7 +12996,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54c7491f-98bc-47e6-9d7b-8dd58ea0de3c" + "1e13b35a-0c96-4bac-be2b-d9b2ffbf229e" ], "Cache-Control": [ "no-cache" @@ -12747,31 +13006,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13796" + "14684" ], "x-ms-correlation-request-id": [ - "10a790a9-0e82-4e6c-946f-57515f104e8f" + "75e3cb30-e326-4316-b89e-86e0a9f58dbe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:10a790a9-0e82-4e6c-946f-57515f104e8f" + "WESTUS:20150813T074621Z:75e3cb30-e326-4316-b89e-86e0a9f58dbe" ], "Date": [ - "Wed, 05 Aug 2015 21:24:46 GMT" + "Thu, 13 Aug 2015 07:46:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.121\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.121\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.122\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.122\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.123\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.125\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.125\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.126\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.126\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.127\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.131\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.131\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.132\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.132\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507080\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.201507080\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.121\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.121\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.122\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.122\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.123\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.123\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.125\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.125\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.126\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.126\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.131\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.131\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.132\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.132\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507080\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.201507080\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "2805" @@ -12789,7 +13048,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dcc40f3b-4d91-43b7-8f33-33f9ea4cc85d" + "78d62f06-6d82-4bf4-b363-69e5846d31d3" ], "Cache-Control": [ "no-cache" @@ -12799,31 +13058,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13795" + "14683" ], "x-ms-correlation-request-id": [ - "f1f3358b-458a-4dbd-9742-7956a5782b13" + "447558f0-4522-422c-8e30-31de10dba6b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:f1f3358b-458a-4dbd-9742-7956a5782b13" + "WESTUS:20150813T074621Z:447558f0-4522-422c-8e30-31de10dba6b1" ], "Date": [ - "Wed, 05 Aug 2015 21:24:46 GMT" + "Thu, 13 Aug 2015 07:46:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.121?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.121?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.121\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.121\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.121\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.121\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -12841,7 +13100,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68f902cb-6bb1-46d5-9ac4-4b8c1336f506" + "b1f8c3de-f720-44e2-b92c-5963a86b5d3d" ], "Cache-Control": [ "no-cache" @@ -12851,31 +13110,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13794" + "14682" ], "x-ms-correlation-request-id": [ - "6344ac48-54c6-4641-8577-4ff807b22d8a" + "0a9b7c53-f952-48c0-bed1-48a5386dacec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:6344ac48-54c6-4641-8577-4ff807b22d8a" + "WESTUS:20150813T074621Z:0a9b7c53-f952-48c0-bed1-48a5386dacec" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.122?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.122?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.122\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.122\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.122\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.122\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -12893,7 +13152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab032245-3ffa-465c-9c15-a81e0d83e67d" + "c964c7a0-3986-4492-8a7d-fb0c00d6b6f4" ], "Cache-Control": [ "no-cache" @@ -12903,31 +13162,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13793" + "14681" ], "x-ms-correlation-request-id": [ - "2dda942a-fcb5-4d90-a87c-c1c9b41d5a9d" + "1d824ec7-9c4c-46cc-bcca-33302115ecb1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:2dda942a-fcb5-4d90-a87c-c1c9b41d5a9d" + "WESTUS:20150813T074621Z:1d824ec7-9c4c-46cc-bcca-33302115ecb1" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.123?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.123?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.123\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.123\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.123\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -12945,7 +13204,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bd02a37-b455-40ec-9052-09ad82b7a40f" + "d0f5dc28-be6c-4888-9ba0-bfd87b5ac4a7" ], "Cache-Control": [ "no-cache" @@ -12955,31 +13214,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13792" + "14680" ], "x-ms-correlation-request-id": [ - "87133770-7c15-4d4f-ab81-7e0ded52c780" + "ced96a63-940c-44dc-9d67-ef123f4eecaa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:87133770-7c15-4d4f-ab81-7e0ded52c780" + "WESTUS:20150813T074621Z:ced96a63-940c-44dc-9d67-ef123f4eecaa" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.125?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.125?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.125\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.125\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.125\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.125\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -12997,7 +13256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3775da1b-257c-42e1-a15b-560c88e91745" + "f2be4e2f-ce85-4bbf-9674-3f2b6bd35292" ], "Cache-Control": [ "no-cache" @@ -13007,31 +13266,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13791" + "14679" ], "x-ms-correlation-request-id": [ - "cda52c99-443e-45fc-bc60-56e653474403" + "c8dab96a-cabb-4658-875b-2eea10cc03d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:cda52c99-443e-45fc-bc60-56e653474403" + "WESTUS:20150813T074621Z:c8dab96a-cabb-4658-875b-2eea10cc03d9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.126?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.126?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.126\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.126\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.126\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.126\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -13049,7 +13308,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd553e65-c02d-4f59-abf7-215f6e3db11b" + "c3feabd8-31eb-44b3-95ba-508dd0aca1b0" ], "Cache-Control": [ "no-cache" @@ -13059,31 +13318,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13790" + "14678" ], "x-ms-correlation-request-id": [ - "9cf71666-e6f5-4e16-8a62-696f9e827e22" + "326dfb9f-65f4-4ff6-ba28-8eeb408c84fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:9cf71666-e6f5-4e16-8a62-696f9e827e22" + "WESTUS:20150813T074621Z:326dfb9f-65f4-4ff6-ba28-8eeb408c84fd" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.127?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.127?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.127\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.127\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.127\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -13101,7 +13360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00cc8320-9f5d-47d1-8db8-ebf2bce83c75" + "5db0fc13-7aa2-4742-be29-9c9acd66af58" ], "Cache-Control": [ "no-cache" @@ -13111,31 +13370,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13789" + "14677" ], "x-ms-correlation-request-id": [ - "1e3a50c7-4166-4d96-8eff-ed7d852ad40e" + "98e292d5-5540-4f85-b4a7-da3f24288f9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:1e3a50c7-4166-4d96-8eff-ed7d852ad40e" + "WESTUS:20150813T074621Z:98e292d5-5540-4f85-b4a7-da3f24288f9f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.128?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.128?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.128\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.128\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -13153,7 +13412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35b06157-bfd4-4e8c-80f4-2402784322fa" + "afd8e48a-347d-43c7-8a9c-de39edebf70d" ], "Cache-Control": [ "no-cache" @@ -13163,31 +13422,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13788" + "14676" ], "x-ms-correlation-request-id": [ - "425acdf1-cc9a-4343-9369-82fd9606acfa" + "14730b4c-7446-41e6-b644-1fcf7b598b90" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212447Z:425acdf1-cc9a-4343-9369-82fd9606acfa" + "WESTUS:20150813T074622Z:14730b4c-7446-41e6-b644-1fcf7b598b90" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.131?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.131?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.131\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.131\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.131\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.131\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -13205,7 +13464,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f21ad93a-12ab-4446-8247-33cd7108a956" + "f30804f0-b26b-4338-a726-bd95fb215fdd" ], "Cache-Control": [ "no-cache" @@ -13215,31 +13474,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13787" + "14675" ], "x-ms-correlation-request-id": [ - "25e390fc-1d1d-444d-8cea-732edaa217b7" + "db5a5e9b-070b-4c14-818b-9f0efac0e7f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:25e390fc-1d1d-444d-8cea-732edaa217b7" + "WESTUS:20150813T074622Z:db5a5e9b-070b-4c14-818b-9f0efac0e7f5" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.132?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.132?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMTMyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.132\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.132\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.132\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.132\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -13257,7 +13516,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bd2bec2-cda7-4cc0-af07-95a7bb5c6f36" + "da12caf2-135b-4f9e-9693-c1692682dadd" ], "Cache-Control": [ "no-cache" @@ -13267,31 +13526,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13786" + "14674" ], "x-ms-correlation-request-id": [ - "601c637e-ce97-4521-9422-9d082c355cb2" + "7599eac5-17ee-49d4-a1c0-afcbb91d2973" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:601c637e-ce97-4521-9422-9d082c355cb2" + "WESTUS:20150813T074622Z:7599eac5-17ee-49d4-a1c0-afcbb91d2973" ], "Date": [ - "Wed, 05 Aug 2015 21:24:47 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.201507080?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MDgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04Snappy/skus/15.04-Snappy/versions/15.04.201507080?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHkvc2t1cy8xNS4wNC1TbmFwcHkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MDgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507080\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.201507080\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507080\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04Snappy/Skus/15.04-Snappy/Versions/15.04.201507080\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -13309,7 +13568,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04b00843-1992-4f05-b2fa-f3448f46fc61" + "e6156e02-03bf-4189-a54c-9c5d22f7f80f" ], "Cache-Control": [ "no-cache" @@ -13319,31 +13578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13785" + "14673" ], "x-ms-correlation-request-id": [ - "9162eada-f2dd-4b09-a040-effb9e6efc33" + "ecd68d5c-00ab-4258-913f-de38ba6a6d31" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:9162eada-f2dd-4b09-a040-effb9e6efc33" + "WESTUS:20150813T074622Z:ecd68d5c-00ab-4258-913f-de38ba6a6d31" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04SnappyDocker/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHlEb2NrZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04SnappyDocker/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHlEb2NrZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-SnappyDocker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker/Skus/15.04-SnappyDocker\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-SnappyDocker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker/Skus/15.04-SnappyDocker\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "284" @@ -13361,7 +13620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b4a7682-231b-404b-b3cf-c40528b0bf08" + "f1ff8683-7a58-4f10-accf-889d2dbfb382" ], "Cache-Control": [ "no-cache" @@ -13371,31 +13630,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13784" + "14672" ], "x-ms-correlation-request-id": [ - "ed4df401-233d-4814-b648-eb114f17ffc2" + "33a28018-f350-4235-8660-b9d076fecccf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:ed4df401-233d-4814-b648-eb114f17ffc2" + "WESTUS:20150813T074622Z:33a28018-f350-4235-8660-b9d076fecccf" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04SnappyDocker/skus/15.04-SnappyDocker/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHlEb2NrZXIvc2t1cy8xNS4wNC1TbmFwcHlEb2NrZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04SnappyDocker/skus/15.04-SnappyDocker/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHlEb2NrZXIvc2t1cy8xNS4wNC1TbmFwcHlEb2NrZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.119\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker/Skus/15.04-SnappyDocker/Versions/15.04.119\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.119\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker/Skus/15.04-SnappyDocker/Versions/15.04.119\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "294" @@ -13413,7 +13672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df55f3c2-7441-4dff-a880-80d88282aa60" + "435c97dd-9cf2-4c72-aa4b-a6220a65644b" ], "Cache-Control": [ "no-cache" @@ -13423,31 +13682,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13783" + "14671" ], "x-ms-correlation-request-id": [ - "89da538a-f15f-4043-89b8-b6cc2864f3c2" + "1c62d050-56f7-4110-a90c-0a061976d9c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:89da538a-f15f-4043-89b8-b6cc2864f3c2" + "WESTUS:20150813T074622Z:1c62d050-56f7-4110-a90c-0a061976d9c6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04SnappyDocker/skus/15.04-SnappyDocker/versions/15.04.119?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHlEb2NrZXIvc2t1cy8xNS4wNC1TbmFwcHlEb2NrZXIvdmVyc2lvbnMvMTUuMDQuMTE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu15.04SnappyDocker/skus/15.04-SnappyDocker/versions/15.04.119?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1MTUuMDRTbmFwcHlEb2NrZXIvc2t1cy8xNS4wNC1TbmFwcHlEb2NrZXIvdmVyc2lvbnMvMTUuMDQuMTE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.119\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker/Skus/15.04-SnappyDocker/Versions/15.04.119\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.119\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu15.04SnappyDocker/Skus/15.04-SnappyDocker/Versions/15.04.119\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -13465,7 +13724,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69f0a09a-88ac-466a-8842-e165cc13be5b" + "d06fc058-5d8b-4023-b9d0-58c9dc46ddfa" ], "Cache-Control": [ "no-cache" @@ -13475,31 +13734,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13782" + "14670" ], "x-ms-correlation-request-id": [ - "ff09f2ab-9eea-45cb-947b-c3b0a7681467" + "583c2083-8ff0-463a-84ea-09213aee4426" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:ff09f2ab-9eea-45cb-947b-c3b0a7681467" + "WESTUS:20150813T074622Z:583c2083-8ff0-463a-84ea-09213aee4426" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-Snappy\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-Snappy\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "268" @@ -13517,7 +13776,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b006a0f-5694-4c12-90b0-76d109eddf85" + "2270a19f-8043-4da6-ab1c-0127f821c297" ], "Cache-Control": [ "no-cache" @@ -13527,31 +13786,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13781" + "14669" ], "x-ms-correlation-request-id": [ - "8e95b947-643e-4b5b-9be0-4a85a45eb54e" + "7d933ffc-4e4f-44da-aa9d-0c6050d47f55" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:8e95b947-643e-4b5b-9be0-4a85a45eb54e" + "WESTUS:20150813T074622Z:7d933ffc-4e4f-44da-aa9d-0c6050d47f55" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505260\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201505260\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506100\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506110\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506110\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506120\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506120\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506170\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506170\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506180\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506180\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506190\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506190\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505260\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201505260\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506100\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506110\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506110\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506120\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506120\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506170\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506170\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506180\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506180\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506190\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506190\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "2054" @@ -13569,7 +13828,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71b8605a-35b6-4762-ad46-6fd55d3a62b3" + "e814a57a-d577-4bea-965a-fb90e654a712" ], "Cache-Control": [ "no-cache" @@ -13579,31 +13838,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13780" + "14668" ], "x-ms-correlation-request-id": [ - "e8d09c3b-25e7-4f11-b73e-031de5eb810e" + "34282c7e-c8a9-454a-8323-d8e793c344d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:e8d09c3b-25e7-4f11-b73e-031de5eb810e" + "WESTUS:20150813T074623Z:34282c7e-c8a9-454a-8323-d8e793c344d7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201505260?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDUyNjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201505260?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDUyNjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505260\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201505260\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505260\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201505260\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -13621,7 +13880,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9bbf4376-fa05-4a64-9858-e0fb77d17857" + "8cecea48-2245-47ca-9352-c95759c6c97f" ], "Cache-Control": [ "no-cache" @@ -13631,31 +13890,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13779" + "14667" ], "x-ms-correlation-request-id": [ - "8e349f89-5efe-49eb-b9ef-d8527d1b8667" + "36251cfe-ec03-4edb-9e41-d63842ab73c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212448Z:8e349f89-5efe-49eb-b9ef-d8527d1b8667" + "WESTUS:20150813T074623Z:36251cfe-ec03-4edb-9e41-d63842ab73c2" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506100\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -13673,7 +13932,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1d8f62a-91ae-4281-a8a2-34ccae65c6f9" + "d9d57c42-9c34-4bca-9c80-3b7913045ee3" ], "Cache-Control": [ "no-cache" @@ -13683,31 +13942,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13778" + "14666" ], "x-ms-correlation-request-id": [ - "73fa6602-53fa-4074-a936-c81e50aac35f" + "f8e886bb-bb21-4f76-8c44-d42d3686195d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:73fa6602-53fa-4074-a936-c81e50aac35f" + "WESTUS:20150813T074623Z:f8e886bb-bb21-4f76-8c44-d42d3686195d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506110\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506110\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506110\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506110\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -13725,7 +13984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75458de7-255c-49b7-9a3a-755b71eec20e" + "b9438d9f-ccd3-4cd1-891c-a4da93050a90" ], "Cache-Control": [ "no-cache" @@ -13735,31 +13994,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13777" + "14665" ], "x-ms-correlation-request-id": [ - "08704786-d421-4525-affc-b3ca9028a5a2" + "64cacd34-843f-4776-a659-60a68a5f00bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:08704786-d421-4525-affc-b3ca9028a5a2" + "WESTUS:20150813T074623Z:64cacd34-843f-4776-a659-60a68a5f00bb" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506120?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxMjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506120?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxMjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506120\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506120\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506120\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506120\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -13777,7 +14036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7065eb91-2967-4210-85ff-c53ff57c896d" + "241a11c1-014a-4f74-8252-d98369bc5490" ], "Cache-Control": [ "no-cache" @@ -13787,31 +14046,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13776" + "14664" ], "x-ms-correlation-request-id": [ - "4c0ce3fb-8a50-4420-844c-49be3f892224" + "424d3343-b25f-41fe-8aa4-2d22815fc3f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:4c0ce3fb-8a50-4420-844c-49be3f892224" + "WESTUS:20150813T074623Z:424d3343-b25f-41fe-8aa4-2d22815fc3f6" ], "Date": [ - "Wed, 05 Aug 2015 21:24:48 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506170?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxNzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506170?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxNzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506170\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506170\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506170\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506170\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -13829,7 +14088,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21cee932-0511-49a8-b6f9-a011327e63c5" + "a1da0da1-be5d-4f8e-be15-bd166b02e042" ], "Cache-Control": [ "no-cache" @@ -13839,31 +14098,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13775" + "14663" ], "x-ms-correlation-request-id": [ - "7356915b-f2b6-45fb-a5a4-babce91e357b" + "bf6136a7-0169-46f7-a3d3-f8c330b406ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:7356915b-f2b6-45fb-a5a4-babce91e357b" + "WESTUS:20150813T074623Z:bf6136a7-0169-46f7-a3d3-f8c330b406ad" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506180?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxODA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506180?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxODA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506180\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506180\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506180\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506180\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -13881,7 +14140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a326812-b286-41fc-b82d-2c225d46241c" + "ef430676-ec11-4825-8ecc-c1e8efadbb10" ], "Cache-Control": [ "no-cache" @@ -13891,31 +14150,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13774" + "14662" ], "x-ms-correlation-request-id": [ - "2801662e-b49e-489b-afee-72e2c5150a9d" + "83cbabbb-c37b-40e5-8ced-43eaaa5d3c2f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:2801662e-b49e-489b-afee-72e2c5150a9d" + "WESTUS:20150813T074623Z:83cbabbb-c37b-40e5-8ced-43eaaa5d3c2f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbunturollingSnappy/skus/15.04-Snappy/versions/15.04.201506190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1cm9sbGluZ1NuYXBweS9za3VzLzE1LjA0LVNuYXBweS92ZXJzaW9ucy8xNS4wNC4yMDE1MDYxOTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506190\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506190\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506190\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbunturollingSnappy/Skus/15.04-Snappy/Versions/15.04.201506190\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -13933,7 +14192,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3029f568-849a-4733-9a6d-f2feb3feb441" + "8d21a765-1397-41c8-88c9-28dd2f578970" ], "Cache-Control": [ "no-cache" @@ -13943,34 +14202,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13773" + "14661" ], "x-ms-correlation-request-id": [ - "24366699-b37e-479c-9386-4bcc328d1fcc" + "1d459b3b-874f-450a-acec-5b486c67cd02" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:24366699-b37e-479c-9386-4bcc328d1fcc" + "WESTUS:20150813T074623Z:1d459b3b-874f-450a-acec-5b486c67cd02" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.2-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.3-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.4-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.5-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.5-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04-beta\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04-beta\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.0-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.1-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.2-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.2-LTS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.10-beta\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10-beta\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.10-DAILY\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10-DAILY\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-beta\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-beta\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-DAILY\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10-alpha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10-DAILY\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.2-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.3-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.4-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.5-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.5-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04-beta\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04-beta\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.0-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.1-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.2-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.2-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.3-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.3-LTS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.10-beta\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10-beta\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.10-DAILY\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.10-DAILY\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-beta\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-beta\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04-DAILY\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10-alpha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10-DAILY\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "5093" + "5373" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13985,7 +14244,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "229f891c-d966-49b7-bd43-a4fbd638c48a" + "9758d3ca-bdb4-4726-b4f8-d5efc3f65e53" ], "Cache-Control": [ "no-cache" @@ -13995,31 +14254,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13772" + "14660" ], "x-ms-correlation-request-id": [ - "fafcbed0-e884-4f18-b452-f3198a52ffbf" + "44439cec-60d9-45b6-97d4-56d97e65ee19" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:fafcbed0-e884-4f18-b452-f3198a52ffbf" + "WESTUS:20150813T074624Z:44439cec-60d9-45b6-97d4-56d97e65ee19" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201302250\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201302250\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201303250\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201303250\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201304150\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201304150\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201305160\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201305160\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201305270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201305270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201306030\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201306030\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201306240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201306240\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201302250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201302250\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201303250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201303250\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201304150\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201304150\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201305160\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201305160\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201305270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201305270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201306030\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201306030\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201306240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201306240\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1998" @@ -14037,7 +14296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a062523-8db6-4a7e-a0fb-1e6f07581d1e" + "ba294ce2-24cb-4d66-9651-5112ed41b7d9" ], "Cache-Control": [ "no-cache" @@ -14047,31 +14306,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13771" + "14659" ], "x-ms-correlation-request-id": [ - "710945cd-29c7-4a43-8a77-27166b863625" + "2611bb09-16a7-4775-bf7f-3ffd206248eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:710945cd-29c7-4a43-8a77-27166b863625" + "WESTUS:20150813T074624Z:2611bb09-16a7-4775-bf7f-3ffd206248eb" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201302250?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzAyMjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201302250?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzAyMjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201302250\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201302250\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201302250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201302250\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14089,7 +14348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0ac4222-3d02-458a-8d18-d0515d9b3580" + "d829529c-a7a8-49f3-b718-a3e2daf0c3d5" ], "Cache-Control": [ "no-cache" @@ -14099,31 +14358,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13770" + "14658" ], "x-ms-correlation-request-id": [ - "75d01554-592c-4134-a77a-f37c0159b77a" + "ea15f7b9-b9a0-4cec-ab22-37744650b68c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212449Z:75d01554-592c-4134-a77a-f37c0159b77a" + "WESTUS:20150813T074624Z:ea15f7b9-b9a0-4cec-ab22-37744650b68c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201303250?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzAzMjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201303250?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzAzMjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201303250\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201303250\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201303250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201303250\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14141,7 +14400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5d288af-b3b1-451a-83c1-1d7d8a10190a" + "6db4bed1-671c-4360-822b-b34e7ae4e570" ], "Cache-Control": [ "no-cache" @@ -14151,31 +14410,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13769" + "14657" ], "x-ms-correlation-request-id": [ - "ca232158-f2e6-47cd-b9f1-427338bf7b99" + "1c413f3b-fbf7-4fe6-8a55-c426a3dae1cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:ca232158-f2e6-47cd-b9f1-427338bf7b99" + "WESTUS:20150813T074624Z:1c413f3b-fbf7-4fe6-8a55-c426a3dae1cd" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201304150?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA0MTUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201304150?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA0MTUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201304150\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201304150\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201304150\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201304150\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14193,7 +14452,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e5ad4ff-7884-4e58-9698-07e233a08a8f" + "d01e1ab0-5945-4118-adb9-0cfe96ff2bc8" ], "Cache-Control": [ "no-cache" @@ -14203,31 +14462,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13768" + "14656" ], "x-ms-correlation-request-id": [ - "b3da2a10-5d49-4c36-baf9-53aa1c5c9af8" + "d530650e-d1f2-41e3-9c24-9f6d88af5d59" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:b3da2a10-5d49-4c36-baf9-53aa1c5c9af8" + "WESTUS:20150813T074624Z:d530650e-d1f2-41e3-9c24-9f6d88af5d59" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201305160?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA1MTYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201305160?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA1MTYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201305160\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201305160\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201305160\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201305160\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14245,7 +14504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61a5478a-ffec-40d5-8d04-76b85f5dc7c8" + "16b75189-6536-495c-abf8-8493f4b01ab2" ], "Cache-Control": [ "no-cache" @@ -14255,31 +14514,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13767" + "14655" ], "x-ms-correlation-request-id": [ - "240a0218-daca-47b0-899b-12c79f822abc" + "cf275331-9299-4e46-994f-b5dd2b4a69ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:240a0218-daca-47b0-899b-12c79f822abc" + "WESTUS:20150813T074624Z:cf275331-9299-4e46-994f-b5dd2b4a69ab" ], "Date": [ - "Wed, 05 Aug 2015 21:24:49 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201305270?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA1MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201305270?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA1MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201305270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201305270\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201305270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201305270\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14297,7 +14556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2457e34f-eb5a-4e85-8f62-7b5d9c276bbd" + "cbeabf09-1f7a-4d6d-ade9-7a969b456199" ], "Cache-Control": [ "no-cache" @@ -14307,31 +14566,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13766" + "14654" ], "x-ms-correlation-request-id": [ - "abaec7f5-9895-4c56-b7af-f5d5dc7f659a" + "46aee72d-d5af-49f6-879c-b0c6019e066a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:abaec7f5-9895-4c56-b7af-f5d5dc7f659a" + "WESTUS:20150813T074624Z:46aee72d-d5af-49f6-879c-b0c6019e066a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201306030?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA2MDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201306030?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA2MDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201306030\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201306030\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201306030\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201306030\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14349,7 +14608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c28931b-9a13-43ba-a53c-60acb0cabb7d" + "1ebb94e4-e0c1-43c3-ad52-a6c164bcd097" ], "Cache-Control": [ "no-cache" @@ -14359,31 +14618,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13765" + "14653" ], "x-ms-correlation-request-id": [ - "500d5010-0b41-4251-bb77-7597d97ee0e5" + "e71e5ca4-07ea-4513-b51c-ec252e408a40" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:500d5010-0b41-4251-bb77-7597d97ee0e5" + "WESTUS:20150813T074624Z:e71e5ca4-07ea-4513-b51c-ec252e408a40" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201306240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA2MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.2-LTS/versions/12.04.201306240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMi1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA2MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201306240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201306240\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201306240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.2-LTS/Versions/12.04.201306240\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14401,7 +14660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19e19ff0-515d-4eb7-abcc-99f1419497f7" + "768bd691-dd6d-47d1-acb0-2c2ee0d904f5" ], "Cache-Control": [ "no-cache" @@ -14411,31 +14670,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13764" + "14652" ], "x-ms-correlation-request-id": [ - "b037d887-5337-4085-8944-9f8efe7b6f7d" + "5a4b3b5e-64a8-4982-8905-fe4f331288a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:b037d887-5337-4085-8944-9f8efe7b6f7d" + "WESTUS:20150813T074624Z:5a4b3b5e-64a8-4982-8905-fe4f331288a3" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201308270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201308270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201309090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201309090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201309161\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201309161\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201310030\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201310030\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201310240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201310240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201311110\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201311110\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201311140\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201311140\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201312050\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201312050\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201401270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201401270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201401300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201401300\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201308270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201308270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201309090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201309090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201309161\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201309161\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201310030\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201310030\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201310240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201310240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201311110\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201311110\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201311140\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201311140\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201312050\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201312050\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201401270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201401270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201401300\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201401300\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "2853" @@ -14453,7 +14712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65db0ac6-d423-47fb-95af-9f96c95acd5a" + "af047f0b-62b2-438b-a630-bd9f5592594a" ], "Cache-Control": [ "no-cache" @@ -14463,31 +14722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13763" + "14651" ], "x-ms-correlation-request-id": [ - "860804bc-9036-40be-bee5-fb0ea62f9e06" + "3f626050-1c27-44ad-844d-667b80fdcac4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:860804bc-9036-40be-bee5-fb0ea62f9e06" + "WESTUS:20150813T074624Z:3f626050-1c27-44ad-844d-667b80fdcac4" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201308270?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA4MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201308270?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA4MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201308270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201308270\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201308270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201308270\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14505,7 +14764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bd2473d-4331-4017-8159-d721f3448670" + "8847e2f3-acfc-41ec-b8f8-52036e8e3b5e" ], "Cache-Control": [ "no-cache" @@ -14515,31 +14774,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13762" + "14650" ], "x-ms-correlation-request-id": [ - "200a4d12-509e-4593-bf98-2c5ef0840086" + "07af2510-bd3e-4d68-a2fe-63085cc04abf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:200a4d12-509e-4593-bf98-2c5ef0840086" + "WESTUS:20150813T074624Z:07af2510-bd3e-4d68-a2fe-63085cc04abf" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201309090?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA5MDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201309090?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA5MDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201309090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201309090\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201309090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201309090\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14557,7 +14816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5722692-3ec1-4d24-be8f-cb98a9c88d7b" + "b38a1539-1abc-4e39-9e6d-726a7cdd9830" ], "Cache-Control": [ "no-cache" @@ -14567,31 +14826,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13761" + "14649" ], "x-ms-correlation-request-id": [ - "3e347176-25a8-4627-a5da-0a564e0340d6" + "5d74e1f0-257c-4517-bb9c-ca8a76b9ca3d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:3e347176-25a8-4627-a5da-0a564e0340d6" + "WESTUS:20150813T074625Z:5d74e1f0-257c-4517-bb9c-ca8a76b9ca3d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201309161?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA5MTYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201309161?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzA5MTYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201309161\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201309161\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201309161\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201309161\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14609,7 +14868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41ff5be7-69d9-4739-9654-8fa1a9ead37b" + "7aa6368d-f694-48c9-b028-9e3384e7e8a1" ], "Cache-Control": [ "no-cache" @@ -14619,31 +14878,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13760" + "14648" ], "x-ms-correlation-request-id": [ - "5639f1d2-e423-40f2-b178-2907f1072a7d" + "d124f7ea-516e-4f85-9ec3-0bf15b5ade49" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212450Z:5639f1d2-e423-40f2-b178-2907f1072a7d" + "WESTUS:20150813T074625Z:d124f7ea-516e-4f85-9ec3-0bf15b5ade49" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201310030?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzEwMDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201310030?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzEwMDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201310030\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201310030\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201310030\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201310030\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14661,7 +14920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74bbac6c-2664-44b1-a12b-7261082b0e9a" + "8d28cd93-bfd5-4fdc-abfb-6a199476b5f7" ], "Cache-Control": [ "no-cache" @@ -14671,31 +14930,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13759" + "14647" ], "x-ms-correlation-request-id": [ - "97cb8035-a444-4506-96ba-0a540b9efe86" + "e5f7d74e-71dd-493d-b886-49ca9a1b7b7f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:97cb8035-a444-4506-96ba-0a540b9efe86" + "WESTUS:20150813T074625Z:e5f7d74e-71dd-493d-b886-49ca9a1b7b7f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201310240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzEwMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201310240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzEwMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201310240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201310240\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201310240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201310240\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14713,7 +14972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed72bd85-df19-40b8-9952-c5d6ef7b5b17" + "af000e28-6f2d-4eb5-96fe-21aa4f1d36ac" ], "Cache-Control": [ "no-cache" @@ -14723,31 +14982,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13758" + "14646" ], "x-ms-correlation-request-id": [ - "3103c99d-0833-4656-ba32-49601bb9d647" + "9d9f131b-1500-43dd-9607-b8354d951876" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:3103c99d-0833-4656-ba32-49601bb9d647" + "WESTUS:20150813T074625Z:9d9f131b-1500-43dd-9607-b8354d951876" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201311110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzExMTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201311110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzExMTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201311110\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201311110\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201311110\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201311110\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14765,7 +15024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cae01cca-22bb-4f91-82e8-13845f01786c" + "2968aaf9-3d8a-4ebb-b14d-efb381562c92" ], "Cache-Control": [ "no-cache" @@ -14775,31 +15034,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13757" + "14645" ], "x-ms-correlation-request-id": [ - "91987478-ac47-43cc-95ea-2c5e0e2475b9" + "3537098a-24a3-438b-941d-c3229d8c9176" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:91987478-ac47-43cc-95ea-2c5e0e2475b9" + "WESTUS:20150813T074625Z:3537098a-24a3-438b-941d-c3229d8c9176" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201311140?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzExMTQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201311140?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzExMTQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201311140\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201311140\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201311140\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201311140\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14817,7 +15076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5aea7ea3-9d09-49a4-a36d-f33b7df02bdb" + "6fbf8fc5-c2e9-4ccb-8acd-f8c4a8444204" ], "Cache-Control": [ "no-cache" @@ -14827,31 +15086,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13756" + "14644" ], "x-ms-correlation-request-id": [ - "89b73988-348e-452b-9840-c2c669603b42" + "b4ee33e0-6ba1-4a48-b6cd-e7da64514e56" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:89b73988-348e-452b-9840-c2c669603b42" + "WESTUS:20150813T074625Z:b4ee33e0-6ba1-4a48-b6cd-e7da64514e56" ], "Date": [ - "Wed, 05 Aug 2015 21:24:50 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201312050?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzEyMDUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201312050?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxMzEyMDUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201312050\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201312050\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201312050\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201312050\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14869,7 +15128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe0a30e9-7d07-4e47-a4e0-7be1208ead20" + "45360d0a-166f-454c-b981-add0fcab4866" ], "Cache-Control": [ "no-cache" @@ -14879,31 +15138,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13755" + "14643" ], "x-ms-correlation-request-id": [ - "08dd3e2d-4764-4777-9cb2-63728edb6dac" + "241e1b19-1acb-4778-bb21-61838445282c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:08dd3e2d-4764-4777-9cb2-63728edb6dac" + "WESTUS:20150813T074625Z:241e1b19-1acb-4778-bb21-61838445282c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201401270?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDAxMjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201401270?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDAxMjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201401270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201401270\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201401270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201401270\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14921,7 +15180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eee8aa86-07fa-4911-b66f-7804f6026952" + "a3d63a3d-ccc6-4148-b627-2a0ad0ee101f" ], "Cache-Control": [ "no-cache" @@ -14931,31 +15190,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13754" + "14642" ], "x-ms-correlation-request-id": [ - "94695042-064a-46a0-a799-fbd17b059609" + "01b4b362-7a80-4eab-92f6-789b6b3e4de0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:94695042-064a-46a0-a799-fbd17b059609" + "WESTUS:20150813T074625Z:01b4b362-7a80-4eab-92f6-789b6b3e4de0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201401300?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDAxMzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.3-LTS/versions/12.04.201401300?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuMy1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDAxMzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201401300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201401300\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201401300\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.3-LTS/Versions/12.04.201401300\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -14973,7 +15232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b2ffe93-95c5-4b50-9598-84954d29bd59" + "f795d903-7eab-4189-abfe-a072465b7b81" ], "Cache-Control": [ "no-cache" @@ -14983,31 +15242,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13753" + "14641" ], "x-ms-correlation-request-id": [ - "93a44f22-0f55-4a47-bf64-5ab9545f42d5" + "d029874c-102e-4f3d-ab04-283413a931f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:93a44f22-0f55-4a47-bf64-5ab9545f42d5" + "WESTUS:20150813T074625Z:d029874c-102e-4f3d-ab04-283413a931f4" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201402270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201402270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201404080\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201404080\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201404280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201404280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201405140\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201405140\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201406060\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201406060\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201406190\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201406190\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201407020\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201407020\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201407170\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201407170\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201402270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201402270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201404080\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201404080\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201404280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201404280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201405140\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201405140\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201406060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201406060\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201406190\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201406190\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201407020\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201407020\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201407170\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201407170\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "2283" @@ -15025,7 +15284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6bf7d1b-88cf-4ce1-830e-f2d38bbeba44" + "3d98de1b-8220-42f5-9f88-0baa76a6e281" ], "Cache-Control": [ "no-cache" @@ -15035,31 +15294,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13752" + "14640" ], "x-ms-correlation-request-id": [ - "f1fb3983-1965-41da-83e4-7b4c8cbd405c" + "e5a3b674-e8db-4662-94b2-f4837fb36fea" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:f1fb3983-1965-41da-83e4-7b4c8cbd405c" + "WESTUS:20150813T074625Z:e5a3b674-e8db-4662-94b2-f4837fb36fea" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201402270?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDAyMjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201402270?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDAyMjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201402270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201402270\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201402270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201402270\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -15077,7 +15336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "119d7b39-3d25-4090-9b0a-51e77008de28" + "deb04404-2ec1-4151-ad24-f87f495f5f2f" ], "Cache-Control": [ "no-cache" @@ -15087,31 +15346,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13751" + "14639" ], "x-ms-correlation-request-id": [ - "b5ac4057-7572-4efe-b621-f4e3054d478e" + "106abd09-6bf0-40ea-97dd-efe70d4aabbc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:b5ac4057-7572-4efe-b621-f4e3054d478e" + "WESTUS:20150813T074626Z:106abd09-6bf0-40ea-97dd-efe70d4aabbc" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201404080?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA0MDgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201404080?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA0MDgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201404080\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201404080\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201404080\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201404080\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -15129,7 +15388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4a359d7-a7ff-4590-a4d7-378d998590c6" + "90610768-e2cb-4cfc-afb5-3be6c1e32c7a" ], "Cache-Control": [ "no-cache" @@ -15139,31 +15398,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13750" + "14638" ], "x-ms-correlation-request-id": [ - "7b55792b-e021-41b5-bec5-322366007ecc" + "b012c4e5-b981-4281-bcf1-bec28f3a7563" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212451Z:7b55792b-e021-41b5-bec5-322366007ecc" + "WESTUS:20150813T074626Z:b012c4e5-b981-4281-bcf1-bec28f3a7563" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201404280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA0MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201404280?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA0MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201404280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201404280\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201404280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201404280\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -15181,7 +15440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48c0e57e-53f3-479f-aa36-1b7c742bc2a2" + "2d56988b-9289-41e7-a783-307a2bed86de" ], "Cache-Control": [ "no-cache" @@ -15191,31 +15450,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13749" + "14637" ], "x-ms-correlation-request-id": [ - "4af12927-5170-4736-b324-fb5942effb32" + "59d8494c-f028-48cc-8c50-59ece84210de" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:4af12927-5170-4736-b324-fb5942effb32" + "WESTUS:20150813T074626Z:59d8494c-f028-48cc-8c50-59ece84210de" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201405140?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA1MTQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201405140?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA1MTQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201405140\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201405140\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201405140\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201405140\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -15233,7 +15492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "098d4f83-23bd-4b54-a87d-9c917ab11b97" + "c3db651d-504a-4d3f-954f-4177add8e9c1" ], "Cache-Control": [ "no-cache" @@ -15243,31 +15502,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13748" + "14636" ], "x-ms-correlation-request-id": [ - "6cfcd776-f415-4f5b-9dd4-8bdf71bac674" + "896fdab9-8e2d-4db3-8b4f-d49c81bd2719" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:6cfcd776-f415-4f5b-9dd4-8bdf71bac674" + "WESTUS:20150813T074626Z:896fdab9-8e2d-4db3-8b4f-d49c81bd2719" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201406060?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA2MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201406060?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA2MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201406060\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201406060\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201406060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201406060\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -15285,7 +15544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d1b1478-d0b2-4776-af58-9225db52542d" + "a12501be-740c-4a06-953a-7b3d1e61b804" ], "Cache-Control": [ "no-cache" @@ -15295,31 +15554,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13747" + "14635" ], "x-ms-correlation-request-id": [ - "687eaa8f-3450-4cb3-aaac-43336b8d94b0" + "289d763a-d7d7-4a53-90c8-f8820820e995" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:687eaa8f-3450-4cb3-aaac-43336b8d94b0" + "WESTUS:20150813T074626Z:289d763a-d7d7-4a53-90c8-f8820820e995" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201406190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA2MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201406190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA2MTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201406190\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201406190\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201406190\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201406190\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -15337,7 +15596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59fa631a-bf73-4483-81ef-f9d286f2fea6" + "92270bd1-2e87-4894-8890-5a7fc73bb0ac" ], "Cache-Control": [ "no-cache" @@ -15347,31 +15606,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13746" + "14634" ], "x-ms-correlation-request-id": [ - "7894c990-58fc-4ff9-a517-e06dc84bb684" + "f9e18c71-62d1-4605-8738-d884d62dee9d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:7894c990-58fc-4ff9-a517-e06dc84bb684" + "WESTUS:20150813T074626Z:f9e18c71-62d1-4605-8738-d884d62dee9d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:51 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201407020?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA3MDIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201407020?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA3MDIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201407020\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201407020\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201407020\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201407020\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -15389,7 +15648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "766a9d8b-3bfa-4673-9a59-7dd14f255dd0" + "3367b189-00cd-4817-b2ec-f232d91c5277" ], "Cache-Control": [ "no-cache" @@ -15399,31 +15658,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13745" + "14633" ], "x-ms-correlation-request-id": [ - "b6864b95-7750-414b-b87f-77d47e169845" + "93a5ce65-6d11-4e26-8b7b-903eb3ce1a75" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:b6864b95-7750-414b-b87f-77d47e169845" + "WESTUS:20150813T074626Z:93a5ce65-6d11-4e26-8b7b-903eb3ce1a75" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201407170?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA3MTcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.4-LTS/versions/12.04.201407170?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNC1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA3MTcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201407170\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201407170\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201407170\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.4-LTS/Versions/12.04.201407170\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -15441,7 +15700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe40cbfe-683d-4b08-8f83-ebedab7ea1d0" + "c30f24a4-1239-4dbd-98ba-493585cccc94" ], "Cache-Control": [ "no-cache" @@ -15451,31 +15710,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13744" + "14632" ], "x-ms-correlation-request-id": [ - "580c7b3b-9219-4046-a6dd-9d1ee87a97df" + "5303427d-12ad-440e-8f51-f1beb85d3b0e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:580c7b3b-9219-4046-a6dd-9d1ee87a97df" + "WESTUS:20150813T074626Z:5303427d-12ad-440e-8f51-f1beb85d3b0e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507070\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507071\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507071\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507221\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507221\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507300\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507301\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507301\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507310\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507310\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507311\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507311\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507221\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507221\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507300\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507300\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507301\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507301\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507310\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507310\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507311\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507311\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201508110\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201508110\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201508120\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201508120\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201508130\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201508130\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "2913" @@ -15493,7 +15752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "453ff403-89dd-413d-bbe1-071a183ccaca" + "556dc099-bc1c-4a96-ad12-d2d59dbef1bf" ], "Cache-Control": [ "no-cache" @@ -15503,31 +15762,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13743" + "14631" ], "x-ms-correlation-request-id": [ - "c3034865-8eb2-45ce-b718-23d5b59e8604" + "45ad7d2a-c520-4398-bb3b-e495cbacc123" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:c3034865-8eb2-45ce-b718-23d5b59e8604" + "WESTUS:20150813T074626Z:45ad7d2a-c520-4398-bb3b-e495cbacc123" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507070?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507220?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507070\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507220\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15545,7 +15804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38c335d5-8ce6-4d7c-94ae-dc08790a2d86" + "3eb7e678-761a-48d9-acd0-60e9ec8b951b" ], "Cache-Control": [ "no-cache" @@ -15555,31 +15814,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13742" + "14630" ], "x-ms-correlation-request-id": [ - "73290832-d05a-4e69-8238-84e8809ad547" + "77a7a7de-da61-4187-a6a6-21084853bc24" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:73290832-d05a-4e69-8238-84e8809ad547" + "WESTUS:20150813T074626Z:77a7a7de-da61-4187-a6a6-21084853bc24" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507071?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MDcxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507221?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MjIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507071\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507071\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507221\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507221\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15597,7 +15856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e46998f1-34a4-4f87-9f19-454f296926cf" + "4d3c4cc1-a47b-4737-b1f4-871ff6f5cf19" ], "Cache-Control": [ "no-cache" @@ -15607,31 +15866,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13741" + "14629" ], "x-ms-correlation-request-id": [ - "7b101f0d-d346-4bdd-9d8c-7ac1cf8e71c1" + "0431534f-2d47-4344-adf3-4e5f42c2a6b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:7b101f0d-d346-4bdd-9d8c-7ac1cf8e71c1" + "WESTUS:20150813T074627Z:0431534f-2d47-4344-adf3-4e5f42c2a6b1" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507090?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507280?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507090\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507280\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15649,7 +15908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2267dbb9-9e81-4cd9-9564-12971bab4d34" + "04479804-23ca-433d-b558-8a3cd46a5dde" ], "Cache-Control": [ "no-cache" @@ -15659,31 +15918,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13740" + "14628" ], "x-ms-correlation-request-id": [ - "70d7b227-42ef-44b6-9187-396d95db6f0d" + "37179e67-983a-4115-93a8-79cc0b4b4bb7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:70d7b227-42ef-44b6-9187-396d95db6f0d" + "WESTUS:20150813T074627Z:37179e67-983a-4115-93a8-79cc0b4b4bb7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507220?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507300?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507220\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507300\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507300\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15701,7 +15960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d991066-0373-4bb6-bf3c-ce14a16d71d0" + "f1095339-dcac-4839-a6fd-fe7b5e4783eb" ], "Cache-Control": [ "no-cache" @@ -15711,31 +15970,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13739" + "14627" ], "x-ms-correlation-request-id": [ - "cab515ab-cb9e-465e-9e9b-cee076ba7e0a" + "6e452d31-5dd4-468b-a326-0c2298f8f88a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212452Z:cab515ab-cb9e-465e-9e9b-cee076ba7e0a" + "WESTUS:20150813T074627Z:6e452d31-5dd4-468b-a326-0c2298f8f88a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507221?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MjIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507301?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507221\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507221\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507301\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507301\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15753,7 +16012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f78f405c-3fb7-4804-8ea9-88a7d7305a73" + "706e1baa-f19d-4928-88c5-d4e092449c39" ], "Cache-Control": [ "no-cache" @@ -15763,31 +16022,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13738" + "14626" ], "x-ms-correlation-request-id": [ - "ae85d0a3-2276-475d-be07-b4ab0203e448" + "9d687179-9e50-428e-982b-655c5ce702a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:ae85d0a3-2276-475d-be07-b4ab0203e448" + "WESTUS:20150813T074627Z:9d687179-9e50-428e-982b-655c5ce702a7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507310?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507280\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507310\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507310\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15805,7 +16064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5698589-6774-4be5-972b-d6a455c2d7b3" + "234619f9-501f-4707-afa7-9f88d2192dd6" ], "Cache-Control": [ "no-cache" @@ -15815,31 +16074,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13737" + "14625" ], "x-ms-correlation-request-id": [ - "479362b3-7983-412f-adf2-b472c7477259" + "50b76570-d51e-4ab7-add4-3c3ad7ea2c12" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:479362b3-7983-412f-adf2-b472c7477259" + "WESTUS:20150813T074627Z:50b76570-d51e-4ab7-add4-3c3ad7ea2c12" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507300?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507311?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507300\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507311\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507311\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15857,7 +16116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e723b053-632b-49ee-a56d-295ea895d705" + "456fb4f4-9bf3-4383-a7b0-5d0fba8fc0f6" ], "Cache-Control": [ "no-cache" @@ -15867,31 +16126,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13736" + "14624" ], "x-ms-correlation-request-id": [ - "8ad9083a-f5e3-493c-a589-ca15a3218588" + "eb62bf14-c6df-4335-888d-a8074a54e1e4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:8ad9083a-f5e3-493c-a589-ca15a3218588" + "WESTUS:20150813T074627Z:eb62bf14-c6df-4335-888d-a8074a54e1e4" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507301?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201508110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA4MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507301\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507301\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201508110\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201508110\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15909,7 +16168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2595e251-63a8-4907-81e9-92233d588739" + "1f9a22ed-f1f5-4675-ba89-328db310b907" ], "Cache-Control": [ "no-cache" @@ -15919,31 +16178,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13735" + "14623" ], "x-ms-correlation-request-id": [ - "62605c7c-a127-4096-a079-deff02af61fe" + "d1a21a81-836f-4d41-ac66-bedf8adb7d06" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:62605c7c-a127-4096-a079-deff02af61fe" + "WESTUS:20150813T074627Z:d1a21a81-836f-4d41-ac66-bedf8adb7d06" ], "Date": [ - "Wed, 05 Aug 2015 21:24:52 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507310?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201508120?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA4MTIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507310\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507310\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201508120\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201508120\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -15961,7 +16220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7e69615-656f-4d7f-9efa-5559232c743d" + "ee50fd15-499b-49f7-912b-b9911ec50288" ], "Cache-Control": [ "no-cache" @@ -15971,31 +16230,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13734" + "14622" ], "x-ms-correlation-request-id": [ - "5ed44f9f-0b9b-47f2-b0ba-f678c7925d07" + "d4413d27-dab0-4a25-91a9-811a367cb519" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:5ed44f9f-0b9b-47f2-b0ba-f678c7925d07" + "WESTUS:20150813T074627Z:d4413d27-dab0-4a25-91a9-811a367cb519" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201507311?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201508130?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1EQUlMWS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA4MTMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507311\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201507311\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201508130\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201508130\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -16013,7 +16272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "959156fc-197d-448c-b842-ea8dae1df405" + "e77c2ea4-e371-4f60-943f-f93f12ec7828" ], "Cache-Control": [ "no-cache" @@ -16023,34 +16282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13733" + "14621" ], "x-ms-correlation-request-id": [ - "8ae52a75-8b58-4f00-8bdc-e886120e35c9" + "a9288614-7b9c-42c6-9887-5365f61fee52" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:8ae52a75-8b58-4f00-8bdc-e886120e35c9" + "WESTUS:20150813T074627Z:a9288614-7b9c-42c6-9887-5365f61fee52" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201408060\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201408060\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201408292\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201408292\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409092\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409092\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409231\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409231\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409244\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409244\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409251\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409251\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409252\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409252\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201501190\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201501190\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201501270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201501270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201502040\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201502040\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201503090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201503090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201504010\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201504010\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201504130\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201504130\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201505120\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201505120\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506100\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506150\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506150\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507070\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507301\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507301\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507311\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507311\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201408060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201408060\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201408292\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201408292\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409092\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409092\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409231\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409231\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409244\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409244\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409251\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409251\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409252\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409252\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201501190\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201501190\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201501270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201501270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201502040\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201502040\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201503090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201503090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201504010\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201504010\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201504130\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201504130\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201505120\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201505120\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201505221\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201505221\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506100\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506150\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506150\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506160\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506160\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507070\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507070\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507301\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507301\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507311\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507311\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "5988" + "6558" ], "Content-Type": [ "application/json; charset=utf-8" @@ -16065,7 +16324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5680d9e-a655-4458-932e-7d4f7feaf26c" + "d5ea13c3-5029-4c71-a7c8-b897050ffdf4" ], "Cache-Control": [ "no-cache" @@ -16075,31 +16334,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13732" + "14620" ], "x-ms-correlation-request-id": [ - "5614a351-58a2-4fbd-9f65-79e14581326b" + "7ad58676-bbc5-4799-8eac-9311a151e995" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:5614a351-58a2-4fbd-9f65-79e14581326b" + "WESTUS:20150813T074627Z:7ad58676-bbc5-4799-8eac-9311a151e995" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201408060?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA4MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201408060?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA4MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201408060\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201408060\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201408060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201408060\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16117,7 +16376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8fe352df-405f-450f-bb03-24ff1ebf8e01" + "b9122c37-5e13-4f40-a9fc-7229cb7bb9e1" ], "Cache-Control": [ "no-cache" @@ -16127,31 +16386,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13731" + "14619" ], "x-ms-correlation-request-id": [ - "3c3a9053-298a-44ea-8a35-28e7081145b2" + "b4ed3a3a-2638-4a65-9f13-b7f40043e363" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:3c3a9053-298a-44ea-8a35-28e7081145b2" + "WESTUS:20150813T074628Z:b4ed3a3a-2638-4a65-9f13-b7f40043e363" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201408292?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA4MjkyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201408292?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA4MjkyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201408292\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201408292\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201408292\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201408292\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16169,7 +16428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc199d62-fcad-4a40-9fd6-9a5cfbc00110" + "69f75dc3-090f-4b1b-bf76-6dce20b8c3b3" ], "Cache-Control": [ "no-cache" @@ -16179,31 +16438,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13730" + "14618" ], "x-ms-correlation-request-id": [ - "35984ed0-9af3-44a2-9169-74fef3f57e25" + "e9751206-f3d6-47c8-9aa8-3d34732b7199" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:35984ed0-9af3-44a2-9169-74fef3f57e25" + "WESTUS:20150813T074628Z:e9751206-f3d6-47c8-9aa8-3d34732b7199" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409092?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MDkyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409092?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MDkyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409092\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409092\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409092\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409092\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16221,7 +16480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "309a99c7-d90f-4646-aa8b-7b869f60185b" + "5323a859-4aee-40ba-a33b-a7e11349eda5" ], "Cache-Control": [ "no-cache" @@ -16231,31 +16490,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13729" + "14617" ], "x-ms-correlation-request-id": [ - "4d659701-8c3b-4e54-86a1-166bbf2ea290" + "3cb23356-cddc-4fc0-8889-32ce6dbe4285" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212453Z:4d659701-8c3b-4e54-86a1-166bbf2ea290" + "WESTUS:20150813T074628Z:3cb23356-cddc-4fc0-8889-32ce6dbe4285" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409231?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409231?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409231\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409231\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409231\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409231\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16273,7 +16532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "120fb12c-72c2-45d9-b211-b4f2d811abcd" + "09618081-f7c8-471b-a2b1-dca269cfdb4a" ], "Cache-Control": [ "no-cache" @@ -16283,31 +16542,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13728" + "14616" ], "x-ms-correlation-request-id": [ - "0bd9894d-5b61-4e39-a1c7-6ff75438d204" + "0d009e3a-1512-4f29-ac97-dd1b1b2389a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:0bd9894d-5b61-4e39-a1c7-6ff75438d204" + "WESTUS:20150813T074628Z:0d009e3a-1512-4f29-ac97-dd1b1b2389a3" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409244?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409244?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409244\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409244\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409244\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409244\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16325,7 +16584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed1f66d2-50b0-4ae4-9a6b-00310c8ff829" + "a6391b8e-52b9-46a0-8633-df46957b42b5" ], "Cache-Control": [ "no-cache" @@ -16335,31 +16594,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13727" + "14615" ], "x-ms-correlation-request-id": [ - "e7718804-8ac3-47b1-8e8c-0e140f5aa666" + "d66d2f86-5621-4102-85d1-0b7414d5d7e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:e7718804-8ac3-47b1-8e8c-0e140f5aa666" + "WESTUS:20150813T074628Z:d66d2f86-5621-4102-85d1-0b7414d5d7e8" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409251?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjUxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409251?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjUxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409251\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409251\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409251\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409251\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16377,7 +16636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0186b730-a6d5-4fce-bb2c-2ef318b30948" + "6df5cbb2-34bb-4ed6-922c-4b0821df281a" ], "Cache-Control": [ "no-cache" @@ -16387,31 +16646,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13726" + "14614" ], "x-ms-correlation-request-id": [ - "74d2ac96-45e8-4474-af70-c3182f13afcd" + "e6e32a49-2f98-4e9e-aeb2-36b791837a11" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:74d2ac96-45e8-4474-af70-c3182f13afcd" + "WESTUS:20150813T074628Z:e6e32a49-2f98-4e9e-aeb2-36b791837a11" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409252?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409252?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjUyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409252\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409252\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409252\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409252\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16429,7 +16688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "830b887d-3ffa-4b1e-b3a1-10be87cf252f" + "2ec18d64-40f6-4c1c-90aa-987fac7ae8f7" ], "Cache-Control": [ "no-cache" @@ -16439,31 +16698,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13725" + "14613" ], "x-ms-correlation-request-id": [ - "3666272d-e2b8-437c-9567-768649486a83" + "0de1f098-acad-4c80-80b1-4c5f05d4a3c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:3666272d-e2b8-437c-9567-768649486a83" + "WESTUS:20150813T074628Z:0de1f098-acad-4c80-80b1-4c5f05d4a3c1" ], "Date": [ - "Wed, 05 Aug 2015 21:24:53 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409270?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201409270?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNDA5MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409270\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201409270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201409270\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16481,7 +16740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9183039c-ab17-4a37-943b-5b3269504a75" + "e376bdcb-ee2a-49b3-91fa-0aff35668d83" ], "Cache-Control": [ "no-cache" @@ -16491,31 +16750,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13724" + "14612" ], "x-ms-correlation-request-id": [ - "c90834a5-f844-4929-8cc3-7b0784a8b61b" + "b3d601fd-fd25-45bb-8e62-5ba1227c1db0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:c90834a5-f844-4929-8cc3-7b0784a8b61b" + "WESTUS:20150813T074628Z:b3d601fd-fd25-45bb-8e62-5ba1227c1db0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201501190?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTAxMTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201501190?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTAxMTkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201501190\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201501190\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201501190\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201501190\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16533,7 +16792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39578285-17fd-4dcf-aab1-e780df958311" + "467b4619-b4b8-4664-964a-930f293fc19b" ], "Cache-Control": [ "no-cache" @@ -16543,31 +16802,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13723" + "14611" ], "x-ms-correlation-request-id": [ - "dba337ba-715e-483f-a531-38bcc48e4127" + "7b71cae4-664c-45f7-ac22-e824a845bf51" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:dba337ba-715e-483f-a531-38bcc48e4127" + "WESTUS:20150813T074628Z:7b71cae4-664c-45f7-ac22-e824a845bf51" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201501270?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTAxMjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201501270?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTAxMjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201501270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201501270\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201501270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201501270\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16585,7 +16844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "691f5a2d-a4b0-4898-a063-8c050bb2a911" + "793fd0b8-a57e-4dc0-aa5a-0e84f4f69fc4" ], "Cache-Control": [ "no-cache" @@ -16595,31 +16854,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13722" + "14610" ], "x-ms-correlation-request-id": [ - "1228e1c8-0e92-40ff-a7b4-d323244ef5f9" + "67273079-3a6a-4caa-ba4c-342518c03c97" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:1228e1c8-0e92-40ff-a7b4-d323244ef5f9" + "WESTUS:20150813T074628Z:67273079-3a6a-4caa-ba4c-342518c03c97" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201502040?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTAyMDQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201502040?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTAyMDQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201502040\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201502040\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201502040\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201502040\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16637,7 +16896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d53966eb-47c9-47b4-9e67-24b83da339bb" + "cd19bffe-9715-409d-bfab-54951a649f12" ], "Cache-Control": [ "no-cache" @@ -16647,31 +16906,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13721" + "14609" ], "x-ms-correlation-request-id": [ - "16a65415-5b26-48f5-ac7d-44482c72e5e6" + "4202c588-94fc-4439-9536-927c7893d041" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:16a65415-5b26-48f5-ac7d-44482c72e5e6" + "WESTUS:20150813T074629Z:4202c588-94fc-4439-9536-927c7893d041" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201503090?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTAzMDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201503090?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTAzMDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201503090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201503090\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201503090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201503090\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16689,7 +16948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9dfbfbb-c079-4c14-bbff-d86fbd13a020" + "86e829bc-cb68-44b3-b83e-0d023b953fec" ], "Cache-Control": [ "no-cache" @@ -16699,31 +16958,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13720" + "14608" ], "x-ms-correlation-request-id": [ - "814928f0-05e3-4906-85c4-c8fd9aba092b" + "4253afb2-327d-49bb-91cd-27e3db7cb061" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:814928f0-05e3-4906-85c4-c8fd9aba092b" + "WESTUS:20150813T074629Z:4253afb2-327d-49bb-91cd-27e3db7cb061" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201504010?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA0MDEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201504010?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA0MDEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201504010\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201504010\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201504010\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201504010\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16741,7 +17000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7e5016d-b32a-4e1a-9455-32b223502871" + "e4f41f55-82ff-4a17-ab5d-c9841282a04f" ], "Cache-Control": [ "no-cache" @@ -16751,31 +17010,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13719" + "14607" ], "x-ms-correlation-request-id": [ - "23444622-00c7-4f84-b6c2-0f4762d79812" + "531a65d2-de9a-4c17-ba9f-4445526f22e4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212454Z:23444622-00c7-4f84-b6c2-0f4762d79812" + "WESTUS:20150813T074629Z:531a65d2-de9a-4c17-ba9f-4445526f22e4" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201504130?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA0MTMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201504130?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA0MTMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201504130\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201504130\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201504130\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201504130\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16793,7 +17052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9a2fd9e-a405-441a-bdcf-fc990fff25f1" + "e8c81761-2691-49a8-aed0-f173d6a3a055" ], "Cache-Control": [ "no-cache" @@ -16803,31 +17062,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13718" + "14606" ], "x-ms-correlation-request-id": [ - "803cccc4-033d-48ed-a53e-4dc4b4eed4bc" + "95140bc6-4d18-4875-a87e-11953501b25c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:803cccc4-033d-48ed-a53e-4dc4b4eed4bc" + "WESTUS:20150813T074629Z:95140bc6-4d18-4875-a87e-11953501b25c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201505120?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA1MTIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201505120?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA1MTIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201505120\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201505120\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201505120\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201505120\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16845,7 +17104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "175717e4-bfa9-49fc-bd7c-c1c8c58751d2" + "baac8f3e-b5b9-4c10-9200-a3ffb1b87f99" ], "Cache-Control": [ "no-cache" @@ -16855,31 +17114,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13717" + "14605" ], "x-ms-correlation-request-id": [ - "c7bcaa44-7f23-46c2-bc53-c64c067fdaac" + "d11943ce-f2fb-416f-999c-ae70092dd8f9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:c7bcaa44-7f23-46c2-bc53-c64c067fdaac" + "WESTUS:20150813T074629Z:d11943ce-f2fb-416f-999c-ae70092dd8f9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201506100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA2MTAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201505221?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA1MjIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201505221\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201505221\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16897,7 +17156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "031a3109-6eef-4684-af86-ce745c25bf87" + "de1a3690-9da3-4049-b2f0-79075f9aaab1" ], "Cache-Control": [ "no-cache" @@ -16907,31 +17166,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13716" + "14604" ], "x-ms-correlation-request-id": [ - "01a7519e-8441-4523-941e-42a61679f658" + "aa7660fc-bee4-4d25-adf9-d2e183aa8998" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:01a7519e-8441-4523-941e-42a61679f658" + "WESTUS:20150813T074629Z:aa7660fc-bee4-4d25-adf9-d2e183aa8998" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201506150?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA2MTUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201506100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA2MTAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506150\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506150\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506100\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -16949,7 +17208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2fb54f8-dfbc-4757-a566-7accc893733c" + "061f5ec6-2da5-4815-a0ed-eacf673fe0f0" ], "Cache-Control": [ "no-cache" @@ -16959,31 +17218,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13715" + "14603" ], "x-ms-correlation-request-id": [ - "74dd6598-5c3c-4225-9f06-996983993f63" + "30bb3124-913f-4eef-89cd-cd43aa579746" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:74dd6598-5c3c-4225-9f06-996983993f63" + "WESTUS:20150813T074629Z:30bb3124-913f-4eef-89cd-cd43aa579746" ], "Date": [ - "Wed, 05 Aug 2015 21:24:54 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201507070?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201506150?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA2MTUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507070\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506150\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506150\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17001,7 +17260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ed9f6f0-5791-44b4-9360-261568d56fc5" + "d1280d2f-48ab-4a54-b8bf-3225af75ef08" ], "Cache-Control": [ "no-cache" @@ -17011,31 +17270,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13714" + "14602" ], "x-ms-correlation-request-id": [ - "24313104-cbf5-4be2-a328-3c51d8afe1f0" + "a29e85d0-4df4-48f5-9d77-2a4b313cd594" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:24313104-cbf5-4be2-a328-3c51d8afe1f0" + "WESTUS:20150813T074629Z:a29e85d0-4df4-48f5-9d77-2a4b313cd594" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201507280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201506160?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA2MTYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507280\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201506160\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201506160\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17053,7 +17312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ff8f84f-37cc-4a02-b5d0-2ab8c1d3377e" + "6371a34c-bd17-4faf-801f-3a846ae603d4" ], "Cache-Control": [ "no-cache" @@ -17063,31 +17322,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13713" + "14601" ], "x-ms-correlation-request-id": [ - "328620d3-fb60-4e95-9668-4706497f7e36" + "0b2ee39b-7e1c-4150-8a93-b9efbc50f9f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:328620d3-fb60-4e95-9668-4706497f7e36" + "WESTUS:20150813T074629Z:0b2ee39b-7e1c-4150-8a93-b9efbc50f9f3" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201507301?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201507070?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507301\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507301\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507070\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507070\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17105,7 +17364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f63c2ed7-fc25-4125-afc0-2f268ba70049" + "737a25e1-5518-4b07-87fd-5a2d9f5457f6" ], "Cache-Control": [ "no-cache" @@ -17115,31 +17374,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13712" + "14600" ], "x-ms-correlation-request-id": [ - "cbb52598-55ca-4a03-af3a-da3373603e2b" + "6008356b-f9b8-44f1-a03d-2f8519f97bd2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:cbb52598-55ca-4a03-af3a-da3373603e2b" + "WESTUS:20150813T074629Z:6008356b-f9b8-44f1-a03d-2f8519f97bd2" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201507311?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201507280?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507311\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507311\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507280\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17157,7 +17416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d3dd2dc-9b5e-44b1-b20c-85e4fe4f7e84" + "02fff51a-9d2d-4076-9af1-fee580a7ca1c" ], "Cache-Control": [ "no-cache" @@ -17167,34 +17426,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13711" + "14599" ], "x-ms-correlation-request-id": [ - "7b3a663b-b307-4478-b338-599bf83cec59" + "60dceeb1-3fc4-4a66-a156-dc68dcc2b4d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:7b3a663b-b307-4478-b338-599bf83cec59" + "WESTUS:20150813T074629Z:60dceeb1-3fc4-4a66-a156-dc68dcc2b4d8" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.10/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMTAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201507301?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.10.201212180\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.10/Versions/12.10.201212180\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507301\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507301\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "282" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17209,7 +17468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7dd9344c-164d-4ea9-83da-296f18cbce55" + "5cb581df-1813-442f-ac74-e3b1d905ee46" ], "Cache-Control": [ "no-cache" @@ -17219,34 +17478,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13710" + "14598" ], "x-ms-correlation-request-id": [ - "1a4a6b3b-19ae-4a35-a089-298fdd9f9792" + "f41bcc47-31b8-4ef8-835d-71bad07e6a81" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:1a4a6b3b-19ae-4a35-a089-298fdd9f9792" + "WESTUS:20150813T074630Z:f41bcc47-31b8-4ef8-835d-71bad07e6a81" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.10/versions/12.10.201212180?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMTAvdmVyc2lvbnMvMTIuMTAuMjAxMjEyMTgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201507311?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMDQuNS1MVFMvdmVyc2lvbnMvMTIuMDQuMjAxNTA3MzExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.10.201212180\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.10/Versions/12.10.201212180\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.04.201507311\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201507311\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "381" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17261,7 +17520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f67c93f-3f60-4fde-91f0-1c75eef87de3" + "901d5029-0a1b-4633-af54-176cedb72f39" ], "Cache-Control": [ "no-cache" @@ -17271,34 +17530,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13709" + "14597" ], "x-ms-correlation-request-id": [ - "a6a8ddbd-f394-419c-89c1-f619d01ce7bd" + "b826f4a9-070d-4a05-92c0-a2082d31d10e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212455Z:a6a8ddbd-f394-419c-89c1-f619d01ce7bd" + "WESTUS:20150813T074630Z:b826f4a9-070d-4a05-92c0-a2082d31d10e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04-beta/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQtYmV0YS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.10/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMTAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.10.201212180\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.10/Versions/12.10.201212180\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17313,7 +17572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa2e641e-a29f-4c1b-9e89-7fa56a05436a" + "ca4e3cbc-3ed8-4ebf-8a46-803579032d86" ], "Cache-Control": [ "no-cache" @@ -17323,34 +17582,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13708" + "14596" ], "x-ms-correlation-request-id": [ - "87763edc-141a-47eb-8b28-84e49370d4df" + "9c800c32-847e-4a6e-9af9-ba1337f7d129" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:87763edc-141a-47eb-8b28-84e49370d4df" + "WESTUS:20150813T074630Z:9c800c32-847e-4a6e-9af9-ba1337f7d129" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.10/versions/12.10.201212180?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTIuMTAvdmVyc2lvbnMvMTIuMTAuMjAxMjEyMTgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404140\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404140\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404142\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404142\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404161\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404161\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201405280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201405280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201406061\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201406061\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201406181\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201406181\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201407240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201407240\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.10.201212180\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.10/Versions/12.10.201212180\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1998" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17365,7 +17624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab1868fa-e8dd-4a4a-a71c-7659a960ebd5" + "fe857d31-13be-4670-8c05-11dc1e26f126" ], "Cache-Control": [ "no-cache" @@ -17375,34 +17634,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13707" + "14595" ], "x-ms-correlation-request-id": [ - "22f4b9f1-ff4c-4a78-9a60-9b8a0ffac472" + "c5542c11-7049-465f-b83f-b7e807a204b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:22f4b9f1-ff4c-4a78-9a60-9b8a0ffac472" + "WESTUS:20150813T074630Z:c5542c11-7049-465f-b83f-b7e807a204b9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201404140?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA0MTQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04-beta/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQtYmV0YS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404140\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404140\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "387" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17417,7 +17676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bae8dab1-0918-49d4-8320-75c5320812e8" + "549518e9-80a4-4948-9491-70c4ca4eabcf" ], "Cache-Control": [ "no-cache" @@ -17427,34 +17686,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13706" + "14594" ], "x-ms-correlation-request-id": [ - "da87eb9a-e1b7-4403-a887-35761db2b036" + "68f0db6a-3cd9-4a4d-9e8b-8723a828c381" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:da87eb9a-e1b7-4403-a887-35761db2b036" + "WESTUS:20150813T074630Z:68f0db6a-3cd9-4a4d-9e8b-8723a828c381" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201404142?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA0MTQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404142\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404142\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404140\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404140\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404142\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404142\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404161\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404161\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201405280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201405280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201406061\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201406061\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201406181\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201406181\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201407240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201407240\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "387" + "1998" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17469,7 +17728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59bab200-debc-48ab-8c6a-7efb7b397946" + "31097897-0713-4074-b3ab-39cbfb424669" ], "Cache-Control": [ "no-cache" @@ -17479,31 +17738,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13705" + "14593" ], "x-ms-correlation-request-id": [ - "37d7435c-2db5-48ab-9dcd-ec5485da8d8b" + "08de8c17-5ee3-4a7e-ad2b-2fa4a8bca967" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:37d7435c-2db5-48ab-9dcd-ec5485da8d8b" + "WESTUS:20150813T074630Z:08de8c17-5ee3-4a7e-ad2b-2fa4a8bca967" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201404161?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA0MTYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201404140?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA0MTQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404161\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404161\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404140\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404140\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17521,7 +17780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64712a68-8722-4e85-93ab-6fa0ba685f8b" + "8cd96b15-949f-4c86-af1f-04006c959ba8" ], "Cache-Control": [ "no-cache" @@ -17531,31 +17790,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13704" + "14592" ], "x-ms-correlation-request-id": [ - "438dc6a9-2cf7-4d60-808f-66cc326950fe" + "43e4604c-7bd2-40a0-a33f-688b1f33b834" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:438dc6a9-2cf7-4d60-808f-66cc326950fe" + "WESTUS:20150813T074630Z:43e4604c-7bd2-40a0-a33f-688b1f33b834" ], "Date": [ - "Wed, 05 Aug 2015 21:24:55 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201405280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA1MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201404142?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA0MTQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201405280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201405280\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404142\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404142\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17573,7 +17832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4173d318-1c29-4a50-8560-9a0fbe008b53" + "1f901b75-5080-43dd-a183-7d1ba97c88cd" ], "Cache-Control": [ "no-cache" @@ -17583,31 +17842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13703" + "14591" ], "x-ms-correlation-request-id": [ - "8deb45f2-e641-4703-8af9-c373ca91b5ba" + "b244c4fe-61d5-465a-be1c-57588970c552" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:8deb45f2-e641-4703-8af9-c373ca91b5ba" + "WESTUS:20150813T074630Z:b244c4fe-61d5-465a-be1c-57588970c552" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201406061?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA2MDYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201404161?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA0MTYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201406061\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201406061\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201404161\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201404161\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17625,7 +17884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee278821-b3bd-46ca-b7f4-24426608e012" + "2014a580-9dd6-4320-8914-50406fb264a7" ], "Cache-Control": [ "no-cache" @@ -17635,31 +17894,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13702" + "14590" ], "x-ms-correlation-request-id": [ - "f80d9ebd-0982-4195-bfe1-e75d6a49a599" + "d9b94719-9952-41d3-b650-b15c6947074c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:f80d9ebd-0982-4195-bfe1-e75d6a49a599" + "WESTUS:20150813T074630Z:d9b94719-9952-41d3-b650-b15c6947074c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201406181?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA2MTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201405280?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA1MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201406181\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201406181\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201405280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201405280\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17677,7 +17936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd5faa0f-409b-4cea-b54b-a3c856708389" + "7984fc09-2484-4eb0-9db1-6e40c7b4f314" ], "Cache-Control": [ "no-cache" @@ -17687,31 +17946,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13701" + "14589" ], "x-ms-correlation-request-id": [ - "c3971e57-7fdc-449f-a203-be9737444cfd" + "e48173e9-fda5-4673-977e-7ff6dc81c09b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:c3971e57-7fdc-449f-a203-be9737444cfd" + "WESTUS:20150813T074630Z:e48173e9-fda5-4673-977e-7ff6dc81c09b" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201407240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA3MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201406061?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA2MDYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201407240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201407240\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201406061\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201406061\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17729,7 +17988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "216ea40e-73c2-4417-8298-a954274daaee" + "dee0f7e1-935c-4d9b-946e-8b42fe11716b" ], "Cache-Control": [ "no-cache" @@ -17739,34 +17998,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13700" + "14588" ], "x-ms-correlation-request-id": [ - "50a6a0ed-28c6-4101-82d0-3087d386cf6c" + "45ba7818-8301-44be-bb48-64750e997b22" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:50a6a0ed-28c6-4101-82d0-3087d386cf6c" + "WESTUS:20150813T074631Z:45ba7818-8301-44be-bb48-64750e997b22" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201406181?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA2MTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409260\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409260\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201411250\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201411250\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201501230\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201501230\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201406181\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201406181\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1713" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17781,7 +18040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "859d3b40-3dc2-41c9-bd52-6405ebd2250e" + "1c919c68-de40-49ce-959c-e0d38b8b5c7b" ], "Cache-Control": [ "no-cache" @@ -17791,31 +18050,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13699" + "14587" ], "x-ms-correlation-request-id": [ - "ed573a52-c2b2-4967-84c9-caa8a3237f91" + "c5d5e0da-c290-4058-800f-cdaf4edba3e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:ed573a52-c2b2-4967-84c9-caa8a3237f91" + "WESTUS:20150813T074631Z:c5d5e0da-c290-4058-800f-cdaf4edba3e7" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201409090?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA5MDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201407240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMC1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA3MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409090\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201407240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201407240\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17833,7 +18092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe7f1187-d60b-4d06-afca-486d34933c44" + "2cd55476-b65a-44c9-a29c-b4b4a0f0dd3f" ], "Cache-Control": [ "no-cache" @@ -17843,34 +18102,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13698" + "14586" ], "x-ms-correlation-request-id": [ - "c7d62642-8e61-44c1-844b-633c75999d71" + "82449e7b-2852-4dd9-bb51-cb49d6ca0010" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212456Z:c7d62642-8e61-44c1-844b-633c75999d71" + "WESTUS:20150813T074631Z:82449e7b-2852-4dd9-bb51-cb49d6ca0010" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201409240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA5MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409240\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409260\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409260\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201411250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201411250\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201501230\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201501230\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "387" + "1713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17885,7 +18144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9358a8f-363e-4a7b-a8b8-a37c4e3c2a68" + "0d4effbe-047d-45b4-881c-3d4d4f2c220b" ], "Cache-Control": [ "no-cache" @@ -17895,31 +18154,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13697" + "14585" ], "x-ms-correlation-request-id": [ - "51f06f35-3e12-4a40-9a85-f5f3b263e593" + "14ca883c-9bde-44f1-99f7-663bf89cc58d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:51f06f35-3e12-4a40-9a85-f5f3b263e593" + "WESTUS:20150813T074631Z:14ca883c-9bde-44f1-99f7-663bf89cc58d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201409260?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA5MjYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201409090?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA5MDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409260\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409260\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409090\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17937,7 +18196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3ff3a8c-0d78-4957-aa5d-e92b8fc8534e" + "9be3b70f-b358-4ba5-815d-4c6edeaa5714" ], "Cache-Control": [ "no-cache" @@ -17947,31 +18206,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13696" + "14584" ], "x-ms-correlation-request-id": [ - "c04390c8-37bd-467b-adde-20f5b0cc23d8" + "ac9554fb-1392-4a07-8ddc-ccf51d31104a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:c04390c8-37bd-467b-adde-20f5b0cc23d8" + "WESTUS:20150813T074631Z:ac9554fb-1392-4a07-8ddc-ccf51d31104a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201409270?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA5MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201409240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA5MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409270\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409240\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -17989,7 +18248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8647d3f0-dfaa-4d95-b1e8-44ba605d8270" + "57ea2ad3-feb7-459d-84f4-11434d0c6bfa" ], "Cache-Control": [ "no-cache" @@ -17999,31 +18258,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13695" + "14583" ], "x-ms-correlation-request-id": [ - "f084e359-049f-4181-b6a8-c58fdfbbaa15" + "55b28148-14f6-49e7-988a-55a72b077410" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:f084e359-049f-4181-b6a8-c58fdfbbaa15" + "WESTUS:20150813T074631Z:55b28148-14f6-49e7-988a-55a72b077410" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201411250?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDExMjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201409260?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA5MjYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201411250\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201411250\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409260\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409260\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -18041,7 +18300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff232981-f50b-4f88-aa61-5f61eb63652d" + "e33886ac-c7f8-4c00-bd74-0146a843d06e" ], "Cache-Control": [ "no-cache" @@ -18051,31 +18310,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13694" + "14582" ], "x-ms-correlation-request-id": [ - "05ab4029-6b2b-4b46-8759-f6631e26cc84" + "36397826-a95c-4b2d-ba3f-b3b01a663517" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:05ab4029-6b2b-4b46-8759-f6631e26cc84" + "WESTUS:20150813T074631Z:36397826-a95c-4b2d-ba3f-b3b01a663517" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201501230?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTAxMjMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201409270?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDA5MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201501230\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201501230\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201409270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201409270\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -18093,7 +18352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c81f919-c038-46f5-a3e5-bd488f02dcd5" + "cb461098-bd20-4a22-91b9-1dd9a6445d90" ], "Cache-Control": [ "no-cache" @@ -18103,34 +18362,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13693" + "14581" ], "x-ms-correlation-request-id": [ - "466e0d06-0980-4efc-a973-702f866100bc" + "c88eb84b-db08-47b5-bd42-1e840ea43964" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:466e0d06-0980-4efc-a973-702f866100bc" + "WESTUS:20150813T074631Z:c88eb84b-db08-47b5-bd42-1e840ea43964" ], "Date": [ - "Wed, 05 Aug 2015 21:24:56 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201411250?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNDExMjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507070\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507080\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507080\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507210\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507210\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507290\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507290\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507310\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507310\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508030\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201508030\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201411250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201411250\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2913" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -18145,7 +18404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a961c8db-bdc1-4ee1-a7ac-efaefd2e03d2" + "16bb0d14-5c0f-4080-b496-c13bb3591458" ], "Cache-Control": [ "no-cache" @@ -18155,34 +18414,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13692" + "14580" ], "x-ms-correlation-request-id": [ - "71c5d319-83c5-4f8a-86ae-3e9d9af3f108" + "8a3b140f-c50f-43fa-a5e2-4f90bed9c1da" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:71c5d319-83c5-4f8a-86ae-3e9d9af3f108" + "WESTUS:20150813T074631Z:8a3b140f-c50f-43fa-a5e2-4f90bed9c1da" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507070?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201501230?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTAxMjMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507070\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201501230\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201501230\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "393" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -18197,7 +18456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08a24ee5-7776-465e-9a4a-5f73b6def8a0" + "4fb38da0-63c0-44f0-8cbc-22181313aa58" ], "Cache-Control": [ "no-cache" @@ -18207,34 +18466,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13691" + "14579" ], "x-ms-correlation-request-id": [ - "a82e7994-0e2b-4bd7-b343-d66f581a9b99" + "9fab02e6-b15c-4b0a-be55-c04dbb56b60a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:a82e7994-0e2b-4bd7-b343-d66f581a9b99" + "WESTUS:20150813T074631Z:9fab02e6-b15c-4b0a-be55-c04dbb56b60a" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507080?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MDgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507080\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507080\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507270\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507290\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507290\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507310\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507310\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508030\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201508030\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508050\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201508050\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "393" + "2331" ], "Content-Type": [ "application/json; charset=utf-8" @@ -18249,7 +18508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "253d10ab-da89-48ac-95e1-f23afda7746f" + "e7f894e3-08c3-4f0f-acba-f9548fde959b" ], "Cache-Control": [ "no-cache" @@ -18259,31 +18518,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13690" + "14578" ], "x-ms-correlation-request-id": [ - "b884c3f4-f91f-4d23-a532-5c1c72a974b4" + "54b53ab9-3f81-45a8-a561-30d0c5a24c3c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:b884c3f4-f91f-4d23-a532-5c1c72a974b4" + "WESTUS:20150813T074632Z:54b53ab9-3f81-45a8-a561-30d0c5a24c3c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507210?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507220?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507210\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507210\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507220\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -18301,7 +18560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae1d0eca-4e5a-4feb-bc57-a7fc93109956" + "409a061a-2795-4ba4-a238-f3c4741f6f71" ], "Cache-Control": [ "no-cache" @@ -18311,31 +18570,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13689" + "14577" ], "x-ms-correlation-request-id": [ - "1e0900f1-ed23-4c89-b304-d22d6f0a1f32" + "af2a7b6f-1e4e-4a01-b779-5aaed1d4d957" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:1e0900f1-ed23-4c89-b304-d22d6f0a1f32" + "WESTUS:20150813T074632Z:af2a7b6f-1e4e-4a01-b779-5aaed1d4d957" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507220?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507220\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507240\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -18353,7 +18612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "340b1645-4376-4b8a-aca1-93a59cfc7245" + "2f8869bf-4856-48b2-9591-59b203be9a34" ], "Cache-Control": [ "no-cache" @@ -18363,31 +18622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13688" + "14576" ], "x-ms-correlation-request-id": [ - "bd67bb14-fc92-409d-8a91-9f8a80dbacc6" + "3e160124-5b8b-4866-94e6-47b565e0a82d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212457Z:bd67bb14-fc92-409d-8a91-9f8a80dbacc6" + "WESTUS:20150813T074632Z:3e160124-5b8b-4866-94e6-47b565e0a82d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507270?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507240\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507270\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507270\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -18405,7 +18664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a46060dd-f04f-4dc9-9507-4543a91582d8" + "10cceaf5-ace9-4175-b7ee-0f19bd828578" ], "Cache-Control": [ "no-cache" @@ -18415,31 +18674,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13687" + "14575" ], "x-ms-correlation-request-id": [ - "59b06b5e-5a12-44e3-94e1-53b52f31527a" + "ac12e5d5-4d03-42e8-855f-893477a40e44" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:59b06b5e-5a12-44e3-94e1-53b52f31527a" + "WESTUS:20150813T074632Z:ac12e5d5-4d03-42e8-855f-893477a40e44" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507270?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507280?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507270\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507270\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507280\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -18457,7 +18716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4653f7d7-5b6e-4e07-ad2d-32c6588a95fc" + "bbf856ea-3c08-40f8-97fc-df724c6f132a" ], "Cache-Control": [ "no-cache" @@ -18467,31 +18726,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13686" + "14574" ], "x-ms-correlation-request-id": [ - "bbc88940-cc31-46d7-8187-5c47696a201a" + "e096c045-7d89-459d-a972-e4348eac21ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:bbc88940-cc31-46d7-8187-5c47696a201a" + "WESTUS:20150813T074632Z:e096c045-7d89-459d-a972-e4348eac21ad" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507290?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507280\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507290\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507290\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -18509,7 +18768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0d238a1-85ba-48d0-a549-c73ebe3f2c53" + "e3b6f70b-2ccf-433e-9470-88967298127a" ], "Cache-Control": [ "no-cache" @@ -18519,31 +18778,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13685" + "14573" ], "x-ms-correlation-request-id": [ - "3a8218ba-0743-49f6-a525-d27c086104cb" + "19e19c74-2380-487d-87f7-98a7669fff21" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:3a8218ba-0743-49f6-a525-d27c086104cb" + "WESTUS:20150813T074632Z:19e19c74-2380-487d-87f7-98a7669fff21" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507290?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MjkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507310?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MzEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507290\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507290\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507310\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507310\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -18561,7 +18820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6d2b971-bbe1-4940-91e7-1b140a3d8857" + "c59de683-33d1-4afc-a73c-a98a2848316c" ], "Cache-Control": [ "no-cache" @@ -18571,31 +18830,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13684" + "14572" ], "x-ms-correlation-request-id": [ - "dffc5e27-6d20-47be-9046-fe360633b5f9" + "28c40932-3d4b-4b03-b30d-47c2f5434329" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:dffc5e27-6d20-47be-9046-fe360633b5f9" + "WESTUS:20150813T074632Z:28c40932-3d4b-4b03-b30d-47c2f5434329" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201507310?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MzEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201508030?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA4MDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507310\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201507310\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508030\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201508030\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -18613,7 +18872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69f835d9-001e-44e9-99b6-9c244c711641" + "56b59b6e-b3be-44f4-a7ad-11ae015d4e92" ], "Cache-Control": [ "no-cache" @@ -18623,31 +18882,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13683" + "14571" ], "x-ms-correlation-request-id": [ - "3fc8e08c-9798-4a5a-a783-b065bfac9f76" + "bb45d2d1-6776-4cfe-8234-3c1d87f5e3e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:3fc8e08c-9798-4a5a-a783-b065bfac9f76" + "WESTUS:20150813T074632Z:bb45d2d1-6776-4cfe-8234-3c1d87f5e3e9" ], "Date": [ - "Wed, 05 Aug 2015 21:24:57 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201508030?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA4MDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-DAILY-LTS/versions/14.04.201508050?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA4MDUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508030\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201508030\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508050\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-DAILY-LTS/Versions/14.04.201508050\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -18665,7 +18924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f76d83b-b45b-49dd-aeaf-ccf78650c58e" + "cb4c9aa3-b73c-4972-b89f-9fc3b96c2a6d" ], "Cache-Control": [ "no-cache" @@ -18675,31 +18934,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13682" + "14570" ], "x-ms-correlation-request-id": [ - "b6f37071-abd6-447a-8f17-c6563fbe34de" + "979fe93c-7208-4e19-9483-5202d2966515" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:b6f37071-abd6-447a-8f17-c6563fbe34de" + "WESTUS:20150813T074632Z:979fe93c-7208-4e19-9483-5202d2966515" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201503090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201503090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201505060\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201505060\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201506100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201506100\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507060\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201507060\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201503090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201503090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201505060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201505060\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201506100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201506100\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201507060\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1143" @@ -18717,7 +18976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6f03cb59-112a-46a4-8c55-9b3b0d25dfd4" + "e0c5b77c-6798-4554-a9c5-850e9399803e" ], "Cache-Control": [ "no-cache" @@ -18727,31 +18986,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13681" + "14569" ], "x-ms-correlation-request-id": [ - "13a75b62-bbbd-49e3-9d4b-7b05ddbb6285" + "2fead546-542a-4550-ab0a-94963c8d14ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:13a75b62-bbbd-49e3-9d4b-7b05ddbb6285" + "WESTUS:20150813T074632Z:2fead546-542a-4550-ab0a-94963c8d14ab" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201503090?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTAzMDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201503090?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTAzMDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201503090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201503090\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201503090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201503090\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -18769,7 +19028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb333d9a-3ff5-4cd1-9315-1054f8ac147d" + "9aab50a8-7937-43b9-a34c-1ae4a2a91b37" ], "Cache-Control": [ "no-cache" @@ -18779,31 +19038,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13680" + "14568" ], "x-ms-correlation-request-id": [ - "e06b6788-0379-484c-9cd0-2091e6d368e5" + "73b8b097-de98-46cf-b091-5690b8f3fb42" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:e06b6788-0379-484c-9cd0-2091e6d368e5" + "WESTUS:20150813T074632Z:73b8b097-de98-46cf-b091-5690b8f3fb42" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201505060?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201505060?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA1MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201505060\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201505060\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201505060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201505060\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -18821,7 +19080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "665b5467-4cb8-49e4-9846-32334d10fe16" + "22db073e-909f-4d6a-9352-bc9652197d6c" ], "Cache-Control": [ "no-cache" @@ -18831,31 +19090,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13679" + "14567" ], "x-ms-correlation-request-id": [ - "051b8c14-f6d6-4d79-b2bc-ee044b80ac31" + "113b1900-90fb-4fa6-a9ec-63320a2c09b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:051b8c14-f6d6-4d79-b2bc-ee044b80ac31" + "WESTUS:20150813T074633Z:113b1900-90fb-4fa6-a9ec-63320a2c09b0" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201506100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA2MTAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201506100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA2MTAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201506100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201506100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201506100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201506100\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -18873,7 +19132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27f2a239-c44d-4655-8657-ef86cbb55401" + "2daba849-3261-4abc-8ae5-5b117c77b133" ], "Cache-Control": [ "no-cache" @@ -18883,31 +19142,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13678" + "14566" ], "x-ms-correlation-request-id": [ - "73630c3c-f9e3-49c9-88de-4a3bf8245ace" + "817819e6-20ea-4403-a93f-693475ba51a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212458Z:73630c3c-f9e3-49c9-88de-4a3bf8245ace" + "WESTUS:20150813T074633Z:817819e6-20ea-4403-a93f-693475ba51a1" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201507060?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201507060?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMi1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA3MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507060\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201507060\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201507060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201507060\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -18925,7 +19184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef3e621c-94f9-4396-a145-9b17903f20a8" + "699ff786-6ad7-49d2-94cc-958c87a6cfc4" ], "Cache-Control": [ "no-cache" @@ -18935,34 +19194,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13677" + "14565" ], "x-ms-correlation-request-id": [ - "9a71c07d-c29d-4bb9-a9b6-0fdc7e76d655" + "a69d5b18-b594-4e75-9c85-44cf89c2749e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:9a71c07d-c29d-4bb9-a9b6-0fdc7e76d655" + "WESTUS:20150813T074633Z:a69d5b18-b594-4e75-9c85-44cf89c2749e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.10/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMTAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-DAILY-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMy1EQUlMWS1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508050\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-DAILY-LTS/Versions/14.04.201508050\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508120\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-DAILY-LTS/Versions/14.04.201508120\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "585" ], "Content-Type": [ "application/json; charset=utf-8" @@ -18977,7 +19236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f670827e-9513-477b-98f2-3dfc1dac524d" + "b303f2b3-fee3-48d7-931c-282ea949374d" ], "Cache-Control": [ "no-cache" @@ -18987,34 +19246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13676" + "14564" ], "x-ms-correlation-request-id": [ - "9fbfd93a-0f22-41ac-adf6-fbb88a2d9bd3" + "7727ab29-edd4-4312-aa40-639e4395faef" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:9fbfd93a-0f22-41ac-adf6-fbb88a2d9bd3" + "WESTUS:20150813T074633Z:7727ab29-edd4-4312-aa40-639e4395faef" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.10-beta/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMTAtYmV0YS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-DAILY-LTS/versions/14.04.201508050?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMy1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA4MDUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508050\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-DAILY-LTS/Versions/14.04.201508050\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19029,7 +19288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5506005-5542-4688-a63d-d68ae2f3b0ee" + "938a7fd5-470c-45ac-a626-b866f391b7cc" ], "Cache-Control": [ "no-cache" @@ -19039,34 +19298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13675" + "14563" ], "x-ms-correlation-request-id": [ - "2c6fc4e7-b3e7-4c6c-8408-b2376447fdb5" + "3af38465-ad5c-4f29-b540-235046540dea" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:2c6fc4e7-b3e7-4c6c-8408-b2376447fdb5" + "WESTUS:20150813T074633Z:3af38465-ad5c-4f29-b540-235046540dea" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.10-DAILY/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMTAtREFJTFkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-DAILY-LTS/versions/14.04.201508120?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMy1EQUlMWS1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA4MTIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508120\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-DAILY-LTS/Versions/14.04.201508120\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19081,7 +19340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14e6e27a-c742-4f0c-a1e4-29d5369187ff" + "d893c1ea-13c5-4696-b330-5cdf9812fd4e" ], "Cache-Control": [ "no-cache" @@ -19091,34 +19350,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13674" + "14562" ], "x-ms-correlation-request-id": [ - "1e21e6b3-bad4-471d-b664-bae2e50a1a58" + "7dd3e617-c247-4049-aa5c-1e4a0a088e71" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:1e21e6b3-bad4-471d-b664-bae2e50a1a58" + "WESTUS:20150813T074633Z:7dd3e617-c247-4049-aa5c-1e4a0a088e71" ], "Date": [ - "Wed, 05 Aug 2015 21:24:58 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMy1MVFMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504211\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504211\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505130\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505130\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505131\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505131\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505281\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505281\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506110\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201506110\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506161\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201506161\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507070\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507290\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507290\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508050\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201508050\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "3072" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19133,7 +19392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45e91738-6c1b-42e0-b066-1b299eeac4db" + "4ec8f204-98e6-4739-8cba-ecd31d9c2c69" ], "Cache-Control": [ "no-cache" @@ -19143,34 +19402,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13673" + "14561" ], "x-ms-correlation-request-id": [ - "da22cee8-6f0a-420b-a311-72ac1084a7c1" + "595ede46-7e3c-45f0-86d0-52e508067841" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:da22cee8-6f0a-420b-a311-72ac1084a7c1" + "WESTUS:20150813T074633Z:595ede46-7e3c-45f0-86d0-52e508067841" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201504211?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA0MjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMDQuMy1MVFMvdmVyc2lvbnMvMTQuMDQuMjAxNTA4MDUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504211\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504211\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.04.201508050\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201508050\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "381" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19185,7 +19444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "549a70d4-25fe-4c5f-bac9-abf6e5271f75" + "fab4ceae-aef1-464c-ba23-17a58edb1be9" ], "Cache-Control": [ "no-cache" @@ -19195,34 +19454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13672" + "14560" ], "x-ms-correlation-request-id": [ - "154da9ab-7558-4f5f-b967-fbc0514abe28" + "465d1964-fda5-4bf6-900a-1b7cb7953414" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:154da9ab-7558-4f5f-b967-fbc0514abe28" + "WESTUS:20150813T074633Z:465d1964-fda5-4bf6-900a-1b7cb7953414" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201504220?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA0MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.10/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMTAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504220\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "381" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19237,7 +19496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67614e1e-111b-476d-ba53-7a9eb28d82b7" + "47e9421f-cd19-42fa-9ffb-e4f7f7547c30" ], "Cache-Control": [ "no-cache" @@ -19247,34 +19506,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13671" + "14559" ], "x-ms-correlation-request-id": [ - "82561d01-d388-458c-b810-19251b995f07" + "71837eca-1d12-4f74-81a9-939fb563418e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:82561d01-d388-458c-b810-19251b995f07" + "WESTUS:20150813T074633Z:71837eca-1d12-4f74-81a9-939fb563418e" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201505130?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA1MTMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.10-beta/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMTAtYmV0YS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505130\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505130\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "381" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19289,7 +19548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "584f0104-7f09-4e2e-b0a1-a0401260bbe4" + "decbf1dc-9b4e-4408-9ce3-273bb725cc87" ], "Cache-Control": [ "no-cache" @@ -19299,34 +19558,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13670" + "14558" ], "x-ms-correlation-request-id": [ - "3e85cf80-ab79-464d-b67a-2a32f1b0f123" + "c201df98-b3b7-4f11-9ce0-74d4f8258308" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:3e85cf80-ab79-464d-b67a-2a32f1b0f123" + "WESTUS:20150813T074633Z:c201df98-b3b7-4f11-9ce0-74d4f8258308" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201505131?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA1MTMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.10-DAILY/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTQuMTAtREFJTFkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505131\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505131\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "381" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19341,7 +19600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "434d116e-bbd1-46ac-9fe8-6576286a258c" + "f8a47b99-7567-493f-a77e-8515d5d3e7de" ], "Cache-Control": [ "no-cache" @@ -19351,34 +19610,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13669" + "14557" ], "x-ms-correlation-request-id": [ - "81242040-2bfa-42b8-a05a-8ce99c13dcc0" + "3122ca11-fc86-4ffa-9691-1798269e1c63" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:81242040-2bfa-42b8-a05a-8ce99c13dcc0" + "WESTUS:20150813T074634Z:3122ca11-fc86-4ffa-9691-1798269e1c63" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201505281?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA1MjgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505281\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505281\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504171\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504171\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504201\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504201\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504210\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504210\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504211\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504211\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505130\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505130\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505131\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505131\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505281\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505281\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506110\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201506110\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506161\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201506161\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507070\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507070\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507290\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507290\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "381" + "3909" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19393,7 +19652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a2df5c7-2012-4360-8c0a-bfebb72f4697" + "110314c5-194d-48f2-beff-2a50e2acc9ac" ], "Cache-Control": [ "no-cache" @@ -19403,31 +19662,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13668" + "14556" ], "x-ms-correlation-request-id": [ - "e1aaa260-5533-4180-941f-0403ce35b80c" + "f04c4ea8-96c5-4a27-9a6e-3e5bde048cda" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212459Z:e1aaa260-5533-4180-941f-0403ce35b80c" + "WESTUS:20150813T074634Z:f04c4ea8-96c5-4a27-9a6e-3e5bde048cda" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201506110?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201504171?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA0MTcxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506110\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201506110\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504171\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504171\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -19445,7 +19704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04d2824c-4b3d-4ca6-b5dd-344644c11aae" + "ac9b1957-60c8-4fa2-9cb4-8d9ca32a9d98" ], "Cache-Control": [ "no-cache" @@ -19455,31 +19714,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13667" + "14555" ], "x-ms-correlation-request-id": [ - "e9cf14db-5f75-43ab-b862-176c1e079650" + "ef006266-1271-445e-9f46-884139acf953" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:e9cf14db-5f75-43ab-b862-176c1e079650" + "WESTUS:20150813T074634Z:ef006266-1271-445e-9f46-884139acf953" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201506161?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA2MTYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201504201?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA0MjAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506161\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201506161\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504201\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504201\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -19497,7 +19756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd571f95-fe55-4333-962c-3f37b9058916" + "913f32ba-4502-4ed3-b002-d99dc9b561ed" ], "Cache-Control": [ "no-cache" @@ -19507,31 +19766,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13666" + "14554" ], "x-ms-correlation-request-id": [ - "3d24fceb-800a-4bd3-b5ea-1d5bc340d530" + "8b7c2b6f-ba67-400d-a6ff-7269d6d6555f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:3d24fceb-800a-4bd3-b5ea-1d5bc340d530" + "WESTUS:20150813T074634Z:8b7c2b6f-ba67-400d-a6ff-7269d6d6555f" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201507070?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201504210?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA0MjEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507070\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504210\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504210\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -19549,7 +19808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1799a9ac-d859-44d8-8f52-faad75c30a7e" + "a3034b77-eb50-41b6-bf88-91abfbba6c1e" ], "Cache-Control": [ "no-cache" @@ -19559,31 +19818,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13665" + "14553" ], "x-ms-correlation-request-id": [ - "942ecc4b-b521-4320-a9a9-594643ba88cf" + "6bdb013d-e485-4faf-87a3-28a745a3a37d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:942ecc4b-b521-4320-a9a9-594643ba88cf" + "WESTUS:20150813T074634Z:6bdb013d-e485-4faf-87a3-28a745a3a37d" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201507220?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201504211?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA0MjExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507220\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504211\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504211\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -19601,7 +19860,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0c9c813-af75-496c-aeaf-fea4873764a7" + "ebb1f882-3583-490e-a306-07e8c2affb9a" ], "Cache-Control": [ "no-cache" @@ -19611,31 +19870,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13664" + "14552" ], "x-ms-correlation-request-id": [ - "d7bc2b9a-1f07-41a2-83cd-18c1f40ac318" + "a4cbc0a2-a51b-4f24-ab8c-69f16cb6ce7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:d7bc2b9a-1f07-41a2-83cd-18c1f40ac318" + "WESTUS:20150813T074634Z:a4cbc0a2-a51b-4f24-ab8c-69f16cb6ce7c" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201507280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201504220?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA0MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507280\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201504220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504220\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -19653,7 +19912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e65ebbc-798d-4d18-8ca7-cfde65b8ec78" + "6fe57ec8-a656-49ab-94aa-ce91771c0c21" ], "Cache-Control": [ "no-cache" @@ -19663,31 +19922,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13663" + "14551" ], "x-ms-correlation-request-id": [ - "64c05d63-9a56-4894-9e8d-d271c9ccc5b8" + "0d029d6e-0fda-455e-88f7-5da1e1f31488" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:64c05d63-9a56-4894-9e8d-d271c9ccc5b8" + "WESTUS:20150813T074634Z:0d029d6e-0fda-455e-88f7-5da1e1f31488" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201507290?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201505130?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA1MTMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507290\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507290\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505130\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505130\"\r\n}", "ResponseHeaders": { "Content-Length": [ "381" @@ -19705,7 +19964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a26a5bd-02c0-4d20-b25b-20ee2c1d42f6" + "2511e764-4e23-473e-83a0-e1a469061c18" ], "Cache-Control": [ "no-cache" @@ -19715,34 +19974,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13662" + "14550" ], "x-ms-correlation-request-id": [ - "faf061a7-aed3-407f-b5ad-2f1203da663a" + "f6156e07-df6c-4abe-95a8-230889eacae2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:faf061a7-aed3-407f-b5ad-2f1203da663a" + "WESTUS:20150813T074634Z:f6156e07-df6c-4abe-95a8-230889eacae2" ], "Date": [ - "Wed, 05 Aug 2015 21:24:59 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-beta/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtYmV0YS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201505131?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA1MTMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505131\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505131\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19757,7 +20016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f48e033a-aeed-4ac2-bdd9-2c71fbb8969f" + "f63fa02d-7f55-4912-9919-3315e3c3d337" ], "Cache-Control": [ "no-cache" @@ -19767,34 +20026,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13661" + "14549" ], "x-ms-correlation-request-id": [ - "bbc9480d-96a6-42b3-a4fd-dd61d8411bf0" + "3e280929-bda7-44bb-8a8e-c896f2953662" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:bbc9480d-96a6-42b3-a4fd-dd61d8411bf0" + "WESTUS:20150813T074634Z:3e280929-bda7-44bb-8a8e-c896f2953662" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201505281?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA1MjgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201506300\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507070\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507150\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507150\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507290\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507290\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507300\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507310\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507310\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201508020\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201508020\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201505281\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201505281\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2853" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19809,7 +20068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74284634-03d0-4e76-a81a-55d26e211d14" + "26232477-153c-444b-8c7a-433c0dc2aca5" ], "Cache-Control": [ "no-cache" @@ -19819,34 +20078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13660" + "14548" ], "x-ms-correlation-request-id": [ - "aa62e408-d242-47b0-b5de-de3b2fbe06b3" + "20dd2cce-74ed-4c35-8eab-7c3952e0339e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:aa62e408-d242-47b0-b5de-de3b2fbe06b3" + "WESTUS:20150813T074634Z:20dd2cce-74ed-4c35-8eab-7c3952e0339e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201506300?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA2MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201506110?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA2MTEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201506300\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506110\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201506110\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19861,7 +20120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "add4789d-5a41-45f3-ac13-67c7a8f3eda8" + "d826a519-3b65-4d24-90ea-28a672e628d6" ], "Cache-Control": [ "no-cache" @@ -19871,34 +20130,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13659" + "14547" ], "x-ms-correlation-request-id": [ - "6181c163-91ea-4856-8ee8-5594d827e73f" + "012bd077-e3d0-43ba-a3c0-76057d1e8b72" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:6181c163-91ea-4856-8ee8-5594d827e73f" + "WESTUS:20150813T074634Z:012bd077-e3d0-43ba-a3c0-76057d1e8b72" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507070?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201506161?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA2MTYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507070\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507070\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201506161\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201506161\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19913,7 +20172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2342e9d-265f-40db-92db-609b55d89d2d" + "a035af57-f08b-4c43-a826-2108105e2b21" ], "Cache-Control": [ "no-cache" @@ -19923,34 +20182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13658" + "14546" ], "x-ms-correlation-request-id": [ - "0bc8cdf0-0169-4c6f-b7da-ba1b43b93140" + "27a34173-b25c-404b-b20f-e93333517053" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:0bc8cdf0-0169-4c6f-b7da-ba1b43b93140" + "WESTUS:20150813T074634Z:27a34173-b25c-404b-b20f-e93333517053" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507090?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201507070?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507090\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507090\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507070\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507070\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -19965,7 +20224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c142b5b-36e5-41a4-b80b-855162addf89" + "9b9cefca-8c8d-4a04-800a-afa6a6e31d85" ], "Cache-Control": [ "no-cache" @@ -19975,34 +20234,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13657" + "14545" ], "x-ms-correlation-request-id": [ - "5a17dea8-d1e9-4c56-8507-20612a39e496" + "49ca7d4d-35ec-4003-b584-1f4964669a6b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212500Z:5a17dea8-d1e9-4c56-8507-20612a39e496" + "WESTUS:20150813T074635Z:49ca7d4d-35ec-4003-b584-1f4964669a6b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507150?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MTUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201507220?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507150\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507150\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507220\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20017,7 +20276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95f07fd0-0351-4aea-82fb-54aab5b532f3" + "14e513e3-0f5e-45c1-abfe-49fe0d564f02" ], "Cache-Control": [ "no-cache" @@ -20027,34 +20286,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13656" + "14544" ], "x-ms-correlation-request-id": [ - "4a8e77d1-836c-4c0a-8b3f-a53e72e1790f" + "4b21e727-47a4-498e-a848-71ee8bc73e14" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:4a8e77d1-836c-4c0a-8b3f-a53e72e1790f" + "WESTUS:20150813T074635Z:4b21e727-47a4-498e-a848-71ee8bc73e14" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507220?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201507280?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507220\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507280\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20069,7 +20328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea19407e-c600-4344-aacb-bae279e07eb6" + "3c698d63-e4d1-4655-a6d3-a3258789e9b8" ], "Cache-Control": [ "no-cache" @@ -20079,34 +20338,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13655" + "14543" ], "x-ms-correlation-request-id": [ - "992f4fea-0af6-41ce-b8c0-6540a4966135" + "5b548386-08c1-4b24-a256-77e1baf19e88" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:992f4fea-0af6-41ce-b8c0-6540a4966135" + "WESTUS:20150813T074635Z:5b548386-08c1-4b24-a256-77e1baf19e88" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507280?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions/15.04.201507290?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507280\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507280\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507290\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201507290\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20121,7 +20380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4970be2-350f-4350-85ad-c073605a0d68" + "5a01b43d-6c72-47cf-a6b6-b3348c9335f4" ], "Cache-Control": [ "no-cache" @@ -20131,34 +20390,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13654" + "14542" ], "x-ms-correlation-request-id": [ - "8afaf5e1-e6f8-49bc-81b7-916bc2fb78a9" + "fff07c74-292b-48a8-bb79-3ec433eaa073" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:8afaf5e1-e6f8-49bc-81b7-916bc2fb78a9" + "WESTUS:20150813T074635Z:fff07c74-292b-48a8-bb79-3ec433eaa073" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507290?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-beta/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtYmV0YS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507290\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507290\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201502245\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-beta/Versions/15.04.201502245\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201503250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-beta/Versions/15.04.201503250\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "387" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20173,7 +20432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef7dad63-e825-4131-bd81-d28fbbc65593" + "f5f8479d-a1dd-4f2f-9f54-29c97aecad34" ], "Cache-Control": [ "no-cache" @@ -20183,34 +20442,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13653" + "14541" ], "x-ms-correlation-request-id": [ - "3527ce28-067b-43ec-a0dc-0e5642d47541" + "75ed4d40-a7b3-4add-acc9-57be820c7827" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:3527ce28-067b-43ec-a0dc-0e5642d47541" + "WESTUS:20150813T074635Z:75ed4d40-a7b3-4add-acc9-57be820c7827" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507300?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-beta/versions/15.04.201502245?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtYmV0YS92ZXJzaW9ucy8xNS4wNC4yMDE1MDIyNDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507300\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201502245\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-beta/Versions/15.04.201502245\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "386" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20225,7 +20484,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64d03f3a-833b-410e-9494-26620d83867d" + "aa70e4a6-c79e-40c1-8b77-819ce5507372" ], "Cache-Control": [ "no-cache" @@ -20235,34 +20494,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13652" + "14540" ], "x-ms-correlation-request-id": [ - "e1fc95a6-624a-4583-979c-e9c95540a31a" + "e2db4c4f-e31d-463f-a68e-b26bcc4aef92" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:e1fc95a6-624a-4583-979c-e9c95540a31a" + "WESTUS:20150813T074635Z:e2db4c4f-e31d-463f-a68e-b26bcc4aef92" ], "Date": [ - "Wed, 05 Aug 2015 21:25:00 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507310?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MzEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-beta/versions/15.04.201503250?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtYmV0YS92ZXJzaW9ucy8xNS4wNC4yMDE1MDMyNTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507310\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507310\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201503250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-beta/Versions/15.04.201503250\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "386" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20277,7 +20536,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "529e38cb-aadd-4908-8822-e6391bf3e338" + "7de07c1f-696b-404e-870d-0acff9f3f226" ], "Cache-Control": [ "no-cache" @@ -20287,34 +20546,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13651" + "14539" ], "x-ms-correlation-request-id": [ - "3d8ef09f-f16e-4e33-83d9-56f1ae55112b" + "017c8e71-c003-4db2-bd66-45d855f0728c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:3d8ef09f-f16e-4e33-83d9-56f1ae55112b" + "WESTUS:20150813T074635Z:017c8e71-c003-4db2-bd66-45d855f0728c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201508020?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA4MDIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201508020\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201508020\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507070\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507070\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507090\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507150\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507150\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507280\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507290\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507290\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507300\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507300\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507310\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507310\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201508020\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201508020\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201508070\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201508070\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "387" + "2853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20329,7 +20588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6583503d-f795-44c1-ac1a-cd4377af11d0" + "5c511026-53d4-415e-9ff2-57cb658d5254" ], "Cache-Control": [ "no-cache" @@ -20339,34 +20598,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13650" + "14538" ], "x-ms-correlation-request-id": [ - "31426a93-0c4c-41eb-bc40-dfa47d5384c0" + "d8646e0c-179e-4db1-b232-fb4922710b04" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:31426a93-0c4c-41eb-bc40-dfa47d5384c0" + "WESTUS:20150813T074635Z:d8646e0c-179e-4db1-b232-fb4922710b04" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507070?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201505201\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10/Versions/15.10.201505201\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507070\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507070\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "282" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20381,7 +20640,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9278683-c3f9-4af1-945d-ec9326313b06" + "eb2bfb63-352b-4d79-b210-7f0dcbd3a7ba" ], "Cache-Control": [ "no-cache" @@ -20391,34 +20650,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13649" + "14537" ], "x-ms-correlation-request-id": [ - "fbd086e7-29fd-4e2d-b47c-f7819bcb2636" + "f9b2c3c1-4732-4649-831b-7f9968de63c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:fbd086e7-29fd-4e2d-b47c-f7819bcb2636" + "WESTUS:20150813T074635Z:f9b2c3c1-4732-4649-831b-7f9968de63c8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10/versions/15.10.201505201?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAvdmVyc2lvbnMvMTUuMTAuMjAxNTA1MjAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507090?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MDkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201505201\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10/Versions/15.10.201505201\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507090\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507090\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "381" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20433,7 +20692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e959afcb-8c03-4171-b5ff-8cf4ef1faf87" + "3d05d3c0-cace-4ba5-8562-ab9d2749a4bd" ], "Cache-Control": [ "no-cache" @@ -20443,34 +20702,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13648" + "14536" ], "x-ms-correlation-request-id": [ - "160dc15a-a796-4c28-8dcb-76b349b3db2b" + "df067b37-4c95-4aea-9f3f-8a8c0cc51eec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212501Z:160dc15a-a796-4c28-8dcb-76b349b3db2b" + "WESTUS:20150813T074635Z:df067b37-4c95-4aea-9f3f-8a8c0cc51eec" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-alpha/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtYWxwaGEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507150?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MTUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201506240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha/Versions/15.10.201506240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507281\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha/Versions/15.10.201507281\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507150\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507150\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "573" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20485,7 +20744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe0ba56f-03a9-4662-9480-65ace6fa2a5c" + "13606ecb-0b33-48f1-9f4b-697b9219e164" ], "Cache-Control": [ "no-cache" @@ -20495,31 +20754,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13647" + "14535" ], "x-ms-correlation-request-id": [ - "78d40463-da91-4b5f-8435-7018b507742b" + "13f1904a-400c-4390-8531-22600f9697c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:78d40463-da91-4b5f-8435-7018b507742b" + "WESTUS:20150813T074636Z:13f1904a-400c-4390-8531-22600f9697c3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-alpha/versions/15.10.201506240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtYWxwaGEvdmVyc2lvbnMvMTUuMTAuMjAxNTA2MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507220?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201506240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha/Versions/15.10.201506240\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507220\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507220\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -20537,7 +20796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b17d0bed-668a-4381-a84a-bf2fe5778526" + "15d8f279-26dc-4a42-84f7-75b74d26652b" ], "Cache-Control": [ "no-cache" @@ -20547,31 +20806,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13646" + "14534" ], "x-ms-correlation-request-id": [ - "d2897755-e243-4459-8b36-b3a3a3af7024" + "3d5a39b4-e2f6-43a2-b46d-bb89ca32df81" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:d2897755-e243-4459-8b36-b3a3a3af7024" + "WESTUS:20150813T074636Z:3d5a39b4-e2f6-43a2-b46d-bb89ca32df81" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-alpha/versions/15.10.201507281?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtYWxwaGEvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507280?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507281\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha/Versions/15.10.201507281\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507280\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507280\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -20589,7 +20848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "518f9da8-46bc-43b4-8f1e-141abe46527e" + "ed8b235e-cfdc-4123-87c9-6ea70d19044c" ], "Cache-Control": [ "no-cache" @@ -20599,34 +20858,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13645" + "14533" ], "x-ms-correlation-request-id": [ - "f7a1404c-b0f8-47cb-9d46-8a77ea6ed4ff" + "4d6cf24b-efb8-4d04-a50a-b78ce1437ad0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:f7a1404c-b0f8-47cb-9d46-8a77ea6ed4ff" + "WESTUS:20150813T074636Z:4d6cf24b-efb8-4d04-a50a-b78ce1437ad0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507290?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MjkwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507220\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507230\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507230\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507231\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507231\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507250\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507250\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507260\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507260\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507281\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507281\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507300\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508010\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508010\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508020\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508020\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507290\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507290\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2853" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20641,7 +20900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7d27379-e962-4648-9039-7c8a58c14b67" + "0fdca8c5-dd1d-40f1-a3b3-4998b2a17515" ], "Cache-Control": [ "no-cache" @@ -20651,31 +20910,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13644" + "14532" ], "x-ms-correlation-request-id": [ - "b2220905-a59c-4f80-8bc5-b6342ba45a93" + "21c7793c-8275-4d51-89cd-56cf46dc1c6a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:b2220905-a59c-4f80-8bc5-b6342ba45a93" + "WESTUS:20150813T074636Z:21c7793c-8275-4d51-89cd-56cf46dc1c6a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507220?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507300?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507220\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507220\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507300\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507300\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -20693,7 +20952,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58850baf-5989-4cbb-a2e5-2986b514b0a5" + "742b880d-c76f-4361-b11f-d3075d756f38" ], "Cache-Control": [ "no-cache" @@ -20703,31 +20962,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13643" + "14531" ], "x-ms-correlation-request-id": [ - "ea807be8-2554-425a-9e6e-8e69d2151c99" + "f0967be3-0c89-435c-9039-3190b9075f3e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:ea807be8-2554-425a-9e6e-8e69d2151c99" + "WESTUS:20150813T074636Z:f0967be3-0c89-435c-9039-3190b9075f3e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507230?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201507310?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA3MzEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507230\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507230\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201507310\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201507310\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -20745,7 +21004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44d7909d-ccd4-4300-bd68-80aa9799ffa2" + "708917ff-9c60-4cc4-b71c-f9d2ae0eb4ba" ], "Cache-Control": [ "no-cache" @@ -20755,31 +21014,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13642" + "14530" ], "x-ms-correlation-request-id": [ - "98bedad3-abdf-49bc-a29c-8b2cf37edf3c" + "f304e896-15aa-4c70-a65b-f5b4ea54170c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:98bedad3-abdf-49bc-a29c-8b2cf37edf3c" + "WESTUS:20150813T074636Z:f304e896-15aa-4c70-a65b-f5b4ea54170c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:01 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507231?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201508020?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA4MDIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507231\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507231\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201508020\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201508020\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -20797,7 +21056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fcfa48fc-382b-4a2a-af86-5ea03688a0f6" + "905bf59e-9efd-48ce-867f-d465d32ae769" ], "Cache-Control": [ "no-cache" @@ -20807,31 +21066,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13641" + "14529" ], "x-ms-correlation-request-id": [ - "f3026f7a-3516-413c-8783-13e3217bd6ee" + "9bd07524-0947-4dc1-938d-a8a6f42b0dcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:f3026f7a-3516-413c-8783-13e3217bd6ee" + "WESTUS:20150813T074636Z:9bd07524-0947-4dc1-938d-a8a6f42b0dcb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04-DAILY/versions/15.04.201508070?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMDQtREFJTFkvdmVyc2lvbnMvMTUuMDQuMjAxNTA4MDcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507240\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.201508070\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04-DAILY/Versions/15.04.201508070\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -20849,7 +21108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c86daeb-c595-4207-aa0b-bbde8cebe363" + "a8484077-3aac-4b30-b824-19bd0fa6c418" ], "Cache-Control": [ "no-cache" @@ -20859,34 +21118,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13640" + "14528" ], "x-ms-correlation-request-id": [ - "413faa3f-0b61-4968-afdc-422aa6fee43b" + "a5205b16-1af8-4e59-9761-ef68aeed60ea" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:413faa3f-0b61-4968-afdc-422aa6fee43b" + "WESTUS:20150813T074636Z:a5205b16-1af8-4e59-9761-ef68aeed60ea" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507250?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-alpha/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtYWxwaGEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507250\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507250\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201506240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha/Versions/15.10.201506240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507281\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha/Versions/15.10.201507281\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "387" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -20901,7 +21160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b237f3b4-1af8-42cc-b004-cb54cac338c4" + "9e2d1721-322a-42c1-ab8a-ad29f37dfdcd" ], "Cache-Control": [ "no-cache" @@ -20911,31 +21170,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13639" + "14527" ], "x-ms-correlation-request-id": [ - "90f5f9d2-45ad-4a1f-9d6b-6b2aaf2e1ffc" + "d0456a5c-298a-451f-996d-1462c76522dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:90f5f9d2-45ad-4a1f-9d6b-6b2aaf2e1ffc" + "WESTUS:20150813T074636Z:d0456a5c-298a-451f-996d-1462c76522dc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507260?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-alpha/versions/15.10.201506240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtYWxwaGEvdmVyc2lvbnMvMTUuMTAuMjAxNTA2MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507260\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507260\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201506240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha/Versions/15.10.201506240\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -20953,7 +21212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92c48294-4f04-4c76-b9b3-4d9a09a520c3" + "726d1507-59a3-41cf-a936-db7af16e2459" ], "Cache-Control": [ "no-cache" @@ -20963,31 +21222,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13638" + "14526" ], "x-ms-correlation-request-id": [ - "b084a075-75ad-4b0e-b63f-a251055b63d9" + "d9f1da94-db1e-4117-b7ae-0fbcd7fd060e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:b084a075-75ad-4b0e-b63f-a251055b63d9" + "WESTUS:20150813T074636Z:d9f1da94-db1e-4117-b7ae-0fbcd7fd060e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507281?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-alpha/versions/15.10.201507281?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtYWxwaGEvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507281\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507281\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507281\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-alpha/Versions/15.10.201507281\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -21005,7 +21264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19374239-9df1-4cbc-9e3f-c2f3d1311124" + "7cc02600-80e4-4461-9fe3-1df20736c8f0" ], "Cache-Control": [ "no-cache" @@ -21015,34 +21274,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13637" + "14525" ], "x-ms-correlation-request-id": [ - "c47a4642-00a8-4627-b300-82a028c73937" + "c879bdfd-321a-49ab-b7eb-165c668cfbbb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212502Z:c47a4642-00a8-4627-b300-82a028c73937" + "WESTUS:20150813T074637Z:c879bdfd-321a-49ab-b7eb-165c668cfbbb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507300?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507300\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507300\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507231\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507231\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507250\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507260\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507260\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507281\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507281\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507300\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507300\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508010\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508010\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508020\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508020\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508060\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508080\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508080\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "387" + "2853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21057,7 +21316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06996c67-9ad1-4b55-a2b3-90bb9483ab1a" + "5d52bec7-9f56-4642-b66e-ff74bfe0633c" ], "Cache-Control": [ "no-cache" @@ -21067,31 +21326,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13636" + "14524" ], "x-ms-correlation-request-id": [ - "0e6e2cf5-b4c4-4978-b41e-afbc7c763659" + "33b1aa2b-98a9-474a-9273-f58c5a94e3ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212503Z:0e6e2cf5-b4c4-4978-b41e-afbc7c763659" + "WESTUS:20150813T074637Z:33b1aa2b-98a9-474a-9273-f58c5a94e3ef" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201508010?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA4MDEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507231?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508010\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508010\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507231\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507231\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -21109,7 +21368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06802417-60d2-41ed-ba8b-7e7dd5eaa75a" + "35c043af-273e-465e-9e4e-b9e6e8c64466" ], "Cache-Control": [ "no-cache" @@ -21119,31 +21378,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13635" + "14523" ], "x-ms-correlation-request-id": [ - "ba34a266-7991-49ff-884e-a60f57e3c5fe" + "a3f4ebae-86b2-40de-ae9c-db15a90c3db0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212503Z:ba34a266-7991-49ff-884e-a60f57e3c5fe" + "WESTUS:20150813T074637Z:a3f4ebae-86b2-40de-ae9c-db15a90c3db0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201508020?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA4MDIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508020\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508020\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507240\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -21161,7 +21420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac48a2df-6716-4337-8a74-98161a335698" + "551a7b9d-f3b9-4237-ad38-7e013f81dfce" ], "Cache-Control": [ "no-cache" @@ -21171,34 +21430,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13634" + "14522" ], "x-ms-correlation-request-id": [ - "edd3f408-4daf-4d58-8ab4-13782cf574b5" + "a807e3e7-95dd-4ae5-aecf-c5f050c86f8b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212503Z:edd3f408-4daf-4d58-8ab4-13782cf574b5" + "WESTUS:20150813T074637Z:a807e3e7-95dd-4ae5-aecf-c5f050c86f8b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/catechnologies/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2F0ZWNobm9sb2dpZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507250?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507250\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507250\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21213,7 +21472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73ae97ac-68f3-40b2-a3d0-86113487b714" + "69c34c6e-0ab8-4913-8a38-e198771675cc" ], "Cache-Control": [ "no-cache" @@ -21223,34 +21482,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13633" + "14521" ], "x-ms-correlation-request-id": [ - "c15a43d9-1666-4d12-baf8-51aa27f0dd70" + "fb11b9d3-913e-45de-8eff-0abef308d33c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212503Z:c15a43d9-1666-4d12-baf8-51aa27f0dd70" + "WESTUS:20150813T074637Z:fb11b9d3-913e-45de-8eff-0abef308d33c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cds/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2RzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507260?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds-data-migration-solution-for-legacy-to-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds/ArtifactTypes/VMImage/Offers/cds-data-migration-solution-for-legacy-to-cloud\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507260\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507260\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "307" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21265,7 +21524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8bebc32-5873-4230-8420-da7841b44c9b" + "ab0ad50d-adf6-429c-ab44-c21875e891b6" ], "Cache-Control": [ "no-cache" @@ -21275,34 +21534,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13632" + "14520" ], "x-ms-correlation-request-id": [ - "ea85ef58-154e-4c62-9b43-1e5351ff1779" + "27a79c39-af8d-4fc3-8078-dd1f82318d6f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212503Z:ea85ef58-154e-4c62-9b43-1e5351ff1779" + "WESTUS:20150813T074637Z:27a79c39-af8d-4fc3-8078-dd1f82318d6f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:02 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cds/artifacttypes/vmimage/offers/cds-data-migration-solution-for-legacy-to-cloud/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2RzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2RzLWRhdGEtbWlncmF0aW9uLXNvbHV0aW9uLWZvci1sZWdhY3ktdG8tY2xvdWQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507281?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MjgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dms-9000msaz\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds/ArtifactTypes/VMImage/Offers/cds-data-migration-solution-for-legacy-to-cloud/Skus/dms-9000msaz\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507281\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507281\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21317,7 +21576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98d129af-233f-4498-bc31-77f5fb5d80b4" + "5b28eb87-633d-4c68-ad5f-846fabd77b26" ], "Cache-Control": [ "no-cache" @@ -21327,34 +21586,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13631" + "14519" ], "x-ms-correlation-request-id": [ - "5d1a4259-a8c1-4dfe-ae86-4c36c12bb444" + "0ab3d3ad-6484-4212-be21-82dcbe2bcb70" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212503Z:5d1a4259-a8c1-4dfe-ae86-4c36c12bb444" + "WESTUS:20150813T074637Z:0ab3d3ad-6484-4212-be21-82dcbe2bcb70" ], "Date": [ - "Wed, 05 Aug 2015 21:25:03 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cds/artifacttypes/vmimage/offers/cds-data-migration-solution-for-legacy-to-cloud/skus/dms-9000msaz/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2RzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2RzLWRhdGEtbWlncmF0aW9uLXNvbHV0aW9uLWZvci1sZWdhY3ktdG8tY2xvdWQvc2t1cy9kbXMtOTAwMG1zYXovdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201507300?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA3MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds/ArtifactTypes/VMImage/Offers/cds-data-migration-solution-for-legacy-to-cloud/Skus/dms-9000msaz/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201507300\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201507300\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "298" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21369,7 +21628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c41da6c-b64b-4293-9534-2e6dcffbe500" + "44a21078-f0d7-41ae-bada-15ebc89bfae5" ], "Cache-Control": [ "no-cache" @@ -21379,34 +21638,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13630" + "14518" ], "x-ms-correlation-request-id": [ - "5ca61b6f-5a36-4e4c-8f3b-3af961fcfa6b" + "39ebe76c-fc74-4ce3-ae00-5272455d813a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212503Z:5ca61b6f-5a36-4e4c-8f3b-3af961fcfa6b" + "WESTUS:20150813T074637Z:39ebe76c-fc74-4ce3-ae00-5272455d813a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:03 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cds/artifacttypes/vmimage/offers/cds-data-migration-solution-for-legacy-to-cloud/skus/dms-9000msaz/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2RzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2RzLWRhdGEtbWlncmF0aW9uLXNvbHV0aW9uLWZvci1sZWdhY3ktdG8tY2xvdWQvc2t1cy9kbXMtOTAwMG1zYXovdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201508010?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA4MDEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cds\",\r\n \"name\": \"dms-9000msaz\",\r\n \"product\": \"cds-data-migration-solution-for-legacy-to-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds/ArtifactTypes/VMImage/Offers/cds-data-migration-solution-for-legacy-to-cloud/Skus/dms-9000msaz/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508010\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508010\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "546" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21421,7 +21680,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3f7160d-396c-4a59-a7ce-96bc2661b127" + "63f217d8-f57f-4ef8-aef8-6a663fc2b158" ], "Cache-Control": [ "no-cache" @@ -21431,34 +21690,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13629" + "14517" ], "x-ms-correlation-request-id": [ - "b54bc7cf-e6b0-4293-8803-c4b460bdaa51" + "e1d2d651-8b67-4116-b01d-4630464860a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212503Z:b54bc7cf-e6b0-4293-8803-c4b460bdaa51" + "WESTUS:20150813T074637Z:e1d2d651-8b67-4116-b01d-4630464860a0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:03 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/certivox/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2VydGl2b3gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201508020?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA4MDIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sso-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox/ArtifactTypes/VMImage/Offers/sso-test\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508020\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508020\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21473,7 +21732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c5c228c-c73e-428d-b545-2e9c92a64550" + "01bb76d8-d61d-4ee0-9d4c-0e5fc62e0ae8" ], "Cache-Control": [ "no-cache" @@ -21483,34 +21742,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13628" + "14516" ], "x-ms-correlation-request-id": [ - "97cb93a6-86a2-4f81-b408-bb7feeef7dab" + "4f161924-ce28-41cb-8602-eb4b3e21704d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212504Z:97cb93a6-86a2-4f81-b408-bb7feeef7dab" + "WESTUS:20150813T074637Z:4f161924-ce28-41cb-8602-eb4b3e21704d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:03 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/certivox/artifacttypes/vmimage/offers/sso-test/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2VydGl2b3gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zc28tdGVzdC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201508060?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA4MDYwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sso\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox/ArtifactTypes/VMImage/Offers/sso-test/Skus/sso\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508060\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508060\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "238" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21525,7 +21784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27e8ebfc-e2ff-485b-9322-ec303951c4bc" + "2dfb8af0-2bcb-473d-a5a1-a4a34cf0cdf3" ], "Cache-Control": [ "no-cache" @@ -21535,34 +21794,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13627" + "14515" ], "x-ms-correlation-request-id": [ - "7e02d95b-b2bc-409f-8d22-89968ce4bfd6" + "7476af76-fe58-477f-b6be-dab8f8c46dfb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212504Z:7e02d95b-b2bc-409f-8d22-89968ce4bfd6" + "WESTUS:20150813T074637Z:7476af76-fe58-477f-b6be-dab8f8c46dfb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:03 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/certivox/artifacttypes/vmimage/offers/sso-test/skus/sso/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2VydGl2b3gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zc28tdGVzdC9za3VzL3Nzby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions/15.10.201508080?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2Fub25pY2FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVWJ1bnR1U2VydmVyL3NrdXMvMTUuMTAtREFJTFkvdmVyc2lvbnMvMTUuMTAuMjAxNTA4MDgwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox/ArtifactTypes/VMImage/Offers/sso-test/Skus/sso/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.10.201508080\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY/Versions/15.10.201508080\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "255" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21577,7 +21836,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a68e1bd1-0ef4-42b7-8168-6227bf031566" + "66f35373-e226-4684-a458-7e321cc86351" ], "Cache-Control": [ "no-cache" @@ -21587,34 +21846,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13626" + "14514" ], "x-ms-correlation-request-id": [ - "2b6b0a58-2102-400b-82c3-97d2586d9c47" + "e1d40fed-14a4-4487-8c7e-b02c543a1ae7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212504Z:2b6b0a58-2102-400b-82c3-97d2586d9c47" + "WESTUS:20150813T074638Z:e1d40fed-14a4-4487-8c7e-b02c543a1ae7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:03 GMT" + "Thu, 13 Aug 2015 07:46:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/certivox/artifacttypes/vmimage/offers/sso-test/skus/sso/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2VydGl2b3gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zc28tdGVzdC9za3VzL3Nzby92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/catechnologies/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2F0ZWNobm9sb2dpZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"certivox\",\r\n \"name\": \"sso\",\r\n \"product\": \"sso-test\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox/ArtifactTypes/VMImage/Offers/sso-test/Skus/sso/Versions/1.0.1\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "460" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21629,7 +21888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fd6f861-5d56-4f65-bf2e-5b76bd83b8d7" + "aba24c66-2afb-42eb-8d2a-1854513592c0" ], "Cache-Control": [ "no-cache" @@ -21639,34 +21898,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13625" + "14513" ], "x-ms-correlation-request-id": [ - "c7063457-69a7-4c8a-9b98-75fbc1c247ad" + "16e9f928-625a-4304-8577-0b4ea2ba74bf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212504Z:c7063457-69a7-4c8a-9b98-75fbc1c247ad" + "WESTUS:20150813T074638Z:16e9f928-625a-4304-8577-0b4ea2ba74bf" ], "Date": [ - "Wed, 05 Aug 2015 21:25:03 GMT" + "Thu, 13 Aug 2015 07:46:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cds/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2RzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"check-point-r77-10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds-data-migration-solution-for-legacy-to-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds/ArtifactTypes/VMImage/Offers/cds-data-migration-solution-for-legacy-to-cloud\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "256" + "307" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21681,7 +21940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aaa4b1c1-7726-423b-a6a8-0ec0c80f8f64" + "800616e5-83aa-47bf-b76f-c4da78eee8c1" ], "Cache-Control": [ "no-cache" @@ -21691,34 +21950,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13624" + "14512" ], "x-ms-correlation-request-id": [ - "e872d04d-7328-42cd-806e-517c2ee37cfd" + "e4f26a6c-0531-4381-b386-f449b9e16e9d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212504Z:e872d04d-7328-42cd-806e-517c2ee37cfd" + "WESTUS:20150813T074638Z:e4f26a6c-0531-4381-b386-f449b9e16e9d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:03 GMT" + "Thu, 13 Aug 2015 07:46:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cds/artifacttypes/vmimage/offers/cds-data-migration-solution-for-legacy-to-cloud/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2RzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2RzLWRhdGEtbWlncmF0aW9uLXNvbHV0aW9uLWZvci1sZWdhY3ktdG8tY2xvdWQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"r7710-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"r7710-ngtp-payg\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-ngtp-payg\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dms-9000msaz\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds/ArtifactTypes/VMImage/Offers/cds-data-migration-solution-for-legacy-to-cloud/Skus/dms-9000msaz\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "535" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21733,7 +21992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65ea1706-9546-4238-afdf-6dd1c86f89f0" + "c293e9fb-ce09-4b8c-89d6-09fe35033a70" ], "Cache-Control": [ "no-cache" @@ -21743,34 +22002,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13623" + "14511" ], "x-ms-correlation-request-id": [ - "d065f134-7134-4ddb-9b6c-b1b68ffbb11e" + "3cec721b-c2a8-46c7-a0c8-28b01c5ebcb3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212504Z:d065f134-7134-4ddb-9b6c-b1b68ffbb11e" + "WESTUS:20150813T074638Z:3cec721b-c2a8-46c7-a0c8-28b01c5ebcb3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:04 GMT" + "Thu, 13 Aug 2015 07:46:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus/r7710-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzL3I3NzEwLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cds/artifacttypes/vmimage/offers/cds-data-migration-solution-for-legacy-to-cloud/skus/dms-9000msaz/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2RzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2RzLWRhdGEtbWlncmF0aW9uLXNvbHV0aW9uLWZvci1sZWdhY3ktdG8tY2xvdWQvc2t1cy9kbXMtOTAwMG1zYXovdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"77.10.0044007\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-byol/Versions/77.10.0044007\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds/ArtifactTypes/VMImage/Offers/cds-data-migration-solution-for-legacy-to-cloud/Skus/dms-9000msaz/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "290" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21785,7 +22044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "241e40fb-f63f-4fec-b7b0-2b35cc541057" + "cf2bb51a-f42f-440e-a707-1cc46c652ad7" ], "Cache-Control": [ "no-cache" @@ -21795,34 +22054,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13622" + "14510" ], "x-ms-correlation-request-id": [ - "228ec685-8505-4b25-ada6-d1d72994fd23" + "d3ccb256-0b6b-48bc-a6d8-a79cd4c0c991" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212504Z:228ec685-8505-4b25-ada6-d1d72994fd23" + "WESTUS:20150813T074638Z:d3ccb256-0b6b-48bc-a6d8-a79cd4c0c991" ], "Date": [ - "Wed, 05 Aug 2015 21:25:04 GMT" + "Thu, 13 Aug 2015 07:46:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus/r7710-byol/versions/77.10.0044007?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzL3I3NzEwLWJ5b2wvdmVyc2lvbnMvNzcuMTAuMDA0NDAwNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cds/artifacttypes/vmimage/offers/cds-data-migration-solution-for-legacy-to-cloud/skus/dms-9000msaz/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2RzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2RzLWRhdGEtbWlncmF0aW9uLXNvbHV0aW9uLWZvci1sZWdhY3ktdG8tY2xvdWQvc2t1cy9kbXMtOTAwMG1zYXovdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"checkpoint\",\r\n \"name\": \"r7710-byol\",\r\n \"product\": \"check-point-r77-10\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"77.10.0044007\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-byol/Versions/77.10.0044007\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cds\",\r\n \"name\": \"dms-9000msaz\",\r\n \"product\": \"cds-data-migration-solution-for-legacy-to-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds/ArtifactTypes/VMImage/Offers/cds-data-migration-solution-for-legacy-to-cloud/Skus/dms-9000msaz/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "514" + "546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21837,7 +22096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa32a657-5f05-4666-ad7e-42d3764ac6ba" + "92ca5aa6-3b15-4c20-afe5-f08073143a00" ], "Cache-Control": [ "no-cache" @@ -21847,34 +22106,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13621" + "14509" ], "x-ms-correlation-request-id": [ - "f9d639c0-6649-4914-b366-dd0a12e7316c" + "05310dcc-ca9b-4b5f-9e20-13c2eae103ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212504Z:f9d639c0-6649-4914-b366-dd0a12e7316c" + "WESTUS:20150813T074638Z:05310dcc-ca9b-4b5f-9e20-13c2eae103ba" ], "Date": [ - "Wed, 05 Aug 2015 21:25:04 GMT" + "Thu, 13 Aug 2015 07:46:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus/r7710-ngtp-payg/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzL3I3NzEwLW5ndHAtcGF5Zy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/certivox/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2VydGl2b3gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"77.10.0044007\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-ngtp-payg/Versions/77.10.0044007\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sso-test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox/ArtifactTypes/VMImage/Offers/sso-test\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "295" + "234" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21889,7 +22148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75f59fd0-a1f2-4324-a22f-2a03d1af0f8f" + "740b4765-3363-40b9-a6f1-ebcc21304bba" ], "Cache-Control": [ "no-cache" @@ -21899,34 +22158,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13620" + "14508" ], "x-ms-correlation-request-id": [ - "aef627b7-94b5-4b79-adc7-4c9776c81495" + "5ea6d57f-85db-4a99-a375-1c6f9b3c6984" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212505Z:aef627b7-94b5-4b79-adc7-4c9776c81495" + "WESTUS:20150813T074638Z:5ea6d57f-85db-4a99-a375-1c6f9b3c6984" ], "Date": [ - "Wed, 05 Aug 2015 21:25:04 GMT" + "Thu, 13 Aug 2015 07:46:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus/r7710-ngtp-payg/versions/77.10.0044007?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzL3I3NzEwLW5ndHAtcGF5Zy92ZXJzaW9ucy83Ny4xMC4wMDQ0MDA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/certivox/artifacttypes/vmimage/offers/sso-test/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2VydGl2b3gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zc28tdGVzdC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"checkpoint\",\r\n \"name\": \"r7710-ngtp-payg\",\r\n \"product\": \"check-point-r77-10\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"77.10.0044007\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-ngtp-payg/Versions/77.10.0044007\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sso\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox/ArtifactTypes/VMImage/Offers/sso-test/Skus/sso\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "524" + "238" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21941,7 +22200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0da41dda-e1c0-4279-a807-ed5ca0dd07dc" + "3bde5966-5919-4b2c-87c9-7f17895efb4c" ], "Cache-Control": [ "no-cache" @@ -21951,34 +22210,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13619" + "14507" ], "x-ms-correlation-request-id": [ - "82d830b7-882e-439b-b8f4-38090f55d32d" + "c417ad5f-19ea-4803-877e-3d7aed659e89" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212505Z:82d830b7-882e-439b-b8f4-38090f55d32d" + "WESTUS:20150813T074639Z:c417ad5f-19ea-4803-877e-3d7aed659e89" ], "Date": [ - "Wed, 05 Aug 2015 21:25:04 GMT" + "Thu, 13 Aug 2015 07:46:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpointsystems/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludHN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/certivox/artifacttypes/vmimage/offers/sso-test/skus/sso/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2VydGl2b3gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zc28tdGVzdC9za3VzL3Nzby92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oatsystems-oatxpress-82-base\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems/ArtifactTypes/VMImage/Offers/oatsystems-oatxpress-82-base\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox/ArtifactTypes/VMImage/Offers/sso-test/Skus/sso/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "283" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -21993,7 +22252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "158872f2-76ee-48fa-96a1-625217bc3a73" + "f33a3c27-9f06-4286-babe-8380a1aa7de1" ], "Cache-Control": [ "no-cache" @@ -22003,34 +22262,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13618" + "14506" ], "x-ms-correlation-request-id": [ - "a05778a8-75d1-494b-83ee-d41f589ef065" + "6d791740-06b9-4a8a-a64e-c9a6d731c54f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212505Z:a05778a8-75d1-494b-83ee-d41f589ef065" + "WESTUS:20150813T074639Z:6d791740-06b9-4a8a-a64e-c9a6d731c54f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:04 GMT" + "Thu, 13 Aug 2015 07:46:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpointsystems/artifacttypes/vmimage/offers/oatsystems-oatxpress-82-base/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludHN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vYXRzeXN0ZW1zLW9hdHhwcmVzcy04Mi1iYXNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/certivox/artifacttypes/vmimage/offers/sso-test/skus/sso/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2VydGl2b3gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zc28tdGVzdC9za3VzL3Nzby92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oatsystems-oatxpress-82-sku\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems/ArtifactTypes/VMImage/Offers/oatsystems-oatxpress-82-base/Skus/oatsystems-oatxpress-82-sku\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"certivox\",\r\n \"name\": \"sso\",\r\n \"product\": \"sso-test\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox/ArtifactTypes/VMImage/Offers/sso-test/Skus/sso/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "315" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22045,7 +22304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78123eb7-f30d-482d-aa03-9d5b65966b90" + "4140561e-c57c-461f-bdd5-9e272feec6a0" ], "Cache-Control": [ "no-cache" @@ -22055,34 +22314,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13617" + "14505" ], "x-ms-correlation-request-id": [ - "688ced70-3f50-42a0-b3ef-2fddf1c8f987" + "8d09b504-64b5-4518-a905-14f13ccb38f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212505Z:688ced70-3f50-42a0-b3ef-2fddf1c8f987" + "WESTUS:20150813T074639Z:8d09b504-64b5-4518-a905-14f13ccb38f4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:04 GMT" + "Thu, 13 Aug 2015 07:46:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpointsystems/artifacttypes/vmimage/offers/oatsystems-oatxpress-82-base/skus/oatsystems-oatxpress-82-sku/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludHN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vYXRzeXN0ZW1zLW9hdHhwcmVzcy04Mi1iYXNlL3NrdXMvb2F0c3lzdGVtcy1vYXR4cHJlc3MtODItc2t1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems/ArtifactTypes/VMImage/Offers/oatsystems-oatxpress-82-base/Skus/oatsystems-oatxpress-82-sku/Versions/8.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"check-point-r77-10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "308" + "256" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22097,7 +22356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4df7e4c7-f49e-4fa1-9e9a-6189b6dcf919" + "51821a0f-0ad1-4f5e-9b36-fa54837df6fa" ], "Cache-Control": [ "no-cache" @@ -22107,34 +22366,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13616" + "14504" ], "x-ms-correlation-request-id": [ - "4b66319b-e755-4edc-8bc7-ccbcab6e7d10" + "71fb466c-761e-400a-a70f-d97dd66e6bdc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212505Z:4b66319b-e755-4edc-8bc7-ccbcab6e7d10" + "WESTUS:20150813T074639Z:71fb466c-761e-400a-a70f-d97dd66e6bdc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:04 GMT" + "Thu, 13 Aug 2015 07:46:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/checkpointsystems/artifacttypes/vmimage/offers/oatsystems-oatxpress-82-base/skus/oatsystems-oatxpress-82-sku/versions/8.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludHN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vYXRzeXN0ZW1zLW9hdHhwcmVzcy04Mi1iYXNlL3NrdXMvb2F0c3lzdGVtcy1vYXR4cHJlc3MtODItc2t1L3ZlcnNpb25zLzguMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"checkpointsystems\",\r\n \"name\": \"oatsystems-oatxpress-82-sku\",\r\n \"product\": \"oatsystems-oatxpress-82-base\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems/ArtifactTypes/VMImage/Offers/oatsystems-oatxpress-82-base/Skus/oatsystems-oatxpress-82-sku/Versions/8.2.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"r7710-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"r7710-ngtp-payg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-ngtp-payg\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "568" + "535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22149,7 +22408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cf179c7-0117-412d-acc3-e1a15061718f" + "30ffcaa3-1e17-4013-8cd6-53b3e11d82fc" ], "Cache-Control": [ "no-cache" @@ -22159,34 +22418,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13615" + "14503" ], "x-ms-correlation-request-id": [ - "bdc0dd79-c03a-4bf3-860a-1c0b6f3fe99a" + "9dde897a-e069-48e5-a61f-96faaa1e3848" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212505Z:bdc0dd79-c03a-4bf3-860a-1c0b6f3fe99a" + "WESTUS:20150813T074639Z:9dde897a-e069-48e5-a61f-96faaa1e3848" ], "Date": [ - "Wed, 05 Aug 2015 21:25:05 GMT" + "Thu, 13 Aug 2015 07:46:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/chef-software/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlZi1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus/r7710-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzL3I3NzEwLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software/ArtifactTypes/VMImage/Offers/chef-server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"77.10.0044007\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-byol/Versions/77.10.0044007\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "245" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22201,7 +22460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3faa3998-8297-4805-939e-c79917d20c6f" + "6eedd45e-c2d9-4f03-802a-c164a960d3fc" ], "Cache-Control": [ "no-cache" @@ -22211,34 +22470,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13614" + "14502" ], "x-ms-correlation-request-id": [ - "7f1ef474-c0ed-455a-bdc9-5f6528290c21" + "0b2581a9-ab65-4ab6-838f-b07ef6128c8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212505Z:7f1ef474-c0ed-455a-bdc9-5f6528290c21" + "WESTUS:20150813T074639Z:0b2581a9-ab65-4ab6-838f-b07ef6128c8c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:05 GMT" + "Thu, 13 Aug 2015 07:46:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/chef-software/artifacttypes/vmimage/offers/chef-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlZi1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWYtc2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus/r7710-byol/versions/77.10.0044007?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzL3I3NzEwLWJ5b2wvdmVyc2lvbnMvNzcuMTAuMDA0NDAwNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chefbyol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software/ArtifactTypes/VMImage/Offers/chef-server/Skus/chefbyol\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"checkpoint\",\r\n \"name\": \"r7710-byol\",\r\n \"product\": \"check-point-r77-10\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"77.10.0044007\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-byol/Versions/77.10.0044007\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "256" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22253,7 +22512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f26386c1-90b7-4804-adce-9ee13124c704" + "327e6d3b-cd9c-41a8-862d-9dc3918873da" ], "Cache-Control": [ "no-cache" @@ -22263,34 +22522,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13613" + "14501" ], "x-ms-correlation-request-id": [ - "f5125736-c678-4c7b-b791-3897dbfa359c" + "394b2898-634c-4672-80f6-e1ca304d87eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212505Z:f5125736-c678-4c7b-b791-3897dbfa359c" + "WESTUS:20150813T074640Z:394b2898-634c-4672-80f6-e1ca304d87eb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:05 GMT" + "Thu, 13 Aug 2015 07:46:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/chef-software/artifacttypes/vmimage/offers/chef-server/skus/chefbyol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlZi1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWYtc2VydmVyL3NrdXMvY2hlZmJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus/r7710-ngtp-payg/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzL3I3NzEwLW5ndHAtcGF5Zy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software/ArtifactTypes/VMImage/Offers/chef-server/Skus/chefbyol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"77.10.0044007\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-ngtp-payg/Versions/77.10.0044007\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "268" + "295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22305,7 +22564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad5c559d-29be-42fe-9a4b-5525e9ae9f1e" + "5d6a9c33-5eba-4397-be86-b98bd288a2a9" ], "Cache-Control": [ "no-cache" @@ -22315,34 +22574,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13612" + "14500" ], "x-ms-correlation-request-id": [ - "b9001f34-9a9c-4602-bb11-37b494714b0d" + "6bffc01f-afe0-4dd5-a175-5ea574051915" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212506Z:b9001f34-9a9c-4602-bb11-37b494714b0d" + "WESTUS:20150813T074640Z:6bffc01f-afe0-4dd5-a175-5ea574051915" ], "Date": [ - "Wed, 05 Aug 2015 21:25:05 GMT" + "Thu, 13 Aug 2015 07:46:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/chef-software/artifacttypes/vmimage/offers/chef-server/skus/chefbyol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlZi1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWYtc2VydmVyL3NrdXMvY2hlZmJ5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpoint/artifacttypes/vmimage/offers/check-point-r77-10/skus/r7710-ngtp-payg/versions/77.10.0044007?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWNrLXBvaW50LXI3Ny0xMC9za3VzL3I3NzEwLW5ndHAtcGF5Zy92ZXJzaW9ucy83Ny4xMC4wMDQ0MDA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"chef-software\",\r\n \"name\": \"chefbyol\",\r\n \"product\": \"chef-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software/ArtifactTypes/VMImage/Offers/chef-server/Skus/chefbyol/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"checkpoint\",\r\n \"name\": \"r7710-ngtp-payg\",\r\n \"product\": \"check-point-r77-10\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"77.10.0044007\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint/ArtifactTypes/VMImage/Offers/check-point-r77-10/Skus/r7710-ngtp-payg/Versions/77.10.0044007\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "486" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22357,7 +22616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5d71055-febe-4493-8890-5d3b963ccead" + "57dad6a1-466b-49e4-b6ba-2365d1843783" ], "Cache-Control": [ "no-cache" @@ -22367,34 +22626,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13611" + "14499" ], "x-ms-correlation-request-id": [ - "cf930831-8704-4f2f-8742-315b25704ae8" + "00106102-4c6e-42b4-bf96-d4e95c36214b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212506Z:cf930831-8704-4f2f-8742-315b25704ae8" + "WESTUS:20150813T074640Z:00106102-4c6e-42b4-bf96-d4e95c36214b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:05 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Chef.Bootstrap.WindowsAzure/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2hlZi5Cb290c3RyYXAuV2luZG93c0F6dXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpointsystems/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludHN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oatsystems-oatxpress-82-base\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems/ArtifactTypes/VMImage/Offers/oatsystems-oatxpress-82-base\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "283" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22409,7 +22668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a89f1ef3-d02e-4fc7-a2bb-0ddfba1f8b1a" + "3841f65e-76f6-48db-b97d-56c3aadf06c6" ], "Cache-Control": [ "no-cache" @@ -22419,34 +22678,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13610" + "14498" ], "x-ms-correlation-request-id": [ - "5bff575a-6d2c-4a1d-8073-b7a8c1e3cee4" + "5a7613d4-d461-4556-b897-8a80853bba3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212506Z:5bff575a-6d2c-4a1d-8073-b7a8c1e3cee4" + "WESTUS:20150813T074640Z:5a7613d4-d461-4556-b897-8a80853bba3a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:05 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpointsystems/artifacttypes/vmimage/offers/oatsystems-oatxpress-82-base/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludHN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vYXRzeXN0ZW1zLW9hdHhwcmVzcy04Mi1iYXNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci-enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oatsystems-oatxpress-82-sku\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems/ArtifactTypes/VMImage/Offers/oatsystems-oatxpress-82-base/Skus/oatsystems-oatxpress-82-sku\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "256" + "315" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22461,7 +22720,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a8458cd-5c38-4279-a881-133727158abc" + "cfb5af30-ce23-4e8e-bf1a-c37dc6bba657" ], "Cache-Control": [ "no-cache" @@ -22471,34 +22730,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13609" + "14497" ], "x-ms-correlation-request-id": [ - "fee5a8b8-58c2-44d7-a67c-4708694699c5" + "a4df958d-6624-46ba-b19e-ddec3d46bfd2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212506Z:fee5a8b8-58c2-44d7-a67c-4708694699c5" + "WESTUS:20150813T074640Z:a4df958d-6624-46ba-b19e-ddec3d46bfd2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:05 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpointsystems/artifacttypes/vmimage/offers/oatsystems-oatxpress-82-base/skus/oatsystems-oatxpress-82-sku/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludHN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vYXRzeXN0ZW1zLW9hdHhwcmVzcy04Mi1iYXNlL3NrdXMvb2F0c3lzdGVtcy1vYXR4cHJlc3MtODItc2t1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci-builder-base\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-builder-base\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci-enterprise-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-enterprise-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems/ArtifactTypes/VMImage/Offers/oatsystems-oatxpress-82-base/Skus/oatsystems-oatxpress-82-sku/Versions/8.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "573" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22513,7 +22772,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e3b74cc-531e-495c-9adc-c0235c0eac89" + "dc26f7bc-3f8e-4162-86ce-fbbe184d9e9b" ], "Cache-Control": [ "no-cache" @@ -22523,34 +22782,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13608" + "14496" ], "x-ms-correlation-request-id": [ - "137abe3f-3ed6-4739-b757-e968362c7bbb" + "c21ef04e-43c5-4914-9414-7bfb3f8be76b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212506Z:137abe3f-3ed6-4739-b757-e968362c7bbb" + "WESTUS:20150813T074640Z:c21ef04e-43c5-4914-9414-7bfb3f8be76b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus/circleci-builder-base/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXMvY2lyY2xlY2ktYnVpbGRlci1iYXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/checkpointsystems/artifacttypes/vmimage/offers/oatsystems-oatxpress-82-base/skus/oatsystems-oatxpress-82-sku/versions/8.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlY2twb2ludHN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vYXRzeXN0ZW1zLW9hdHhwcmVzcy04Mi1iYXNlL3NrdXMvb2F0c3lzdGVtcy1vYXR4cHJlc3MtODItc2t1L3ZlcnNpb25zLzguMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-builder-base/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"checkpointsystems\",\r\n \"name\": \"oatsystems-oatxpress-82-sku\",\r\n \"product\": \"oatsystems-oatxpress-82-base\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems/ArtifactTypes/VMImage/Offers/oatsystems-oatxpress-82-base/Skus/oatsystems-oatxpress-82-sku/Versions/8.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "284" + "568" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22565,7 +22824,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f16eedf6-8d1c-4e49-94a6-f70e494f96d2" + "46e56cec-65ca-450b-820e-e604c2af4eb6" ], "Cache-Control": [ "no-cache" @@ -22575,34 +22834,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13607" + "14495" ], "x-ms-correlation-request-id": [ - "89f5d0d4-2812-46de-9815-92e9d5c83ccf" + "868f2483-4b39-486b-86b9-15c876194cd5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212506Z:89f5d0d4-2812-46de-9815-92e9d5c83ccf" + "WESTUS:20150813T074640Z:868f2483-4b39-486b-86b9-15c876194cd5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus/circleci-builder-base/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXMvY2lyY2xlY2ktYnVpbGRlci1iYXNlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/chef-software/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlZi1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"circleci\",\r\n \"name\": \"circleci-builder-base\",\r\n \"product\": \"circleci-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-builder-base/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software/ArtifactTypes/VMImage/Offers/chef-server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "518" + "245" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22617,7 +22876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ea7ec27-6238-4f19-8445-b8dbd0acd1d3" + "c3bcdf2a-f732-4623-98b7-245307a27d64" ], "Cache-Control": [ "no-cache" @@ -22627,34 +22886,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13606" + "14494" ], "x-ms-correlation-request-id": [ - "b3dc79b4-1442-4f4c-8d83-782a5a2fda99" + "f8c8194f-b3ad-4e2f-92b0-1328d22763b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212506Z:b3dc79b4-1442-4f4c-8d83-782a5a2fda99" + "WESTUS:20150813T074640Z:f8c8194f-b3ad-4e2f-92b0-1328d22763b4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus/circleci-enterprise-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXMvY2lyY2xlY2ktZW50ZXJwcmlzZS1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/chef-software/artifacttypes/vmimage/offers/chef-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlZi1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWYtc2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-enterprise-byol/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chefbyol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software/ArtifactTypes/VMImage/Offers/chef-server/Skus/chefbyol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "287" + "256" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22669,7 +22928,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c308623a-2765-4b3c-9474-257f24ae81c6" + "3e20c9f2-a5a2-4a72-861a-c656fd3116a7" ], "Cache-Control": [ "no-cache" @@ -22679,34 +22938,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13605" + "14493" ], "x-ms-correlation-request-id": [ - "8cdb9ff4-452c-4ea5-b42d-a34f11bc0519" + "2784689d-175c-437d-9e09-8cf66dc4e8f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212507Z:8cdb9ff4-452c-4ea5-b42d-a34f11bc0519" + "WESTUS:20150813T074640Z:2784689d-175c-437d-9e09-8cf66dc4e8f7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus/circleci-enterprise-byol/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXMvY2lyY2xlY2ktZW50ZXJwcmlzZS1ieW9sL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/chef-software/artifacttypes/vmimage/offers/chef-server/skus/chefbyol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlZi1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWYtc2VydmVyL3NrdXMvY2hlZmJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"circleci\",\r\n \"name\": \"circleci-enterprise-byol\",\r\n \"product\": \"circleci-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-enterprise-byol/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software/ArtifactTypes/VMImage/Offers/chef-server/Skus/chefbyol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "524" + "268" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22721,7 +22980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec6a51cd-0585-4a8e-a637-015360aab49a" + "dd34d1be-cd0e-4415-a8f6-045335aeb4fa" ], "Cache-Control": [ "no-cache" @@ -22731,34 +22990,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13604" + "14492" ], "x-ms-correlation-request-id": [ - "c58c45e9-d809-487c-a452-185437c47532" + "1a5d80fa-ee18-4527-bc39-0814f4bb6454" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212507Z:c58c45e9-d809-487c-a452-185437c47532" + "WESTUS:20150813T074641Z:1a5d80fa-ee18-4527-bc39-0814f4bb6454" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cires21/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyZXMyMS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/chef-software/artifacttypes/vmimage/offers/chef-server/skus/chefbyol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2hlZi1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoZWYtc2VydmVyL3NrdXMvY2hlZmJ5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"c21l-mos\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21/ArtifactTypes/VMImage/Offers/c21l-mos\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"chef-software\",\r\n \"name\": \"chefbyol\",\r\n \"product\": \"chef-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software/ArtifactTypes/VMImage/Offers/chef-server/Skus/chefbyol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "233" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22773,7 +23032,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8cf6afd-c0df-4c05-8039-85fe5052ab6b" + "92f40bdd-6e3b-4427-b629-3f4525e5bcaf" ], "Cache-Control": [ "no-cache" @@ -22783,34 +23042,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13603" + "14491" ], "x-ms-correlation-request-id": [ - "57f7578d-f130-4220-94b8-558fba46a8fb" + "21a1b4df-ab25-4e59-82cb-51521a699402" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212507Z:57f7578d-f130-4220-94b8-558fba46a8fb" + "WESTUS:20150813T074641Z:21a1b4df-ab25-4e59-82cb-51521a699402" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cires21/artifacttypes/vmimage/offers/c21l-mos/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyZXMyMS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2MyMWwtbW9zL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Chef.Bootstrap.WindowsAzure/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2hlZi5Cb290c3RyYXAuV2luZG93c0F6dXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"c21l-mos-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21/ArtifactTypes/VMImage/Offers/c21l-mos/Skus/c21l-mos-byol\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "257" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22825,7 +23084,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c581ad8f-41c8-43ff-945f-b849af8f95e4" + "4e186016-f286-4eaf-8e2f-19743a13814c" ], "Cache-Control": [ "no-cache" @@ -22835,34 +23094,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13602" + "14490" ], "x-ms-correlation-request-id": [ - "1124a285-5e96-49a5-90ac-5b27cff0cec3" + "2eefa24c-466b-4bc6-8ed2-402ba578ba1f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212507Z:1124a285-5e96-49a5-90ac-5b27cff0cec3" + "WESTUS:20150813T074641Z:2eefa24c-466b-4bc6-8ed2-402ba578ba1f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cires21/artifacttypes/vmimage/offers/c21l-mos/skus/c21l-mos-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyZXMyMS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2MyMWwtbW9zL3NrdXMvYzIxbC1tb3MtYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21/ArtifactTypes/VMImage/Offers/c21l-mos/Skus/c21l-mos-byol/Versions/1.0.5\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci-enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "264" + "256" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22877,7 +23136,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3df63c68-df0e-4ccb-82e7-3e130153065b" + "e257f5ca-2183-45b3-a586-9649313ddc16" ], "Cache-Control": [ "no-cache" @@ -22887,34 +23146,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13601" + "14489" ], "x-ms-correlation-request-id": [ - "7cafe8a8-a044-4c1b-9537-6af724720f6c" + "1d8af2e0-e99c-4819-8379-a4be8dd81526" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212507Z:7cafe8a8-a044-4c1b-9537-6af724720f6c" + "WESTUS:20150813T074641Z:1d8af2e0-e99c-4819-8379-a4be8dd81526" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cires21/artifacttypes/vmimage/offers/c21l-mos/skus/c21l-mos-byol/versions/1.0.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyZXMyMS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2MyMWwtbW9zL3NrdXMvYzIxbC1tb3MtYnlvbC92ZXJzaW9ucy8xLjAuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cires21\",\r\n \"name\": \"c21l-mos-byol\",\r\n \"product\": \"c21l-mos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21/ArtifactTypes/VMImage/Offers/c21l-mos/Skus/c21l-mos-byol/Versions/1.0.5\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci-builder-base\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-builder-base\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci-enterprise-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-enterprise-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "478" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22929,7 +23188,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c48be95-3112-4567-bc36-f0e100e85258" + "15547834-fcbf-4db8-91c7-71456f0eb869" ], "Cache-Control": [ "no-cache" @@ -22939,34 +23198,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13600" + "14488" ], "x-ms-correlation-request-id": [ - "558f173f-083d-4d49-ab01-c4384bca40bc" + "a529f910-a6ff-49a0-8d58-8b4072acca06" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212507Z:558f173f-083d-4d49-ab01-c4384bca40bc" + "WESTUS:20150813T074641Z:a529f910-a6ff-49a0-8d58-8b4072acca06" ], "Date": [ - "Wed, 05 Aug 2015 21:25:06 GMT" + "Thu, 13 Aug 2015 07:46:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/clickberry/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xpY2tiZXJyeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus/circleci-builder-base/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXMvY2lyY2xlY2ktYnVpbGRlci1iYXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry-encoder\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry/ArtifactTypes/VMImage/Offers/clickberry-encoder\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-builder-base/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "256" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22981,7 +23240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34aa99c7-1e2d-4f70-85a1-ec2112d176c6" + "83e589f4-cfdc-4726-a8a2-4307caa90acb" ], "Cache-Control": [ "no-cache" @@ -22991,34 +23250,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13599" + "14487" ], "x-ms-correlation-request-id": [ - "da91d62d-e773-41eb-acd2-12f002f23531" + "39729fdc-987b-46ce-9f06-34cc8652215b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212507Z:da91d62d-e773-41eb-acd2-12f002f23531" + "WESTUS:20150813T074641Z:39729fdc-987b-46ce-9f06-34cc8652215b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:07 GMT" + "Thu, 13 Aug 2015 07:46:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/clickberry/artifacttypes/vmimage/offers/clickberry-encoder/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xpY2tiZXJyeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NsaWNrYmVycnktZW5jb2Rlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus/circleci-builder-base/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXMvY2lyY2xlY2ktYnVpbGRlci1iYXNlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry-encoder-core\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry/ArtifactTypes/VMImage/Offers/clickberry-encoder/Skus/clickberry-encoder-core\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"circleci\",\r\n \"name\": \"circleci-builder-base\",\r\n \"product\": \"circleci-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-builder-base/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23033,7 +23292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6cb28a5-b80f-409e-bb20-2c2cd27e0e93" + "90f8a975-8834-4e3a-8a00-225f66ebafea" ], "Cache-Control": [ "no-cache" @@ -23043,31 +23302,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13598" + "14486" ], "x-ms-correlation-request-id": [ - "e6da3b59-d6f7-4b1e-89e7-e2098808e18f" + "a43d7b9d-a18a-4ef7-8316-eddaeee5f4ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212507Z:e6da3b59-d6f7-4b1e-89e7-e2098808e18f" + "WESTUS:20150813T074641Z:a43d7b9d-a18a-4ef7-8316-eddaeee5f4ef" ], "Date": [ - "Wed, 05 Aug 2015 21:25:07 GMT" + "Thu, 13 Aug 2015 07:46:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/clickberry/artifacttypes/vmimage/offers/clickberry-encoder/skus/clickberry-encoder-core/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xpY2tiZXJyeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NsaWNrYmVycnktZW5jb2Rlci9za3VzL2NsaWNrYmVycnktZW5jb2Rlci1jb3JlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus/circleci-enterprise-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXMvY2lyY2xlY2ktZW50ZXJwcmlzZS1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry/ArtifactTypes/VMImage/Offers/clickberry-encoder/Skus/clickberry-encoder-core/Versions/1.1.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-enterprise-byol/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "287" @@ -23085,7 +23344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a1b0434-7137-411c-b32f-78e2aa17d8df" + "480d34bd-95f3-405e-95a0-7dd0a60c7625" ], "Cache-Control": [ "no-cache" @@ -23095,34 +23354,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13597" + "14485" ], "x-ms-correlation-request-id": [ - "30200832-855e-416b-bcd8-c78a0a4c7ab2" + "eb436668-ed90-40a3-9028-4a2369bdd0f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212508Z:30200832-855e-416b-bcd8-c78a0a4c7ab2" + "WESTUS:20150813T074642Z:eb436668-ed90-40a3-9028-4a2369bdd0f7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:07 GMT" + "Thu, 13 Aug 2015 07:46:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/clickberry/artifacttypes/vmimage/offers/clickberry-encoder/skus/clickberry-encoder-core/versions/1.1.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xpY2tiZXJyeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NsaWNrYmVycnktZW5jb2Rlci9za3VzL2NsaWNrYmVycnktZW5jb2Rlci1jb3JlL3ZlcnNpb25zLzEuMS40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/circleci/artifacttypes/vmimage/offers/circleci-enterprise/skus/circleci-enterprise-byol/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyY2xlY2kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jaXJjbGVjaS1lbnRlcnByaXNlL3NrdXMvY2lyY2xlY2ktZW50ZXJwcmlzZS1ieW9sL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"clickberry\",\r\n \"name\": \"clickberry-encoder-core\",\r\n \"product\": \"clickberry-encoder\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry/ArtifactTypes/VMImage/Offers/clickberry-encoder/Skus/clickberry-encoder-core/Versions/1.1.4\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"circleci\",\r\n \"name\": \"circleci-enterprise-byol\",\r\n \"product\": \"circleci-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-enterprise-byol/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "526" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23137,7 +23396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "723559fa-04d5-42bb-9d2e-c5f369339819" + "7bddc479-f148-4efd-83c3-12d5be2a5aec" ], "Cache-Control": [ "no-cache" @@ -23147,34 +23406,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13596" + "14484" ], "x-ms-correlation-request-id": [ - "253f9f84-d16c-4bb5-9c4d-33ac6751fc39" + "344c8437-4b8d-4221-a7e4-fb3cb9b8ef8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212508Z:253f9f84-d16c-4bb5-9c4d-33ac6751fc39" + "WESTUS:20150813T074642Z:344c8437-4b8d-4221-a7e4-fb3cb9b8ef8f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:07 GMT" + "Thu, 13 Aug 2015 07:46:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cires21/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyZXMyMS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-jenkins-enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-jenkins-operations-center\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-operations-center\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"c21l-mos\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21/ArtifactTypes/VMImage/Offers/c21l-mos\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "599" + "233" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23189,7 +23448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad4daf5d-8282-4926-90d5-10c325c1c2a9" + "614c789c-69da-48cc-9e89-11339ae6bf48" ], "Cache-Control": [ "no-cache" @@ -23199,34 +23458,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13595" + "14483" ], "x-ms-correlation-request-id": [ - "9b4dde9b-21d9-4842-baa7-d2d5493153dc" + "54f8cd66-4d79-4f92-80ac-bc7f5547ad78" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212508Z:9b4dde9b-21d9-4842-baa7-d2d5493153dc" + "WESTUS:20150813T074642Z:54f8cd66-4d79-4f92-80ac-bc7f5547ad78" ], "Date": [ - "Wed, 05 Aug 2015 21:25:07 GMT" + "Thu, 13 Aug 2015 07:46:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-enterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLWVudGVycHJpc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cires21/artifacttypes/vmimage/offers/c21l-mos/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyZXMyMS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2MyMWwtbW9zL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-jenkins-enterprise-14-11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-enterprise/Skus/cloudbees-jenkins-enterprise-14-11\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"c21l-mos-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21/ArtifactTypes/VMImage/Offers/c21l-mos/Skus/c21l-mos-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "340" + "257" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23241,7 +23500,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87f99555-b284-4a3c-a9a3-c1716e1df01e" + "7f4af972-0b6b-42f8-a0e2-7379d6403f25" ], "Cache-Control": [ "no-cache" @@ -23251,34 +23510,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13594" + "14482" ], "x-ms-correlation-request-id": [ - "1eb1c374-1a8f-45f8-a46f-ee7159283f1a" + "6017c94a-1777-465e-8576-48b33e20413a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212508Z:1eb1c374-1a8f-45f8-a46f-ee7159283f1a" + "WESTUS:20150813T074642Z:6017c94a-1777-465e-8576-48b33e20413a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:07 GMT" + "Thu, 13 Aug 2015 07:46:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-enterprise/skus/cloudbees-jenkins-enterprise-14-11/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLWVudGVycHJpc2Uvc2t1cy9jbG91ZGJlZXMtamVua2lucy1lbnRlcnByaXNlLTE0LTExL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cires21/artifacttypes/vmimage/offers/c21l-mos/skus/c21l-mos-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyZXMyMS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2MyMWwtbW9zL3NrdXMvYzIxbC1tb3MtYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.02001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-enterprise/Skus/cloudbees-jenkins-enterprise-14-11/Versions/15.05.02001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21/ArtifactTypes/VMImage/Offers/c21l-mos/Skus/c21l-mos-byol/Versions/1.0.5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "338" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23293,7 +23552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c17135af-4639-4b69-bce7-1659beab9d21" + "851b6aea-29e3-4b9c-bde6-6cece70a1ce5" ], "Cache-Control": [ "no-cache" @@ -23303,34 +23562,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13593" + "14481" ], "x-ms-correlation-request-id": [ - "7f22baff-f6d0-4760-87e8-554cb3090970" + "f9077814-d141-43a4-b3c4-d60ea55ec820" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212508Z:7f22baff-f6d0-4760-87e8-554cb3090970" + "WESTUS:20150813T074642Z:f9077814-d141-43a4-b3c4-d60ea55ec820" ], "Date": [ - "Wed, 05 Aug 2015 21:25:07 GMT" + "Thu, 13 Aug 2015 07:46:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-enterprise/skus/cloudbees-jenkins-enterprise-14-11/versions/15.05.02001?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLWVudGVycHJpc2Uvc2t1cy9jbG91ZGJlZXMtamVua2lucy1lbnRlcnByaXNlLTE0LTExL3ZlcnNpb25zLzE1LjA1LjAyMDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cires21/artifacttypes/vmimage/offers/c21l-mos/skus/c21l-mos-byol/versions/1.0.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2lyZXMyMS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2MyMWwtbW9zL3NrdXMvYzIxbC1tb3MtYnlvbC92ZXJzaW9ucy8xLjAuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cloudbees-enterprise-jenkins\",\r\n \"name\": \"cloudbees-jenkins-enterprise-14-11\",\r\n \"product\": \"cloudbees-jenkins-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.02001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-enterprise/Skus/cloudbees-jenkins-enterprise-14-11/Versions/15.05.02001\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cires21\",\r\n \"name\": \"c21l-mos-byol\",\r\n \"product\": \"c21l-mos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21/ArtifactTypes/VMImage/Offers/c21l-mos/Skus/c21l-mos-byol/Versions/1.0.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "614" + "478" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23345,7 +23604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f866b09-c980-4cb1-8779-710c1e7c4a4b" + "1344ec6d-8261-444b-b7a4-28e7dcb31f94" ], "Cache-Control": [ "no-cache" @@ -23355,34 +23614,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13592" + "14480" ], "x-ms-correlation-request-id": [ - "e51cec4d-e740-4f98-9fef-09fa64a43e65" + "4222373c-2645-458f-95ad-4b8595614cd9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212508Z:e51cec4d-e740-4f98-9fef-09fa64a43e65" + "WESTUS:20150813T074642Z:4222373c-2645-458f-95ad-4b8595614cd9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-operations-center/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLW9wZXJhdGlvbnMtY2VudGVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/clickberry/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xpY2tiZXJyeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-jenkins-operations-center-14-11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-operations-center/Skus/cloudbees-jenkins-operations-center-14-11\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry-encoder\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry/ArtifactTypes/VMImage/Offers/clickberry-encoder\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "361" + "256" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23397,7 +23656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55d0e2c9-d5b0-4891-878a-7cfbe6a04d14" + "1e7d06b8-0a6f-4610-b7ac-905dc6c3b3ce" ], "Cache-Control": [ "no-cache" @@ -23407,34 +23666,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13591" + "14479" ], "x-ms-correlation-request-id": [ - "63e28ccb-8ced-4ada-b547-6b437839d62b" + "c52f8a57-5dc5-4adf-a040-9391f17b594e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212508Z:63e28ccb-8ced-4ada-b547-6b437839d62b" + "WESTUS:20150813T074642Z:c52f8a57-5dc5-4adf-a040-9391f17b594e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-operations-center/skus/cloudbees-jenkins-operations-center-14-11/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLW9wZXJhdGlvbnMtY2VudGVyL3NrdXMvY2xvdWRiZWVzLWplbmtpbnMtb3BlcmF0aW9ucy1jZW50ZXItMTQtMTEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/clickberry/artifacttypes/vmimage/offers/clickberry-encoder/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xpY2tiZXJyeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NsaWNrYmVycnktZW5jb2Rlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.02001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-operations-center/Skus/cloudbees-jenkins-operations-center-14-11/Versions/15.05.02001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry-encoder-core\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry/ArtifactTypes/VMImage/Offers/clickberry-encoder/Skus/clickberry-encoder-core\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "352" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23449,7 +23708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "113abee9-b4ba-4cb7-9316-11a9565709fb" + "3768f470-cb28-4285-a792-7d52a67ddba8" ], "Cache-Control": [ "no-cache" @@ -23459,34 +23718,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13590" + "14478" ], "x-ms-correlation-request-id": [ - "c5521597-884a-46cc-8a56-aa61dfca0baa" + "1b203e68-544d-482c-9ac1-d29da6bc063d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212508Z:c5521597-884a-46cc-8a56-aa61dfca0baa" + "WESTUS:20150813T074642Z:1b203e68-544d-482c-9ac1-d29da6bc063d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-operations-center/skus/cloudbees-jenkins-operations-center-14-11/versions/15.05.02001?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLW9wZXJhdGlvbnMtY2VudGVyL3NrdXMvY2xvdWRiZWVzLWplbmtpbnMtb3BlcmF0aW9ucy1jZW50ZXItMTQtMTEvdmVyc2lvbnMvMTUuMDUuMDIwMDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/clickberry/artifacttypes/vmimage/offers/clickberry-encoder/skus/clickberry-encoder-core/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xpY2tiZXJyeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NsaWNrYmVycnktZW5jb2Rlci9za3VzL2NsaWNrYmVycnktZW5jb2Rlci1jb3JlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cloudbees-enterprise-jenkins\",\r\n \"name\": \"cloudbees-jenkins-operations-center-14-11\",\r\n \"product\": \"cloudbees-jenkins-operations-center\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.02001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-operations-center/Skus/cloudbees-jenkins-operations-center-14-11/Versions/15.05.02001\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry/ArtifactTypes/VMImage/Offers/clickberry-encoder/Skus/clickberry-encoder-core/Versions/1.1.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "642" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23501,7 +23760,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46401556-3546-4de7-8450-b761e0162c67" + "fe310ef7-7b61-418a-81dc-5fac08d709b8" ], "Cache-Control": [ "no-cache" @@ -23511,34 +23770,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13589" + "14477" ], "x-ms-correlation-request-id": [ - "8e1ef9ea-3303-496a-8682-5ec2a8f639ed" + "3d4e9e6b-1d0a-486e-951b-dd342fd90f47" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212509Z:8e1ef9ea-3303-496a-8682-5ec2a8f639ed" + "WESTUS:20150813T074643Z:3d4e9e6b-1d0a-486e-951b-dd342fd90f47" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudboost/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRib29zdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/clickberry/artifacttypes/vmimage/offers/clickberry-encoder/skus/clickberry-encoder-core/versions/1.1.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xpY2tiZXJyeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NsaWNrYmVycnktZW5jb2Rlci9za3VzL2NsaWNrYmVycnktZW5jb2Rlci1jb3JlL3ZlcnNpb25zLzEuMS40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"clickberry\",\r\n \"name\": \"clickberry-encoder-core\",\r\n \"product\": \"clickberry-encoder\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry/ArtifactTypes/VMImage/Offers/clickberry-encoder/Skus/clickberry-encoder-core/Versions/1.1.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "240" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23553,7 +23812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5504e0bf-efa2-41b9-885a-b0075b6a3e2d" + "96a72793-2808-4474-b721-7d260a5d6d10" ], "Cache-Control": [ "no-cache" @@ -23563,34 +23822,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13588" + "14476" ], "x-ms-correlation-request-id": [ - "5ac94fa4-e4ab-4563-8ab7-83dd992fee16" + "4ad6a5d1-6d68-4e09-bb71-e3ab44df8940" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212509Z:5ac94fa4-e4ab-4563-8ab7-83dd992fee16" + "WESTUS:20150813T074643Z:4ad6a5d1-6d68-4e09-bb71-e3ab44df8940" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudboost/artifacttypes/vmimage/offers/cloudboost/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRib29zdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYm9vc3Qvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost-enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost/Skus/cloudboost-enterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-jenkins-enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-jenkins-operations-center\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-operations-center\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "278" + "599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23605,7 +23864,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba3ed191-236e-4c95-83b4-3f1723c0dd3f" + "5a34c2a4-e202-4f39-b781-7b21ff54f9e7" ], "Cache-Control": [ "no-cache" @@ -23615,34 +23874,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13587" + "14475" ], "x-ms-correlation-request-id": [ - "7824cf26-7dc9-47d9-8f53-d1619589ea75" + "e13efbdd-8f58-4d6d-a717-43b58d5ac61f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212509Z:7824cf26-7dc9-47d9-8f53-d1619589ea75" + "WESTUS:20150813T074643Z:e13efbdd-8f58-4d6d-a717-43b58d5ac61f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudboost/artifacttypes/vmimage/offers/cloudboost/skus/cloudboost-enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRib29zdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYm9vc3Qvc2t1cy9jbG91ZGJvb3N0LWVudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-enterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLWVudGVycHJpc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost/Skus/cloudboost-enterprise/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-jenkins-enterprise-14-11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-enterprise/Skus/cloudbees-jenkins-enterprise-14-11\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "277" + "340" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23657,7 +23916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49abbe6a-fca5-4d82-8b32-9b67e67d47c3" + "9abc8623-635a-495c-b0e0-72cf100eb552" ], "Cache-Control": [ "no-cache" @@ -23667,34 +23926,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13586" + "14474" ], "x-ms-correlation-request-id": [ - "2071d110-7ed9-4051-bdba-084191d357c5" + "f8936c81-ded8-40ec-95f5-e47dd507a55c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212509Z:2071d110-7ed9-4051-bdba-084191d357c5" + "WESTUS:20150813T074643Z:f8936c81-ded8-40ec-95f5-e47dd507a55c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudboost/artifacttypes/vmimage/offers/cloudboost/skus/cloudboost-enterprise/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRib29zdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYm9vc3Qvc2t1cy9jbG91ZGJvb3N0LWVudGVycHJpc2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-enterprise/skus/cloudbees-jenkins-enterprise-14-11/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLWVudGVycHJpc2Uvc2t1cy9jbG91ZGJlZXMtamVua2lucy1lbnRlcnByaXNlLTE0LTExL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cloudboost\",\r\n \"name\": \"cloudboost-enterprise\",\r\n \"product\": \"cloudboost\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost/Skus/cloudboost-enterprise/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.02001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-enterprise/Skus/cloudbees-jenkins-enterprise-14-11/Versions/15.05.02001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "546" + "338" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23709,7 +23968,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3b48726-e0c3-40c9-971f-18cd399738e1" + "4e60c5c6-b0d2-46fc-868b-41f46395afec" ], "Cache-Control": [ "no-cache" @@ -23719,34 +23978,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13585" + "14473" ], "x-ms-correlation-request-id": [ - "de528332-654b-45f5-b804-8342d67f1c2c" + "b37de7f8-6923-43a3-8715-f97fcc35a261" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212509Z:de528332-654b-45f5-b804-8342d67f1c2c" + "WESTUS:20150813T074643Z:b37de7f8-6923-43a3-8715-f97fcc35a261" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudera/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-enterprise/skus/cloudbees-jenkins-enterprise-14-11/versions/15.05.02001?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLWVudGVycHJpc2Uvc2t1cy9jbG91ZGJlZXMtamVua2lucy1lbnRlcnByaXNlLTE0LTExL3ZlcnNpb25zLzE1LjA1LjAyMDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cloudbees-enterprise-jenkins\",\r\n \"name\": \"cloudbees-jenkins-enterprise-14-11\",\r\n \"product\": \"cloudbees-jenkins-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.02001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-enterprise/Skus/cloudbees-jenkins-enterprise-14-11/Versions/15.05.02001\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "614" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23761,7 +24020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69437102-a860-4535-832c-7e356d7544b5" + "86949340-6909-4dbf-912b-dc1168564c72" ], "Cache-Control": [ "no-cache" @@ -23771,34 +24030,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13584" + "14472" ], "x-ms-correlation-request-id": [ - "cf0030b8-45ec-4830-aef2-e3e973e327b3" + "43787693-8a1b-4bf9-a3de-9f7497cf65c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212509Z:cf0030b8-45ec-4830-aef2-e3e973e327b3" + "WESTUS:20150813T074643Z:43787693-8a1b-4bf9-a3de-9f7497cf65c7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:08 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudlink/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRsaW5rL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-operations-center/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLW9wZXJhdGlvbnMtY2VudGVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink-securevm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink/ArtifactTypes/VMImage/Offers/cloudlink-securevm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-jenkins-operations-center-14-11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-operations-center/Skus/cloudbees-jenkins-operations-center-14-11\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "255" + "361" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23813,7 +24072,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "197edaf0-ae2f-4de3-85fe-39b0639139b3" + "be90f1fc-7b32-4af2-a64b-3e11e3f2c91f" ], "Cache-Control": [ "no-cache" @@ -23823,34 +24082,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13583" + "14471" ], "x-ms-correlation-request-id": [ - "d37276df-b682-43d1-91c1-a28ea13486f4" + "b5ae22d7-8430-4173-bb1b-edab3f997183" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212509Z:d37276df-b682-43d1-91c1-a28ea13486f4" + "WESTUS:20150813T074643Z:b5ae22d7-8430-4173-bb1b-edab3f997183" ], "Date": [ - "Wed, 05 Aug 2015 21:25:09 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudlink/artifacttypes/vmimage/offers/cloudlink-securevm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRsaW5rL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRsaW5rLXNlY3VyZXZtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-operations-center/skus/cloudbees-jenkins-operations-center-14-11/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLW9wZXJhdGlvbnMtY2VudGVyL3NrdXMvY2xvdWRiZWVzLWplbmtpbnMtb3BlcmF0aW9ucy1jZW50ZXItMTQtMTEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink-securevm-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink/ArtifactTypes/VMImage/Offers/cloudlink-securevm/Skus/cloudlink-securevm-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.02001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-operations-center/Skus/cloudbees-jenkins-operations-center-14-11/Versions/15.05.02001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "289" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23865,7 +24124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "589237e2-c7ea-4a8c-b781-6441be58d0b2" + "43b1defc-9358-40de-b45c-4eccfd372ac9" ], "Cache-Control": [ "no-cache" @@ -23875,34 +24134,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13582" + "14470" ], "x-ms-correlation-request-id": [ - "75651afb-d47f-4fab-baa9-e8c4db54eb93" + "2c3dc642-67b0-4b00-8b79-bbac0e2a71c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212509Z:75651afb-d47f-4fab-baa9-e8c4db54eb93" + "WESTUS:20150813T074643Z:2c3dc642-67b0-4b00-8b79-bbac0e2a71c0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:09 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudlink/artifacttypes/vmimage/offers/cloudlink-securevm/skus/cloudlink-securevm-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRsaW5rL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRsaW5rLXNlY3VyZXZtL3NrdXMvY2xvdWRsaW5rLXNlY3VyZXZtLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudbees-enterprise-jenkins/artifacttypes/vmimage/offers/cloudbees-jenkins-operations-center/skus/cloudbees-jenkins-operations-center-14-11/versions/15.05.02001?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRiZWVzLWVudGVycHJpc2UtamVua2lucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYmVlcy1qZW5raW5zLW9wZXJhdGlvbnMtY2VudGVyL3NrdXMvY2xvdWRiZWVzLWplbmtpbnMtb3BlcmF0aW9ucy1jZW50ZXItMTQtMTEvdmVyc2lvbnMvMTUuMDUuMDIwMDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink/ArtifactTypes/VMImage/Offers/cloudlink-securevm/Skus/cloudlink-securevm-byol/Versions/4.0.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cloudbees-enterprise-jenkins\",\r\n \"name\": \"cloudbees-jenkins-operations-center-14-11\",\r\n \"product\": \"cloudbees-jenkins-operations-center\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.05.02001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins/ArtifactTypes/VMImage/Offers/cloudbees-jenkins-operations-center/Skus/cloudbees-jenkins-operations-center-14-11/Versions/15.05.02001\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "286" + "642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23917,7 +24176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "484c5c57-032e-4e4b-934c-aa320dff3dc3" + "630b5133-7455-4c14-90c5-945bf66e5e7b" ], "Cache-Control": [ "no-cache" @@ -23927,34 +24186,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13581" + "14469" ], "x-ms-correlation-request-id": [ - "551f4adc-7b18-466e-b5ad-d569277bff3a" + "3b174106-76c8-4edf-9c78-ab82e8a442a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212510Z:551f4adc-7b18-466e-b5ad-d569277bff3a" + "WESTUS:20150813T074643Z:3b174106-76c8-4edf-9c78-ab82e8a442a3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:09 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cloudlink/artifacttypes/vmimage/offers/cloudlink-securevm/skus/cloudlink-securevm-byol/versions/4.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRsaW5rL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRsaW5rLXNlY3VyZXZtL3NrdXMvY2xvdWRsaW5rLXNlY3VyZXZtLWJ5b2wvdmVyc2lvbnMvNC4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudboost/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRib29zdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cloudlink\",\r\n \"name\": \"cloudlink-securevm-byol\",\r\n \"product\": \"cloudlink-securevm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink/ArtifactTypes/VMImage/Offers/cloudlink-securevm/Skus/cloudlink-securevm-byol/Versions/4.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "522" + "240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23969,7 +24228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8f6d638-3716-4d1d-af77-221770c60ace" + "b51873dd-c613-462c-9864-c1f260f0ff1e" ], "Cache-Control": [ "no-cache" @@ -23979,34 +24238,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13580" + "14468" ], "x-ms-correlation-request-id": [ - "c4d3daef-3d5e-446a-a851-930135215744" + "cde41e3d-fd9f-4144-a8d8-b32eb40c3436" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212510Z:c4d3daef-3d5e-446a-a851-930135215744" + "WESTUS:20150813T074644Z:cde41e3d-fd9f-4144-a8d8-b32eb40c3436" ], "Date": [ - "Wed, 05 Aug 2015 21:25:09 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CloudLink.SecureVM/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2xvdWRMaW5rLlNlY3VyZVZNL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudboost/artifacttypes/vmimage/offers/cloudboost/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRib29zdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYm9vc3Qvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost-enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost/Skus/cloudboost-enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24021,7 +24280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27510544-3644-4068-9cca-1e68b4e60080" + "a7f8b96b-6094-4a17-a6fa-ba9f287dbbd8" ], "Cache-Control": [ "no-cache" @@ -24031,34 +24290,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13579" + "14467" ], "x-ms-correlation-request-id": [ - "15ae3c4c-a3b0-404e-a79e-ab00f048126d" + "1b7b3ec5-2f67-4266-9fba-82113e01bf54" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212510Z:15ae3c4c-a3b0-404e-a79e-ab00f048126d" + "WESTUS:20150813T074644Z:1b7b3ec5-2f67-4266-9fba-82113e01bf54" ], "Date": [ - "Wed, 05 Aug 2015 21:25:09 GMT" + "Thu, 13 Aug 2015 07:46:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CloudLinkEMC.SecureVM/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2xvdWRMaW5rRU1DLlNlY3VyZVZNL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudboost/artifacttypes/vmimage/offers/cloudboost/skus/cloudboost-enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRib29zdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYm9vc3Qvc2t1cy9jbG91ZGJvb3N0LWVudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost/Skus/cloudboost-enterprise/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24073,7 +24332,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bceb72b-2b37-467b-8fae-5e6ede8be11f" + "61a29bcd-2f98-4e36-b06b-dfe0f2834b29" ], "Cache-Control": [ "no-cache" @@ -24083,28 +24342,80 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13578" + "14466" + ], + "x-ms-correlation-request-id": [ + "28d311b6-ecfa-40df-b665-bdb320c6f8d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074644Z:28d311b6-ecfa-40df-b665-bdb320c6f8d2" + ], + "Date": [ + "Thu, 13 Aug 2015 07:46:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudboost/artifacttypes/vmimage/offers/cloudboost/skus/cloudboost-enterprise/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRib29zdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkYm9vc3Qvc2t1cy9jbG91ZGJvb3N0LWVudGVycHJpc2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cloudboost\",\r\n \"name\": \"cloudboost-enterprise\",\r\n \"product\": \"cloudboost\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost/Skus/cloudboost-enterprise/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "546" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "165fcc9f-2ec3-4e31-87d1-57cd3677b392" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14465" ], "x-ms-correlation-request-id": [ - "0345764e-01cf-462c-bd3d-d596b2ba48c2" + "9ecac096-8f74-4a3c-9b2a-3ab216e9b092" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212510Z:0345764e-01cf-462c-bd3d-d596b2ba48c2" + "WESTUS:20150813T074644Z:9ecac096-8f74-4a3c-9b2a-3ab216e9b092" ], "Date": [ - "Wed, 05 Aug 2015 21:25:09 GMT" + "Thu, 13 Aug 2015 07:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CloudLinkEMC.SecureVM.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2xvdWRMaW5rRU1DLlNlY3VyZVZNLlRlc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudera/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -24125,7 +24436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8b981ca-85b6-42dc-bcb7-e75f543a97d5" + "3af7aec5-d494-45a3-b481-b7fdb955835f" ], "Cache-Control": [ "no-cache" @@ -24135,34 +24446,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13577" + "14464" ], "x-ms-correlation-request-id": [ - "0f78c4ec-2e51-4365-9856-729908c6bd17" + "e928e197-a691-46c9-a5c1-a1ad08650335" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212510Z:0f78c4ec-2e51-4365-9856-729908c6bd17" + "WESTUS:20150813T074644Z:e928e197-a691-46c9-a5c1-a1ad08650335" ], "Date": [ - "Wed, 05 Aug 2015 21:25:09 GMT" + "Thu, 13 Aug 2015 07:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/clustrix/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2x1c3RyaXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudlink/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRsaW5rL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrixdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix/ArtifactTypes/VMImage/Offers/clustrixdb\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink-securevm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink/ArtifactTypes/VMImage/Offers/cloudlink-securevm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "238" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24177,7 +24488,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63d933ed-f7a0-4d0a-be33-43a1f2bb6588" + "250f1fae-190e-4997-949e-79f797e1756a" ], "Cache-Control": [ "no-cache" @@ -24187,34 +24498,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13576" + "14463" ], "x-ms-correlation-request-id": [ - "18bfbc38-5215-463d-975c-1883b2dbbfd1" + "9b0ff990-24d7-4f5f-afc6-62fc62c4f61b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212510Z:18bfbc38-5215-463d-975c-1883b2dbbfd1" + "WESTUS:20150813T074644Z:9b0ff990-24d7-4f5f-afc6-62fc62c4f61b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:09 GMT" + "Thu, 13 Aug 2015 07:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/clustrix/artifacttypes/vmimage/offers/clustrixdb/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2x1c3RyaXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbHVzdHJpeGRiL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudlink/artifacttypes/vmimage/offers/cloudlink-securevm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRsaW5rL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRsaW5rLXNlY3VyZXZtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clxnode_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix/ArtifactTypes/VMImage/Offers/clustrixdb/Skus/clxnode_byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink-securevm-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink/ArtifactTypes/VMImage/Offers/cloudlink-securevm/Skus/cloudlink-securevm-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "258" + "289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24229,7 +24540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb3eafa0-82e0-46a9-82b3-988ef3c7396a" + "56ab9432-1265-47c0-9582-1af1b0c54fd2" ], "Cache-Control": [ "no-cache" @@ -24239,34 +24550,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13575" + "14462" ], "x-ms-correlation-request-id": [ - "23b4b1a6-482c-44b5-8b95-c2648708e789" + "aa2d6dd2-7b3e-4708-b209-9e43259dcc3b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212510Z:23b4b1a6-482c-44b5-8b95-c2648708e789" + "WESTUS:20150813T074644Z:aa2d6dd2-7b3e-4708-b209-9e43259dcc3b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:10 GMT" + "Thu, 13 Aug 2015 07:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/clustrix/artifacttypes/vmimage/offers/clustrixdb/skus/clxnode_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2x1c3RyaXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbHVzdHJpeGRiL3NrdXMvY2x4bm9kZV9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudlink/artifacttypes/vmimage/offers/cloudlink-securevm/skus/cloudlink-securevm-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRsaW5rL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRsaW5rLXNlY3VyZXZtL3NrdXMvY2xvdWRsaW5rLXNlY3VyZXZtLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.0.11563\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix/ArtifactTypes/VMImage/Offers/clustrixdb/Skus/clxnode_byol/Versions/6.0.11563\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink/ArtifactTypes/VMImage/Offers/cloudlink-securevm/Skus/cloudlink-securevm-byol/Versions/4.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "274" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24281,7 +24592,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9a6f741-1d7d-483f-afae-03fccdfde329" + "ab5b291a-2d4e-4f73-bac1-9689b9f498e6" ], "Cache-Control": [ "no-cache" @@ -24291,34 +24602,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13574" + "14461" ], "x-ms-correlation-request-id": [ - "1e82836f-0b46-44d2-9bad-5a63893312e0" + "0a5560a1-c7ad-41c3-899e-e9db3f099f9b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212510Z:1e82836f-0b46-44d2-9bad-5a63893312e0" + "WESTUS:20150813T074644Z:0a5560a1-c7ad-41c3-899e-e9db3f099f9b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:10 GMT" + "Thu, 13 Aug 2015 07:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/clustrix/artifacttypes/vmimage/offers/clustrixdb/skus/clxnode_byol/versions/6.0.11563?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2x1c3RyaXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbHVzdHJpeGRiL3NrdXMvY2x4bm9kZV9ieW9sL3ZlcnNpb25zLzYuMC4xMTU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudlink/artifacttypes/vmimage/offers/cloudlink-securevm/skus/cloudlink-securevm-byol/versions/4.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRsaW5rL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2xvdWRsaW5rLXNlY3VyZXZtL3NrdXMvY2xvdWRsaW5rLXNlY3VyZXZtLWJ5b2wvdmVyc2lvbnMvNC4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"clustrix\",\r\n \"name\": \"clxnode_byol\",\r\n \"product\": \"clustrixdb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.0.11563\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix/ArtifactTypes/VMImage/Offers/clustrixdb/Skus/clxnode_byol/Versions/6.0.11563\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cloudlink\",\r\n \"name\": \"cloudlink-securevm-byol\",\r\n \"product\": \"cloudlink-securevm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink/ArtifactTypes/VMImage/Offers/cloudlink-securevm/Skus/cloudlink-securevm-byol/Versions/4.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "532" + "522" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24333,7 +24644,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72ee2073-4a66-4f6f-92ea-c6b0ce9e69db" + "8338d6f3-f216-42c7-9bed-73d671a5ed56" ], "Cache-Control": [ "no-cache" @@ -24343,34 +24654,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13573" + "14460" ], "x-ms-correlation-request-id": [ - "95aedfc2-445f-4b27-b9a2-cae43ba174bb" + "acc0c6b8-d3fa-4b47-9144-ddc42dcafac7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212511Z:95aedfc2-445f-4b27-b9a2-cae43ba174bb" + "WESTUS:20150813T074645Z:acc0c6b8-d3fa-4b47-9144-ddc42dcafac7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:10 GMT" + "Thu, 13 Aug 2015 07:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/codelathe/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29kZWxhdGhlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CloudLink.SecureVM/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2xvdWRMaW5rLlNlY3VyZVZNL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe-filecloud-win2012r2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "277" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24385,7 +24696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c6d608da-e0c4-4187-9019-c3258fd65baf" + "339ad5a7-71a7-4fd5-8cd3-65ec4ea63335" ], "Cache-Control": [ "no-cache" @@ -24395,34 +24706,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13572" + "14459" ], "x-ms-correlation-request-id": [ - "c2ff2c44-60e8-4bf2-ba4d-ad05361544ce" + "c3ae1089-4744-4668-b81e-2f00973e7633" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212511Z:c2ff2c44-60e8-4bf2-ba4d-ad05361544ce" + "WESTUS:20150813T074645Z:c3ae1089-4744-4668-b81e-2f00973e7633" ], "Date": [ - "Wed, 05 Aug 2015 21:25:10 GMT" + "Thu, 13 Aug 2015 07:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/codelathe/artifacttypes/vmimage/offers/codelathe-filecloud-win2012r2/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29kZWxhdGhlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29kZWxhdGhlLWZpbGVjbG91ZC13aW4yMDEycjIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CloudLinkEMC.SecureVM/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2xvdWRMaW5rRU1DLlNlY3VyZVZNL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filecloud_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2/Skus/filecloud_byol\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "282" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24437,7 +24748,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "662ace18-ddb8-4afc-b0a4-6a07202e9086" + "992321da-8bee-4a39-9b57-80d7c76d198a" ], "Cache-Control": [ "no-cache" @@ -24447,34 +24758,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13571" + "14458" ], "x-ms-correlation-request-id": [ - "d0fc5225-a8e6-4224-8e8f-6810fa78afb1" + "efb4a282-14bd-494d-9e84-1e70ee4dc595" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212511Z:d0fc5225-a8e6-4224-8e8f-6810fa78afb1" + "WESTUS:20150813T074645Z:efb4a282-14bd-494d-9e84-1e70ee4dc595" ], "Date": [ - "Wed, 05 Aug 2015 21:25:10 GMT" + "Thu, 13 Aug 2015 07:46:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/codelathe/artifacttypes/vmimage/offers/codelathe-filecloud-win2012r2/skus/filecloud_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29kZWxhdGhlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29kZWxhdGhlLWZpbGVjbG91ZC13aW4yMDEycjIvc2t1cy9maWxlY2xvdWRfYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CloudLinkEMC.SecureVM.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ2xvdWRMaW5rRU1DLlNlY3VyZVZNLlRlc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2/Skus/filecloud_byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "288" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24489,7 +24800,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "733b0433-9996-490b-b4b5-665c156cfaaf" + "47bccf07-e526-45f8-bd5c-067348a31915" ], "Cache-Control": [ "no-cache" @@ -24499,34 +24810,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13570" + "14457" ], "x-ms-correlation-request-id": [ - "49cc26a6-b2cb-4764-9182-944905f0c497" + "89d6c3f0-de38-40ca-8a91-3c6b69f9455f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212511Z:49cc26a6-b2cb-4764-9182-944905f0c497" + "WESTUS:20150813T074645Z:89d6c3f0-de38-40ca-8a91-3c6b69f9455f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:10 GMT" + "Thu, 13 Aug 2015 07:46:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/codelathe/artifacttypes/vmimage/offers/codelathe-filecloud-win2012r2/skus/filecloud_byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29kZWxhdGhlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29kZWxhdGhlLWZpbGVjbG91ZC13aW4yMDEycjIvc2t1cy9maWxlY2xvdWRfYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cloudsoft/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2xvdWRzb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"codelathe\",\r\n \"name\": \"filecloud_byol\",\r\n \"product\": \"codelathe-filecloud-win2012r2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2/Skus/filecloud_byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "528" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24541,7 +24852,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53506d05-61e1-468d-b009-79135b55a5f7" + "ff439066-fe7c-4e4e-8b76-fe66e5501ee2" ], "Cache-Control": [ "no-cache" @@ -24551,34 +24862,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13569" + "14456" ], "x-ms-correlation-request-id": [ - "c1d24b2a-cc4f-4904-abd8-4c26de245c1e" + "b0cedd87-e858-47bf-b71a-3f1df9c2d313" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212511Z:c1d24b2a-cc4f-4904-abd8-4c26de245c1e" + "WESTUS:20150813T074645Z:b0cedd87-e858-47bf-b71a-3f1df9c2d313" ], "Date": [ - "Wed, 05 Aug 2015 21:25:10 GMT" + "Thu, 13 Aug 2015 07:46:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/clustrix/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2x1c3RyaXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesiveft-vns3-for-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrixdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix/ArtifactTypes/VMImage/Offers/clustrixdb\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "268" + "238" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24593,7 +24904,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc84f1eb-86e3-461e-b1be-7f485769f583" + "b74b450a-0b1f-4fe2-b1c7-d3eb2307d584" ], "Cache-Control": [ "no-cache" @@ -24603,34 +24914,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13568" + "14455" ], "x-ms-correlation-request-id": [ - "d62bb339-0849-4a26-b067-1da151575a12" + "7bcc746e-8d15-4d85-9d63-84414823f7d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212511Z:d62bb339-0849-4a26-b067-1da151575a12" + "WESTUS:20150813T074645Z:7bcc746e-8d15-4d85-9d63-84414823f7d0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:10 GMT" + "Thu, 13 Aug 2015 07:46:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/clustrix/artifacttypes/vmimage/offers/clustrixdb/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2x1c3RyaXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbHVzdHJpeGRiL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive-vns3-free\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-free\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive-vns3-lite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-lite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clxnode_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix/ArtifactTypes/VMImage/Offers/clustrixdb/Skus/clxnode_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "567" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24645,7 +24956,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3069104-022e-4fdb-88c9-d57df059dea4" + "2fb62d64-cb79-4b91-b259-2ea2d3cdfb04" ], "Cache-Control": [ "no-cache" @@ -24655,34 +24966,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13567" + "14454" ], "x-ms-correlation-request-id": [ - "567ebf99-0278-41d2-ae5b-4f4ad35d9532" + "b4fdd16f-b3a1-4e24-b59b-9d1a3d441a1c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212511Z:567ebf99-0278-41d2-ae5b-4f4ad35d9532" + "WESTUS:20150813T074646Z:b4fdd16f-b3a1-4e24-b59b-9d1a3d441a1c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:11 GMT" + "Thu, 13 Aug 2015 07:46:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus/cohesive-vns3-free/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXMvY29oZXNpdmUtdm5zMy1mcmVlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/clustrix/artifacttypes/vmimage/offers/clustrixdb/skus/clxnode_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2x1c3RyaXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbHVzdHJpeGRiL3NrdXMvY2x4bm9kZV9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.507.20150131\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-free/Versions/3.507.20150131\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.0.11563\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix/ArtifactTypes/VMImage/Offers/clustrixdb/Skus/clxnode_byol/Versions/6.0.11563\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "305" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24697,7 +25008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93fb8190-92e4-4011-9a47-0aa83b78e7da" + "ab2a942d-b0d4-4b53-99da-967811a3a8f9" ], "Cache-Control": [ "no-cache" @@ -24707,34 +25018,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13566" + "14453" ], "x-ms-correlation-request-id": [ - "6cc299cf-8c40-43dd-8dc5-a09bab1be25e" + "3b241260-121a-475f-b5ae-e94c2315015a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212511Z:6cc299cf-8c40-43dd-8dc5-a09bab1be25e" + "WESTUS:20150813T074646Z:3b241260-121a-475f-b5ae-e94c2315015a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:11 GMT" + "Thu, 13 Aug 2015 07:46:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus/cohesive-vns3-free/versions/3.507.20150131?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXMvY29oZXNpdmUtdm5zMy1mcmVlL3ZlcnNpb25zLzMuNTA3LjIwMTUwMTMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/clustrix/artifacttypes/vmimage/offers/clustrixdb/skus/clxnode_byol/versions/6.0.11563?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY2x1c3RyaXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jbHVzdHJpeGRiL3NrdXMvY2x4bm9kZV9ieW9sL3ZlcnNpb25zLzYuMC4xMTU2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cohesive\",\r\n \"name\": \"cohesive-vns3-free\",\r\n \"product\": \"cohesiveft-vns3-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.507.20150131\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-free/Versions/3.507.20150131\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"clustrix\",\r\n \"name\": \"clxnode_byol\",\r\n \"product\": \"clustrixdb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.0.11563\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix/ArtifactTypes/VMImage/Offers/clustrixdb/Skus/clxnode_byol/Versions/6.0.11563\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "542" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24749,7 +25060,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d673b574-5d1f-4047-9d2f-e373a5a36c14" + "0c356f9a-5c7b-4c72-aacf-e3f694641f64" ], "Cache-Control": [ "no-cache" @@ -24759,34 +25070,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13565" + "14452" ], "x-ms-correlation-request-id": [ - "ff73c834-a2c4-47fe-82c1-e18c5bc3408b" + "6b04d63b-1b62-49ea-977d-7c4fa5611c95" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212512Z:ff73c834-a2c4-47fe-82c1-e18c5bc3408b" + "WESTUS:20150813T074646Z:6b04d63b-1b62-49ea-977d-7c4fa5611c95" ], "Date": [ - "Wed, 05 Aug 2015 21:25:11 GMT" + "Thu, 13 Aug 2015 07:46:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus/cohesive-vns3-lite/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXMvY29oZXNpdmUtdm5zMy1saXRlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/codelathe/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29kZWxhdGhlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.507.20150131\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-lite/Versions/3.507.20150131\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe-filecloud-win2012r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "305" + "277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24801,7 +25112,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86528d0f-6ac2-446d-9a18-87a9279ae4b7" + "286bb68f-c160-489d-a8c8-240a7854b533" ], "Cache-Control": [ "no-cache" @@ -24811,34 +25122,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13564" + "14451" ], "x-ms-correlation-request-id": [ - "3b8ec13b-df37-41a2-b2ea-3ba23f326824" + "e0652f5b-f516-45e5-9850-bfd02957e220" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212512Z:3b8ec13b-df37-41a2-b2ea-3ba23f326824" + "WESTUS:20150813T074646Z:e0652f5b-f516-45e5-9850-bfd02957e220" ], "Date": [ - "Wed, 05 Aug 2015 21:25:11 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus/cohesive-vns3-lite/versions/3.507.20150131?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXMvY29oZXNpdmUtdm5zMy1saXRlL3ZlcnNpb25zLzMuNTA3LjIwMTUwMTMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/codelathe/artifacttypes/vmimage/offers/codelathe-filecloud-win2012r2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29kZWxhdGhlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29kZWxhdGhlLWZpbGVjbG91ZC13aW4yMDEycjIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cohesive\",\r\n \"name\": \"cohesive-vns3-lite\",\r\n \"product\": \"cohesiveft-vns3-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.507.20150131\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-lite/Versions/3.507.20150131\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filecloud_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2/Skus/filecloud_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "542" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24853,7 +25164,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b57b835d-237f-4729-a5f6-4b2f2516cf08" + "cfb08f01-ca35-4f77-8bc3-61cea20b228f" ], "Cache-Control": [ "no-cache" @@ -24863,34 +25174,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13563" + "14450" ], "x-ms-correlation-request-id": [ - "2aaec32c-81b0-4cf9-bcb9-ea98b74b6285" + "994665e1-3f6b-44ac-9e3c-83f45b2ff8bc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212512Z:2aaec32c-81b0-4cf9-bcb9-ea98b74b6285" + "WESTUS:20150813T074646Z:994665e1-3f6b-44ac-9e3c-83f45b2ff8bc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:11 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/commvault/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29tbXZhdWx0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/codelathe/artifacttypes/vmimage/offers/codelathe-filecloud-win2012r2/skus/filecloud_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29kZWxhdGhlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29kZWxhdGhlLWZpbGVjbG91ZC13aW4yMDEycjIvc2t1cy9maWxlY2xvdWRfYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault/ArtifactTypes/VMImage/Offers/commvault\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2/Skus/filecloud_byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "237" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24905,7 +25216,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8baed4b3-3229-451e-9132-d5efd7793cb0" + "aa76ea71-9119-4d74-b1ef-eaf137b682f8" ], "Cache-Control": [ "no-cache" @@ -24915,34 +25226,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13562" + "14449" ], "x-ms-correlation-request-id": [ - "23349648-9f9a-44d8-9cdb-dfa85714715d" + "da1850d0-05ba-4f92-b749-75e6b68755b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212512Z:23349648-9f9a-44d8-9cdb-dfa85714715d" + "WESTUS:20150813T074646Z:da1850d0-05ba-4f92-b749-75e6b68755b2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:11 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/commvault/artifacttypes/vmimage/offers/commvault/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29tbXZhdWx0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29tbXZhdWx0L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/codelathe/artifacttypes/vmimage/offers/codelathe-filecloud-win2012r2/skus/filecloud_byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29kZWxhdGhlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29kZWxhdGhlLWZpbGVjbG91ZC13aW4yMDEycjIvc2t1cy9maWxlY2xvdWRfYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"csmav10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault/ArtifactTypes/VMImage/Offers/commvault/Skus/csmav10\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"codelathe\",\r\n \"name\": \"filecloud_byol\",\r\n \"product\": \"codelathe-filecloud-win2012r2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2/Skus/filecloud_byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "248" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24957,7 +25268,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e5e377a-45e0-4445-a2fa-f4838beded1b" + "91349b62-b960-465d-a674-466d64d3f271" ], "Cache-Control": [ "no-cache" @@ -24967,34 +25278,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13561" + "14448" ], "x-ms-correlation-request-id": [ - "2496fda1-c77d-4b9c-88ff-b1bd36f90742" + "6f58c94b-8fdd-43fb-a09e-49f01313e63d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212512Z:2496fda1-c77d-4b9c-88ff-b1bd36f90742" + "WESTUS:20150813T074646Z:6f58c94b-8fdd-43fb-a09e-49f01313e63d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:11 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/commvault/artifacttypes/vmimage/offers/commvault/skus/csmav10/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29tbXZhdWx0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29tbXZhdWx0L3NrdXMvY3NtYXYxMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault/ArtifactTypes/VMImage/Offers/commvault/Skus/csmav10/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesiveft-vns3-for-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "261" + "268" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25009,7 +25320,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00e869f9-6c98-4106-bd31-d4970eea3519" + "ea55f4a4-618e-4131-8010-730de210d76d" ], "Cache-Control": [ "no-cache" @@ -25019,34 +25330,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13560" + "14447" ], "x-ms-correlation-request-id": [ - "084e4be3-ef56-4d6d-bc80-021e81f3e2bf" + "c6b76834-5ca0-44e6-8fbe-1fca1bd5251d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212512Z:084e4be3-ef56-4d6d-bc80-021e81f3e2bf" + "WESTUS:20150813T074646Z:c6b76834-5ca0-44e6-8fbe-1fca1bd5251d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:11 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/commvault/artifacttypes/vmimage/offers/commvault/skus/csmav10/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29tbXZhdWx0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29tbXZhdWx0L3NrdXMvY3NtYXYxMC92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"commvault\",\r\n \"name\": \"csmav10\",\r\n \"product\": \"commvault\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault/ArtifactTypes/VMImage/Offers/commvault/Skus/csmav10/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive-vns3-free\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-free\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive-vns3-lite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-lite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "474" + "567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25061,7 +25372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33164d19-4bcb-4684-a091-dcf7ec46305d" + "169904e3-e57a-4c59-a536-9a73ee0a5521" ], "Cache-Control": [ "no-cache" @@ -25071,34 +25382,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13559" + "14446" ], "x-ms-correlation-request-id": [ - "75a85ed8-5481-410b-8430-0dbd2b600ccc" + "e17d727a-e900-463b-9131-bbdfdb4fc7fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212512Z:75a85ed8-5481-410b-8430-0dbd2b600ccc" + "WESTUS:20150813T074647Z:e17d727a-e900-463b-9131-bbdfdb4fc7fe" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Confer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29uZmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus/cohesive-vns3-free/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXMvY29oZXNpdmUtdm5zMy1mcmVlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.507.20150131\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-free/Versions/3.507.20150131\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25113,7 +25424,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3e44837-1a41-4d0f-bf86-0882848da919" + "2185ee79-d21b-4a5f-adef-42b7337bcb26" ], "Cache-Control": [ "no-cache" @@ -25123,34 +25434,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13558" + "14445" ], "x-ms-correlation-request-id": [ - "8881df03-4b9e-4167-b97c-fb1e999ab13b" + "f0231b48-12cc-4a90-a870-36bafc5dcafa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212512Z:8881df03-4b9e-4167-b97c-fb1e999ab13b" + "WESTUS:20150813T074647Z:f0231b48-12cc-4a90-a870-36bafc5dcafa" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Confer.TestSensor/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29uZmVyLlRlc3RTZW5zb3IvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus/cohesive-vns3-free/versions/3.507.20150131?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXMvY29oZXNpdmUtdm5zMy1mcmVlL3ZlcnNpb25zLzMuNTA3LjIwMTUwMTMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cohesive\",\r\n \"name\": \"cohesive-vns3-free\",\r\n \"product\": \"cohesiveft-vns3-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.507.20150131\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-free/Versions/3.507.20150131\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25165,7 +25476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3cc598b7-f9d6-4eb3-813b-3b546d275524" + "46020b35-aeae-414e-a039-0e0a8df541c2" ], "Cache-Control": [ "no-cache" @@ -25175,34 +25486,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13557" + "14444" ], "x-ms-correlation-request-id": [ - "e0465bbd-20bd-4186-96bf-724280b01152" + "6c2d3e46-0964-43d4-9cee-dd600461cb28" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:e0465bbd-20bd-4186-96bf-724280b01152" + "WESTUS:20150813T074647Z:6c2d3e46-0964-43d4-9cee-dd600461cb28" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cordis/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZGlzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus/cohesive-vns3-lite/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXMvY29oZXNpdmUtdm5zMy1saXRlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"myfidoc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis/ArtifactTypes/VMImage/Offers/myfidoc\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.507.20150131\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-lite/Versions/3.507.20150131\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "230" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25217,7 +25528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "915505d5-0d38-4b75-9d2b-b57e7bb8f0ad" + "163d65bb-33c6-4393-a178-9f7177cebe88" ], "Cache-Control": [ "no-cache" @@ -25227,34 +25538,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13556" + "14443" ], "x-ms-correlation-request-id": [ - "54b89764-a661-44bb-a429-65f752697c9a" + "d2979fc9-982a-4670-9dd9-c2e1237891d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:54b89764-a661-44bb-a429-65f752697c9a" + "WESTUS:20150813T074647Z:d2979fc9-982a-4670-9dd9-c2e1237891d8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cordis/artifacttypes/vmimage/offers/myfidoc/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZGlzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbXlmaWRvYy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cohesive/artifacttypes/vmimage/offers/cohesiveft-vns3-for-azure/skus/cohesive-vns3-lite/versions/3.507.20150131?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29oZXNpdmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb2hlc2l2ZWZ0LXZuczMtZm9yLWF6dXJlL3NrdXMvY29oZXNpdmUtdm5zMy1saXRlL3ZlcnNpb25zLzMuNTA3LjIwMTUwMTMxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"myfidoc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis/ArtifactTypes/VMImage/Offers/myfidoc/Skus/myfidoc\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cohesive\",\r\n \"name\": \"cohesive-vns3-lite\",\r\n \"product\": \"cohesiveft-vns3-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.507.20150131\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive/ArtifactTypes/VMImage/Offers/cohesiveft-vns3-for-azure/Skus/cohesive-vns3-lite/Versions/3.507.20150131\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "243" + "542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25269,7 +25580,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a957689f-d217-47f4-a2b9-30788ae56343" + "dff81bf3-17c0-48cc-844d-afbcb7fd477d" ], "Cache-Control": [ "no-cache" @@ -25279,34 +25590,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13555" + "14442" ], "x-ms-correlation-request-id": [ - "c63e14f0-e9d4-4d29-9ae8-a7abc6cd6f96" + "29fa9fec-6904-4378-b655-a0d00e64f0d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:c63e14f0-e9d4-4d29-9ae8-a7abc6cd6f96" + "WESTUS:20150813T074647Z:29fa9fec-6904-4378-b655-a0d00e64f0d7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cordis/artifacttypes/vmimage/offers/myfidoc/skus/myfidoc/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZGlzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbXlmaWRvYy9za3VzL215Zmlkb2MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/commvault/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29tbXZhdWx0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis/ArtifactTypes/VMImage/Offers/myfidoc/Skus/myfidoc/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault/ArtifactTypes/VMImage/Offers/commvault\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "256" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25321,7 +25632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "161197d2-c9dc-4074-ae5d-c143c11ffa97" + "c4e63b6c-25cf-4646-913b-309a60a6e782" ], "Cache-Control": [ "no-cache" @@ -25331,34 +25642,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13554" + "14441" ], "x-ms-correlation-request-id": [ - "4f967cd9-eb2f-425e-bdc9-68c1ca0b2576" + "bc938fb8-f794-4b5d-b485-d2eacde0a6c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:4f967cd9-eb2f-425e-bdc9-68c1ca0b2576" + "WESTUS:20150813T074647Z:bc938fb8-f794-4b5d-b485-d2eacde0a6c6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cordis/artifacttypes/vmimage/offers/myfidoc/skus/myfidoc/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZGlzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbXlmaWRvYy9za3VzL215Zmlkb2MvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/commvault/artifacttypes/vmimage/offers/commvault/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29tbXZhdWx0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29tbXZhdWx0L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cordis\",\r\n \"name\": \"myfidoc\",\r\n \"product\": \"myfidoc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis/ArtifactTypes/VMImage/Offers/myfidoc/Skus/myfidoc/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"csmav10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault/ArtifactTypes/VMImage/Offers/commvault/Skus/csmav10\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "580" + "248" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25373,7 +25684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c45ea51-ceb2-4d39-9671-8a0685c2de05" + "863efd66-025a-49fb-af90-f599366820a6" ], "Cache-Control": [ "no-cache" @@ -25383,34 +25694,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13553" + "14440" ], "x-ms-correlation-request-id": [ - "93cdf44b-e455-4527-80c5-53effc16ff90" + "0aa300eb-cd9d-4c83-85f0-a8f762f442cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:93cdf44b-e455-4527-80c5-53effc16ff90" + "WESTUS:20150813T074647Z:0aa300eb-cd9d-4c83-85f0-a8f762f442cd" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/corent-technology-pvt/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZW50LXRlY2hub2xvZ3ktcHZ0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/commvault/artifacttypes/vmimage/offers/commvault/skus/csmav10/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29tbXZhdWx0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29tbXZhdWx0L3NrdXMvY3NtYXYxMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"surpaas-analyzer-marketplace\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt/ArtifactTypes/VMImage/Offers/surpaas-analyzer-marketplace\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault/ArtifactTypes/VMImage/Offers/commvault/Skus/csmav10/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "287" + "261" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25425,7 +25736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "668e0cb8-db2c-43fb-be9a-8c2167a5e5c4" + "970079d3-39af-435a-9b3d-f8c17214b697" ], "Cache-Control": [ "no-cache" @@ -25435,34 +25746,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13552" + "14439" ], "x-ms-correlation-request-id": [ - "cfc29bde-bec8-49be-a251-e51037740da1" + "6227036f-3d37-4893-ba9b-fd57dffa1e61" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:cfc29bde-bec8-49be-a251-e51037740da1" + "WESTUS:20150813T074648Z:6227036f-3d37-4893-ba9b-fd57dffa1e61" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/corent-technology-pvt/artifacttypes/vmimage/offers/surpaas-analyzer-marketplace/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZW50LXRlY2hub2xvZ3ktcHZ0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VycGFhcy1hbmFseXplci1tYXJrZXRwbGFjZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/commvault/artifacttypes/vmimage/offers/commvault/skus/csmav10/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29tbXZhdWx0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY29tbXZhdWx0L3NrdXMvY3NtYXYxMC92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent_surpaas_analyzer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt/ArtifactTypes/VMImage/Offers/surpaas-analyzer-marketplace/Skus/corent_surpaas_analyzer\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"commvault\",\r\n \"name\": \"csmav10\",\r\n \"product\": \"commvault\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault/ArtifactTypes/VMImage/Offers/commvault/Skus/csmav10/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "311" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25477,7 +25788,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a580777f-0e0b-4615-91ec-a287115061b0" + "575ef1fc-b7b3-480a-acd1-5330ca96a77f" ], "Cache-Control": [ "no-cache" @@ -25487,34 +25798,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13551" + "14438" ], "x-ms-correlation-request-id": [ - "f7ec4e48-211f-4f5c-ad1e-986516a7361d" + "c55cb3b6-0c87-4af0-844b-b4bd26463d34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:f7ec4e48-211f-4f5c-ad1e-986516a7361d" + "WESTUS:20150813T074648Z:c55cb3b6-0c87-4af0-844b-b4bd26463d34" ], "Date": [ - "Wed, 05 Aug 2015 21:25:12 GMT" + "Thu, 13 Aug 2015 07:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/corent-technology-pvt/artifacttypes/vmimage/offers/surpaas-analyzer-marketplace/skus/corent_surpaas_analyzer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZW50LXRlY2hub2xvZ3ktcHZ0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VycGFhcy1hbmFseXplci1tYXJrZXRwbGFjZS9za3VzL2NvcmVudF9zdXJwYWFzX2FuYWx5emVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Confer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29uZmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.53.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt/ArtifactTypes/VMImage/Offers/surpaas-analyzer-marketplace/Skus/corent_surpaas_analyzer/Versions/3.53.0\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "310" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25529,7 +25840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a208d84-f4af-4ffe-b6ec-6eb940c2bfe5" + "5f2047d6-7b80-4c5a-95f9-6b542f36d63f" ], "Cache-Control": [ "no-cache" @@ -25539,34 +25850,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13550" + "14437" ], "x-ms-correlation-request-id": [ - "0f768558-2a6e-47d2-a182-ada28ba0c692" + "b14259a9-6b99-4147-bb47-bfa9e1189c21" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:0f768558-2a6e-47d2-a182-ada28ba0c692" + "WESTUS:20150813T074648Z:b14259a9-6b99-4147-bb47-bfa9e1189c21" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/corent-technology-pvt/artifacttypes/vmimage/offers/surpaas-analyzer-marketplace/skus/corent_surpaas_analyzer/versions/3.53.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZW50LXRlY2hub2xvZ3ktcHZ0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VycGFhcy1hbmFseXplci1tYXJrZXRwbGFjZS9za3VzL2NvcmVudF9zdXJwYWFzX2FuYWx5emVyL3ZlcnNpb25zLzMuNTMuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Confer.TestSensor/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29uZmVyLlRlc3RTZW5zb3IvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"corent-technology-pvt\",\r\n \"name\": \"corent_surpaas_analyzer\",\r\n \"product\": \"surpaas-analyzer-marketplace\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.53.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt/ArtifactTypes/VMImage/Offers/surpaas-analyzer-marketplace/Skus/corent_surpaas_analyzer/Versions/3.53.0\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "570" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25581,7 +25892,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00f1616f-e113-4df7-91ec-5e20453ee4de" + "81e3ea85-0122-4ec4-a16f-d3c38a20581c" ], "Cache-Control": [ "no-cache" @@ -25591,34 +25902,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13549" + "14436" ], "x-ms-correlation-request-id": [ - "b55da978-3389-4d1b-9547-fac2a319e8ec" + "fd895300-3391-4e79-8461-f937296711ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212513Z:b55da978-3389-4d1b-9547-fac2a319e8ec" + "WESTUS:20150813T074648Z:fd895300-3391-4e79-8461-f937296711ac" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cordis/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZGlzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"myfidoc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis/ArtifactTypes/VMImage/Offers/myfidoc\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "228" + "230" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25633,7 +25944,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a391148-b842-4661-9333-452455752e7a" + "0ef9e190-3bb6-42a2-a6fc-eab6dec4fc6e" ], "Cache-Control": [ "no-cache" @@ -25643,34 +25954,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13548" + "14435" ], "x-ms-correlation-request-id": [ - "d8854698-8ab7-4088-877a-3494ed7b4c63" + "7de7c1b8-2df3-4754-948e-402e5f95ad7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:d8854698-8ab7-4088-877a-3494ed7b4c63" + "WESTUS:20150813T074648Z:7de7c1b8-2df3-4754-948e-402e5f95ad7c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cordis/artifacttypes/vmimage/offers/myfidoc/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZGlzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbXlmaWRvYy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Alpha\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Beta\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Stable\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"myfidoc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis/ArtifactTypes/VMImage/Offers/myfidoc/Skus/myfidoc\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "708" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25685,7 +25996,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b7c9bb2b-55be-433f-b0dd-24076ee16678" + "3376d6d8-5a4f-4db4-aa0d-138d58fb72d1" ], "Cache-Control": [ "no-cache" @@ -25695,34 +26006,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13547" + "14434" ], "x-ms-correlation-request-id": [ - "238cbb7f-03ad-4ef3-9785-951c95835a11" + "f5fb6f32-fc8c-426f-8600-afc9c43e0cee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:238cbb7f-03ad-4ef3-9785-951c95835a11" + "WESTUS:20150813T074648Z:f5fb6f32-fc8c-426f-8600-afc9c43e0cee" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cordis/artifacttypes/vmimage/offers/myfidoc/skus/myfidoc/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZGlzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbXlmaWRvYy9za3VzL215Zmlkb2MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"475.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/475.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"490.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/490.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"509.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/509.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"547.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/547.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"554.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/554.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/557.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"561.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/561.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"575.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/575.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"584.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/584.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"591.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/591.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"592.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/592.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"593.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/593.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"598.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/598.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"604.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/604.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/607.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"612.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/612.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"612.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/612.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"618.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/618.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"626.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/626.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/633.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"640.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/640.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/647.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"653.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/653.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"660.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/660.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"668.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/668.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"675.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/675.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/681.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"695.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/695.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"709.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/709.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"717.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/717.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/723.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/723.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"735.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/735.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"738.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/738.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"745.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/745.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"752.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/752.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"758.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/758.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis/ArtifactTypes/VMImage/Offers/myfidoc/Skus/myfidoc/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "10163" + "256" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25737,7 +26048,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4408ae74-792a-487a-8405-a3d606049022" + "2dd0b9af-6bb1-4779-a060-7828bf0930af" ], "Cache-Control": [ "no-cache" @@ -25747,34 +26058,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13546" + "14433" ], "x-ms-correlation-request-id": [ - "99379ffe-4dca-4d80-ab1e-03e40bbc97d1" + "516e8e36-771a-46a3-baed-5660922a9600" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:99379ffe-4dca-4d80-ab1e-03e40bbc97d1" + "WESTUS:20150813T074648Z:516e8e36-771a-46a3-baed-5660922a9600" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/475.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNDc1LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cordis/artifacttypes/vmimage/offers/myfidoc/skus/myfidoc/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZGlzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbXlmaWRvYy9za3VzL215Zmlkb2MvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"475.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/475.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cordis\",\r\n \"name\": \"myfidoc\",\r\n \"product\": \"myfidoc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis/ArtifactTypes/VMImage/Offers/myfidoc/Skus/myfidoc/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "356" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25789,7 +26100,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a580d2ad-6046-478f-b368-1e65fe0dbd3f" + "291b85a1-9629-4a44-969c-cd40108f6ba8" ], "Cache-Control": [ "no-cache" @@ -25799,34 +26110,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13545" + "14432" ], "x-ms-correlation-request-id": [ - "f9f51e89-f778-4057-a7e4-d5c4ac4e3f6a" + "49ae73af-5f5b-4ee0-a200-c51c558336e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:f9f51e89-f778-4057-a7e4-d5c4ac4e3f6a" + "WESTUS:20150813T074648Z:49ae73af-5f5b-4ee0-a200-c51c558336e0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/490.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNDkwLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/corent-technology-pvt/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZW50LXRlY2hub2xvZ3ktcHZ0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"490.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/490.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"surpaas-analyzer-marketplace\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt/ArtifactTypes/VMImage/Offers/surpaas-analyzer-marketplace\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "356" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25841,7 +26152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "952c747e-2668-4832-b3cb-056011b4d2d9" + "8ac5bca4-e69d-4e5f-835a-f420d5c118b5" ], "Cache-Control": [ "no-cache" @@ -25851,34 +26162,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13544" + "14431" ], "x-ms-correlation-request-id": [ - "349a0569-e50d-49c8-87e0-571cdae83b64" + "54aab4cb-518e-4a58-8fad-98c1dd7125c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:349a0569-e50d-49c8-87e0-571cdae83b64" + "WESTUS:20150813T074649Z:54aab4cb-518e-4a58-8fad-98c1dd7125c4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/509.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTA5LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/corent-technology-pvt/artifacttypes/vmimage/offers/surpaas-analyzer-marketplace/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZW50LXRlY2hub2xvZ3ktcHZ0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VycGFhcy1hbmFseXplci1tYXJrZXRwbGFjZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"509.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/509.1.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent_surpaas_analyzer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt/ArtifactTypes/VMImage/Offers/surpaas-analyzer-marketplace/Skus/corent_surpaas_analyzer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "356" + "311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25893,7 +26204,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b40eec8-b0c4-4bf5-b4e0-4ae6ebb92520" + "a0407ab8-3fe6-4df1-9c39-a993b307b648" ], "Cache-Control": [ "no-cache" @@ -25903,34 +26214,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13543" + "14430" ], "x-ms-correlation-request-id": [ - "a5bdf8c2-e8cf-4eff-ad28-3a0002b73436" + "b4eb1732-5d77-4cd2-8abe-7f49d6e4df54" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:a5bdf8c2-e8cf-4eff-ad28-3a0002b73436" + "WESTUS:20150813T074649Z:b4eb1732-5d77-4cd2-8abe-7f49d6e4df54" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/522.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTIyLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/corent-technology-pvt/artifacttypes/vmimage/offers/surpaas-analyzer-marketplace/skus/corent_surpaas_analyzer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZW50LXRlY2hub2xvZ3ktcHZ0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VycGFhcy1hbmFseXplci1tYXJrZXRwbGFjZS9za3VzL2NvcmVudF9zdXJwYWFzX2FuYWx5emVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.53.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt/ArtifactTypes/VMImage/Offers/surpaas-analyzer-marketplace/Skus/corent_surpaas_analyzer/Versions/3.53.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "356" + "310" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25945,7 +26256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "627b9efb-6161-4862-b657-197512025d1e" + "3b698037-3e62-43d3-bd93-540a5360933a" ], "Cache-Control": [ "no-cache" @@ -25955,34 +26266,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13542" + "14429" ], "x-ms-correlation-request-id": [ - "b5018507-c427-4eb0-a762-8e43ef3889ea" + "3f29ce07-d549-4fc7-8fd2-bd89f64d443c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:b5018507-c427-4eb0-a762-8e43ef3889ea" + "WESTUS:20150813T074649Z:3f29ce07-d549-4fc7-8fd2-bd89f64d443c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/522.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTIyLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/corent-technology-pvt/artifacttypes/vmimage/offers/surpaas-analyzer-marketplace/skus/corent_surpaas_analyzer/versions/3.53.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29yZW50LXRlY2hub2xvZ3ktcHZ0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3VycGFhcy1hbmFseXplci1tYXJrZXRwbGFjZS9za3VzL2NvcmVudF9zdXJwYWFzX2FuYWx5emVyL3ZlcnNpb25zLzMuNTMuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"corent-technology-pvt\",\r\n \"name\": \"corent_surpaas_analyzer\",\r\n \"product\": \"surpaas-analyzer-marketplace\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.53.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt/ArtifactTypes/VMImage/Offers/surpaas-analyzer-marketplace/Skus/corent_surpaas_analyzer/Versions/3.53.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "356" + "570" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25997,7 +26308,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0cceab4-83cf-487d-a9a1-7e464a1e3646" + "4be1111d-d235-4947-a4cb-de81dce47af3" ], "Cache-Control": [ "no-cache" @@ -26007,34 +26318,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13541" + "14428" ], "x-ms-correlation-request-id": [ - "4563c2f6-181b-4cb0-8a83-3d313e45f1fe" + "e6b6146a-6523-4595-8ca6-d2aa276d296e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:4563c2f6-181b-4cb0-8a83-3d313e45f1fe" + "WESTUS:20150813T074649Z:e6b6146a-6523-4595-8ca6-d2aa276d296e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/522.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTIyLjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.2.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "356" + "228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -26049,7 +26360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8b93590-ab52-49a8-95b7-c7eb856dc62e" + "2dde0a5e-6c65-43b3-a251-b13df0b5eef8" ], "Cache-Control": [ "no-cache" @@ -26059,34 +26370,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13540" + "14427" ], "x-ms-correlation-request-id": [ - "0a5ba281-98ba-4e76-93c0-1e4261dc6e51" + "32f4d7cc-d844-4907-a958-800b1e5f9ede" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:0a5ba281-98ba-4e76-93c0-1e4261dc6e51" + "WESTUS:20150813T074649Z:32f4d7cc-d844-4907-a958-800b1e5f9ede" ], "Date": [ - "Wed, 05 Aug 2015 21:25:13 GMT" + "Thu, 13 Aug 2015 07:46:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/547.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTQ3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"547.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/547.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Alpha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Beta\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Stable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "356" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -26101,7 +26412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3408977f-5ce5-4e20-a900-d8d247a1a987" + "cf3b1f15-8ccb-4c22-a83f-51c1c2a098ba" ], "Cache-Control": [ "no-cache" @@ -26111,34 +26422,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13539" + "14426" ], "x-ms-correlation-request-id": [ - "dc4dda20-9643-40ff-96df-14fe25f6b7e8" + "5a4e2043-08db-42d4-bd8e-c359f824eba8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212514Z:dc4dda20-9643-40ff-96df-14fe25f6b7e8" + "WESTUS:20150813T074650Z:5a4e2043-08db-42d4-bd8e-c359f824eba8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/554.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTU0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"554.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/554.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"475.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/475.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"490.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/490.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"509.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/509.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"547.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/547.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"554.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/554.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/557.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"561.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/561.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"575.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/575.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"584.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/584.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"591.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/591.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"592.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/592.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"593.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/593.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"598.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/598.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"604.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/604.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/607.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"612.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/612.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"612.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/612.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"618.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/618.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"626.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/626.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/633.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"640.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/640.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/647.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"653.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/653.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"660.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/660.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"668.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/668.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"675.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/675.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/681.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"695.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/695.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"709.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/709.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"717.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/717.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/723.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/723.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"735.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/735.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"738.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/738.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"745.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/745.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"752.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/752.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"758.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/758.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"766.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/766.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "356" + "10417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -26153,7 +26464,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1400f173-fd5a-4c1b-b6d5-7f0321db262a" + "12ac33a8-48a1-471d-aa47-a1ff3bd67b4a" ], "Cache-Control": [ "no-cache" @@ -26163,31 +26474,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13538" + "14425" ], "x-ms-correlation-request-id": [ - "b1bdb4d0-56ae-49b1-9b5f-de2b429cd2ca" + "5dd1a312-6c77-4e20-8f8a-ae46178dd30e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:b1bdb4d0-56ae-49b1-9b5f-de2b429cd2ca" + "WESTUS:20150813T074650Z:5dd1a312-6c77-4e20-8f8a-ae46178dd30e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/557.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTU3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/475.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNDc1LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/557.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"475.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/475.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26205,7 +26516,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9cb48ebe-cf15-45c8-95a2-8bd31f4dfb93" + "548f2dd5-44a8-4080-9280-463fcd73fd03" ], "Cache-Control": [ "no-cache" @@ -26215,31 +26526,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13537" + "14424" ], "x-ms-correlation-request-id": [ - "ff9532b9-702c-4c78-987f-274ec0567df8" + "9089b80a-8473-4f68-9dcd-9c2849bb06b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:ff9532b9-702c-4c78-987f-274ec0567df8" + "WESTUS:20150813T074650Z:9089b80a-8473-4f68-9dcd-9c2849bb06b9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/561.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTYxLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/490.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNDkwLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"561.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/561.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"490.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/490.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26257,7 +26568,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d00d1561-b8d7-4559-8361-3f07b9a7e828" + "fac44024-bfba-45a8-a62c-9bf891512aaa" ], "Cache-Control": [ "no-cache" @@ -26267,31 +26578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13536" + "14423" ], "x-ms-correlation-request-id": [ - "86eb5cbe-638f-44ad-b10e-3c86b533a1f2" + "85c14805-37e1-47c5-88bf-486d694b5bc3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:86eb5cbe-638f-44ad-b10e-3c86b533a1f2" + "WESTUS:20150813T074650Z:85c14805-37e1-47c5-88bf-486d694b5bc3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/575.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTc1LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/509.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTA5LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"575.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/575.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"509.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/509.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26309,7 +26620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4ebf6ed-00ca-4a62-bcd7-844762aa79a2" + "ccf1e62f-e105-47d1-b78d-c47c4c8daa95" ], "Cache-Control": [ "no-cache" @@ -26319,31 +26630,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13535" + "14422" ], "x-ms-correlation-request-id": [ - "8cc76d11-ef8a-4f11-9aa1-65d0143c2f4c" + "4f59e7ce-5568-476f-8511-2f95fc0977da" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:8cc76d11-ef8a-4f11-9aa1-65d0143c2f4c" + "WESTUS:20150813T074650Z:4f59e7ce-5568-476f-8511-2f95fc0977da" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/584.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTg0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/522.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTIyLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"584.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/584.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26361,7 +26672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b7c9bc2b-06f8-40ac-9a81-81d2c478710d" + "5e61631a-99f3-40dd-90e9-c8a7503ad82d" ], "Cache-Control": [ "no-cache" @@ -26371,31 +26682,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13534" + "14421" ], "x-ms-correlation-request-id": [ - "d904b85c-9a73-401d-918c-e9e4adb66ec0" + "4810706a-e66c-4db7-955c-cb35e10d2a52" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:d904b85c-9a73-401d-918c-e9e4adb66ec0" + "WESTUS:20150813T074650Z:4810706a-e66c-4db7-955c-cb35e10d2a52" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/591.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTkxLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/522.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTIyLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"591.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/591.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26413,7 +26724,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e7286e5-53b6-44e3-b320-041175c65073" + "4a24a071-38c3-4757-a2a6-6835aa7b4143" ], "Cache-Control": [ "no-cache" @@ -26423,31 +26734,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13533" + "14420" ], "x-ms-correlation-request-id": [ - "e5ab05bd-12e2-4b16-9115-b8af96e3e0f2" + "376524f9-bff5-401b-b56b-276f60b7ea88" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:e5ab05bd-12e2-4b16-9115-b8af96e3e0f2" + "WESTUS:20150813T074650Z:376524f9-bff5-401b-b56b-276f60b7ea88" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/592.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTkyLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/522.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTIyLjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"592.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/592.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/522.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26465,7 +26776,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b442a44-ab05-47fd-b519-3bfdadd6eb2d" + "7c475e62-ec6a-4c48-b0d4-5a649061e450" ], "Cache-Control": [ "no-cache" @@ -26475,31 +26786,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13532" + "14419" ], "x-ms-correlation-request-id": [ - "cdf285ba-a9f1-447b-8f3f-b8917b4f93f6" + "60980f2f-4371-40b2-8ffc-4c0997897cba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:cdf285ba-a9f1-447b-8f3f-b8917b4f93f6" + "WESTUS:20150813T074650Z:60980f2f-4371-40b2-8ffc-4c0997897cba" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/593.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTkzLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/547.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTQ3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"593.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/593.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"547.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/547.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26517,7 +26828,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d000d6f-d63b-48be-876e-84c43e9329eb" + "3a830bf9-2c61-432e-8638-bb9dc6a1b032" ], "Cache-Control": [ "no-cache" @@ -26527,31 +26838,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13531" + "14418" ], "x-ms-correlation-request-id": [ - "3b139a37-33fb-412b-a94c-c1b7f191f764" + "9917ca3f-9fd2-487c-ac22-3730dc8821b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:3b139a37-33fb-412b-a94c-c1b7f191f764" + "WESTUS:20150813T074650Z:9917ca3f-9fd2-487c-ac22-3730dc8821b6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:14 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/598.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTk4LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/554.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTU0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"598.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/598.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"554.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/554.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26569,7 +26880,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a9284c5-c7ec-4ae0-96f4-c982514dc086" + "3c77c8e7-efcc-460c-b304-0316c747f0ee" ], "Cache-Control": [ "no-cache" @@ -26579,31 +26890,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13530" + "14417" ], "x-ms-correlation-request-id": [ - "5aa33b88-2d6b-478f-a56c-7147ba8821b3" + "8b4e7d5c-c1c2-4547-8306-97ebcff12ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:5aa33b88-2d6b-478f-a56c-7147ba8821b3" + "WESTUS:20150813T074650Z:8b4e7d5c-c1c2-4547-8306-97ebcff12ee5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/604.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjA0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/557.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTU3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"604.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/604.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/557.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26621,7 +26932,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44660482-2198-49f0-a3e7-09e1798b60bc" + "e8e5ae55-e082-4fd8-a4c2-cd3b98f93335" ], "Cache-Control": [ "no-cache" @@ -26631,31 +26942,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13529" + "14416" ], "x-ms-correlation-request-id": [ - "bd7b0a0f-d773-42d0-a65e-a7356bbf07c3" + "119343e9-21e8-40d0-816a-0909e6ae9070" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212515Z:bd7b0a0f-d773-42d0-a65e-a7356bbf07c3" + "WESTUS:20150813T074651Z:119343e9-21e8-40d0-816a-0909e6ae9070" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/607.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjA3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/561.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTYxLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/607.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"561.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/561.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26673,7 +26984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ddac4a3-7354-494e-87ec-1fde40f1ad46" + "8ebe2f15-cdff-4ac9-ac90-0cfc099bcd83" ], "Cache-Control": [ "no-cache" @@ -26683,31 +26994,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13528" + "14415" ], "x-ms-correlation-request-id": [ - "ac5d147c-74cf-4905-877e-8349d01ff661" + "fd95fd62-1632-45c4-af56-8da24bf6459b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:ac5d147c-74cf-4905-877e-8349d01ff661" + "WESTUS:20150813T074651Z:fd95fd62-1632-45c4-af56-8da24bf6459b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/612.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjEyLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/575.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTc1LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"612.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/612.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"575.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/575.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26725,7 +27036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f5365b4-8fe5-4499-8683-c49047da563f" + "ebe96b0a-be67-460b-9d4a-4ddad1a47d3e" ], "Cache-Control": [ "no-cache" @@ -26735,31 +27046,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13527" + "14414" ], "x-ms-correlation-request-id": [ - "9d5dda00-7c0c-4971-9e74-d4616444c498" + "c9d6e965-5369-41e0-a1fe-13d0c9ade5b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:9d5dda00-7c0c-4971-9e74-d4616444c498" + "WESTUS:20150813T074651Z:c9d6e965-5369-41e0-a1fe-13d0c9ade5b9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/612.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjEyLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/584.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTg0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"612.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/612.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"584.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/584.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26777,7 +27088,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3ad47c7-cbd3-46d1-8fd2-64e2bbeda5a4" + "f2c7a4b8-975e-443c-b73c-a0b9e6a8343a" ], "Cache-Control": [ "no-cache" @@ -26787,31 +27098,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13526" + "14413" ], "x-ms-correlation-request-id": [ - "1e0c027b-6ae1-4d81-a96c-df46e8e947b7" + "19daaca7-8694-4a3a-b5f0-8884485d965d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:1e0c027b-6ae1-4d81-a96c-df46e8e947b7" + "WESTUS:20150813T074651Z:19daaca7-8694-4a3a-b5f0-8884485d965d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/618.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjE4LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/591.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTkxLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"618.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/618.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"591.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/591.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26829,7 +27140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3cc33d6f-35d4-4172-91e4-1e55b9adf129" + "eee0d7c1-b57b-4847-9cfd-519e9ac97c32" ], "Cache-Control": [ "no-cache" @@ -26839,31 +27150,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13525" + "14412" ], "x-ms-correlation-request-id": [ - "ffccf124-dff0-412b-af79-c8f3e23f0804" + "d4746581-65c2-42a1-b3fd-1fb70f831676" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:ffccf124-dff0-412b-af79-c8f3e23f0804" + "WESTUS:20150813T074651Z:d4746581-65c2-42a1-b3fd-1fb70f831676" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/626.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjI2LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/592.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTkyLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"626.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/626.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"592.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/592.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26881,7 +27192,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f83d4d06-bdf1-4221-a18a-0a099aefb8f0" + "84355d73-0fe6-42b1-95e1-98908950a4d2" ], "Cache-Control": [ "no-cache" @@ -26891,31 +27202,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13524" + "14411" ], "x-ms-correlation-request-id": [ - "cb2590fb-4191-4446-88cc-bd75e7911d5c" + "869b99fa-35ac-4256-a5b5-3ce7e65ac603" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:cb2590fb-4191-4446-88cc-bd75e7911d5c" + "WESTUS:20150813T074651Z:869b99fa-35ac-4256-a5b5-3ce7e65ac603" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/633.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjMzLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/593.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTkzLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/633.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"593.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/593.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26933,7 +27244,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7a82894-25e0-4fd9-b6e8-dc4c003671df" + "75c85367-25e8-48b5-b702-7f65c5d7e142" ], "Cache-Control": [ "no-cache" @@ -26943,31 +27254,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13523" + "14410" ], "x-ms-correlation-request-id": [ - "c97a11e3-061c-418b-807f-4f5b15a1b24c" + "5eed1b2f-29bc-4484-812a-62fd59f0305e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:c97a11e3-061c-418b-807f-4f5b15a1b24c" + "WESTUS:20150813T074651Z:5eed1b2f-29bc-4484-812a-62fd59f0305e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/640.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjQwLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/598.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNTk4LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"640.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/640.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"598.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/598.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -26985,7 +27296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "865a3974-9fbc-44aa-8b76-c24e69390038" + "ea060637-9178-473b-b35d-c80fda1f557c" ], "Cache-Control": [ "no-cache" @@ -26995,31 +27306,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13522" + "14409" ], "x-ms-correlation-request-id": [ - "4a9b6ef2-7d08-47fb-8ea0-cd91ce8741a6" + "a177be7e-be37-4dc6-bfe2-28991176007a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:4a9b6ef2-7d08-47fb-8ea0-cd91ce8741a6" + "WESTUS:20150813T074651Z:a177be7e-be37-4dc6-bfe2-28991176007a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/647.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjQ3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/604.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjA0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/647.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"604.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/604.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27037,7 +27348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c10ad859-558f-4886-871c-d1c1a229739d" + "e00eb604-8afd-4df1-8b6f-58d36a2a8e15" ], "Cache-Control": [ "no-cache" @@ -27047,31 +27358,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13521" + "14408" ], "x-ms-correlation-request-id": [ - "df73b582-b807-4691-87e3-6c8d4b83408c" + "517b1d03-170a-40c8-ba4c-a61e420c3a15" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:df73b582-b807-4691-87e3-6c8d4b83408c" + "WESTUS:20150813T074651Z:517b1d03-170a-40c8-ba4c-a61e420c3a15" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/653.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjUzLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/607.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjA3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"653.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/653.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/607.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27089,7 +27400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bb1f29b-63cc-40aa-acac-ac207947903d" + "9d81a097-d595-42cf-9789-252aa92d15da" ], "Cache-Control": [ "no-cache" @@ -27099,31 +27410,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13520" + "14407" ], "x-ms-correlation-request-id": [ - "877f187e-9e48-4ce4-a717-33807961c5c6" + "69eb1c17-bd2c-4ff5-a929-d83e9221cd9b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:877f187e-9e48-4ce4-a717-33807961c5c6" + "WESTUS:20150813T074651Z:69eb1c17-bd2c-4ff5-a929-d83e9221cd9b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:15 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/660.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjYwLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/612.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjEyLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"660.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/660.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"612.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/612.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27141,7 +27452,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60738ad1-d6c7-42e8-bcd5-51b143449617" + "4d642634-1688-43e1-a795-5fa9969f29f7" ], "Cache-Control": [ "no-cache" @@ -27151,31 +27462,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13519" + "14406" ], "x-ms-correlation-request-id": [ - "c8e541b0-649b-4a68-9800-7771b9bd4cd3" + "f083a70d-aff3-4f63-8c38-832c022fade6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212516Z:c8e541b0-649b-4a68-9800-7771b9bd4cd3" + "WESTUS:20150813T074651Z:f083a70d-aff3-4f63-8c38-832c022fade6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/668.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjY4LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/612.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjEyLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"668.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/668.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"612.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/612.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27193,7 +27504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddda0711-b307-497a-af2a-95a22d733af0" + "680bcc45-1de3-458a-8fa8-1383031ff04a" ], "Cache-Control": [ "no-cache" @@ -27203,31 +27514,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13518" + "14405" ], "x-ms-correlation-request-id": [ - "d0aab2c6-a122-4bf9-a7cf-6ea987f2af0c" + "55a3176d-fdec-4e29-bd75-a13694ffce32" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:d0aab2c6-a122-4bf9-a7cf-6ea987f2af0c" + "WESTUS:20150813T074652Z:55a3176d-fdec-4e29-bd75-a13694ffce32" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/675.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjc1LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/618.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjE4LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"675.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/675.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"618.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/618.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27245,7 +27556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a872d10-722f-4129-9eb4-ca844f96fb72" + "5b3dee1a-628d-4f48-8d29-6c24cb764cba" ], "Cache-Control": [ "no-cache" @@ -27255,31 +27566,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13517" + "14404" ], "x-ms-correlation-request-id": [ - "dc34b473-fcc4-4f08-a2c7-3d269d012781" + "5d6eb68f-1af2-4a11-b5d9-071b317b3127" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:dc34b473-fcc4-4f08-a2c7-3d269d012781" + "WESTUS:20150813T074652Z:5d6eb68f-1af2-4a11-b5d9-071b317b3127" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/681.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjgxLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/626.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjI2LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/681.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"626.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/626.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27297,7 +27608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35345507-5820-4be3-8ab5-8e10a127a264" + "0665c488-4ac2-4f61-8962-cf0583e3ffba" ], "Cache-Control": [ "no-cache" @@ -27307,31 +27618,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13516" + "14403" ], "x-ms-correlation-request-id": [ - "25d39212-67d0-479a-a080-02d2c45f38bb" + "2020dd0f-fdb9-40b0-84f3-3dba49d1d180" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:25d39212-67d0-479a-a080-02d2c45f38bb" + "WESTUS:20150813T074652Z:2020dd0f-fdb9-40b0-84f3-3dba49d1d180" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/695.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjk1LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/633.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjMzLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"695.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/695.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/633.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27349,7 +27660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd920d2a-d669-40e3-86af-dd1888f4dbb1" + "b0f16a49-814f-4e71-baff-fae40c82d228" ], "Cache-Control": [ "no-cache" @@ -27359,31 +27670,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13515" + "14402" ], "x-ms-correlation-request-id": [ - "9869bd43-a8ae-4095-a1a0-421070bcef91" + "d9ac0722-5dab-4de4-9dd3-28965730e984" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:9869bd43-a8ae-4095-a1a0-421070bcef91" + "WESTUS:20150813T074652Z:d9ac0722-5dab-4de4-9dd3-28965730e984" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/709.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzA5LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/640.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjQwLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"709.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/709.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"640.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/640.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27401,7 +27712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2eaf9fe7-f5ee-4e9c-b64e-71d6dd3ffbfa" + "b713322e-c5a3-42e9-9937-cf7bbefb4746" ], "Cache-Control": [ "no-cache" @@ -27411,31 +27722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13514" + "14401" ], "x-ms-correlation-request-id": [ - "766b2a10-bf2c-48ac-957f-2129c98a3244" + "5fb189de-013a-4e9d-ad32-dfce41e753e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:766b2a10-bf2c-48ac-957f-2129c98a3244" + "WESTUS:20150813T074652Z:5fb189de-013a-4e9d-ad32-dfce41e753e3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/717.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzE3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/647.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjQ3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"717.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/717.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/647.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27453,7 +27764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "884ba137-d4f3-4cff-81bc-0bf118226876" + "a88d3f44-4fe1-446d-97c6-2c18e3ea509d" ], "Cache-Control": [ "no-cache" @@ -27463,31 +27774,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13513" + "14400" ], "x-ms-correlation-request-id": [ - "b9f8e4bc-1c81-44a1-a860-e4a8a8dcd102" + "6c03d24f-7895-4b1f-bb72-7052dacd093b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:b9f8e4bc-1c81-44a1-a860-e4a8a8dcd102" + "WESTUS:20150813T074652Z:6c03d24f-7895-4b1f-bb72-7052dacd093b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/723.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzIzLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/653.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjUzLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/723.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"653.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/653.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27505,7 +27816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b30a873-a0ac-4213-9513-df233d3b1967" + "823471d0-3296-4c35-af55-128faf0b429f" ], "Cache-Control": [ "no-cache" @@ -27515,31 +27826,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13512" + "14399" ], "x-ms-correlation-request-id": [ - "41c4a067-d470-4e2b-adca-df4560483d55" + "de61d9bc-679f-4d5f-aa24-da8bd63986d7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:41c4a067-d470-4e2b-adca-df4560483d55" + "WESTUS:20150813T074652Z:de61d9bc-679f-4d5f-aa24-da8bd63986d7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/723.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzIzLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/660.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjYwLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/723.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"660.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/660.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27557,7 +27868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfcae99c-23c7-436f-8880-204fbeb9bfaf" + "08308911-ded5-47fe-9992-819348846bec" ], "Cache-Control": [ "no-cache" @@ -27567,31 +27878,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13511" + "14398" ], "x-ms-correlation-request-id": [ - "6f60721c-18d5-421d-bd2b-9ec71c667509" + "7c53b04d-e27d-4526-8abb-71670179f3fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:6f60721c-18d5-421d-bd2b-9ec71c667509" + "WESTUS:20150813T074652Z:7c53b04d-e27d-4526-8abb-71670179f3fc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/735.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzM1LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/668.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjY4LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"735.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/735.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"668.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/668.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27609,7 +27920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15d833d8-92df-4426-8751-c6a15f583df9" + "1e0225c6-57ba-45d7-b224-a696837ae2d8" ], "Cache-Control": [ "no-cache" @@ -27619,31 +27930,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13510" + "14397" ], "x-ms-correlation-request-id": [ - "3e962d0e-cc7b-4034-8e59-100c726164d9" + "b2dd5983-0adb-45e9-9555-7739bb47fd18" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:3e962d0e-cc7b-4034-8e59-100c726164d9" + "WESTUS:20150813T074652Z:b2dd5983-0adb-45e9-9555-7739bb47fd18" ], "Date": [ - "Wed, 05 Aug 2015 21:25:16 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/738.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzM4LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/675.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjc1LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"738.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/738.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"675.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/675.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27661,7 +27972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae9cd13a-7a4e-4139-a9f8-b1e1b230bf35" + "eb696a2b-1840-4fa3-9111-7e2da237cfe5" ], "Cache-Control": [ "no-cache" @@ -27671,31 +27982,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13509" + "14396" ], "x-ms-correlation-request-id": [ - "4da5b26f-3723-4968-8204-923d22c75904" + "8c67244a-574a-48ef-bfd1-7979adf4e654" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212517Z:4da5b26f-3723-4968-8204-923d22c75904" + "WESTUS:20150813T074652Z:8c67244a-574a-48ef-bfd1-7979adf4e654" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/745.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzQ1LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/681.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjgxLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"745.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/745.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/681.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27713,7 +28024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c06f23c-2c6c-4c6b-b4c5-b7f56d1477ae" + "ab209b3f-821e-4fc6-86b5-697fdea276de" ], "Cache-Control": [ "no-cache" @@ -27723,31 +28034,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13508" + "14395" ], "x-ms-correlation-request-id": [ - "346c9a82-2428-492b-8c2c-8550102cfccc" + "5ad58011-31b9-41db-aeb7-4120baa1638c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:346c9a82-2428-492b-8c2c-8550102cfccc" + "WESTUS:20150813T074653Z:5ad58011-31b9-41db-aeb7-4120baa1638c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/752.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzUyLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/695.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNjk1LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"752.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/752.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"695.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/695.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27765,7 +28076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2730939-1b76-482a-81aa-10f69c98d62d" + "fe1dd319-c0a8-433b-a8c4-fa3813164f41" ], "Cache-Control": [ "no-cache" @@ -27775,31 +28086,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13507" + "14394" ], "x-ms-correlation-request-id": [ - "c3acff51-75a5-40de-87c0-8a7e235be519" + "7eec4d5d-6d67-4d47-ba2b-253988b80263" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:c3acff51-75a5-40de-87c0-8a7e235be519" + "WESTUS:20150813T074653Z:7eec4d5d-6d67-4d47-ba2b-253988b80263" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/758.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzU4LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/709.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzA5LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"758.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/758.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"709.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/709.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "356" @@ -27817,7 +28128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bdc4190-e398-4cc2-af24-5dc75fc2be2d" + "8cad9de6-f664-400a-b9ee-d36940df1194" ], "Cache-Control": [ "no-cache" @@ -27827,34 +28138,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13506" + "14393" ], "x-ms-correlation-request-id": [ - "d42940ce-6b0e-47c9-9892-2788a676d152" + "cccba4bb-c107-4d18-a8dd-788bf689dafd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:d42940ce-6b0e-47c9-9892-2788a676d152" + "WESTUS:20150813T074653Z:cccba4bb-c107-4d18-a8dd-788bf689dafd" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/717.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzE3LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.3.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"584.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/584.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/607.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"612.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/612.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/633.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/647.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"668.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/668.3.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/681.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"695.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/695.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"695.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/695.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"717.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/717.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/723.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/723.3.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"717.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/717.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5822" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27869,7 +28180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b9af9a0-3205-42dd-a788-2f055473c288" + "6cec5d2f-d461-4644-bd4e-5239fe5abf33" ], "Cache-Control": [ "no-cache" @@ -27879,34 +28190,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13505" + "14392" ], "x-ms-correlation-request-id": [ - "50ed224c-e2ac-4fe5-bd75-3e25bd193bdf" + "d5c2070b-981d-44fa-b9ed-268b0617fd40" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:50ed224c-e2ac-4fe5-bd75-3e25bd193bdf" + "WESTUS:20150813T074653Z:d5c2070b-981d-44fa-b9ed-268b0617fd40" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/494.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy80OTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/723.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzIzLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/723.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27921,7 +28232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3733117b-d17f-4993-a9ec-c6ddc0156fb9" + "54b92fd0-137d-408b-a428-fb5e54cde377" ], "Cache-Control": [ "no-cache" @@ -27931,34 +28242,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13504" + "14391" ], "x-ms-correlation-request-id": [ - "9b449141-c3a1-4e42-8ab0-ed09a62f9c5f" + "1363973e-0279-4420-a08e-e8ac87fac233" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:9b449141-c3a1-4e42-8ab0-ed09a62f9c5f" + "WESTUS:20150813T074653Z:1363973e-0279-4420-a08e-e8ac87fac233" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/494.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy80OTQuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/723.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzIzLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/723.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27973,7 +28284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e30fbac-508b-48e5-b41d-80b8f3fa4c6d" + "58a557a0-e5a7-4446-b89f-1e071b649299" ], "Cache-Control": [ "no-cache" @@ -27983,34 +28294,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13503" + "14390" ], "x-ms-correlation-request-id": [ - "bb46e2b7-53d5-4c28-9f99-8977fe99eb35" + "113bf3bf-b497-44ea-9516-c0e0e3982c54" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:bb46e2b7-53d5-4c28-9f99-8977fe99eb35" + "WESTUS:20150813T074653Z:113bf3bf-b497-44ea-9516-c0e0e3982c54" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/494.4.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy80OTQuNC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/735.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzM1LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.4.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"735.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/735.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28025,7 +28336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe53a1b5-4e16-4cde-b5a5-009d0727141c" + "dd4b56f4-e440-4662-9585-539fb789b58e" ], "Cache-Control": [ "no-cache" @@ -28035,34 +28346,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13502" + "14389" ], "x-ms-correlation-request-id": [ - "46d86672-91d3-462c-9753-37dd5849df3a" + "e33e407e-42e3-4216-b921-ee50b023dbfa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:46d86672-91d3-462c-9753-37dd5849df3a" + "WESTUS:20150813T074653Z:e33e407e-42e3-4216-b921-ee50b023dbfa" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/494.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy80OTQuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/738.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzM4LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"738.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/738.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28077,7 +28388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "408d5c5e-9dbd-44fd-a4dc-92215890614f" + "7b277d66-3827-44c0-b0a7-e285e18c8ac8" ], "Cache-Control": [ "no-cache" @@ -28087,34 +28398,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13501" + "14388" ], "x-ms-correlation-request-id": [ - "21c5755c-97d6-4056-af90-410b6cbdb5de" + "f52589dd-7308-421e-8a49-e721ac0c4ec0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:21c5755c-97d6-4056-af90-410b6cbdb5de" + "WESTUS:20150813T074653Z:f52589dd-7308-421e-8a49-e721ac0c4ec0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/522.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81MjIuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/745.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzQ1LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"745.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/745.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28129,7 +28440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a24f158d-652c-43d5-8bbe-d3a099ffbd8b" + "5829bea1-265c-4d97-ab90-ee1cbf37f287" ], "Cache-Control": [ "no-cache" @@ -28139,34 +28450,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13500" + "14387" ], "x-ms-correlation-request-id": [ - "ca63831e-5c15-467f-b79f-f334816e55b8" + "59027cbb-18d7-4455-b216-36f659a6366f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:ca63831e-5c15-467f-b79f-f334816e55b8" + "WESTUS:20150813T074653Z:59027cbb-18d7-4455-b216-36f659a6366f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/522.3.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81MjIuMy4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/752.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzUyLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.3.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"752.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/752.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28181,7 +28492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df3c2731-88a6-44e3-97aa-88ba89869c48" + "6d5732b2-2f4f-4d07-8692-34f244e171cc" ], "Cache-Control": [ "no-cache" @@ -28191,34 +28502,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13499" + "14386" ], "x-ms-correlation-request-id": [ - "6785c69c-2f61-4dff-b9c9-fb66759affed" + "21347a30-b3ea-4823-91f7-39c0493e1fad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212518Z:6785c69c-2f61-4dff-b9c9-fb66759affed" + "WESTUS:20150813T074653Z:21347a30-b3ea-4823-91f7-39c0493e1fad" ], "Date": [ - "Wed, 05 Aug 2015 21:25:17 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/522.4.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81MjIuNC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/758.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzU4LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.4.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"758.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/758.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28233,7 +28544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5221dcc7-79e0-487d-9f61-3cc8934a7b54" + "d1ed8b00-36a9-4203-a01c-4bd27fdacf45" ], "Cache-Control": [ "no-cache" @@ -28243,34 +28554,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13498" + "14385" ], "x-ms-correlation-request-id": [ - "fe42ff9c-33ac-4858-b226-bab284fcb26c" + "893e8006-1476-41c9-956e-b262f2993517" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:fe42ff9c-33ac-4858-b226-bab284fcb26c" + "WESTUS:20150813T074654Z:893e8006-1476-41c9-956e-b262f2993517" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/522.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81MjIuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Alpha/versions/766.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQWxwaGEvdmVyc2lvbnMvNzY2LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"766.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Alpha/Versions/766.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28285,7 +28596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b97ef611-408c-46aa-b8f7-23c031333dc8" + "6a98c39e-46de-404a-8ef7-acd598a6f6ac" ], "Cache-Control": [ "no-cache" @@ -28295,34 +28606,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13497" + "14384" ], "x-ms-correlation-request-id": [ - "e99db35d-2f74-4796-9216-ba22bf9d17b6" + "346803e2-b696-4888-8f99-3d21f2683271" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:e99db35d-2f74-4796-9216-ba22bf9d17b6" + "WESTUS:20150813T074654Z:346803e2-b696-4888-8f99-3d21f2683271" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/557.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81NTcuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.3.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"584.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/584.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/607.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"612.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/612.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/633.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/647.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"668.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/668.3.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/681.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"695.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/695.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"695.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/695.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"717.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/717.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/723.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/723.3.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "355" + "5822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28337,7 +28648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4c8d44c-1d68-4fef-b427-e2dde5d50d50" + "34d83413-9d05-4807-b26c-109053a30893" ], "Cache-Control": [ "no-cache" @@ -28347,31 +28658,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13496" + "14383" ], "x-ms-correlation-request-id": [ - "41cef5cc-bb11-47b1-a49a-11f1f405347f" + "4872040e-dcb3-4e8e-86d6-88b01d493f53" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:41cef5cc-bb11-47b1-a49a-11f1f405347f" + "WESTUS:20150813T074654Z:4872040e-dcb3-4e8e-86d6-88b01d493f53" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/557.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81NTcuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/494.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy80OTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28389,7 +28700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "106ceb3a-341f-47ac-b306-260d3a4bc737" + "bdccf648-30ac-43bd-8e11-c93df35eafd2" ], "Cache-Control": [ "no-cache" @@ -28399,31 +28710,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13495" + "14382" ], "x-ms-correlation-request-id": [ - "47992e95-1486-4690-a267-2cfc9637e9ff" + "b58d3536-3a81-45b9-b22d-c6b4902c2a9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:47992e95-1486-4690-a267-2cfc9637e9ff" + "WESTUS:20150813T074654Z:b58d3536-3a81-45b9-b22d-c6b4902c2a9f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/557.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81NTcuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/494.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy80OTQuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28441,7 +28752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70c95ee7-aa2f-4988-91c2-34745a8f1431" + "94f5c822-e194-4104-b1d0-c4bcb921468d" ], "Cache-Control": [ "no-cache" @@ -28451,31 +28762,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13494" + "14381" ], "x-ms-correlation-request-id": [ - "d4ed32c8-0266-4f20-8b1f-2844d4965b00" + "28015380-88e1-40f0-b99f-e918243933cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:d4ed32c8-0266-4f20-8b1f-2844d4965b00" + "WESTUS:20150813T074654Z:28015380-88e1-40f0-b99f-e918243933cc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/584.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81ODQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/494.4.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy80OTQuNC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"584.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/584.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.4.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28493,7 +28804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36d05534-bfd3-4ce6-97e8-ad64340926cc" + "416c51c4-2e66-469c-a27a-61334d815eaa" ], "Cache-Control": [ "no-cache" @@ -28503,31 +28814,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13493" + "14380" ], "x-ms-correlation-request-id": [ - "d20752e6-09e0-4044-83e2-2271aa143bf8" + "ad463f51-f099-4813-96f3-31413e56362b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:d20752e6-09e0-4044-83e2-2271aa143bf8" + "WESTUS:20150813T074654Z:ad463f51-f099-4813-96f3-31413e56362b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/607.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82MDcuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/494.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy80OTQuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/607.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/494.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28545,7 +28856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60f99b95-6f03-4616-ac44-a633480ad07d" + "a09af298-aee2-4f40-a192-5eadd1e240b4" ], "Cache-Control": [ "no-cache" @@ -28555,31 +28866,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13492" + "14379" ], "x-ms-correlation-request-id": [ - "97c0d9ac-f877-4032-839d-3e90f0ee76a4" + "e1dbdea5-a3e5-4184-a8b6-45b4d7be5a64" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:97c0d9ac-f877-4032-839d-3e90f0ee76a4" + "WESTUS:20150813T074654Z:e1dbdea5-a3e5-4184-a8b6-45b4d7be5a64" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/612.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82MTIuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/522.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81MjIuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"612.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/612.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28597,7 +28908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "991b5c9e-4b64-436a-8a13-9dd983c2ec9f" + "ab9a2e87-0611-472c-8f8b-c1796fb38dec" ], "Cache-Control": [ "no-cache" @@ -28607,31 +28918,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13491" + "14378" ], "x-ms-correlation-request-id": [ - "a738b706-f684-4cd0-a8f1-4a1ebb2fad91" + "652c52d9-1cc6-491e-908a-5517c9ec8f6c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:a738b706-f684-4cd0-a8f1-4a1ebb2fad91" + "WESTUS:20150813T074654Z:652c52d9-1cc6-491e-908a-5517c9ec8f6c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/633.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82MzMuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/522.3.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81MjIuMy4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/633.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.3.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28649,7 +28960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d2dc0a7-a9a2-4a43-bd40-b1bfdf7f2afc" + "be3289e5-5ed8-4e76-9e15-dd93b19ad855" ], "Cache-Control": [ "no-cache" @@ -28659,31 +28970,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13490" + "14377" ], "x-ms-correlation-request-id": [ - "680829f7-ef88-4fd0-a05e-1122986e6090" + "f552e96b-865f-4874-8cf0-e9f75dfec6d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:680829f7-ef88-4fd0-a05e-1122986e6090" + "WESTUS:20150813T074654Z:f552e96b-865f-4874-8cf0-e9f75dfec6d1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/647.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82NDcuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/522.4.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81MjIuNC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/647.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.4.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28701,7 +29012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88240ae7-68ac-4a21-ae68-54ad50da1869" + "0d92f147-e0a0-4169-87b2-7f9241d945a6" ], "Cache-Control": [ "no-cache" @@ -28711,31 +29022,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13489" + "14376" ], "x-ms-correlation-request-id": [ - "6c09f111-a205-4d4a-a817-8ccd70af191e" + "40ec10fe-20c0-4cb8-8c5f-e5ea0a98f978" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:6c09f111-a205-4d4a-a817-8ccd70af191e" + "WESTUS:20150813T074654Z:40ec10fe-20c0-4cb8-8c5f-e5ea0a98f978" ], "Date": [ - "Wed, 05 Aug 2015 21:25:18 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/668.3.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82NjguMy4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/522.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81MjIuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"668.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/668.3.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/522.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28753,7 +29064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61c507bc-29f9-491e-9fe4-b884f3b1846b" + "9b06380d-4ca1-4074-83f1-a7aff5cd801a" ], "Cache-Control": [ "no-cache" @@ -28763,31 +29074,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13488" + "14375" ], "x-ms-correlation-request-id": [ - "5ec013e6-3620-432f-bbb3-fdbb7f939fd6" + "348b28e4-b83b-4bf5-9a18-f240f533cdde" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212519Z:5ec013e6-3620-432f-bbb3-fdbb7f939fd6" + "WESTUS:20150813T074655Z:348b28e4-b83b-4bf5-9a18-f240f533cdde" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/681.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82ODEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/557.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81NTcuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/681.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28805,7 +29116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78131471-be8b-42fe-9f69-6d2913f49507" + "8ff626c0-dd1c-4cae-b0a5-29c0ca1048fc" ], "Cache-Control": [ "no-cache" @@ -28815,31 +29126,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13487" + "14374" ], "x-ms-correlation-request-id": [ - "0223b7f2-c69c-4788-bd8c-39094d3afe47" + "198551c1-70f0-4567-bd52-560abff93717" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:0223b7f2-c69c-4788-bd8c-39094d3afe47" + "WESTUS:20150813T074655Z:198551c1-70f0-4567-bd52-560abff93717" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/695.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82OTUuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/557.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81NTcuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"695.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/695.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28857,7 +29168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61d46333-2ef2-4869-97e1-d3dad6b4c38e" + "9551d20f-3f11-4eb8-b94c-56fe25cdfb16" ], "Cache-Control": [ "no-cache" @@ -28867,31 +29178,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13486" + "14373" ], "x-ms-correlation-request-id": [ - "25822591-fd4e-4e4f-98bc-d35e62cec0f4" + "b15a6885-cb80-40d9-a293-5e66fd754b07" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:25822591-fd4e-4e4f-98bc-d35e62cec0f4" + "WESTUS:20150813T074655Z:b15a6885-cb80-40d9-a293-5e66fd754b07" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/695.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82OTUuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/557.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81NTcuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"695.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/695.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/557.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28909,7 +29220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65d8239e-0ea9-4967-83a6-1954a6193d30" + "1589347d-320c-42a9-b434-0b623b64363e" ], "Cache-Control": [ "no-cache" @@ -28919,31 +29230,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13485" + "14372" ], "x-ms-correlation-request-id": [ - "2d85bc6c-1b54-491f-903f-e378d8380f4b" + "4a2c869a-9c14-4ae4-980b-f607d80799f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:2d85bc6c-1b54-491f-903f-e378d8380f4b" + "WESTUS:20150813T074655Z:4a2c869a-9c14-4ae4-980b-f607d80799f1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/717.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy83MTcuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/584.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy81ODQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"717.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/717.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"584.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/584.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -28961,7 +29272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2794818b-0aae-49cb-8436-80073105ef4b" + "342de80f-272a-45fe-802d-d7bce9ff4860" ], "Cache-Control": [ "no-cache" @@ -28971,31 +29282,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13484" + "14371" ], "x-ms-correlation-request-id": [ - "eaee43d8-89e2-4da6-acf1-3b3b61d7cd51" + "c6976b1b-2e69-468b-9c4c-d130c0d2e03a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:eaee43d8-89e2-4da6-acf1-3b3b61d7cd51" + "WESTUS:20150813T074655Z:c6976b1b-2e69-468b-9c4c-d130c0d2e03a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/723.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy83MjMuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/607.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82MDcuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/723.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/607.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -29013,7 +29324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c68fb8d-ce36-40b0-b20a-655f2764365a" + "13b8255e-83a4-4532-b27a-a1f939c3f779" ], "Cache-Control": [ "no-cache" @@ -29023,31 +29334,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13483" + "14370" ], "x-ms-correlation-request-id": [ - "898c99e4-474a-4c50-9251-4965e1a4b9fc" + "9a8b6400-ac0f-4b9d-9817-ea6d79fed8bc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:898c99e4-474a-4c50-9251-4965e1a4b9fc" + "WESTUS:20150813T074655Z:9a8b6400-ac0f-4b9d-9817-ea6d79fed8bc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/723.3.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy83MjMuMy4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/612.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82MTIuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/723.3.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"612.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/612.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -29065,7 +29376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ced9e2d3-5079-49e0-9606-d0fc004928f6" + "ba10a9a3-3295-440c-99bf-7ff681449d90" ], "Cache-Control": [ "no-cache" @@ -29075,34 +29386,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13482" + "14369" ], "x-ms-correlation-request-id": [ - "2cd37754-89e3-488d-9b73-802fbbd4644f" + "4d42224e-b7d8-40e1-84fd-960710c2bf03" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:2cd37754-89e3-488d-9b73-802fbbd4644f" + "WESTUS:20150813T074655Z:4d42224e-b7d8-40e1-84fd-960710c2bf03" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/633.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82MzMuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.3.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/522.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.6.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/522.6.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/557.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/607.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/633.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/647.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"647.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/647.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"717.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/717.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"717.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/717.3.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/723.3.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/633.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "4083" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29117,7 +29428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06baf067-a8f6-4fb0-b3ac-0222aad288f4" + "27095789-7ec5-4e43-94d8-e13c54d36619" ], "Cache-Control": [ "no-cache" @@ -29127,34 +29438,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13481" + "14368" ], "x-ms-correlation-request-id": [ - "a2c750f7-1d95-4ebf-98bd-51109dae7100" + "4869c1f1-ff51-4557-a013-82ea7bd854b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:a2c750f7-1d95-4ebf-98bd-51109dae7100" + "WESTUS:20150813T074655Z:4869c1f1-ff51-4557-a013-82ea7bd854b1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/494.3.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzQ5NC4zLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/647.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82NDcuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.3.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/647.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29169,7 +29480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae9dd5b5-3c2f-41db-b140-d1a14b2bdd96" + "c02171dc-6749-4712-9c32-1b985a4cf449" ], "Cache-Control": [ "no-cache" @@ -29179,34 +29490,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13480" + "14367" ], "x-ms-correlation-request-id": [ - "3fea5d9f-49b2-4d43-9e19-e78e4a56d13a" + "b3dff6f4-5efe-4463-9853-5bdd6d2db430" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:3fea5d9f-49b2-4d43-9e19-e78e4a56d13a" + "WESTUS:20150813T074655Z:b3dff6f4-5efe-4463-9853-5bdd6d2db430" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/494.4.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzQ5NC40LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/668.3.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82NjguMy4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.4.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"668.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/668.3.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29221,7 +29532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "812cb507-bf36-428f-b8fa-b8a406da1e20" + "13f742b2-4735-4c65-8b85-a391f85ee8ca" ], "Cache-Control": [ "no-cache" @@ -29231,34 +29542,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13479" + "14366" ], "x-ms-correlation-request-id": [ - "a04f85a9-0877-417c-9f48-e27649aaf246" + "0d3d1ba8-6e91-4257-a9cd-6af99c51126d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:a04f85a9-0877-417c-9f48-e27649aaf246" + "WESTUS:20150813T074655Z:0d3d1ba8-6e91-4257-a9cd-6af99c51126d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/494.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzQ5NC41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/681.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82ODEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/681.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29273,7 +29584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "987f19e9-d0cb-4807-8fed-449130a74372" + "1b11fe75-c0bb-4328-903f-417bdd0f0bc9" ], "Cache-Control": [ "no-cache" @@ -29283,34 +29594,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13478" + "14365" ], "x-ms-correlation-request-id": [ - "b20f4e6d-e7f0-42af-9d46-9f17679fcfb3" + "56f9209b-f4c5-44f9-bb5f-62ba0fb2881f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212520Z:b20f4e6d-e7f0-42af-9d46-9f17679fcfb3" + "WESTUS:20150813T074655Z:56f9209b-f4c5-44f9-bb5f-62ba0fb2881f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:19 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/522.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzUyMi41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/695.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82OTUuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/522.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"695.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/695.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29325,7 +29636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "422ae9fa-6477-4764-b34a-6d02377d12ba" + "1cdf4318-4a52-4777-a523-5b86213a100f" ], "Cache-Control": [ "no-cache" @@ -29335,34 +29646,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13477" + "14364" ], "x-ms-correlation-request-id": [ - "8ff0b8a3-22b7-4b92-a260-968fb940c1c1" + "324379d9-28df-4110-b1fe-ee995e6e8133" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:8ff0b8a3-22b7-4b92-a260-968fb940c1c1" + "WESTUS:20150813T074656Z:324379d9-28df-4110-b1fe-ee995e6e8133" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/522.6.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzUyMi42LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/695.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy82OTUuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.6.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/522.6.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"695.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/695.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29377,7 +29688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a808676-2dc6-4461-ae85-f78be77edbb7" + "49df05a9-9bee-401f-8bad-0b12160ac5e7" ], "Cache-Control": [ "no-cache" @@ -29387,34 +29698,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13476" + "14363" ], "x-ms-correlation-request-id": [ - "9820276a-23ff-4828-b1bc-f1c8661f0c8a" + "f7c735bf-0cc8-4c75-ac52-5110c822bb35" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:9820276a-23ff-4828-b1bc-f1c8661f0c8a" + "WESTUS:20150813T074656Z:f7c735bf-0cc8-4c75-ac52-5110c822bb35" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/557.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzU1Ny4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/717.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy83MTcuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/557.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"717.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/717.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29429,7 +29740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb7bac48-753a-466f-95b9-b5c5fdf10ea6" + "d28d5f93-3319-4c3e-8c8c-0a4ee2381e77" ], "Cache-Control": [ "no-cache" @@ -29439,34 +29750,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13475" + "14362" ], "x-ms-correlation-request-id": [ - "258dcd21-6fa6-470e-ae42-f287b1735d1c" + "d1868e84-f736-4cef-b917-aded3f8d53c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:258dcd21-6fa6-470e-ae42-f287b1735d1c" + "WESTUS:20150813T074656Z:d1868e84-f736-4cef-b917-aded3f8d53c6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/607.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzYwNy4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/723.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy83MjMuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/607.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/723.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29481,7 +29792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5760e57b-f297-47b1-bd6e-53aacf00212a" + "6fa3fdc9-02cf-4719-afb9-a129a84d001e" ], "Cache-Control": [ "no-cache" @@ -29491,34 +29802,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13474" + "14361" ], "x-ms-correlation-request-id": [ - "64f49e60-6c02-48a7-bc98-c0e083d01b49" + "11d6d107-a920-4739-a732-77903961dedd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:64f49e60-6c02-48a7-bc98-c0e083d01b49" + "WESTUS:20150813T074656Z:11d6d107-a920-4739-a732-77903961dedd" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/633.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzYzMy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Beta/versions/723.3.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvQmV0YS92ZXJzaW9ucy83MjMuMy4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/633.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Beta/Versions/723.3.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "357" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29533,7 +29844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09280d35-c185-4259-9695-99af2db659c5" + "0815fccc-f3fa-4ecf-adf5-50a501a528cd" ], "Cache-Control": [ "no-cache" @@ -29543,34 +29854,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13473" + "14360" ], "x-ms-correlation-request-id": [ - "5ba5704e-9917-4a23-8a37-c38179bec21e" + "b9e36a5d-b0b5-4fab-af77-1f7355621f39" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:5ba5704e-9917-4a23-8a37-c38179bec21e" + "WESTUS:20150813T074656Z:b9e36a5d-b0b5-4fab-af77-1f7355621f39" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/647.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY0Ny4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/647.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.3.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"494.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/522.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"522.6.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/522.6.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"557.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/557.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/607.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/633.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/647.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"647.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/647.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"681.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"717.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/717.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"717.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/717.3.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"723.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/723.3.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "357" + "4083" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29585,7 +29896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c2dfa63-4645-49c6-ae73-a93bb19e6108" + "f9f0cab9-d4ec-42c3-95b5-755337624b60" ], "Cache-Control": [ "no-cache" @@ -29595,31 +29906,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13472" + "14359" ], "x-ms-correlation-request-id": [ - "29b5d477-1e66-4686-8a36-a8647d471ffc" + "c043409a-b1d4-4611-98f3-76c3ae48020f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:29b5d477-1e66-4686-8a36-a8647d471ffc" + "WESTUS:20150813T074656Z:c043409a-b1d4-4611-98f3-76c3ae48020f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/647.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY0Ny4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/494.3.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzQ5NC4zLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"647.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/647.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.3.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "357" @@ -29637,7 +29948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50ef5888-9866-4fcb-ba6d-1ce6c2304008" + "32a88dc1-2836-4623-b10d-bccad3bc6908" ], "Cache-Control": [ "no-cache" @@ -29647,31 +29958,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13471" + "14358" ], "x-ms-correlation-request-id": [ - "e0f81024-0d58-46c2-9c2f-b95f619db43f" + "f68ca4f0-d22f-46b1-a925-3eb9b52ed0eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:e0f81024-0d58-46c2-9c2f-b95f619db43f" + "WESTUS:20150813T074656Z:f68ca4f0-d22f-46b1-a925-3eb9b52ed0eb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/681.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY4MS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/494.4.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzQ5NC40LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.4.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "357" @@ -29689,7 +30000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb06b9b3-fe42-41fb-8111-31bb108324c0" + "18a03d7e-e854-4368-8533-6592ca03b115" ], "Cache-Control": [ "no-cache" @@ -29699,31 +30010,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13470" + "14357" ], "x-ms-correlation-request-id": [ - "5180d5f7-9984-4088-9d1b-ba72d3196fc8" + "37b3f0f6-bba4-4249-85a6-586ca5ef4daa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:5180d5f7-9984-4088-9d1b-ba72d3196fc8" + "WESTUS:20150813T074656Z:37b3f0f6-bba4-4249-85a6-586ca5ef4daa" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/681.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY4MS4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/494.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzQ5NC41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"494.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/494.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "357" @@ -29741,7 +30052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a6c059b-6d46-4b4f-957e-21f3fafb2efc" + "cd262ac3-2012-4245-81b6-f539369e37f8" ], "Cache-Control": [ "no-cache" @@ -29751,31 +30062,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13469" + "14356" ], "x-ms-correlation-request-id": [ - "4c155ff2-f6e2-4031-b17b-7ef9b01380ad" + "3eb4c8ac-c35c-4a11-bcb2-ad2a767eca91" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:4c155ff2-f6e2-4031-b17b-7ef9b01380ad" + "WESTUS:20150813T074656Z:3eb4c8ac-c35c-4a11-bcb2-ad2a767eca91" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/681.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY4MS4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/522.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzUyMi41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/522.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "357" @@ -29793,7 +30104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e6c0775-9ada-424a-a916-be69d1dfc01d" + "2a6c41bf-61a3-499d-8999-72a6b6c2953c" ], "Cache-Control": [ "no-cache" @@ -29803,31 +30114,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13468" + "14355" ], "x-ms-correlation-request-id": [ - "81d3420d-9a34-4ef3-b225-2962378b18dc" + "30566c9a-0519-4575-94df-b626ca73d1e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:81d3420d-9a34-4ef3-b225-2962378b18dc" + "WESTUS:20150813T074656Z:30566c9a-0519-4575-94df-b626ca73d1e2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/717.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzcxNy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/522.6.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzUyMi42LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"717.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/717.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"522.6.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/522.6.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "357" @@ -29845,7 +30156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4dfedb93-434a-4e8f-9282-244c5e4c24cb" + "da528a63-e5fa-4a58-896c-90f4ff78ff38" ], "Cache-Control": [ "no-cache" @@ -29855,31 +30166,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13467" + "14354" ], "x-ms-correlation-request-id": [ - "61a5bc8c-60cc-4e95-a565-3eb64c6a10f3" + "657e17df-79fe-4a81-8aee-a8f9db261c7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212521Z:61a5bc8c-60cc-4e95-a565-3eb64c6a10f3" + "WESTUS:20150813T074657Z:657e17df-79fe-4a81-8aee-a8f9db261c7b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:20 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/717.3.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzcxNy4zLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/557.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzU1Ny4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"717.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/717.3.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"557.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/557.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "357" @@ -29897,7 +30208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93c21114-903d-4c99-96a0-71b6b69f2810" + "2b17e684-2591-4085-abee-9eb173959109" ], "Cache-Control": [ "no-cache" @@ -29907,31 +30218,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13466" + "14353" ], "x-ms-correlation-request-id": [ - "8d5e00f1-0a1c-4f67-8cfd-d8ad003b3cc8" + "3fc0fb4a-338d-426e-962a-7cb1a0d1a9d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212522Z:8d5e00f1-0a1c-4f67-8cfd-d8ad003b3cc8" + "WESTUS:20150813T074657Z:3fc0fb4a-338d-426e-962a-7cb1a0d1a9d9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:22 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/723.3.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzcyMy4zLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/607.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzYwNy4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/723.3.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"607.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/607.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "357" @@ -29949,7 +30260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00861d16-0de7-40da-a430-e94402656018" + "03c56da1-4485-4087-bd24-c0df83475231" ], "Cache-Control": [ "no-cache" @@ -29959,34 +30270,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13465" + "14352" ], "x-ms-correlation-request-id": [ - "3406c3aa-7cd2-4258-80c0-5b52f7fee34e" + "4387b881-756f-44a1-9261-f7c6a02e6430" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212522Z:3406c3aa-7cd2-4258-80c0-5b52f7fee34e" + "WESTUS:20150813T074657Z:4387b881-756f-44a1-9261-f7c6a02e6430" ], "Date": [ - "Wed, 05 Aug 2015 21:25:22 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cortical-io/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29ydGljYWwtaW8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/633.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzYzMy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io-retinaservice-eng-gen\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io/ArtifactTypes/VMImage/Offers/cortical-io-retinaservice-eng-gen\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"633.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/633.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30001,7 +30312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "578ebd98-d204-4994-adde-6efb0b57f627" + "5a4532b6-0378-4890-b312-0560ee3b72d8" ], "Cache-Control": [ "no-cache" @@ -30011,34 +30322,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13464" + "14351" ], "x-ms-correlation-request-id": [ - "62279c8f-7f4f-4507-8589-cd4bce84c427" + "6867f25d-c187-4906-94aa-eeb3ba87982e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212522Z:62279c8f-7f4f-4507-8589-cd4bce84c427" + "WESTUS:20150813T074657Z:6867f25d-c187-4906-94aa-eeb3ba87982e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:22 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cortical-io/artifacttypes/vmimage/offers/cortical-io-retinaservice-eng-gen/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29ydGljYWwtaW8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb3J0aWNhbC1pby1yZXRpbmFzZXJ2aWNlLWVuZy1nZW4vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/647.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY0Ny4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical_io_api_eng_gen\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io/ArtifactTypes/VMImage/Offers/cortical-io-retinaservice-eng-gen/Skus/cortical_io_api_eng_gen\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"647.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/647.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "306" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30053,7 +30364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b4e4f9f-a31b-412f-b83f-579ceb8ad4ee" + "0793ba6e-3d2f-445d-827e-5987eb664fb0" ], "Cache-Control": [ "no-cache" @@ -30063,34 +30374,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13463" + "14350" ], "x-ms-correlation-request-id": [ - "0bf8458e-0ef6-40ee-bae0-27e0c1569fbc" + "e5820a5a-ef4a-48a9-ba4e-3b023b9f1f59" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212522Z:0bf8458e-0ef6-40ee-bae0-27e0c1569fbc" + "WESTUS:20150813T074657Z:e5820a5a-ef4a-48a9-ba4e-3b023b9f1f59" ], "Date": [ - "Wed, 05 Aug 2015 21:25:22 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cortical-io/artifacttypes/vmimage/offers/cortical-io-retinaservice-eng-gen/skus/cortical_io_api_eng_gen/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29ydGljYWwtaW8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb3J0aWNhbC1pby1yZXRpbmFzZXJ2aWNlLWVuZy1nZW4vc2t1cy9jb3J0aWNhbF9pb19hcGlfZW5nX2dlbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/647.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY0Ny4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io/ArtifactTypes/VMImage/Offers/cortical-io-retinaservice-eng-gen/Skus/cortical_io_api_eng_gen/Versions/2.2.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"647.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/647.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "303" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30105,7 +30416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8601a4a1-c353-460d-a781-485a1fe55642" + "d044d454-7980-405b-9bc2-430a05ade181" ], "Cache-Control": [ "no-cache" @@ -30115,34 +30426,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13462" + "14349" ], "x-ms-correlation-request-id": [ - "cf20eb35-aa31-42e2-a004-a50ed382fb42" + "6cd1d264-ca97-45de-8f37-470d6b6bd52a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212522Z:cf20eb35-aa31-42e2-a004-a50ed382fb42" + "WESTUS:20150813T074657Z:6cd1d264-ca97-45de-8f37-470d6b6bd52a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:22 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/cortical-io/artifacttypes/vmimage/offers/cortical-io-retinaservice-eng-gen/skus/cortical_io_api_eng_gen/versions/2.2.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29ydGljYWwtaW8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb3J0aWNhbC1pby1yZXRpbmFzZXJ2aWNlLWVuZy1nZW4vc2t1cy9jb3J0aWNhbF9pb19hcGlfZW5nX2dlbi92ZXJzaW9ucy8yLjIuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/681.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY4MS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cortical-io\",\r\n \"name\": \"cortical_io_api_eng_gen\",\r\n \"product\": \"cortical-io-retinaservice-eng-gen\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io/ArtifactTypes/VMImage/Offers/cortical-io-retinaservice-eng-gen/Skus/cortical_io_api_eng_gen/Versions/2.2.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "556" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30157,7 +30468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "967c3e59-85fe-4498-8fad-b543e84328fa" + "9ecb907d-e56f-4bf9-8f55-3513c504e9b5" ], "Cache-Control": [ "no-cache" @@ -30167,34 +30478,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13461" + "14348" ], "x-ms-correlation-request-id": [ - "f4c9e583-4d31-4aa4-98b3-5c822e30e02f" + "d7890716-16e6-4760-aea1-96f14058a85c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212522Z:f4c9e583-4d31-4aa4-98b3-5c822e30e02f" + "WESTUS:20150813T074657Z:d7890716-16e6-4760-aea1-96f14058a85c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:22 GMT" + "Thu, 13 Aug 2015 07:46:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/681.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY4MS4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase-server-30-community\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase-server-30-enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "553" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30209,7 +30520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a927a7f-adb7-4588-98ea-865b63ac0252" + "2fd99680-4ec1-440d-8fa4-8b8d19bf3a7e" ], "Cache-Control": [ "no-cache" @@ -30219,34 +30530,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13460" + "14347" ], "x-ms-correlation-request-id": [ - "26e5beb8-44ff-4473-87c1-c3f3b439aefa" + "44810a08-97a4-426d-a144-3daf600953db" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212522Z:26e5beb8-44ff-4473-87c1-c3f3b439aefa" + "WESTUS:20150813T074657Z:44810a08-97a4-426d-a144-3daf600953db" ], "Date": [ - "Wed, 05 Aug 2015 21:25:22 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-community/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1jb21tdW5pdHkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/681.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzY4MS4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cbs_30_ce\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community/Skus/cbs_30_ce\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"681.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/681.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "272" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30261,7 +30572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89b70d3a-0404-479f-82d8-223ba04b2b87" + "011dcc75-0c74-44d6-9402-ae7e98e7a19b" ], "Cache-Control": [ "no-cache" @@ -30271,34 +30582,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13459" + "14346" ], "x-ms-correlation-request-id": [ - "01753a7f-5317-4699-9aad-9e10fbb82c16" + "4c0d371c-f08b-40d4-b183-5e92a2bda15a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212522Z:01753a7f-5317-4699-9aad-9e10fbb82c16" + "WESTUS:20150813T074657Z:4c0d371c-f08b-40d4-b183-5e92a2bda15a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:22 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-community/skus/cbs_30_ce/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1jb21tdW5pdHkvc2t1cy9jYnNfMzBfY2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/717.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzcxNy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community/Skus/cbs_30_ce/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"717.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/717.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "283" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30313,7 +30624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f030274-45be-426c-8270-f99f5435a14f" + "add4f6cf-2569-4ad5-a513-ef83af913133" ], "Cache-Control": [ "no-cache" @@ -30323,34 +30634,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13458" + "14345" ], "x-ms-correlation-request-id": [ - "30495e4a-2704-47f7-bf5c-85de13ca9703" + "c491fa28-9cc8-4479-8161-fc8dcfcf0551" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:30495e4a-2704-47f7-bf5c-85de13ca9703" + "WESTUS:20150813T074657Z:c491fa28-9cc8-4479-8161-fc8dcfcf0551" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-community/skus/cbs_30_ce/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1jb21tdW5pdHkvc2t1cy9jYnNfMzBfY2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/717.3.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzcxNy4zLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"couchbase\",\r\n \"name\": \"cbs_30_ce\",\r\n \"product\": \"couchbase-server-30-community\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community/Skus/cbs_30_ce/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"717.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/717.3.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "516" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30365,7 +30676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86de1a9d-27fc-4b40-b119-48e1b9e3d03f" + "f4fd3fc4-69f6-421d-bac8-f765b84ac882" ], "Cache-Control": [ "no-cache" @@ -30375,34 +30686,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13457" + "14344" ], "x-ms-correlation-request-id": [ - "7fb0663d-8886-4c62-aa81-f393bca65d46" + "36e14d41-80a7-4164-bc1e-db4330c34554" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:7fb0663d-8886-4c62-aa81-f393bca65d46" + "WESTUS:20150813T074657Z:36e14d41-80a7-4164-bc1e-db4330c34554" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/CoreOS/artifacttypes/vmimage/offers/CoreOS/skus/Stable/versions/723.3.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvQ29yZU9TL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ29yZU9TL3NrdXMvU3RhYmxlL3ZlcnNpb25zLzcyMy4zLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cbs_30_ee_gold\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_gold\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cbs_30_ee_silver\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_silver\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"723.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS/ArtifactTypes/VMImage/Offers/CoreOS/Skus/Stable/Versions/723.3.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "567" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30417,7 +30728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "448b44c1-d2dd-4a3b-a929-393a654f411d" + "66270a60-f6d4-4db8-967a-9e645e170f3b" ], "Cache-Control": [ "no-cache" @@ -30427,34 +30738,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13456" + "14343" ], "x-ms-correlation-request-id": [ - "4a82eb8b-7452-4bf1-b5f5-b9eb11dc577b" + "3b49f6a5-dcbe-4e44-8ada-23760b173eec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:4a82eb8b-7452-4bf1-b5f5-b9eb11dc577b" + "WESTUS:20150813T074658Z:3b49f6a5-dcbe-4e44-8ada-23760b173eec" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus/cbs_30_ee_gold/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXMvY2JzXzMwX2VlX2dvbGQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cortical-io/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29ydGljYWwtaW8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_gold/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io-retinaservice-eng-gen\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io/ArtifactTypes/VMImage/Offers/cortical-io-retinaservice-eng-gen\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "289" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30469,7 +30780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52d60fc3-89ba-4279-83e1-155fe723dbbc" + "e6b74a8a-4e8e-4981-a6d2-0e1984964f92" ], "Cache-Control": [ "no-cache" @@ -30479,34 +30790,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13455" + "14342" ], "x-ms-correlation-request-id": [ - "d945381e-44a4-42f6-9738-140c969c4100" + "7c66b3e9-fcd5-4a7e-b1af-71f0675df415" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:d945381e-44a4-42f6-9738-140c969c4100" + "WESTUS:20150813T074658Z:7c66b3e9-fcd5-4a7e-b1af-71f0675df415" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus/cbs_30_ee_gold/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXMvY2JzXzMwX2VlX2dvbGQvdmVyc2lvbnMvMS4wLjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cortical-io/artifacttypes/vmimage/offers/cortical-io-retinaservice-eng-gen/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29ydGljYWwtaW8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb3J0aWNhbC1pby1yZXRpbmFzZXJ2aWNlLWVuZy1nZW4vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"couchbase\",\r\n \"name\": \"cbs_30_ee_gold\",\r\n \"product\": \"couchbase-server-30-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_gold/Versions/1.0.2\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical_io_api_eng_gen\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io/ArtifactTypes/VMImage/Offers/cortical-io-retinaservice-eng-gen/Skus/cortical_io_api_eng_gen\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "528" + "306" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30521,7 +30832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3ee42d2-348d-48bc-87b0-b1c3eba0fab4" + "349779f5-93dc-4ec4-9dce-066b782a59d4" ], "Cache-Control": [ "no-cache" @@ -30531,34 +30842,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13454" + "14341" ], "x-ms-correlation-request-id": [ - "532439c4-166e-4d04-a76a-32257b5dbe7a" + "3b5423db-d6f5-466f-bf72-668077938746" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:532439c4-166e-4d04-a76a-32257b5dbe7a" + "WESTUS:20150813T074658Z:3b5423db-d6f5-466f-bf72-668077938746" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus/cbs_30_ee_silver/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXMvY2JzXzMwX2VlX3NpbHZlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cortical-io/artifacttypes/vmimage/offers/cortical-io-retinaservice-eng-gen/skus/cortical_io_api_eng_gen/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29ydGljYWwtaW8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb3J0aWNhbC1pby1yZXRpbmFzZXJ2aWNlLWVuZy1nZW4vc2t1cy9jb3J0aWNhbF9pb19hcGlfZW5nX2dlbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_silver/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io/ArtifactTypes/VMImage/Offers/cortical-io-retinaservice-eng-gen/Skus/cortical_io_api_eng_gen/Versions/2.2.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "291" + "303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30573,7 +30884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67de8a6f-89ca-4b0c-8c75-09957720675e" + "7e451cf6-df04-441c-9472-eebc6c93a5f4" ], "Cache-Control": [ "no-cache" @@ -30583,34 +30894,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13453" + "14340" ], "x-ms-correlation-request-id": [ - "8334bd11-e288-49df-bb7a-53ad31de58f1" + "5e205de2-ef3f-4eba-bb06-ee751477b3fa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:8334bd11-e288-49df-bb7a-53ad31de58f1" + "WESTUS:20150813T074658Z:5e205de2-ef3f-4eba-bb06-ee751477b3fa" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus/cbs_30_ee_silver/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXMvY2JzXzMwX2VlX3NpbHZlci92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/cortical-io/artifacttypes/vmimage/offers/cortical-io-retinaservice-eng-gen/skus/cortical_io_api_eng_gen/versions/2.2.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY29ydGljYWwtaW8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9jb3J0aWNhbC1pby1yZXRpbmFzZXJ2aWNlLWVuZy1nZW4vc2t1cy9jb3J0aWNhbF9pb19hcGlfZW5nX2dlbi92ZXJzaW9ucy8yLjIuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"couchbase\",\r\n \"name\": \"cbs_30_ee_silver\",\r\n \"product\": \"couchbase-server-30-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_silver/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"cortical-io\",\r\n \"name\": \"cortical_io_api_eng_gen\",\r\n \"product\": \"cortical-io-retinaservice-eng-gen\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io/ArtifactTypes/VMImage/Offers/cortical-io-retinaservice-eng-gen/Skus/cortical_io_api_eng_gen/Versions/2.2.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "532" + "556" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30625,7 +30936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3937d65f-c549-41d1-b5d2-159b8a706049" + "06b1c926-ba91-464e-995b-530768ee2d88" ], "Cache-Control": [ "no-cache" @@ -30635,34 +30946,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13452" + "14339" ], "x-ms-correlation-request-id": [ - "d44d19f9-057f-4a81-8ca6-de89306ae439" + "3ceb443d-d870-450f-a735-d6fb3925d0d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:d44d19f9-057f-4a81-8ca6-de89306ae439" + "WESTUS:20150813T074658Z:3ceb443d-d870-450f-a735-d6fb3925d0d0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataart/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWFydC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"devicehive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart/ArtifactTypes/VMImage/Offers/devicehive\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase-server-30-community\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase-server-30-enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "237" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30677,7 +30988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "887cea0c-2320-47cf-b5a6-e1f992d446e2" + "02f8e0e7-b2f0-42d5-90de-a0d34b02cd09" ], "Cache-Control": [ "no-cache" @@ -30687,34 +30998,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13451" + "14338" ], "x-ms-correlation-request-id": [ - "7186aa99-7729-4b19-90e3-d2464fa21e44" + "6a778dd1-346e-430a-88b2-6c39dc0435f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:7186aa99-7729-4b19-90e3-d2464fa21e44" + "WESTUS:20150813T074658Z:6a778dd1-346e-430a-88b2-6c39dc0435f7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataart/artifacttypes/vmimage/offers/devicehive/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWFydC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RldmljZWhpdmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-community/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1jb21tdW5pdHkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"devicehivestandard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart/ArtifactTypes/VMImage/Offers/devicehive/Skus/devicehivestandard\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cbs_30_ce\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community/Skus/cbs_30_ce\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "269" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30729,7 +31040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ee19ba4-dfba-4ae3-96d9-133064f2b096" + "df550bfe-633d-4eaf-8b16-83fa26c551da" ], "Cache-Control": [ "no-cache" @@ -30739,34 +31050,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13450" + "14337" ], "x-ms-correlation-request-id": [ - "5dd52de6-35ac-4880-98a6-38bc101faf18" + "673b4f8c-9d31-478d-bf1e-871f7b5dbe25" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212523Z:5dd52de6-35ac-4880-98a6-38bc101faf18" + "WESTUS:20150813T074658Z:673b4f8c-9d31-478d-bf1e-871f7b5dbe25" ], "Date": [ - "Wed, 05 Aug 2015 21:25:23 GMT" + "Thu, 13 Aug 2015 07:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataart/artifacttypes/vmimage/offers/devicehive/skus/devicehivestandard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWFydC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RldmljZWhpdmUvc2t1cy9kZXZpY2VoaXZlc3RhbmRhcmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-community/skus/cbs_30_ce/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1jb21tdW5pdHkvc2t1cy9jYnNfMzBfY2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart/ArtifactTypes/VMImage/Offers/devicehive/Skus/devicehivestandard/Versions/2.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community/Skus/cbs_30_ce/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "271" + "283" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30781,7 +31092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82f926b3-e008-404a-91c7-667e50f730eb" + "446c0ba9-4f07-438c-aeaf-c3a796b5fa8f" ], "Cache-Control": [ "no-cache" @@ -30791,34 +31102,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13449" + "14336" ], "x-ms-correlation-request-id": [ - "f027fdfe-699d-4c44-abbd-bb1862a253fd" + "b4e917f5-ab6a-406f-b42f-91b00ec17711" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212524Z:f027fdfe-699d-4c44-abbd-bb1862a253fd" + "WESTUS:20150813T074658Z:b4e917f5-ab6a-406f-b42f-91b00ec17711" ], "Date": [ - "Wed, 05 Aug 2015 21:25:24 GMT" + "Thu, 13 Aug 2015 07:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataart/artifacttypes/vmimage/offers/devicehive/skus/devicehivestandard/versions/2.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWFydC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RldmljZWhpdmUvc2t1cy9kZXZpY2VoaXZlc3RhbmRhcmQvdmVyc2lvbnMvMi4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-community/skus/cbs_30_ce/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1jb21tdW5pdHkvc2t1cy9jYnNfMzBfY2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dataart\",\r\n \"name\": \"devicehivestandard\",\r\n \"product\": \"devicehive\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart/ArtifactTypes/VMImage/Offers/devicehive/Skus/devicehivestandard/Versions/2.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"couchbase\",\r\n \"name\": \"cbs_30_ce\",\r\n \"product\": \"couchbase-server-30-community\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community/Skus/cbs_30_ce/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "492" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30833,7 +31144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00e2743a-1af3-4a6c-8f78-6b546956b9af" + "d71b6bba-d93d-49ea-a921-03c8f43e82c8" ], "Cache-Control": [ "no-cache" @@ -30843,34 +31154,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13448" + "14335" ], "x-ms-correlation-request-id": [ - "16807ad8-5665-458a-a066-5b6835c43be7" + "def6fee6-043c-4265-b0c3-6d30fe62db47" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212524Z:16807ad8-5665-458a-a066-5b6835c43be7" + "WESTUS:20150813T074659Z:def6fee6-043c-4265-b0c3-6d30fe62db47" ], "Date": [ - "Wed, 05 Aug 2015 21:25:24 GMT" + "Thu, 13 Aug 2015 07:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datacastle/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWNhc3RsZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cbs_30_ee_gold\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_gold\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cbs_30_ee_silver\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_silver\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30885,7 +31196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38be0350-be88-48a7-9427-4f6b976bcdc1" + "11e8c188-1850-46b1-af01-a15cfba80025" ], "Cache-Control": [ "no-cache" @@ -30895,34 +31206,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13447" + "14334" ], "x-ms-correlation-request-id": [ - "1584a9d9-c213-47ab-ba9f-ef9e65b190ed" + "59400803-3cfb-4108-afa3-4dfc5aa00449" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212524Z:1584a9d9-c213-47ab-ba9f-ef9e65b190ed" + "WESTUS:20150813T074659Z:59400803-3cfb-4108-afa3-4dfc5aa00449" ], "Date": [ - "Wed, 05 Aug 2015 21:25:24 GMT" + "Thu, 13 Aug 2015 07:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Datadog.Agent/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvRGF0YWRvZy5BZ2VudC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus/cbs_30_ee_gold/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXMvY2JzXzMwX2VlX2dvbGQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_gold/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30937,7 +31248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42a79f1b-b69e-4042-8336-2fdcbe971832" + "bbfe1184-ec9f-40c2-8bc3-d2e80c28ea94" ], "Cache-Control": [ "no-cache" @@ -30947,34 +31258,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13446" + "14333" ], "x-ms-correlation-request-id": [ - "18821899-dd90-4a63-8963-fc860081ac1d" + "49036503-b991-4bf1-af96-1b732e99b4ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212524Z:18821899-dd90-4a63-8963-fc860081ac1d" + "WESTUS:20150813T074659Z:49036503-b991-4bf1-af96-1b732e99b4ff" ], "Date": [ - "Wed, 05 Aug 2015 21:25:24 GMT" + "Thu, 13 Aug 2015 07:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataexpeditioninc/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWV4cGVkaXRpb25pbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus/cbs_30_ee_gold/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXMvY2JzXzMwX2VlX2dvbGQvdmVyc2lvbnMvMS4wLjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expedat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"couchbase\",\r\n \"name\": \"cbs_30_ee_gold\",\r\n \"product\": \"couchbase-server-30-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_gold/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "241" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30989,7 +31300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e95c33fc-0880-4845-b02f-2e7faf07aa95" + "aa7751ba-425d-479b-bada-4364ba50fb8e" ], "Cache-Control": [ "no-cache" @@ -30999,34 +31310,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13445" + "14332" ], "x-ms-correlation-request-id": [ - "fe7d0a08-86c9-47ab-b39e-2b9c15f306ac" + "2e2e6730-7cc1-40eb-8d2b-b140fc1172c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212524Z:fe7d0a08-86c9-47ab-b39e-2b9c15f306ac" + "WESTUS:20150813T074659Z:2e2e6730-7cc1-40eb-8d2b-b140fc1172c3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:24 GMT" + "Thu, 13 Aug 2015 07:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataexpeditioninc/artifacttypes/vmimage/offers/expedat/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWV4cGVkaXRpb25pbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9leHBlZGF0L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus/cbs_30_ee_silver/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXMvY2JzXzMwX2VlX3NpbHZlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expedat-windows-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat/Skus/expedat-windows-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_silver/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "280" + "291" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31041,7 +31352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "939e807d-fc83-49c9-a735-5ac215c2d409" + "18a785e0-1f2d-476d-9354-623168546aeb" ], "Cache-Control": [ "no-cache" @@ -31051,34 +31362,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13444" + "14331" ], "x-ms-correlation-request-id": [ - "18988b4c-bc78-46ce-8085-00708069a37d" + "c8a0d0e1-73fe-4418-af9d-94ddb248b45c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212524Z:18988b4c-bc78-46ce-8085-00708069a37d" + "WESTUS:20150813T074659Z:c8a0d0e1-73fe-4418-af9d-94ddb248b45c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:24 GMT" + "Thu, 13 Aug 2015 07:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataexpeditioninc/artifacttypes/vmimage/offers/expedat/skus/expedat-windows-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWV4cGVkaXRpb25pbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9leHBlZGF0L3NrdXMvZXhwZWRhdC13aW5kb3dzLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/couchbase/artifacttypes/vmimage/offers/couchbase-server-30-enterprise/skus/cbs_30_ee_silver/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvY291Y2hiYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY291Y2hiYXNlLXNlcnZlci0zMC1lbnRlcnByaXNlL3NrdXMvY2JzXzMwX2VlX3NpbHZlci92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat/Skus/expedat-windows-byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"couchbase\",\r\n \"name\": \"cbs_30_ee_silver\",\r\n \"product\": \"couchbase-server-30-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-enterprise/Skus/cbs_30_ee_silver/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "280" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31093,7 +31404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9dd120ab-055b-4da1-a1e3-766974af862f" + "0ebe4fc1-179b-439b-b6f5-53ee91c3a426" ], "Cache-Control": [ "no-cache" @@ -31103,34 +31414,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13443" + "14330" ], "x-ms-correlation-request-id": [ - "a6cfba8f-2d6b-4a2a-a3a7-466cf712b356" + "106d3367-2df9-4b8a-aa6a-1fde26f3faa4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212524Z:a6cfba8f-2d6b-4a2a-a3a7-466cf712b356" + "WESTUS:20150813T074659Z:106d3367-2df9-4b8a-aa6a-1fde26f3faa4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:24 GMT" + "Thu, 13 Aug 2015 07:46:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataexpeditioninc/artifacttypes/vmimage/offers/expedat/skus/expedat-windows-byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWV4cGVkaXRpb25pbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9leHBlZGF0L3NrdXMvZXhwZWRhdC13aW5kb3dzLWJ5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataart/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWFydC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dataexpeditioninc\",\r\n \"name\": \"expedat-windows-byol\",\r\n \"product\": \"expedat\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat/Skus/expedat-windows-byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"devicehive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart/ArtifactTypes/VMImage/Offers/devicehive\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "512" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31145,7 +31456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a5bcc873-9985-4ff3-8746-53564b96ca2e" + "6e3d3b72-2eb5-424f-888a-2407e76fb162" ], "Cache-Control": [ "no-cache" @@ -31155,34 +31466,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13442" + "14329" ], "x-ms-correlation-request-id": [ - "10ddebf0-b76c-4e07-b9bb-882f2766b32a" + "9a5d479b-9908-4d25-a637-88446dd253f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212524Z:10ddebf0-b76c-4e07-b9bb-882f2766b32a" + "WESTUS:20150813T074659Z:9a5d479b-9908-4d25-a637-88446dd253f5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:24 GMT" + "Thu, 13 Aug 2015 07:46:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datalayer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxheWVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataart/artifacttypes/vmimage/offers/devicehive/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWFydC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RldmljZWhpdmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer-notebook\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"devicehivestandard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart/ArtifactTypes/VMImage/Offers/devicehive/Skus/devicehivestandard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "255" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31197,7 +31508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36404756-5bf0-40e3-83b8-7a37dd29c8e0" + "d3f3f461-a463-4e1f-aea8-85efabf8a2ad" ], "Cache-Control": [ "no-cache" @@ -31207,34 +31518,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13441" + "14328" ], "x-ms-correlation-request-id": [ - "cf1b21e6-d839-475d-86b2-5c0854768f76" + "00ba3266-8ce7-4c3f-9c86-61b4fca3efe6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:cf1b21e6-d839-475d-86b2-5c0854768f76" + "WESTUS:20150813T074659Z:00ba3266-8ce7-4c3f-9c86-61b4fca3efe6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:46:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datalayer/artifacttypes/vmimage/offers/datalayer-notebook/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxheWVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YWxheWVyLW5vdGVib29rL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataart/artifacttypes/vmimage/offers/devicehive/skus/devicehivestandard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWFydC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RldmljZWhpdmUvc2t1cy9kZXZpY2VoaXZlc3RhbmRhcmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spark-hadoop-r-python\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook/Skus/spark-hadoop-r-python\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart/ArtifactTypes/VMImage/Offers/devicehive/Skus/devicehivestandard/Versions/2.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "285" + "271" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31249,7 +31560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b58ccb5a-4f38-45d2-9f15-13f38d9e4506" + "41cb241a-f8a8-4c44-9d1b-4a7f5f061d66" ], "Cache-Control": [ "no-cache" @@ -31259,34 +31570,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13440" + "14327" ], "x-ms-correlation-request-id": [ - "95b1bfb6-e33f-433c-afb2-1b9183f9eecf" + "bfbbae83-9baf-49d6-b331-aab46d699f34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:95b1bfb6-e33f-433c-afb2-1b9183f9eecf" + "WESTUS:20150813T074700Z:bfbbae83-9baf-49d6-b331-aab46d699f34" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:46:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datalayer/artifacttypes/vmimage/offers/datalayer-notebook/skus/spark-hadoop-r-python/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxheWVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YWxheWVyLW5vdGVib29rL3NrdXMvc3BhcmstaGFkb29wLXItcHl0aG9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataart/artifacttypes/vmimage/offers/devicehive/skus/devicehivestandard/versions/2.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWFydC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RldmljZWhpdmUvc2t1cy9kZXZpY2VoaXZlc3RhbmRhcmQvdmVyc2lvbnMvMi4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook/Skus/spark-hadoop-r-python/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dataart\",\r\n \"name\": \"devicehivestandard\",\r\n \"product\": \"devicehive\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart/ArtifactTypes/VMImage/Offers/devicehive/Skus/devicehivestandard/Versions/2.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "284" + "492" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31301,7 +31612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be9b3eca-d384-46c7-a2b5-edecbddd58fa" + "f8fb8ccb-5991-4f43-851f-38bfabd07f5c" ], "Cache-Control": [ "no-cache" @@ -31311,34 +31622,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13439" + "14326" ], "x-ms-correlation-request-id": [ - "b0269bda-f33d-476c-a03d-769997442056" + "e136d038-62f8-45d4-bb9f-ff2937b67e0c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:b0269bda-f33d-476c-a03d-769997442056" + "WESTUS:20150813T074700Z:e136d038-62f8-45d4-bb9f-ff2937b67e0c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:46:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datalayer/artifacttypes/vmimage/offers/datalayer-notebook/skus/spark-hadoop-r-python/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxheWVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YWxheWVyLW5vdGVib29rL3NrdXMvc3BhcmstaGFkb29wLXItcHl0aG9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datacastle/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWNhc3RsZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datalayer\",\r\n \"name\": \"spark-hadoop-r-python\",\r\n \"product\": \"datalayer-notebook\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook/Skus/spark-hadoop-r-python/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle-red\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle/ArtifactTypes/VMImage/Offers/datacastle-red\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "518" + "248" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31353,7 +31664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97fbfd4f-cb48-4929-a2ca-bbf1166c020f" + "65e0d358-8b0f-41ad-8dcf-85f13d5c0a32" ], "Cache-Control": [ "no-cache" @@ -31363,34 +31674,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13438" + "14325" ], "x-ms-correlation-request-id": [ - "8bbe21de-23a1-4956-bd21-e9688546d6ec" + "d36ed19e-58ab-4732-a461-11cd6cb9b0be" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:8bbe21de-23a1-4956-bd21-e9688546d6ec" + "WESTUS:20150813T074700Z:d36ed19e-58ab-4732-a461-11cd6cb9b0be" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:46:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataliberation/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxpYmVyYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datacastle/artifacttypes/vmimage/offers/datacastle-red/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWNhc3RsZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RhdGFjYXN0bGUtcmVkL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"instant-intelligence-top-line-reporter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation/ArtifactTypes/VMImage/Offers/instant-intelligence-top-line-reporter\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dcredvault01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle/ArtifactTypes/VMImage/Offers/datacastle-red/Skus/dcredvault01\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "300" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31405,7 +31716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42eb08cb-6f38-432f-b233-fce2775c5b2e" + "d8f2c4e8-1b24-4d92-9abc-e9ec89a5c149" ], "Cache-Control": [ "no-cache" @@ -31415,34 +31726,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13437" + "14324" ], "x-ms-correlation-request-id": [ - "e1783e5b-eee5-4e54-9fae-f47078d62319" + "f8b8d2b6-1829-4e00-a363-8d9e7aa3ed4c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:e1783e5b-eee5-4e54-9fae-f47078d62319" + "WESTUS:20150813T074700Z:f8b8d2b6-1829-4e00-a363-8d9e7aa3ed4c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:46:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataliberation/artifacttypes/vmimage/offers/instant-intelligence-top-line-reporter/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxpYmVyYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbnN0YW50LWludGVsbGlnZW5jZS10b3AtbGluZS1yZXBvcnRlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datacastle/artifacttypes/vmimage/offers/datacastle-red/skus/dcredvault01/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWNhc3RsZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RhdGFjYXN0bGUtcmVkL3NrdXMvZGNyZWR2YXVsdDAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dl_tlr_01\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation/ArtifactTypes/VMImage/Offers/instant-intelligence-top-line-reporter/Skus/dl_tlr_01\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle/ArtifactTypes/VMImage/Offers/datacastle-red/Skus/dcredvault01/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "286" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31457,7 +31768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6223a88-b100-4e3a-a893-7d714823af52" + "41e14f14-a5b8-4ecb-a4d0-1de5a7c7dd59" ], "Cache-Control": [ "no-cache" @@ -31467,34 +31778,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13436" + "14323" ], "x-ms-correlation-request-id": [ - "411c1b59-78a2-493e-b3d8-2a93f892cb5c" + "3b197f9d-e2d6-4b7a-9314-f89810286fb5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:411c1b59-78a2-493e-b3d8-2a93f892cb5c" + "WESTUS:20150813T074700Z:3b197f9d-e2d6-4b7a-9314-f89810286fb5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:46:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataliberation/artifacttypes/vmimage/offers/instant-intelligence-top-line-reporter/skus/dl_tlr_01/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxpYmVyYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbnN0YW50LWludGVsbGlnZW5jZS10b3AtbGluZS1yZXBvcnRlci9za3VzL2RsX3Rscl8wMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datacastle/artifacttypes/vmimage/offers/datacastle-red/skus/dcredvault01/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWNhc3RsZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RhdGFjYXN0bGUtcmVkL3NrdXMvZGNyZWR2YXVsdDAxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation/ArtifactTypes/VMImage/Offers/instant-intelligence-top-line-reporter/Skus/dl_tlr_01/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datacastle\",\r\n \"name\": \"dcredvault01\",\r\n \"product\": \"datacastle-red\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle/ArtifactTypes/VMImage/Offers/datacastle-red/Skus/dcredvault01/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "297" + "496" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31509,7 +31820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8574cf1d-c7e0-44c7-88be-372ef455279f" + "d515dfe7-4a74-4eee-94ef-3ba337d865a9" ], "Cache-Control": [ "no-cache" @@ -31519,34 +31830,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13435" + "14322" ], "x-ms-correlation-request-id": [ - "a52d3b8e-deca-4423-9aaa-ec4c062a02e6" + "e19440ce-4d7c-4ae8-a5d0-c0ba76067876" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:a52d3b8e-deca-4423-9aaa-ec4c062a02e6" + "WESTUS:20150813T074700Z:e19440ce-4d7c-4ae8-a5d0-c0ba76067876" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:46:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dataliberation/artifacttypes/vmimage/offers/instant-intelligence-top-line-reporter/skus/dl_tlr_01/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxpYmVyYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbnN0YW50LWludGVsbGlnZW5jZS10b3AtbGluZS1yZXBvcnRlci9za3VzL2RsX3Rscl8wMS92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Datadog.Agent/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvRGF0YWRvZy5BZ2VudC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dataliberation\",\r\n \"name\": \"dl_tlr_01\",\r\n \"product\": \"instant-intelligence-top-line-reporter\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation/ArtifactTypes/VMImage/Offers/instant-intelligence-top-line-reporter/Skus/dl_tlr_01/Versions/1.0.1\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "546" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31561,7 +31872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39cdf738-8301-499a-96b6-964b3a757f3a" + "21871c83-8733-41a9-b975-5e208d97f023" ], "Cache-Control": [ "no-cache" @@ -31571,34 +31882,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13434" + "14321" ], "x-ms-correlation-request-id": [ - "23105241-c0ea-4d78-9cd7-2cb6c422e2b4" + "84166118-e0b3-4163-aa6a-d8fbb95ce171" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:23105241-c0ea-4d78-9cd7-2cb6c422e2b4" + "WESTUS:20150813T074700Z:84166118-e0b3-4163-aa6a-d8fbb95ce171" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataexpeditioninc/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWV4cGVkaXRpb25pbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax-enterprise-non-production-use-only\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expedat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "535" + "241" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31613,7 +31924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77decfc5-dc4b-4640-8fcc-c0d06c7c6521" + "561a4260-9cae-4e78-b4d7-fccc3e94f553" ], "Cache-Control": [ "no-cache" @@ -31623,34 +31934,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13433" + "14320" ], "x-ms-correlation-request-id": [ - "cb90857d-2354-47af-a955-b13d6a8518ab" + "092d80a7-432a-44a1-97f2-b4c3450ffdbb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:cb90857d-2354-47af-a955-b13d6a8518ab" + "WESTUS:20150813T074700Z:092d80a7-432a-44a1-97f2-b4c3450ffdbb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataexpeditioninc/artifacttypes/vmimage/offers/expedat/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWV4cGVkaXRpb25pbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9leHBlZGF0L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expedat-windows-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat/Skus/expedat-windows-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "252" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31665,7 +31976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d40f3fe-aa94-4087-b5bf-baa0fdc4f98c" + "8932a499-4000-41e3-b10e-7183a56b3306" ], "Cache-Control": [ "no-cache" @@ -31675,34 +31986,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13432" + "14319" ], "x-ms-correlation-request-id": [ - "c505f6ec-f30b-4b44-90a2-f255516aadad" + "0b661d64-6f70-4262-8b52-4555d1a7c447" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212525Z:c505f6ec-f30b-4b44-90a2-f255516aadad" + "WESTUS:20150813T074700Z:0b661d64-6f70-4262-8b52-4555d1a7c447" ], "Date": [ - "Wed, 05 Aug 2015 21:25:25 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax/skus/enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataexpeditioninc/artifacttypes/vmimage/offers/expedat/skus/expedat-windows-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWV4cGVkaXRpb25pbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9leHBlZGF0L3NrdXMvZXhwZWRhdC13aW5kb3dzLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise/Versions/1.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat/Skus/expedat-windows-byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "521" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31717,7 +32028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9655316b-ce14-4a8f-9b3d-7b19cb2afd90" + "ef578720-0869-4caa-95d6-0a0b0b65dd55" ], "Cache-Control": [ "no-cache" @@ -31727,34 +32038,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13431" + "14318" ], "x-ms-correlation-request-id": [ - "da60245c-3c33-4827-8b68-ed41e991112c" + "01bd484e-486e-48f2-a569-62dd1edb9115" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:da60245c-3c33-4827-8b68-ed41e991112c" + "WESTUS:20150813T074701Z:01bd484e-486e-48f2-a569-62dd1edb9115" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax/skus/enterprise/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataexpeditioninc/artifacttypes/vmimage/offers/expedat/skus/expedat-windows-byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWV4cGVkaXRpb25pbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9leHBlZGF0L3NrdXMvZXhwZWRhdC13aW5kb3dzLWJ5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"datastax\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dataexpeditioninc\",\r\n \"name\": \"expedat-windows-byol\",\r\n \"product\": \"expedat\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat/Skus/expedat-windows-byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "474" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31769,7 +32080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08f63c2f-effb-4155-bf23-e0c63677a642" + "0bb5d8b7-e471-457c-ab70-93505850f138" ], "Cache-Control": [ "no-cache" @@ -31779,34 +32090,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13430" + "14317" ], "x-ms-correlation-request-id": [ - "f7992e34-ede4-4c0b-9f90-4c8b8edcd442" + "3b6c1e1a-4513-46c1-aef2-26ad70dc8577" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:f7992e34-ede4-4c0b-9f90-4c8b8edcd442" + "WESTUS:20150813T074701Z:3b6c1e1a-4513-46c1-aef2-26ad70dc8577" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax/skus/enterprise/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datalayer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxheWVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"datastax\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer-notebook\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "627" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31821,7 +32132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79085dd6-a307-430a-b117-02dacc4d9416" + "2bf184b6-7c5f-4b48-9900-940d3f8b4a41" ], "Cache-Control": [ "no-cache" @@ -31831,34 +32142,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13429" + "14316" ], "x-ms-correlation-request-id": [ - "23353d59-4ef7-4ad5-80b6-4b6a450f7f6c" + "0282a303-132f-43eb-b7dc-b455a9c0fb62" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:23353d59-4ef7-4ad5-80b6-4b6a450f7f6c" + "WESTUS:20150813T074701Z:0282a303-132f-43eb-b7dc-b455a9c0fb62" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datalayer/artifacttypes/vmimage/offers/datalayer-notebook/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxheWVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YWxheWVyLW5vdGVib29rL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dse-nonproduction-use-single-datacenter-20core-max\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/dse-nonproduction-use-single-datacenter-20core-max\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sandbox_single-node\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spark-hadoop-r-python\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook/Skus/spark-hadoop-r-python\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "669" + "285" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31873,7 +32184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1aef7cb-e476-4d7f-98ad-3b06570c92ee" + "ed95fea6-5b35-4123-b9df-2470a1562708" ], "Cache-Control": [ "no-cache" @@ -31883,34 +32194,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13428" + "14315" ], "x-ms-correlation-request-id": [ - "a04755ff-2d11-4f58-83cd-0763afea18e6" + "3933309f-4a1d-4f77-baa6-fb1b0cdcf879" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:a04755ff-2d11-4f58-83cd-0763afea18e6" + "WESTUS:20150813T074701Z:3933309f-4a1d-4f77-baa6-fb1b0cdcf879" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/dse-nonproduction-use-single-datacenter-20core-max/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXMvZHNlLW5vbnByb2R1Y3Rpb24tdXNlLXNpbmdsZS1kYXRhY2VudGVyLTIwY29yZS1tYXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datalayer/artifacttypes/vmimage/offers/datalayer-notebook/skus/spark-hadoop-r-python/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxheWVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YWxheWVyLW5vdGVib29rL3NrdXMvc3BhcmstaGFkb29wLXItcHl0aG9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/dse-nonproduction-use-single-datacenter-20core-max/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook/Skus/spark-hadoop-r-python/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "337" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31925,7 +32236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e5dc219-95a1-4ed6-8eed-e38f6fbd8801" + "0a109aa3-2f23-46e8-aaca-e773664ed3c2" ], "Cache-Control": [ "no-cache" @@ -31935,34 +32246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13427" + "14314" ], "x-ms-correlation-request-id": [ - "14ae0697-b4b0-447e-97fe-e63c6a19d4a9" + "d7da4754-7e85-4783-85e4-3e68460f18b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:14ae0697-b4b0-447e-97fe-e63c6a19d4a9" + "WESTUS:20150813T074701Z:d7da4754-7e85-4783-85e4-3e68460f18b5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/dse-nonproduction-use-single-datacenter-20core-max/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXMvZHNlLW5vbnByb2R1Y3Rpb24tdXNlLXNpbmdsZS1kYXRhY2VudGVyLTIwY29yZS1tYXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datalayer/artifacttypes/vmimage/offers/datalayer-notebook/skus/spark-hadoop-r-python/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxheWVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGF0YWxheWVyLW5vdGVib29rL3NrdXMvc3BhcmstaGFkb29wLXItcHl0aG9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"dse-nonproduction-use-single-datacenter-20core-max\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/dse-nonproduction-use-single-datacenter-20core-max/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datalayer\",\r\n \"name\": \"spark-hadoop-r-python\",\r\n \"product\": \"datalayer-notebook\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook/Skus/spark-hadoop-r-python/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "777" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31977,7 +32288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55d4c27a-4678-47c4-ba99-d55e5ff80667" + "c83d1c3e-1895-4db2-b4d2-7148832411a0" ], "Cache-Control": [ "no-cache" @@ -31987,34 +32298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13426" + "14313" ], "x-ms-correlation-request-id": [ - "7d42806c-200a-4899-9efb-d48143cb78f6" + "697b7a75-dea4-4d75-b71b-9b55d52f9fdf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:7d42806c-200a-4899-9efb-d48143cb78f6" + "WESTUS:20150813T074701Z:697b7a75-dea4-4d75-b71b-9b55d52f9fdf" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXMvc2FuZGJveF9zaW5nbGUtbm9kZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataliberation/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxpYmVyYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"instant-intelligence-top-line-reporter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation/ArtifactTypes/VMImage/Offers/instant-intelligence-top-line-reporter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "306" + "300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32029,7 +32340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a52a1303-f3d9-47dd-b539-e6a56140fe5c" + "df664f40-330c-4882-b5b8-7209fa0f1b6f" ], "Cache-Control": [ "no-cache" @@ -32039,34 +32350,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13425" + "14312" ], "x-ms-correlation-request-id": [ - "e016b30e-03fd-4bbc-9f45-47b299ea67d9" + "afb39a7c-5fe3-4c85-ae44-a51e44775fc1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:e016b30e-03fd-4bbc-9f45-47b299ea67d9" + "WESTUS:20150813T074701Z:afb39a7c-5fe3-4c85-ae44-a51e44775fc1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXMvc2FuZGJveF9zaW5nbGUtbm9kZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataliberation/artifacttypes/vmimage/offers/instant-intelligence-top-line-reporter/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxpYmVyYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbnN0YW50LWludGVsbGlnZW5jZS10b3AtbGluZS1yZXBvcnRlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dl_tlr_01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation/ArtifactTypes/VMImage/Offers/instant-intelligence-top-line-reporter/Skus/dl_tlr_01\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "562" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32081,7 +32392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2ea4271-165d-4071-8d86-ccc833008428" + "15e858f8-0d7d-4729-b6be-fb31da6cbc0d" ], "Cache-Control": [ "no-cache" @@ -32091,34 +32402,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13424" + "14311" ], "x-ms-correlation-request-id": [ - "e7e76f8e-6fb5-4b54-8ee1-8958786e1e1a" + "8c50b4a2-a6df-4c38-bc93-085181b0b292" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:e7e76f8e-6fb5-4b54-8ee1-8958786e1e1a" + "WESTUS:20150813T074701Z:8c50b4a2-a6df-4c38-bc93-085181b0b292" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/defacto_global_/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVmYWN0b19nbG9iYWxfL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataliberation/artifacttypes/vmimage/offers/instant-intelligence-top-line-reporter/skus/dl_tlr_01/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxpYmVyYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbnN0YW50LWludGVsbGlnZW5jZS10b3AtbGluZS1yZXBvcnRlci9za3VzL2RsX3Rscl8wMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_modeler_w2012_sql2014_ssas2014_sampleapp01\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_/ArtifactTypes/VMImage/Offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation/ArtifactTypes/VMImage/Offers/instant-intelligence-top-line-reporter/Skus/dl_tlr_01/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "325" + "297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32133,7 +32444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fedd12de-28b2-4e22-aca4-6cd6cf0816a6" + "b2c13e99-86b2-4d25-a8ac-8f65ab60d4d2" ], "Cache-Control": [ "no-cache" @@ -32143,34 +32454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13423" + "14310" ], "x-ms-correlation-request-id": [ - "04565442-95c8-42b1-829d-5dcbc78227db" + "93eac27f-e62b-4144-95dd-ad115b1b607c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:04565442-95c8-42b1-829d-5dcbc78227db" + "WESTUS:20150813T074702Z:93eac27f-e62b-4144-95dd-ad115b1b607c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/defacto_global_/artifacttypes/vmimage/offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVmYWN0b19nbG9iYWxfL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGVmYWN0b19tb2RlbGVyX3cyMDEyX3NxbDIwMTRfc3NhczIwMTRfc2FtcGxlYXBwMDEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dataliberation/artifacttypes/vmimage/offers/instant-intelligence-top-line-reporter/skus/dl_tlr_01/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YWxpYmVyYXRpb24vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbnN0YW50LWludGVsbGlnZW5jZS10b3AtbGluZS1yZXBvcnRlci9za3VzL2RsX3Rscl8wMS92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_business_modeler_byol_01\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_/ArtifactTypes/VMImage/Offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/Skus/defacto_business_modeler_byol_01\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dataliberation\",\r\n \"name\": \"dl_tlr_01\",\r\n \"product\": \"instant-intelligence-top-line-reporter\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation/ArtifactTypes/VMImage/Offers/instant-intelligence-top-line-reporter/Skus/dl_tlr_01/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "345" + "546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32185,7 +32496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5d1f23d-5a7f-41c8-ba8e-c81b5be8e23b" + "9bffccdf-b389-46f3-b672-711a1b422a21" ], "Cache-Control": [ "no-cache" @@ -32195,34 +32506,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13422" + "14309" ], "x-ms-correlation-request-id": [ - "df4edc29-158e-4204-a5c9-2f7076e048d7" + "09b2690c-9272-46bc-b248-83aacfe5d677" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212526Z:df4edc29-158e-4204-a5c9-2f7076e048d7" + "WESTUS:20150813T074702Z:09b2690c-9272-46bc-b248-83aacfe5d677" ], "Date": [ - "Wed, 05 Aug 2015 21:25:26 GMT" + "Thu, 13 Aug 2015 07:47:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/defacto_global_/artifacttypes/vmimage/offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/skus/defacto_business_modeler_byol_01/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVmYWN0b19nbG9iYWxfL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGVmYWN0b19tb2RlbGVyX3cyMDEyX3NxbDIwMTRfc3NhczIwMTRfc2FtcGxlYXBwMDEvc2t1cy9kZWZhY3RvX2J1c2luZXNzX21vZGVsZXJfYnlvbF8wMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_/ArtifactTypes/VMImage/Offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/Skus/defacto_business_modeler_byol_01/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax-enterprise-non-production-use-only\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "333" + "535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32237,7 +32548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91e8162d-3262-496a-bd21-d403c981c5f0" + "110270ee-d666-44fa-b193-f148c177217e" ], "Cache-Control": [ "no-cache" @@ -32247,34 +32558,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13421" + "14308" ], "x-ms-correlation-request-id": [ - "efded897-e11f-4be3-bf6e-cead94805b06" + "892fdeea-0d68-44ee-b536-de9f501e46ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:efded897-e11f-4be3-bf6e-cead94805b06" + "WESTUS:20150813T074702Z:892fdeea-0d68-44ee-b536-de9f501e46ac" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/defacto_global_/artifacttypes/vmimage/offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/skus/defacto_business_modeler_byol_01/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVmYWN0b19nbG9iYWxfL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGVmYWN0b19tb2RlbGVyX3cyMDEyX3NxbDIwMTRfc3NhczIwMTRfc2FtcGxlYXBwMDEvc2t1cy9kZWZhY3RvX2J1c2luZXNzX21vZGVsZXJfYnlvbF8wMS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"defacto_global_\",\r\n \"name\": \"defacto_business_modeler_byol_01\",\r\n \"product\": \"defacto_modeler_w2012_sql2014_ssas2014_sampleapp01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_/ArtifactTypes/VMImage/Offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/Skus/defacto_business_modeler_byol_01/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "618" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32289,7 +32600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "011685eb-e822-4de8-8b90-f9c986fb0a31" + "253cfc83-b225-423b-aada-11b1192b6938" ], "Cache-Control": [ "no-cache" @@ -32299,34 +32610,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13420" + "14307" ], "x-ms-correlation-request-id": [ - "d3e443be-a4bf-44a1-8402-4e3a3eeafc8d" + "78a27b55-b74b-46dd-8b23-5479f471f7af" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:d3e443be-a4bf-44a1-8402-4e3a3eeafc8d" + "WESTUS:20150813T074702Z:78a27b55-b74b-46dd-8b23-5479f471f7af" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell-software/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbC1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax/skus/enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise/Versions/1.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "521" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32341,7 +32652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46d8b70b-5a0e-4c7a-a590-a28a057a3028" + "276533cf-104c-4030-8cba-807b2eff3225" ], "Cache-Control": [ "no-cache" @@ -32351,34 +32662,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13419" + "14306" ], "x-ms-correlation-request-id": [ - "0c350129-30af-4f3a-97fd-107f05dfc022" + "f2dadabc-4f5e-41d7-b074-192cf3c92152" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:0c350129-30af-4f3a-97fd-107f05dfc022" + "WESTUS:20150813T074702Z:f2dadabc-4f5e-41d7-b074-192cf3c92152" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax/skus/enterprise/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appassure-replication-target-for-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/appassure-replication-target-for-azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"changebase-6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/changebase-6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"migration_suite_sharepoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"site_admin_for_sharepoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/site_admin_for_sharepoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"statistica-data-miner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/statistica-data-miner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"toad-intelligence-central\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"uccs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/uccs\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"datastax\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1845" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32393,7 +32704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3298ef6f-b522-4448-b64d-96015a49e041" + "af38a1e2-ac22-41f7-afe8-b4afeb8c2478" ], "Cache-Control": [ "no-cache" @@ -32403,34 +32714,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13418" + "14305" ], "x-ms-correlation-request-id": [ - "fe1e3bbe-2cf4-4b75-bc43-79b2df1bc24f" + "853e9902-1162-4bb0-a7ab-a3040ab1bd35" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:fe1e3bbe-2cf4-4b75-bc43-79b2df1bc24f" + "WESTUS:20150813T074702Z:853e9902-1162-4bb0-a7ab-a3040ab1bd35" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/appassure-replication-target-for-azure/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGFzc3VyZS1yZXBsaWNhdGlvbi10YXJnZXQtZm9yLWF6dXJlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax/skus/enterprise/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appassure_replication_target_for_azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/appassure-replication-target-for-azure/Skus/appassure_replication_target_for_azure\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"datastax\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax/Skus/enterprise/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "343" + "627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32445,7 +32756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55ec1875-4947-4dd0-9bb1-53379b02ef55" + "b7e71ef7-639a-49b0-85d5-2e13f8046990" ], "Cache-Control": [ "no-cache" @@ -32455,34 +32766,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13417" + "14304" ], "x-ms-correlation-request-id": [ - "1688e47a-70c7-4e8f-97c4-ae951f15513e" + "fe738860-326c-4a45-82e4-792693d03f4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:1688e47a-70c7-4e8f-97c4-ae951f15513e" + "WESTUS:20150813T074702Z:fe738860-326c-4a45-82e4-792693d03f4e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/appassure-replication-target-for-azure/skus/appassure_replication_target_for_azure/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGFzc3VyZS1yZXBsaWNhdGlvbi10YXJnZXQtZm9yLWF6dXJlL3NrdXMvYXBwYXNzdXJlX3JlcGxpY2F0aW9uX3RhcmdldF9mb3JfYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/appassure-replication-target-for-azure/Skus/appassure_replication_target_for_azure/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dse-nonproduction-use-single-datacenter-20core-max\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/dse-nonproduction-use-single-datacenter-20core-max\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sandbox_single-node\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "325" + "669" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32497,7 +32808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c6cb6aca-7ca3-4ea1-ac96-a2d2d59f7b4f" + "a6d10a91-417f-4932-a45a-ede167cb6c38" ], "Cache-Control": [ "no-cache" @@ -32507,34 +32818,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13416" + "14303" ], "x-ms-correlation-request-id": [ - "ce048d22-4c2d-4a13-8d12-ec64d73288e1" + "3e2c9993-4c1d-4b61-9c0f-525149deedae" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:ce048d22-4c2d-4a13-8d12-ec64d73288e1" + "WESTUS:20150813T074702Z:3e2c9993-4c1d-4b61-9c0f-525149deedae" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/appassure-replication-target-for-azure/skus/appassure_replication_target_for_azure/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGFzc3VyZS1yZXBsaWNhdGlvbi10YXJnZXQtZm9yLWF6dXJlL3NrdXMvYXBwYXNzdXJlX3JlcGxpY2F0aW9uX3RhcmdldF9mb3JfYXp1cmUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/dse-nonproduction-use-single-datacenter-20core-max/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXMvZHNlLW5vbnByb2R1Y3Rpb24tdXNlLXNpbmdsZS1kYXRhY2VudGVyLTIwY29yZS1tYXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"appassure_replication_target_for_azure\",\r\n \"product\": \"appassure-replication-target-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/appassure-replication-target-for-azure/Skus/appassure_replication_target_for_azure/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/dse-nonproduction-use-single-datacenter-20core-max/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "602" + "337" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32549,7 +32860,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2f30322-3841-4c2f-bc35-402c340ea3ff" + "aa91e407-cd72-493d-b015-c016403a28da" ], "Cache-Control": [ "no-cache" @@ -32559,34 +32870,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13415" + "14302" ], "x-ms-correlation-request-id": [ - "5ab75ada-5f5f-4a53-91c7-ae415779c998" + "bd4f2fba-5d5b-4935-953d-58c5dfcbf559" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:5ab75ada-5f5f-4a53-91c7-ae415779c998" + "WESTUS:20150813T074703Z:bd4f2fba-5d5b-4935-953d-58c5dfcbf559" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/changebase-6/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoYW5nZWJhc2UtNi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/dse-nonproduction-use-single-datacenter-20core-max/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXMvZHNlLW5vbnByb2R1Y3Rpb24tdXNlLXNpbmdsZS1kYXRhY2VudGVyLTIwY29yZS1tYXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"changebasebyol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/changebase-6/Skus/changebasebyol\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"dse-nonproduction-use-single-datacenter-20core-max\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/dse-nonproduction-use-single-datacenter-20core-max/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "269" + "777" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32601,7 +32912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "279ba93f-1373-4982-8974-9c76b76bdeca" + "a7edcc4b-c4ed-4c9e-98d0-b7e7e8b187be" ], "Cache-Control": [ "no-cache" @@ -32611,34 +32922,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13414" + "14301" ], "x-ms-correlation-request-id": [ - "113e76e7-991f-4237-b04a-3e445f06ed17" + "d60a62bd-28f3-43d7-ab08-4fb7f33388c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:113e76e7-991f-4237-b04a-3e445f06ed17" + "WESTUS:20150813T074703Z:d60a62bd-28f3-43d7-ab08-4fb7f33388c2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/changebase-6/skus/changebasebyol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoYW5nZWJhc2UtNi9za3VzL2NoYW5nZWJhc2VieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXMvc2FuZGJveF9zaW5nbGUtbm9kZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/changebase-6/Skus/changebasebyol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "275" + "306" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32653,7 +32964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b954e70-a5eb-42e3-b989-d5dce25b2582" + "32b827a8-4c7b-4d7a-b34a-7761122f6cb1" ], "Cache-Control": [ "no-cache" @@ -32663,34 +32974,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13413" + "14300" ], "x-ms-correlation-request-id": [ - "993e0595-13dc-485f-92b9-648ece50438a" + "20493e62-93c8-4948-9312-f094872e7056" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212527Z:993e0595-13dc-485f-92b9-648ece50438a" + "WESTUS:20150813T074703Z:20493e62-93c8-4948-9312-f094872e7056" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/changebase-6/skus/changebasebyol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoYW5nZWJhc2UtNi9za3VzL2NoYW5nZWJhc2VieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGF0YXN0YXgvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kYXRhc3RheC1lbnRlcnByaXNlLW5vbi1wcm9kdWN0aW9uLXVzZS1vbmx5L3NrdXMvc2FuZGJveF9zaW5nbGUtbm9kZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"changebasebyol\",\r\n \"product\": \"changebase-6\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/changebase-6/Skus/changebasebyol/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "502" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32705,7 +33016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75e5155f-b183-4f00-b2fa-96ff828aec5c" + "5be1d134-3e9e-4c33-b3be-59db0f72ca74" ], "Cache-Control": [ "no-cache" @@ -32715,34 +33026,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13412" + "14299" ], "x-ms-correlation-request-id": [ - "1c0cd6bf-8804-4e7b-a3af-b3f713387b07" + "ee25734e-ac91-4ecd-b558-3f29a31205f9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:1c0cd6bf-8804-4e7b-a3af-b3f713387b07" + "WESTUS:20150813T074703Z:ee25734e-ac91-4ecd-b558-3f29a31205f9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:27 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration_suite_sharepoint/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbl9zdWl0ZV9zaGFyZXBvaW50L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/defacto_global_/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVmYWN0b19nbG9iYWxfL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"migration_suite_sharepoint_win2008r2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint/Skus/migration_suite_sharepoint_win2008r2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_modeler_w2012_sql2014_ssas2014_sampleapp01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_/ArtifactTypes/VMImage/Offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "327" + "325" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32757,7 +33068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12986c17-3031-45e2-b940-bf69810e0e65" + "2e05c501-dcc1-43c0-8bc3-6681e35e8d68" ], "Cache-Control": [ "no-cache" @@ -32767,34 +33078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13411" + "14298" ], "x-ms-correlation-request-id": [ - "3cac1f18-af53-4e36-bb05-7061f0dbf4e3" + "928abccd-9492-4d9b-9c9a-98590ba23b72" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:3cac1f18-af53-4e36-bb05-7061f0dbf4e3" + "WESTUS:20150813T074703Z:928abccd-9492-4d9b-9c9a-98590ba23b72" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration_suite_sharepoint/skus/migration_suite_sharepoint_win2008r2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbl9zdWl0ZV9zaGFyZXBvaW50L3NrdXMvbWlncmF0aW9uX3N1aXRlX3NoYXJlcG9pbnRfd2luMjAwOHIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/defacto_global_/artifacttypes/vmimage/offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVmYWN0b19nbG9iYWxfL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGVmYWN0b19tb2RlbGVyX3cyMDEyX3NxbDIwMTRfc3NhczIwMTRfc2FtcGxlYXBwMDEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint/Skus/migration_suite_sharepoint_win2008r2/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_business_modeler_byol_01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_/ArtifactTypes/VMImage/Offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/Skus/defacto_business_modeler_byol_01\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "311" + "345" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32809,7 +33120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40502596-bac4-4e15-8ba4-99c3e1256b6d" + "7315f275-a20a-4a8b-8a4b-484785b0030c" ], "Cache-Control": [ "no-cache" @@ -32819,34 +33130,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13410" + "14297" ], "x-ms-correlation-request-id": [ - "3a732af8-ccef-45da-9e71-964869c91ca4" + "ebf5bb9b-be59-4ad3-9034-83eff1bae762" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:3a732af8-ccef-45da-9e71-964869c91ca4" + "WESTUS:20150813T074703Z:ebf5bb9b-be59-4ad3-9034-83eff1bae762" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration_suite_sharepoint/skus/migration_suite_sharepoint_win2008r2/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbl9zdWl0ZV9zaGFyZXBvaW50L3NrdXMvbWlncmF0aW9uX3N1aXRlX3NoYXJlcG9pbnRfd2luMjAwOHIyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/defacto_global_/artifacttypes/vmimage/offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/skus/defacto_business_modeler_byol_01/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVmYWN0b19nbG9iYWxfL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGVmYWN0b19tb2RlbGVyX3cyMDEyX3NxbDIwMTRfc3NhczIwMTRfc2FtcGxlYXBwMDEvc2t1cy9kZWZhY3RvX2J1c2luZXNzX21vZGVsZXJfYnlvbF8wMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"migration_suite_sharepoint_win2008r2\",\r\n \"product\": \"migration_suite_sharepoint\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint/Skus/migration_suite_sharepoint_win2008r2/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_/ArtifactTypes/VMImage/Offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/Skus/defacto_business_modeler_byol_01/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "574" + "333" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32861,7 +33172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf88c875-4ecc-4f8b-bba0-5554dca5652f" + "c892f0fe-1e0f-4fa1-b140-1218d8635838" ], "Cache-Control": [ "no-cache" @@ -32871,34 +33182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13409" + "14296" ], "x-ms-correlation-request-id": [ - "3505e111-00a8-46d6-84b3-ea16e8ff95eb" + "adde4f94-c2dd-49d1-ae3f-89634df436b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:3505e111-00a8-46d6-84b3-ea16e8ff95eb" + "WESTUS:20150813T074703Z:adde4f94-c2dd-49d1-ae3f-89634df436b9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/site_admin_for_sharepoint/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NpdGVfYWRtaW5fZm9yX3NoYXJlcG9pbnQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/defacto_global_/artifacttypes/vmimage/offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/skus/defacto_business_modeler_byol_01/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVmYWN0b19nbG9iYWxfL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZGVmYWN0b19tb2RlbGVyX3cyMDEyX3NxbDIwMTRfc3NhczIwMTRfc2FtcGxlYXBwMDEvc2t1cy9kZWZhY3RvX2J1c2luZXNzX21vZGVsZXJfYnlvbF8wMS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"site_admin_for_sharepoint_w2k8r2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/site_admin_for_sharepoint/Skus/site_admin_for_sharepoint_w2k8r2\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"defacto_global_\",\r\n \"name\": \"defacto_business_modeler_byol_01\",\r\n \"product\": \"defacto_modeler_w2012_sql2014_ssas2014_sampleapp01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_/ArtifactTypes/VMImage/Offers/defacto_modeler_w2012_sql2014_ssas2014_sampleapp01/Skus/defacto_business_modeler_byol_01/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "318" + "618" ], "Content-Type": [ "application/json; charset=utf-8" @@ -32913,7 +33224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ac5ae2f-1e2b-453a-9d67-9fef2afad3f0" + "6d36ab8e-e917-4581-ad00-55c089261491" ], "Cache-Control": [ "no-cache" @@ -32923,28 +33234,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13408" + "14295" ], "x-ms-correlation-request-id": [ - "bad3828e-9235-4bb9-b605-5c545b944443" + "cc126283-a973-440b-aa07-09ce42be65ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:bad3828e-9235-4bb9-b605-5c545b944443" + "WESTUS:20150813T074703Z:cc126283-a973-440b-aa07-09ce42be65ce" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/site_admin_for_sharepoint/skus/site_admin_for_sharepoint_w2k8r2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NpdGVfYWRtaW5fZm9yX3NoYXJlcG9pbnQvc2t1cy9zaXRlX2FkbWluX2Zvcl9zaGFyZXBvaW50X3cyazhyMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell-software/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbC1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -32965,7 +33276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08d18ed7-f7e5-47a5-8e82-abe31f7b5198" + "344c7035-8b9c-4dda-8c8a-bf4b1dc4a036" ], "Cache-Control": [ "no-cache" @@ -32975,34 +33286,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13407" + "14294" ], "x-ms-correlation-request-id": [ - "152a84cd-9399-48bb-9499-0117899827fc" + "deaf688d-7f83-4b39-bb4a-64a07887c351" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:152a84cd-9399-48bb-9499-0117899827fc" + "WESTUS:20150813T074703Z:deaf688d-7f83-4b39-bb4a-64a07887c351" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/statistica-data-miner/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YXRpc3RpY2EtZGF0YS1taW5lci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-statistica-data-miner-rental\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/statistica-data-miner/Skus/dell-statistica-data-miner-rental\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appassure-replication-target-for-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/appassure-replication-target-for-azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"changebase-6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/changebase-6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"migration-manager-for-enterprise-social\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration-manager-for-enterprise-social\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"migration_suite_sharepoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"site_admin_for_sharepoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/site_admin_for_sharepoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"statistica-data-miner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/statistica-data-miner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"toad-intelligence-central\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"uccs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/uccs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vworkspace-azure-trial\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/vworkspace-azure-trial\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "316" + "2407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33017,7 +33328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bcff68d-e81c-4654-acb6-43db8902eccb" + "e60dadc5-15f8-4eb7-b4ee-57cc98bcba42" ], "Cache-Control": [ "no-cache" @@ -33027,34 +33338,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13406" + "14293" ], "x-ms-correlation-request-id": [ - "cb9fe2cf-9bc2-4a3f-89b7-820ff4346cbf" + "9ae9d8ec-aef6-4e0e-9ff1-b8abc99e854b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:cb9fe2cf-9bc2-4a3f-89b7-820ff4346cbf" + "WESTUS:20150813T074704Z:9ae9d8ec-aef6-4e0e-9ff1-b8abc99e854b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/statistica-data-miner/skus/dell-statistica-data-miner-rental/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YXRpc3RpY2EtZGF0YS1taW5lci9za3VzL2RlbGwtc3RhdGlzdGljYS1kYXRhLW1pbmVyLXJlbnRhbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/appassure-replication-target-for-azure/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGFzc3VyZS1yZXBsaWNhdGlvbi10YXJnZXQtZm9yLWF6dXJlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/statistica-data-miner/Skus/dell-statistica-data-miner-rental/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appassure_replication_target_for_azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/appassure-replication-target-for-azure/Skus/appassure_replication_target_for_azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "303" + "343" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33069,7 +33380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "223642fc-86ab-41d1-aec9-0717cb19ea65" + "c637f1da-87cf-49f0-ac59-5afbec3ed9fc" ], "Cache-Control": [ "no-cache" @@ -33079,34 +33390,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13405" + "14292" ], "x-ms-correlation-request-id": [ - "e33f7e3d-5ceb-49f4-a0e6-5ac52e6334e5" + "7863d84c-21fc-4a73-b273-c0a4d41e393b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:e33f7e3d-5ceb-49f4-a0e6-5ac52e6334e5" + "WESTUS:20150813T074704Z:7863d84c-21fc-4a73-b273-c0a4d41e393b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/statistica-data-miner/skus/dell-statistica-data-miner-rental/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YXRpc3RpY2EtZGF0YS1taW5lci9za3VzL2RlbGwtc3RhdGlzdGljYS1kYXRhLW1pbmVyLXJlbnRhbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/appassure-replication-target-for-azure/skus/appassure_replication_target_for_azure/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGFzc3VyZS1yZXBsaWNhdGlvbi10YXJnZXQtZm9yLWF6dXJlL3NrdXMvYXBwYXNzdXJlX3JlcGxpY2F0aW9uX3RhcmdldF9mb3JfYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"dell-statistica-data-miner-rental\",\r\n \"product\": \"statistica-data-miner\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/statistica-data-miner/Skus/dell-statistica-data-miner-rental/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/appassure-replication-target-for-azure/Skus/appassure_replication_target_for_azure/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "558" + "325" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33121,7 +33432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e4b8e99-b69a-4a03-92aa-f0b0affdb37f" + "0cab79ec-ad8c-43b6-b6be-12f85170d000" ], "Cache-Control": [ "no-cache" @@ -33131,34 +33442,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13404" + "14291" ], "x-ms-correlation-request-id": [ - "9acb17a1-35e3-4a73-86ad-3dbd375622c9" + "e35a9804-58fe-4ed9-a304-35a9897b21a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:9acb17a1-35e3-4a73-86ad-3dbd375622c9" + "WESTUS:20150813T074704Z:e35a9804-58fe-4ed9-a304-35a9897b21a2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/toad-intelligence-central/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvYWQtaW50ZWxsaWdlbmNlLWNlbnRyYWwvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/appassure-replication-target-for-azure/skus/appassure_replication_target_for_azure/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FwcGFzc3VyZS1yZXBsaWNhdGlvbi10YXJnZXQtZm9yLWF6dXJlL3NrdXMvYXBwYXNzdXJlX3JlcGxpY2F0aW9uX3RhcmdldF9mb3JfYXp1cmUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"toad_intelligence_central_24\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central/Skus/toad_intelligence_central_24\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"appassure_replication_target_for_azure\",\r\n \"product\": \"appassure-replication-target-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/appassure-replication-target-for-azure/Skus/appassure_replication_target_for_azure/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "310" + "602" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33173,7 +33484,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "943370d3-86d0-4ded-8b8c-2c579cf463e7" + "e4bb7a03-6ad7-4d66-b09b-50abee3b38e5" ], "Cache-Control": [ "no-cache" @@ -33183,34 +33494,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13403" + "14290" ], "x-ms-correlation-request-id": [ - "e6fd5d5a-9153-4765-adb2-47c57979f039" + "b76b7f4e-fb48-414e-803a-c4d3f99d301d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212528Z:e6fd5d5a-9153-4765-adb2-47c57979f039" + "WESTUS:20150813T074704Z:b76b7f4e-fb48-414e-803a-c4d3f99d301d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/toad-intelligence-central/skus/toad_intelligence_central_24/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvYWQtaW50ZWxsaWdlbmNlLWNlbnRyYWwvc2t1cy90b2FkX2ludGVsbGlnZW5jZV9jZW50cmFsXzI0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/changebase-6/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoYW5nZWJhc2UtNi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central/Skus/toad_intelligence_central_24/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"changebasebyol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/changebase-6/Skus/changebasebyol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "302" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33225,7 +33536,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37bab9f4-ad7e-48c2-9bb8-cd7eaa0e232e" + "12ef8e81-c55d-4c54-aa04-2cedf1c4d8eb" ], "Cache-Control": [ "no-cache" @@ -33235,34 +33546,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13402" + "14289" ], "x-ms-correlation-request-id": [ - "c19664c6-dfaa-41f7-833a-c831e81a3391" + "b05b4dd7-79d0-4df1-8561-b5a1ae979b25" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:c19664c6-dfaa-41f7-833a-c831e81a3391" + "WESTUS:20150813T074704Z:b05b4dd7-79d0-4df1-8561-b5a1ae979b25" ], "Date": [ - "Wed, 05 Aug 2015 21:25:28 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/toad-intelligence-central/skus/toad_intelligence_central_24/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvYWQtaW50ZWxsaWdlbmNlLWNlbnRyYWwvc2t1cy90b2FkX2ludGVsbGlnZW5jZV9jZW50cmFsXzI0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/changebase-6/skus/changebasebyol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoYW5nZWJhc2UtNi9za3VzL2NoYW5nZWJhc2VieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"toad_intelligence_central_24\",\r\n \"product\": \"toad-intelligence-central\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central/Skus/toad_intelligence_central_24/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/changebase-6/Skus/changebasebyol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "556" + "275" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33277,7 +33588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4f6b481-ebbf-4331-b494-65d43b06758a" + "59e5ad78-dcab-4523-95b1-c986847c956b" ], "Cache-Control": [ "no-cache" @@ -33287,34 +33598,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13401" + "14288" ], "x-ms-correlation-request-id": [ - "007a447d-fdf2-49b4-9af0-0022f777dfdc" + "b61ea836-04ac-4828-8352-ba0e7d003177" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:007a447d-fdf2-49b4-9af0-0022f777dfdc" + "WESTUS:20150813T074704Z:b61ea836-04ac-4828-8352-ba0e7d003177" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/uccs/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3VjY3Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/changebase-6/skus/changebasebyol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2NoYW5nZWJhc2UtNi9za3VzL2NoYW5nZWJhc2VieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"uccs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/uccs/Skus/uccs\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"changebasebyol\",\r\n \"product\": \"changebase-6\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/changebase-6/Skus/changebasebyol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "241" + "502" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33329,7 +33640,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91b8d1e8-8e6d-48d1-bc07-020967ca89c6" + "76c4d43a-2e00-4669-98d2-f98f2a371dfc" ], "Cache-Control": [ "no-cache" @@ -33339,34 +33650,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13400" + "14287" ], "x-ms-correlation-request-id": [ - "531100d6-386d-4b20-bc17-9f4f23929c53" + "f627b60e-54f5-446b-9918-8986eff6b6cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:531100d6-386d-4b20-bc17-9f4f23929c53" + "WESTUS:20150813T074704Z:f627b60e-54f5-446b-9918-8986eff6b6cc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/uccs/skus/uccs/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3VjY3Mvc2t1cy91Y2NzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration-manager-for-enterprise-social/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbi1tYW5hZ2VyLWZvci1lbnRlcnByaXNlLXNvY2lhbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/uccs/Skus/uccs/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mmes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration-manager-for-enterprise-social/Skus/mmes\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "257" + "276" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33381,7 +33692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52d1574a-2cac-4cdc-9c5c-a62949e06855" + "8c2c4db1-e0cd-494c-a463-58f1aa8cebbe" ], "Cache-Control": [ "no-cache" @@ -33391,34 +33702,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13399" + "14286" ], "x-ms-correlation-request-id": [ - "b7166cfd-950d-4153-b791-ac66d277f8dd" + "3e0e6d0a-6a2a-49d4-ba96-f17fddc382d3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:b7166cfd-950d-4153-b791-ac66d277f8dd" + "WESTUS:20150813T074704Z:3e0e6d0a-6a2a-49d4-ba96-f17fddc382d3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/uccs/skus/uccs/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3VjY3Mvc2t1cy91Y2NzL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration-manager-for-enterprise-social/skus/mmes/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbi1tYW5hZ2VyLWZvci1lbnRlcnByaXNlLXNvY2lhbC9za3VzL21tZXMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"uccs\",\r\n \"product\": \"uccs\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/uccs/Skus/uccs/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration-manager-for-enterprise-social/Skus/mmes/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "466" + "292" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33433,7 +33744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "662733f0-c64c-411e-9673-33ff11bda4ed" + "f2c11262-69fe-4865-8d8c-63929818f162" ], "Cache-Control": [ "no-cache" @@ -33443,34 +33754,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13398" + "14285" ], "x-ms-correlation-request-id": [ - "41e3af10-68fd-4b6e-9f75-a79df1251b48" + "4e62b7be-713e-4bc7-9bcd-6f0efc7b9216" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:41e3af10-68fd-4b6e-9f75-a79df1251b48" + "WESTUS:20150813T074704Z:4e62b7be-713e-4bc7-9bcd-6f0efc7b9216" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/derdack/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVyZGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration-manager-for-enterprise-social/skus/mmes/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbi1tYW5hZ2VyLWZvci1lbnRlcnByaXNlLXNvY2lhbC9za3VzL21tZXMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprisealert\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack/ArtifactTypes/VMImage/Offers/enterprisealert\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"mmes\",\r\n \"product\": \"migration-manager-for-enterprise-social\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration-manager-for-enterprise-social/Skus/mmes/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "247" + "536" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33485,7 +33796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b846572-ef2c-4aa1-a418-3c45b1efdabb" + "6058e112-fd9e-49b2-a579-cdf0dcb162f4" ], "Cache-Control": [ "no-cache" @@ -33495,34 +33806,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13397" + "14284" ], "x-ms-correlation-request-id": [ - "f52e3570-6d9a-47d5-baae-efaee2f0de0a" + "db25ff09-1046-4c6e-b51b-dcb6c74bc3f2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:f52e3570-6d9a-47d5-baae-efaee2f0de0a" + "WESTUS:20150813T074705Z:db25ff09-1046-4c6e-b51b-dcb6c74bc3f2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/derdack/artifacttypes/vmimage/offers/enterprisealert/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVyZGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2VhbGVydC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration_suite_sharepoint/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbl9zdWl0ZV9zaGFyZXBvaW50L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprisealert-2015-datacenter-50users\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack/ArtifactTypes/VMImage/Offers/enterprisealert/Skus/enterprisealert-2015-datacenter-50users\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"migration_suite_sharepoint_win2008r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint/Skus/migration_suite_sharepoint_win2008r2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "316" + "327" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33537,7 +33848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4744b58c-faca-4c5c-8780-66fcf129a788" + "ddfd3859-ead7-4177-8e8f-ccd312c7487f" ], "Cache-Control": [ "no-cache" @@ -33547,34 +33858,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13396" + "14283" ], "x-ms-correlation-request-id": [ - "e52bfad7-4cc1-48f8-88ae-f0db5d58eb13" + "90b74586-6fa5-4e98-a179-5cba87fbe833" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:e52bfad7-4cc1-48f8-88ae-f0db5d58eb13" + "WESTUS:20150813T074705Z:90b74586-6fa5-4e98-a179-5cba87fbe833" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/derdack/artifacttypes/vmimage/offers/enterprisealert/skus/enterprisealert-2015-datacenter-50users/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVyZGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2VhbGVydC9za3VzL2VudGVycHJpc2VhbGVydC0yMDE1LWRhdGFjZW50ZXItNTB1c2Vycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration_suite_sharepoint/skus/migration_suite_sharepoint_win2008r2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbl9zdWl0ZV9zaGFyZXBvaW50L3NrdXMvbWlncmF0aW9uX3N1aXRlX3NoYXJlcG9pbnRfd2luMjAwOHIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack/ArtifactTypes/VMImage/Offers/enterprisealert/Skus/enterprisealert-2015-datacenter-50users/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint/Skus/migration_suite_sharepoint_win2008r2/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "297" + "311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33589,7 +33900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30fd3ed2-e68d-48cf-a2ad-d7e5cf099853" + "3d3bf2c7-6d29-4794-beee-e957158b274f" ], "Cache-Control": [ "no-cache" @@ -33599,34 +33910,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13395" + "14282" ], "x-ms-correlation-request-id": [ - "3de78214-5983-4547-a582-d917fa3a3e76" + "466ba279-7004-4bf7-8253-74fcc3f506e4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:3de78214-5983-4547-a582-d917fa3a3e76" + "WESTUS:20150813T074705Z:466ba279-7004-4bf7-8253-74fcc3f506e4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/derdack/artifacttypes/vmimage/offers/enterprisealert/skus/enterprisealert-2015-datacenter-50users/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVyZGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2VhbGVydC9za3VzL2VudGVycHJpc2VhbGVydC0yMDE1LWRhdGFjZW50ZXItNTB1c2Vycy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/migration_suite_sharepoint/skus/migration_suite_sharepoint_win2008r2/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21pZ3JhdGlvbl9zdWl0ZV9zaGFyZXBvaW50L3NrdXMvbWlncmF0aW9uX3N1aXRlX3NoYXJlcG9pbnRfd2luMjAwOHIyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"derdack\",\r\n \"name\": \"enterprisealert-2015-datacenter-50users\",\r\n \"product\": \"enterprisealert\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack/ArtifactTypes/VMImage/Offers/enterprisealert/Skus/enterprisealert-2015-datacenter-50users/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"migration_suite_sharepoint_win2008r2\",\r\n \"product\": \"migration_suite_sharepoint\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint/Skus/migration_suite_sharepoint_win2008r2/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "546" + "574" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33641,7 +33952,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42411a2b-d320-4b92-889a-76952e30e7fb" + "799da7f9-03ed-45ea-a879-b760162cd016" ], "Cache-Control": [ "no-cache" @@ -33651,34 +33962,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13394" + "14281" ], "x-ms-correlation-request-id": [ - "ccec96c7-a47a-4de2-b74e-2e0a5a37fd66" + "fc302c03-52db-411b-bf60-3adcac94e158" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212529Z:ccec96c7-a47a-4de2-b74e-2e0a5a37fd66" + "WESTUS:20150813T074705Z:fc302c03-52db-411b-bf60-3adcac94e158" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dgsecure/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGdzZWN1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/site_admin_for_sharepoint/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NpdGVfYWRtaW5fZm9yX3NoYXJlcG9pbnQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"site_admin_for_sharepoint_w2k8r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/site_admin_for_sharepoint/Skus/site_admin_for_sharepoint_w2k8r2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "234" + "318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33693,7 +34004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e6440b3-aff6-4458-888e-ea8013247b15" + "d03bca6d-e980-4926-93d1-6de9754b70a0" ], "Cache-Control": [ "no-cache" @@ -33703,34 +34014,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13393" + "14280" ], "x-ms-correlation-request-id": [ - "e323f43b-c24e-45c6-afcd-0a4d9f8032a2" + "bde04010-1cdc-4edd-8f48-08170244b871" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:e323f43b-c24e-45c6-afcd-0a4d9f8032a2" + "WESTUS:20150813T074705Z:bde04010-1cdc-4edd-8f48-08170244b871" ], "Date": [ - "Wed, 05 Aug 2015 21:25:29 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dgsecure/artifacttypes/vmimage/offers/dgsecure/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGdzZWN1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kZ3NlY3VyZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/site_admin_for_sharepoint/skus/site_admin_for_sharepoint_w2k8r2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NpdGVfYWRtaW5fZm9yX3NoYXJlcG9pbnQvc2t1cy9zaXRlX2FkbWluX2Zvcl9zaGFyZXBvaW50X3cyazhyMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure/Skus/dgsecure_byol\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "258" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33745,7 +34056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff5fe519-6125-4ec8-8d00-cb3c6d8819a1" + "607dabad-a597-4282-9bb8-61b7e16e3c0e" ], "Cache-Control": [ "no-cache" @@ -33755,34 +34066,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13392" + "14279" ], "x-ms-correlation-request-id": [ - "ff272703-6a28-4a11-a430-75d6f5156e87" + "9b415d9a-7a0b-4690-8de6-22581c9fbade" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:ff272703-6a28-4a11-a430-75d6f5156e87" + "WESTUS:20150813T074705Z:9b415d9a-7a0b-4690-8de6-22581c9fbade" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dgsecure/artifacttypes/vmimage/offers/dgsecure/skus/dgsecure_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGdzZWN1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kZ3NlY3VyZS9za3VzL2Rnc2VjdXJlX2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/statistica-data-miner/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YXRpc3RpY2EtZGF0YS1taW5lci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure/Skus/dgsecure_byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-statistica-data-miner-rental\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/statistica-data-miner/Skus/dell-statistica-data-miner-rental\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "265" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33797,7 +34108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4ffaf27-9f37-4f5d-8cd7-25eb51e51a21" + "cf4484c2-09b9-40a7-891b-0b9308edde1a" ], "Cache-Control": [ "no-cache" @@ -33807,34 +34118,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13391" + "14278" ], "x-ms-correlation-request-id": [ - "eda2c78c-034d-4d87-a60c-074d68be4cb9" + "1acc18eb-1a88-46a7-8e12-94f7cdfc4cba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:eda2c78c-034d-4d87-a60c-074d68be4cb9" + "WESTUS:20150813T074705Z:1acc18eb-1a88-46a7-8e12-94f7cdfc4cba" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dgsecure/artifacttypes/vmimage/offers/dgsecure/skus/dgsecure_byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGdzZWN1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kZ3NlY3VyZS9za3VzL2Rnc2VjdXJlX2J5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/statistica-data-miner/skus/dell-statistica-data-miner-rental/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YXRpc3RpY2EtZGF0YS1taW5lci9za3VzL2RlbGwtc3RhdGlzdGljYS1kYXRhLW1pbmVyLXJlbnRhbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dgsecure\",\r\n \"name\": \"dgsecure_byol\",\r\n \"product\": \"dgsecure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure/Skus/dgsecure_byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/statistica-data-miner/Skus/dell-statistica-data-miner-rental/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "480" + "303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33849,7 +34160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32b4a4bb-6868-4751-bb78-bced69e9d664" + "61a3429f-e58e-4e46-b8c9-d2c9a06b2f91" ], "Cache-Control": [ "no-cache" @@ -33859,34 +34170,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13390" + "14277" ], "x-ms-correlation-request-id": [ - "3cbcd3d6-e7c4-4267-80b1-95d550563549" + "ffc6fafd-7b3a-4cb7-92f4-a68914be3a72" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:3cbcd3d6-e7c4-4267-80b1-95d550563549" + "WESTUS:20150813T074705Z:ffc6fafd-7b3a-4cb7-92f4-a68914be3a72" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/docker/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ja2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/statistica-data-miner/skus/dell-statistica-data-miner-rental/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YXRpc3RpY2EtZGF0YS1taW5lci9za3VzL2RlbGwtc3RhdGlzdGljYS1kYXRhLW1pbmVyLXJlbnRhbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker-subscription-for-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker/ArtifactTypes/VMImage/Offers/docker-subscription-for-azure\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"dell-statistica-data-miner-rental\",\r\n \"product\": \"statistica-data-miner\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/statistica-data-miner/Skus/dell-statistica-data-miner-rental/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "274" + "558" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33901,7 +34212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa371876-9837-436b-b767-c4978ba630a4" + "f87980b5-41ec-4436-a7cc-b50f031fca3d" ], "Cache-Control": [ "no-cache" @@ -33911,34 +34222,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13389" + "14276" ], "x-ms-correlation-request-id": [ - "a4a4d18f-8bef-4d2e-a6ff-5340a8010eff" + "7fe01723-f130-4678-8908-b8543cb28438" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:a4a4d18f-8bef-4d2e-a6ff-5340a8010eff" + "WESTUS:20150813T074705Z:7fe01723-f130-4678-8908-b8543cb28438" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/docker/artifacttypes/vmimage/offers/docker-subscription-for-azure/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ja2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9ja2VyLXN1YnNjcmlwdGlvbi1mb3ItYXp1cmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/toad-intelligence-central/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvYWQtaW50ZWxsaWdlbmNlLWNlbnRyYWwvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dse-subem1y-000001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker/ArtifactTypes/VMImage/Offers/docker-subscription-for-azure/Skus/dse-subem1y-000001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"toad_intelligence_central_24\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central/Skus/toad_intelligence_central_24\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "287" + "310" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33953,7 +34264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7be2401e-b5ae-42a6-bf42-d46ccb4ade15" + "2ee1c02c-466a-4df5-b41d-bb13e1c15515" ], "Cache-Control": [ "no-cache" @@ -33963,34 +34274,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13388" + "14275" ], "x-ms-correlation-request-id": [ - "05cd97c7-c3c7-47ac-a225-56afbab8eec3" + "6c276aa8-1302-4dad-8558-21f8798fd10c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:05cd97c7-c3c7-47ac-a225-56afbab8eec3" + "WESTUS:20150813T074705Z:6c276aa8-1302-4dad-8558-21f8798fd10c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/docker/artifacttypes/vmimage/offers/docker-subscription-for-azure/skus/dse-subem1y-000001/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ja2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9ja2VyLXN1YnNjcmlwdGlvbi1mb3ItYXp1cmUvc2t1cy9kc2Utc3ViZW0xeS0wMDAwMDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/toad-intelligence-central/skus/toad_intelligence_central_24/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvYWQtaW50ZWxsaWdlbmNlLWNlbnRyYWwvc2t1cy90b2FkX2ludGVsbGlnZW5jZV9jZW50cmFsXzI0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker/ArtifactTypes/VMImage/Offers/docker-subscription-for-azure/Skus/dse-subem1y-000001/Versions/1.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central/Skus/toad_intelligence_central_24/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "289" + "302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34005,7 +34316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c8cacd9-ecdd-4d22-adf5-a35c9a7b2dc7" + "b77c070d-6be2-483d-89ed-9ce8547fe37e" ], "Cache-Control": [ "no-cache" @@ -34015,34 +34326,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13387" + "14274" ], "x-ms-correlation-request-id": [ - "606ed8a3-6478-4aa8-bcc9-dc0961afa735" + "510900fb-76e7-4122-83bf-9ef20fd37d3d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:606ed8a3-6478-4aa8-bcc9-dc0961afa735" + "WESTUS:20150813T074705Z:510900fb-76e7-4122-83bf-9ef20fd37d3d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/docker/artifacttypes/vmimage/offers/docker-subscription-for-azure/skus/dse-subem1y-000001/versions/1.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ja2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9ja2VyLXN1YnNjcmlwdGlvbi1mb3ItYXp1cmUvc2t1cy9kc2Utc3ViZW0xeS0wMDAwMDEvdmVyc2lvbnMvMS4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/toad-intelligence-central/skus/toad_intelligence_central_24/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvYWQtaW50ZWxsaWdlbmNlLWNlbnRyYWwvc2t1cy90b2FkX2ludGVsbGlnZW5jZV9jZW50cmFsXzI0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"docker\",\r\n \"name\": \"dse-subem1y-000001\",\r\n \"product\": \"docker-subscription-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker/ArtifactTypes/VMImage/Offers/docker-subscription-for-azure/Skus/dse-subem1y-000001/Versions/1.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"toad_intelligence_central_24\",\r\n \"product\": \"toad-intelligence-central\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central/Skus/toad_intelligence_central_24/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "528" + "556" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34057,7 +34368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8c31c17-e090-44eb-b3f2-8e1325392652" + "f18c9e23-05d4-4d04-b404-2e79122b4212" ], "Cache-Control": [ "no-cache" @@ -34067,34 +34378,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13386" + "14273" ], "x-ms-correlation-request-id": [ - "4f9d9cde-e759-4354-9645-6809cfd09df3" + "6635bd7b-5ae8-4d62-8c54-a7d9559ec55e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:4f9d9cde-e759-4354-9645-6809cfd09df3" + "WESTUS:20150813T074706Z:6635bd7b-5ae8-4d62-8c54-a7d9559ec55e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/uccs/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3VjY3Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"domino2go\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"domino2go-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"uccs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/uccs/Skus/uccs\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "481" + "241" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34109,7 +34420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb5d9a72-01ee-49dd-8058-4555540c6629" + "ab1dee29-508f-428a-b08d-e156e83a8e80" ], "Cache-Control": [ "no-cache" @@ -34119,34 +34430,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13385" + "14272" ], "x-ms-correlation-request-id": [ - "81e84158-4ff8-4b22-be58-09ee452b1dd7" + "065376b8-1a96-4e2f-8ff3-c1b1822a6ff9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:81e84158-4ff8-4b22-be58-09ee452b1dd7" + "WESTUS:20150813T074706Z:065376b8-1a96-4e2f-8ff3-c1b1822a6ff9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/uccs/skus/uccs/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3VjY3Mvc2t1cy91Y2NzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"domino2go1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go/Skus/domino2go1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/uccs/Skus/uccs/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "254" + "257" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34161,7 +34472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66bbce96-00ca-425f-93e6-09e3f3761ed1" + "f527b36c-b1f6-4888-9e2a-898ccf2f8dae" ], "Cache-Control": [ "no-cache" @@ -34171,34 +34482,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13384" + "14271" ], "x-ms-correlation-request-id": [ - "b2de0368-cd64-4f36-b2d7-0f97c3b7b253" + "13754dff-aa92-4ff8-b25e-611118fef554" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212530Z:b2de0368-cd64-4f36-b2d7-0f97c3b7b253" + "WESTUS:20150813T074706Z:13754dff-aa92-4ff8-b25e-611118fef554" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go/skus/domino2go1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvL3NrdXMvZG9taW5vMmdvMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/uccs/skus/uccs/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3VjY3Mvc2t1cy91Y2NzL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go/Skus/domino2go1/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"uccs\",\r\n \"product\": \"uccs\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/uccs/Skus/uccs/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "264" + "466" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34213,7 +34524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eaaa0e48-bd0a-4162-81ac-5cc9304d75b0" + "2b51c946-7857-4c3b-a348-12fbf7003a4d" ], "Cache-Control": [ "no-cache" @@ -34223,34 +34534,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13383" + "14270" ], "x-ms-correlation-request-id": [ - "a38f7173-d2ce-43dd-b035-72558a412df9" + "f551aadb-c065-42ed-a46d-089496ecf642" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212531Z:a38f7173-d2ce-43dd-b035-72558a412df9" + "WESTUS:20150813T074706Z:f551aadb-c065-42ed-a46d-089496ecf642" ], "Date": [ - "Wed, 05 Aug 2015 21:25:30 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go/skus/domino2go1/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvL3NrdXMvZG9taW5vMmdvMS92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/vworkspace-azure-trial/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Z3b3Jrc3BhY2UtYXp1cmUtdHJpYWwvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"donovapub\",\r\n \"name\": \"domino2go1\",\r\n \"product\": \"domino2go\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go/Skus/domino2go1/Versions/1.0.2\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wyse_vworkspace_broker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/vworkspace-azure-trial/Skus/wyse_vworkspace_broker\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "522" + "295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34265,7 +34576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9b1a66d-5556-431f-ba50-d0c948c1b680" + "9717b284-63b7-4d75-a3fa-2d38a41bc688" ], "Cache-Control": [ "no-cache" @@ -34275,34 +34586,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13382" + "14269" ], "x-ms-correlation-request-id": [ - "38a7218f-5955-4c0d-8a7f-db1b1b097412" + "6c8971f2-c85a-408a-b06f-21329d2b5612" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212531Z:38a7218f-5955-4c0d-8a7f-db1b1b097412" + "WESTUS:20150813T074706Z:6c8971f2-c85a-408a-b06f-21329d2b5612" ], "Date": [ - "Wed, 05 Aug 2015 21:25:31 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go-byol/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvLWJ5b2wvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/vworkspace-azure-trial/skus/wyse_vworkspace_broker/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Z3b3Jrc3BhY2UtYXp1cmUtdHJpYWwvc2t1cy93eXNlX3Z3b3Jrc3BhY2VfYnJva2VyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"domino2go-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol/Skus/domino2go-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/vworkspace-azure-trial/Skus/wyse_vworkspace_broker/Versions/1.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "267" + "293" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34317,7 +34628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "faab7ecf-ee7c-4821-91ac-c405d7460b1a" + "5eae33a0-2aa1-409f-988b-5fea0c7ed998" ], "Cache-Control": [ "no-cache" @@ -34327,34 +34638,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13381" + "14268" ], "x-ms-correlation-request-id": [ - "5b7f8399-be7c-4241-b4af-be7d1c90ade0" + "8d6d1b31-15e7-421e-a88d-b896eb57f264" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212531Z:5b7f8399-be7c-4241-b4af-be7d1c90ade0" + "WESTUS:20150813T074706Z:8d6d1b31-15e7-421e-a88d-b896eb57f264" ], "Date": [ - "Wed, 05 Aug 2015 21:25:31 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go-byol/skus/domino2go-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvLWJ5b2wvc2t1cy9kb21pbm8yZ28tYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dell_software/artifacttypes/vmimage/offers/vworkspace-azure-trial/skus/wyse_vworkspace_broker/versions/1.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVsbF9zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Z3b3Jrc3BhY2UtYXp1cmUtdHJpYWwvc2t1cy93eXNlX3Z3b3Jrc3BhY2VfYnJva2VyL3ZlcnNpb25zLzEuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol/Skus/domino2go-byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dell_software\",\r\n \"name\": \"wyse_vworkspace_broker\",\r\n \"product\": \"vworkspace-azure-trial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software/ArtifactTypes/VMImage/Offers/vworkspace-azure-trial/Skus/wyse_vworkspace_broker/Versions/1.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "273" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34369,7 +34680,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83a4712c-1cc5-4280-9c66-71d23dc5d5a9" + "f049696e-b7c1-4446-ac83-0b1b5a2a5461" ], "Cache-Control": [ "no-cache" @@ -34379,34 +34690,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13380" + "14267" ], "x-ms-correlation-request-id": [ - "b9587e42-4876-4d14-9876-5f3695d583f3" + "d7581105-60c6-4891-8546-305d060f8f5e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212531Z:b9587e42-4876-4d14-9876-5f3695d583f3" + "WESTUS:20150813T074706Z:d7581105-60c6-4891-8546-305d060f8f5e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:31 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go-byol/skus/domino2go-byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvLWJ5b2wvc2t1cy9kb21pbm8yZ28tYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/derdack/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVyZGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"donovapub\",\r\n \"name\": \"domino2go-byol\",\r\n \"product\": \"domino2go-byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol/Skus/domino2go-byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprisealert\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack/ArtifactTypes/VMImage/Offers/enterprisealert\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "540" + "247" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34421,7 +34732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a94f4f5-6d17-4420-b2c9-004a267fe228" + "308f7876-8145-413a-934e-f6e816376de3" ], "Cache-Control": [ "no-cache" @@ -34431,34 +34742,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13379" + "14266" ], "x-ms-correlation-request-id": [ - "4c376c85-e7e9-4e6e-81b0-c8b4eb4b16c3" + "49d8e8b4-bc64-4808-aca4-64fccbedc3fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212531Z:4c376c85-e7e9-4e6e-81b0-c8b4eb4b16c3" + "WESTUS:20150813T074706Z:49d8e8b4-bc64-4808-aca4-64fccbedc3fe" ], "Date": [ - "Wed, 05 Aug 2015 21:25:31 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/drone/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHJvbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/derdack/artifacttypes/vmimage/offers/enterprisealert/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVyZGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2VhbGVydC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone/ArtifactTypes/VMImage/Offers/drone\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprisealert-2015-datacenter-50users\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack/ArtifactTypes/VMImage/Offers/enterprisealert/Skus/enterprisealert-2015-datacenter-50users\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "225" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34473,7 +34784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68666235-7f79-48d4-b2fb-20a4af3f0a28" + "8867fa9f-40bf-4a8b-9fc1-1c3fed6a4c00" ], "Cache-Control": [ "no-cache" @@ -34483,31 +34794,135 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13378" + "14265" ], "x-ms-correlation-request-id": [ - "6276278c-c316-4cec-be10-339a6120c9d3" + "f652d58d-91f1-408f-ae2f-326de3410a12" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212532Z:6276278c-c316-4cec-be10-339a6120c9d3" + "WESTUS:20150813T074706Z:f652d58d-91f1-408f-ae2f-326de3410a12" ], "Date": [ - "Wed, 05 Aug 2015 21:25:31 GMT" + "Thu, 13 Aug 2015 07:47:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/drone/artifacttypes/vmimage/offers/drone/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHJvbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kcm9uZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/derdack/artifacttypes/vmimage/offers/enterprisealert/skus/enterprisealert-2015-datacenter-50users/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVyZGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2VhbGVydC9za3VzL2VudGVycHJpc2VhbGVydC0yMDE1LWRhdGFjZW50ZXItNTB1c2Vycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone/ArtifactTypes/VMImage/Offers/drone/Skus/free\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack/ArtifactTypes/VMImage/Offers/enterprisealert/Skus/enterprisealert-2015-datacenter-50users/Versions/1.0.0\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "56e2607f-bb95-4178-9ac8-57eee42adc19" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14264" + ], + "x-ms-correlation-request-id": [ + "4aac674c-81f1-49fc-b13e-c18817dfaf11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074706Z:4aac674c-81f1-49fc-b13e-c18817dfaf11" + ], + "Date": [ + "Thu, 13 Aug 2015 07:47:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/derdack/artifacttypes/vmimage/offers/enterprisealert/skus/enterprisealert-2015-datacenter-50users/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGVyZGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2VhbGVydC9za3VzL2VudGVycHJpc2VhbGVydC0yMDE1LWRhdGFjZW50ZXItNTB1c2Vycy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"derdack\",\r\n \"name\": \"enterprisealert-2015-datacenter-50users\",\r\n \"product\": \"enterprisealert\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack/ArtifactTypes/VMImage/Offers/enterprisealert/Skus/enterprisealert-2015-datacenter-50users/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "546" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9f82f64-b899-4b98-aa67-aea0471dec38" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14263" + ], + "x-ms-correlation-request-id": [ + "00325823-25b1-4a93-a7c3-c1b352a02a3d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074707Z:00325823-25b1-4a93-a7c3-c1b352a02a3d" + ], + "Date": [ + "Thu, 13 Aug 2015 07:47:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dgsecure/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGdzZWN1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "234" @@ -34525,7 +34940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1312578a-db8d-4d5a-8046-7bd3baf7684f" + "a37b6a5b-ac8a-4821-bed3-81ee46e9e12c" ], "Cache-Control": [ "no-cache" @@ -34535,34 +34950,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13377" + "14262" ], "x-ms-correlation-request-id": [ - "de1519ca-1903-4f17-a8ba-8b800db32925" + "a0dc5b69-681c-4d0d-a701-2874e0a5a3a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212532Z:de1519ca-1903-4f17-a8ba-8b800db32925" + "WESTUS:20150813T074707Z:a0dc5b69-681c-4d0d-a701-2874e0a5a3a7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:32 GMT" + "Thu, 13 Aug 2015 07:47:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/drone/artifacttypes/vmimage/offers/drone/skus/free/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHJvbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kcm9uZS9za3VzL2ZyZWUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dgsecure/artifacttypes/vmimage/offers/dgsecure/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGdzZWN1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kZ3NlY3VyZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone/ArtifactTypes/VMImage/Offers/drone/Skus/free/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure/Skus/dgsecure_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "250" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34577,7 +34992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d1cd14e-d166-457b-a19f-6b105861d541" + "e691d711-c581-441b-a228-36162b5f482f" ], "Cache-Control": [ "no-cache" @@ -34587,34 +35002,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13376" + "14261" ], "x-ms-correlation-request-id": [ - "c1e5dec2-a69c-448c-9bc3-a9f0011788ca" + "a66ff9fe-0c37-47bd-bf0b-297146c79534" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212532Z:c1e5dec2-a69c-448c-9bc3-a9f0011788ca" + "WESTUS:20150813T074707Z:a66ff9fe-0c37-47bd-bf0b-297146c79534" ], "Date": [ - "Wed, 05 Aug 2015 21:25:32 GMT" + "Thu, 13 Aug 2015 07:47:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/drone/artifacttypes/vmimage/offers/drone/skus/free/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHJvbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kcm9uZS9za3VzL2ZyZWUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dgsecure/artifacttypes/vmimage/offers/dgsecure/skus/dgsecure_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGdzZWN1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kZ3NlY3VyZS9za3VzL2Rnc2VjdXJlX2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"drone\",\r\n \"name\": \"free\",\r\n \"product\": \"drone\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone/ArtifactTypes/VMImage/Offers/drone/Skus/free/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure/Skus/dgsecure_byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "450" + "265" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34629,7 +35044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1175088f-cdc4-4329-9839-36f93b2ae5c3" + "ca1b19b9-7a32-44b3-9968-1276328a513a" ], "Cache-Control": [ "no-cache" @@ -34639,34 +35054,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13375" + "14260" ], "x-ms-correlation-request-id": [ - "2493447c-105e-4ab4-aebb-a311a5d4b380" + "dbffe1a8-71e3-4e1e-9ba9-10c6a845e19c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212532Z:2493447c-105e-4ab4-aebb-a311a5d4b380" + "WESTUS:20150813T074707Z:dbffe1a8-71e3-4e1e-9ba9-10c6a845e19c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:32 GMT" + "Thu, 13 Aug 2015 07:47:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dgsecure/artifacttypes/vmimage/offers/dgsecure/skus/dgsecure_byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZGdzZWN1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kZ3NlY3VyZS9za3VzL2Rnc2VjdXJlX2J5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas-bi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dgsecure\",\r\n \"name\": \"dgsecure_byol\",\r\n \"product\": \"dgsecure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure/Skus/dgsecure_byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "480" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34681,7 +35096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "263d9d5a-7eb3-4461-95c5-cecbe1889aa6" + "c0f349d4-447d-46b1-8acb-e47a70a8f716" ], "Cache-Control": [ "no-cache" @@ -34691,34 +35106,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13374" + "14259" ], "x-ms-correlation-request-id": [ - "77166f21-b720-4f34-9836-22f0ed4244ac" + "1f85cffe-e9e8-4308-8923-7933d034136e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212532Z:77166f21-b720-4f34-9836-22f0ed4244ac" + "WESTUS:20150813T074707Z:1f85cffe-e9e8-4308-8923-7933d034136e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:32 GMT" + "Thu, 13 Aug 2015 07:47:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers/dundas-bi/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZHVuZGFzLWJpL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/docker/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ja2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dbi1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker-subscription-for-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker/ArtifactTypes/VMImage/Offers/docker-subscription-for-azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "239" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34733,7 +35148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32ed2d38-db2a-4147-afff-531b097d9a04" + "77fcdd12-edd8-485a-a789-cb5d16a0a7de" ], "Cache-Control": [ "no-cache" @@ -34743,34 +35158,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13373" + "14258" ], "x-ms-correlation-request-id": [ - "50be194b-6832-4169-b4f5-1517faf82d36" + "534a73d9-3f2e-44d6-bee2-85eacebd693b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212532Z:50be194b-6832-4169-b4f5-1517faf82d36" + "WESTUS:20150813T074707Z:534a73d9-3f2e-44d6-bee2-85eacebd693b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:32 GMT" + "Thu, 13 Aug 2015 07:47:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers/dundas-bi/skus/dbi1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZHVuZGFzLWJpL3NrdXMvZGJpMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/docker/artifacttypes/vmimage/offers/docker-subscription-for-azure/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ja2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9ja2VyLXN1YnNjcmlwdGlvbi1mb3ItYXp1cmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi1/Versions/1.0.7\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dse-subem1y-000001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker/ArtifactTypes/VMImage/Offers/docker-subscription-for-azure/Skus/dse-subem1y-000001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "255" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34785,7 +35200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34cdd583-b0d2-49d5-9c44-696cc0a06f07" + "63c3cfff-6053-4175-a7e2-b7768fbb37d0" ], "Cache-Control": [ "no-cache" @@ -34795,34 +35210,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13372" + "14257" ], "x-ms-correlation-request-id": [ - "131f921d-217b-4a6a-8c72-bd0ead7206dc" + "5044bf77-3130-4b98-a6ec-60bd4a622a5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212532Z:131f921d-217b-4a6a-8c72-bd0ead7206dc" + "WESTUS:20150813T074707Z:5044bf77-3130-4b98-a6ec-60bd4a622a5b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:32 GMT" + "Thu, 13 Aug 2015 07:47:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers/dundas-bi/skus/dbi1/versions/1.0.7?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZHVuZGFzLWJpL3NrdXMvZGJpMS92ZXJzaW9ucy8xLjAuNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/docker/artifacttypes/vmimage/offers/docker-subscription-for-azure/skus/dse-subem1y-000001/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ja2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9ja2VyLXN1YnNjcmlwdGlvbi1mb3ItYXp1cmUvc2t1cy9kc2Utc3ViZW0xeS0wMDAwMDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dundas\",\r\n \"name\": \"dbi1\",\r\n \"product\": \"dundas-bi\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi1/Versions/1.0.7\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker/ArtifactTypes/VMImage/Offers/docker-subscription-for-azure/Skus/dse-subem1y-000001/Versions/1.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "462" + "289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34837,7 +35252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f5d2003-b3b5-4a27-b69b-0ac4476795d3" + "7f298ed0-07e9-4460-8dcc-6a99bbae91de" ], "Cache-Control": [ "no-cache" @@ -34847,34 +35262,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13371" + "14256" ], "x-ms-correlation-request-id": [ - "6a8e2017-b2d3-42ed-9cc4-cd3751a47a49" + "c5f9cf55-958e-441b-beda-215e393763fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212532Z:6a8e2017-b2d3-42ed-9cc4-cd3751a47a49" + "WESTUS:20150813T074707Z:c5f9cf55-958e-441b-beda-215e393763fb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:32 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/dynatrace.ruxit/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHluYXRyYWNlLnJ1eGl0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/docker/artifacttypes/vmimage/offers/docker-subscription-for-azure/skus/dse-subem1y-000001/versions/1.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ja2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9ja2VyLXN1YnNjcmlwdGlvbi1mb3ItYXp1cmUvc2t1cy9kc2Utc3ViZW0xeS0wMDAwMDEvdmVyc2lvbnMvMS4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"docker\",\r\n \"name\": \"dse-subem1y-000001\",\r\n \"product\": \"docker-subscription-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker/ArtifactTypes/VMImage/Offers/docker-subscription-for-azure/Skus/dse-subem1y-000001/Versions/1.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34889,7 +35304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13086c8c-6ef9-4aa9-85f0-79575c88ca94" + "f60dfe47-c2e3-4954-9d5f-e9bb9e7288f3" ], "Cache-Control": [ "no-cache" @@ -34899,34 +35314,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13370" + "14255" ], "x-ms-correlation-request-id": [ - "7b1b2493-aeb9-4b66-801c-dccccbef511f" + "3044d428-7ddd-4183-a576-0abd1fdfd0a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212533Z:7b1b2493-aeb9-4b66-801c-dccccbef511f" + "WESTUS:20150813T074708Z:3044d428-7ddd-4183-a576-0abd1fdfd0a2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:32 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/easyterritory/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWFzeXRlcnJpdG9yeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory/ArtifactTypes/VMImage/Offers/easyterritory\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"domino2go\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"domino2go-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "249" + "481" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34941,7 +35356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67552d34-0a84-4919-8e56-87d9b81716bb" + "cd839e24-9c7f-4e6f-a553-51ceed314c8e" ], "Cache-Control": [ "no-cache" @@ -34951,34 +35366,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13369" + "14254" ], "x-ms-correlation-request-id": [ - "0431b710-5e9b-4e42-93e6-10460d2f13df" + "7b361ce8-08f3-4d27-b625-29bad80b413f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212533Z:0431b710-5e9b-4e42-93e6-10460d2f13df" + "WESTUS:20150813T074708Z:7b361ce8-08f3-4d27-b625-29bad80b413f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:33 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/easyterritory/artifacttypes/vmimage/offers/easyterritory/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWFzeXRlcnJpdG9yeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vhc3l0ZXJyaXRvcnkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory_enterprise_en\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory/ArtifactTypes/VMImage/Offers/easyterritory/Skus/easyterritory_enterprise_en\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"domino2go1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go/Skus/domino2go1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "296" + "254" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34993,7 +35408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09e3f846-1868-4dfb-94ec-a015e7b138b5" + "2f5f9f4b-1942-4451-81a3-5a0479dff46c" ], "Cache-Control": [ "no-cache" @@ -35003,34 +35418,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13368" + "14253" ], "x-ms-correlation-request-id": [ - "e62f11f8-6900-4ef5-a44a-057d3531be7c" + "3e8bf37a-d4ab-4dc8-bd93-fca68a42fd3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212533Z:e62f11f8-6900-4ef5-a44a-057d3531be7c" + "WESTUS:20150813T074708Z:3e8bf37a-d4ab-4dc8-bd93-fca68a42fd3a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:33 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/easyterritory/artifacttypes/vmimage/offers/easyterritory/skus/easyterritory_enterprise_en/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWFzeXRlcnJpdG9yeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vhc3l0ZXJyaXRvcnkvc2t1cy9lYXN5dGVycml0b3J5X2VudGVycHJpc2VfZW4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go/skus/domino2go1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvL3NrdXMvZG9taW5vMmdvMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory/ArtifactTypes/VMImage/Offers/easyterritory/Skus/easyterritory_enterprise_en/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go/Skus/domino2go1/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "289" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35045,7 +35460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bee25dd-68c3-4709-a6d8-749678b1dcb8" + "375deba3-9bb8-457c-820c-5bb66fa4c049" ], "Cache-Control": [ "no-cache" @@ -35055,34 +35470,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13367" + "14252" ], "x-ms-correlation-request-id": [ - "f78da28b-55e9-45c2-8890-52e9e89f331e" + "ef164238-17a1-4c60-9d53-d7d85e116654" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212533Z:f78da28b-55e9-45c2-8890-52e9e89f331e" + "WESTUS:20150813T074708Z:ef164238-17a1-4c60-9d53-d7d85e116654" ], "Date": [ - "Wed, 05 Aug 2015 21:25:33 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/easyterritory/artifacttypes/vmimage/offers/easyterritory/skus/easyterritory_enterprise_en/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWFzeXRlcnJpdG9yeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vhc3l0ZXJyaXRvcnkvc2t1cy9lYXN5dGVycml0b3J5X2VudGVycHJpc2VfZW4vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go/skus/domino2go1/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvL3NrdXMvZG9taW5vMmdvMS92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"easyterritory\",\r\n \"name\": \"easyterritory_enterprise_en\",\r\n \"product\": \"easyterritory\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory/ArtifactTypes/VMImage/Offers/easyterritory/Skus/easyterritory_enterprise_en/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"donovapub\",\r\n \"name\": \"domino2go1\",\r\n \"product\": \"domino2go\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go/Skus/domino2go1/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "530" + "522" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35097,7 +35512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab83bcab-e983-462d-92b0-583c974372ad" + "27f67497-aad5-453d-a857-a952246a9d92" ], "Cache-Control": [ "no-cache" @@ -35107,34 +35522,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13366" + "14251" ], "x-ms-correlation-request-id": [ - "d69e29a2-d6a3-48ad-8984-8939e08508d9" + "fec83554-8180-4599-95f7-034569bb37ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212533Z:d69e29a2-d6a3-48ad-8984-8939e08508d9" + "WESTUS:20150813T074708Z:fec83554-8180-4599-95f7-034569bb37ca" ], "Date": [ - "Wed, 05 Aug 2015 21:25:33 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/egress/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWdyZXNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go-byol/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvLWJ5b2wvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress-switch-gateway\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"domino2go-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol/Skus/domino2go-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "258" + "267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35149,7 +35564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "080216d7-e21f-4638-b232-9df282fb01bf" + "577cfbc5-8409-4e17-b2aa-66310b95107d" ], "Cache-Control": [ "no-cache" @@ -35159,34 +35574,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13365" + "14250" ], "x-ms-correlation-request-id": [ - "c7236e04-7802-4b34-b8d0-3313f08672a3" + "c6ab9bc8-6cd9-454b-9a5d-8bfe5ded7047" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212533Z:c7236e04-7802-4b34-b8d0-3313f08672a3" + "WESTUS:20150813T074708Z:c6ab9bc8-6cd9-454b-9a5d-8bfe5ded7047" ], "Date": [ - "Wed, 05 Aug 2015 21:25:33 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/egress/artifacttypes/vmimage/offers/egress-switch-gateway/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWdyZXNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWdyZXNzLXN3aXRjaC1nYXRld2F5L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go-byol/skus/domino2go-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvLWJ5b2wvc2t1cy9kb21pbm8yZ28tYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shsg-azu-0001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway/Skus/shsg-azu-0001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol/Skus/domino2go-byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "269" + "273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35201,7 +35616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a518f50d-ff86-4ada-9718-2f35124a578a" + "c0f94e86-3ae8-4631-b5f5-fc8a66471de5" ], "Cache-Control": [ "no-cache" @@ -35211,34 +35626,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13364" + "14249" ], "x-ms-correlation-request-id": [ - "77e54f08-0ecf-4779-a172-218832d97835" + "271f1974-3313-41e9-bedc-b870b864c85f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212533Z:77e54f08-0ecf-4779-a172-218832d97835" + "WESTUS:20150813T074708Z:271f1974-3313-41e9-bedc-b870b864c85f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:33 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/egress/artifacttypes/vmimage/offers/egress-switch-gateway/skus/shsg-azu-0001/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWdyZXNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWdyZXNzLXN3aXRjaC1nYXRld2F5L3NrdXMvc2hzZy1henUtMDAwMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/donovapub/artifacttypes/vmimage/offers/domino2go-byol/skus/domino2go-byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZG9ub3ZhcHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZG9taW5vMmdvLWJ5b2wvc2t1cy9kb21pbm8yZ28tYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway/Skus/shsg-azu-0001/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"donovapub\",\r\n \"name\": \"domino2go-byol\",\r\n \"product\": \"domino2go-byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol/Skus/domino2go-byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "276" + "540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35253,7 +35668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd22013c-5970-4bd4-ac32-0553d12e329a" + "cc81d894-111c-411e-a23a-8974511ffb40" ], "Cache-Control": [ "no-cache" @@ -35263,34 +35678,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13363" + "14248" ], "x-ms-correlation-request-id": [ - "b73d5131-cfb2-420f-9b85-be586f922fb2" + "679c937c-e24d-4374-a6bc-98a913c8f846" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212534Z:b73d5131-cfb2-420f-9b85-be586f922fb2" + "WESTUS:20150813T074708Z:679c937c-e24d-4374-a6bc-98a913c8f846" ], "Date": [ - "Wed, 05 Aug 2015 21:25:33 GMT" + "Thu, 13 Aug 2015 07:47:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/egress/artifacttypes/vmimage/offers/egress-switch-gateway/skus/shsg-azu-0001/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWdyZXNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWdyZXNzLXN3aXRjaC1nYXRld2F5L3NrdXMvc2hzZy1henUtMDAwMS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/drone/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHJvbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"egress\",\r\n \"name\": \"shsg-azu-0001\",\r\n \"product\": \"egress-switch-gateway\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway/Skus/shsg-azu-0001/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone/ArtifactTypes/VMImage/Offers/drone\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "504" + "225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35305,7 +35720,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7352611-3045-4868-b41c-01e85e0558ec" + "3d46b187-d18a-4de1-b070-96cd9870b30d" ], "Cache-Control": [ "no-cache" @@ -35315,34 +35730,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13362" + "14247" ], "x-ms-correlation-request-id": [ - "6e7c47b3-6cec-48b5-8e4f-4ac1b997284a" + "67f25e62-8abb-46d0-8839-2256e98648c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212534Z:6e7c47b3-6cec-48b5-8e4f-4ac1b997284a" + "WESTUS:20150813T074709Z:67f25e62-8abb-46d0-8839-2256e98648c1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elastacloud/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RhY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/drone/artifacttypes/vmimage/offers/drone/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHJvbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kcm9uZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brisk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud/ArtifactTypes/VMImage/Offers/brisk\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone/ArtifactTypes/VMImage/Offers/drone/Skus/free\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "231" + "234" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35357,7 +35772,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9cc7185-053b-401c-a4e9-42e22475b4f5" + "aba66fb4-3538-4e1e-8296-9b7fc6773176" ], "Cache-Control": [ "no-cache" @@ -35367,34 +35782,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13361" + "14246" ], "x-ms-correlation-request-id": [ - "3acd91e9-6854-45d2-b2a0-85e7f5b29be4" + "a64dbc7b-8b41-4f7e-a5ff-ff0a24a34348" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212534Z:3acd91e9-6854-45d2-b2a0-85e7f5b29be4" + "WESTUS:20150813T074709Z:a64dbc7b-8b41-4f7e-a5ff-ff0a24a34348" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elastacloud/artifacttypes/vmimage/offers/brisk/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RhY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icmlzay9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/drone/artifacttypes/vmimage/offers/drone/skus/free/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHJvbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kcm9uZS9za3VzL2ZyZWUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"briskengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud/ArtifactTypes/VMImage/Offers/brisk/Skus/briskengine\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone/ArtifactTypes/VMImage/Offers/drone/Skus/free/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "254" + "250" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35409,7 +35824,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6996e823-7640-4852-8ffa-c0b446d831c5" + "6f15d887-c806-4dce-b829-8b3378147fa6" ], "Cache-Control": [ "no-cache" @@ -35419,34 +35834,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13360" + "14245" ], "x-ms-correlation-request-id": [ - "39518d2b-8179-4eb1-808f-deae0e799f7b" + "e882a0b7-2ae5-4954-8b81-79b8f275a478" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212534Z:39518d2b-8179-4eb1-808f-deae0e799f7b" + "WESTUS:20150813T074709Z:e882a0b7-2ae5-4954-8b81-79b8f275a478" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elastacloud/artifacttypes/vmimage/offers/brisk/skus/briskengine/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RhY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icmlzay9za3VzL2JyaXNrZW5naW5lL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/drone/artifacttypes/vmimage/offers/drone/skus/free/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHJvbmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kcm9uZS9za3VzL2ZyZWUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud/ArtifactTypes/VMImage/Offers/brisk/Skus/briskengine/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"drone\",\r\n \"name\": \"free\",\r\n \"product\": \"drone\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone/ArtifactTypes/VMImage/Offers/drone/Skus/free/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "263" + "450" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35461,7 +35876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "003b2e28-b35a-4d51-926c-b6da7ae6a286" + "65c3999c-0a3e-45a8-80e1-5a7979cdfe1d" ], "Cache-Control": [ "no-cache" @@ -35471,34 +35886,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13359" + "14244" ], "x-ms-correlation-request-id": [ - "6bbb6954-6a88-420e-ac97-4fc0f8b5ebe8" + "06ed61a2-9443-478b-9d24-5cc0932ac48e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212534Z:6bbb6954-6a88-420e-ac97-4fc0f8b5ebe8" + "WESTUS:20150813T074709Z:06ed61a2-9443-478b-9d24-5cc0932ac48e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elastacloud/artifacttypes/vmimage/offers/brisk/skus/briskengine/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RhY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icmlzay9za3VzL2JyaXNrZW5naW5lL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"elastacloud\",\r\n \"name\": \"briskengine\",\r\n \"product\": \"brisk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud/ArtifactTypes/VMImage/Offers/brisk/Skus/briskengine/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas-bi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "478" + "234" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35513,7 +35928,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a62a2b40-d1d5-45f2-9ded-f1d5fb5a885e" + "b33ce23d-8306-4ccd-9f6c-aacb1c08bf5a" ], "Cache-Control": [ "no-cache" @@ -35523,34 +35938,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13358" + "14243" ], "x-ms-correlation-request-id": [ - "ef8cddb3-b11d-4b43-8d56-e7b0123d5c49" + "56ab99f2-7a21-4554-a0b6-04015fb8bc3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212534Z:ef8cddb3-b11d-4b43-8d56-e7b0123d5c49" + "WESTUS:20150813T074709Z:56ab99f2-7a21-4554-a0b6-04015fb8bc3a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elasticbox/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RpY2JveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers/dundas-bi/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZHVuZGFzLWJpL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox-enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox/ArtifactTypes/VMImage/Offers/elasticbox-enterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dbi1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dbi2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "262" + "475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35565,7 +35980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a182bb0-ff84-4e64-a1e4-984a5c7d2b1c" + "22fa9d20-f4f5-4ac3-a026-603ef29d9db9" ], "Cache-Control": [ "no-cache" @@ -35575,34 +35990,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13357" + "14242" ], "x-ms-correlation-request-id": [ - "6720884b-6922-41fc-8a45-33774b785674" + "8dc6b677-c2e3-4762-a10d-cdb1a90bc70a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212534Z:6720884b-6922-41fc-8a45-33774b785674" + "WESTUS:20150813T074709Z:8dc6b677-c2e3-4762-a10d-cdb1a90bc70a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elasticbox/artifacttypes/vmimage/offers/elasticbox-enterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RpY2JveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VsYXN0aWNib3gtZW50ZXJwcmlzZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers/dundas-bi/skus/dbi1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZHVuZGFzLWJpL3NrdXMvZGJpMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol-single-instance\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox/ArtifactTypes/VMImage/Offers/elasticbox-enterprise/Skus/byol-single-instance\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi1/Versions/1.0.7\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "287" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35617,7 +36032,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f79ea49a-1baf-47e6-be4b-1567cd6d8af4" + "25f43db1-8402-4ee3-a68a-e1be67e73221" ], "Cache-Control": [ "no-cache" @@ -35627,34 +36042,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13356" + "14241" ], "x-ms-correlation-request-id": [ - "5afe4180-2ba0-4d77-b7ee-62ab9eff9a04" + "0c1afa9f-cdab-475d-8263-f59662647f91" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212534Z:5afe4180-2ba0-4d77-b7ee-62ab9eff9a04" + "WESTUS:20150813T074709Z:0c1afa9f-cdab-475d-8263-f59662647f91" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elasticbox/artifacttypes/vmimage/offers/elasticbox-enterprise/skus/byol-single-instance/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RpY2JveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VsYXN0aWNib3gtZW50ZXJwcmlzZS9za3VzL2J5b2wtc2luZ2xlLWluc3RhbmNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers/dundas-bi/skus/dbi1/versions/1.0.7?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZHVuZGFzLWJpL3NrdXMvZGJpMS92ZXJzaW9ucy8xLjAuNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox/ArtifactTypes/VMImage/Offers/elasticbox-enterprise/Skus/byol-single-instance/Versions/4.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dundas\",\r\n \"name\": \"dbi1\",\r\n \"product\": \"dundas-bi\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi1/Versions/1.0.7\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35669,7 +36084,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0184e2a8-3a97-4830-8cca-7ccc50e0db9f" + "de6b7618-8038-4460-9613-b0d523ab63de" ], "Cache-Control": [ "no-cache" @@ -35679,34 +36094,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13355" + "14240" ], "x-ms-correlation-request-id": [ - "e93952b7-ff25-43ed-b25a-ca6bc7799e87" + "e48c2279-940b-4c42-9253-3c479cd5cd1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:e93952b7-ff25-43ed-b25a-ca6bc7799e87" + "WESTUS:20150813T074709Z:e48c2279-940b-4c42-9253-3c479cd5cd1a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elasticbox/artifacttypes/vmimage/offers/elasticbox-enterprise/skus/byol-single-instance/versions/4.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RpY2JveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VsYXN0aWNib3gtZW50ZXJwcmlzZS9za3VzL2J5b2wtc2luZ2xlLWluc3RhbmNlL3ZlcnNpb25zLzQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers/dundas-bi/skus/dbi2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZHVuZGFzLWJpL3NrdXMvZGJpMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"elasticbox\",\r\n \"name\": \"byol-single-instance\",\r\n \"product\": \"elasticbox-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox/ArtifactTypes/VMImage/Offers/elasticbox-enterprise/Skus/byol-single-instance/Versions/4.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi2/Versions/2.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "524" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35721,7 +36136,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "780d1505-73d1-4116-8e1c-0e7475316029" + "56927e9b-9651-49f8-8951-49a5662bdaa9" ], "Cache-Control": [ "no-cache" @@ -35731,34 +36146,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13354" + "14239" ], "x-ms-correlation-request-id": [ - "d074eabc-bc42-4f4f-bc1a-87bb783c9117" + "da9aadb6-7df6-4971-a665-4c8a8db47926" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:d074eabc-bc42-4f4f-bc1a-87bb783c9117" + "WESTUS:20150813T074709Z:da9aadb6-7df6-4971-a665-4c8a8db47926" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elfiqnetworks/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxmaXFuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dundas/artifacttypes/vmimage/offers/dundas-bi/skus/dbi2/versions/2.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHVuZGFzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZHVuZGFzLWJpL3NrdXMvZGJpMi92ZXJzaW9ucy8yLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloud-connector\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks/ArtifactTypes/VMImage/Offers/cloud-connector\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"dundas\",\r\n \"name\": \"dbi2\",\r\n \"product\": \"dundas-bi\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas/ArtifactTypes/VMImage/Offers/dundas-bi/Skus/dbi2/Versions/2.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "253" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35773,7 +36188,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61352756-8466-4086-abf9-627ebbc39fb5" + "35917a17-98a9-4c59-a4d0-8a8a0bdd3e7d" ], "Cache-Control": [ "no-cache" @@ -35783,34 +36198,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13353" + "14238" ], "x-ms-correlation-request-id": [ - "8c3cd8e3-4435-42ea-a8fe-a9faf5b7c5b8" + "5c608b53-9f17-41a6-89a0-5821187c1e19" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:8c3cd8e3-4435-42ea-a8fe-a9faf5b7c5b8" + "WESTUS:20150813T074709Z:5c608b53-9f17-41a6-89a0-5821187c1e19" ], "Date": [ - "Wed, 05 Aug 2015 21:25:34 GMT" + "Thu, 13 Aug 2015 07:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elfiqnetworks/artifacttypes/vmimage/offers/cloud-connector/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxmaXFuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkLWNvbm5lY3Rvci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/dynatrace.ruxit/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZHluYXRyYWNlLnJ1eGl0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloud-connector-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks/ArtifactTypes/VMImage/Offers/cloud-connector/Skus/cloud-connector-azure\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "286" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35825,7 +36240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87742b78-5bd6-409c-b84b-f3f89234edf4" + "2a18b953-faab-4f7e-afd3-3677ac7debc9" ], "Cache-Control": [ "no-cache" @@ -35835,34 +36250,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13352" + "14237" ], "x-ms-correlation-request-id": [ - "715b602a-0220-4973-b068-ef5b01559dec" + "7df2d6b5-fa50-404a-b60c-2be56dfcfe96" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:715b602a-0220-4973-b068-ef5b01559dec" + "WESTUS:20150813T074710Z:7df2d6b5-fa50-404a-b60c-2be56dfcfe96" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elfiqnetworks/artifacttypes/vmimage/offers/cloud-connector/skus/cloud-connector-azure/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxmaXFuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkLWNvbm5lY3Rvci9za3VzL2Nsb3VkLWNvbm5lY3Rvci1henVyZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/easyterritory/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWFzeXRlcnJpdG9yeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.114763\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks/ArtifactTypes/VMImage/Offers/cloud-connector/Skus/cloud-connector-azure/Versions/3.8.114763\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory/ArtifactTypes/VMImage/Offers/easyterritory\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "295" + "249" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35877,7 +36292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09db9c74-a3cb-4aa7-8746-d76cb8953227" + "a9ad530c-f04e-4526-b397-c4fa29fcd8f1" ], "Cache-Control": [ "no-cache" @@ -35887,34 +36302,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13351" + "14236" ], "x-ms-correlation-request-id": [ - "fe3badb1-bf41-4878-86da-eca0e2c93c23" + "72d65835-b14d-4166-8b26-d4129edd5376" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:fe3badb1-bf41-4878-86da-eca0e2c93c23" + "WESTUS:20150813T074710Z:72d65835-b14d-4166-8b26-d4129edd5376" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/elfiqnetworks/artifacttypes/vmimage/offers/cloud-connector/skus/cloud-connector-azure/versions/3.8.114763?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxmaXFuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkLWNvbm5lY3Rvci9za3VzL2Nsb3VkLWNvbm5lY3Rvci1henVyZS92ZXJzaW9ucy8zLjguMTE0NzYzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/easyterritory/artifacttypes/vmimage/offers/easyterritory/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWFzeXRlcnJpdG9yeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vhc3l0ZXJyaXRvcnkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"elfiqnetworks\",\r\n \"name\": \"cloud-connector-azure\",\r\n \"product\": \"cloud-connector\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.114763\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks/ArtifactTypes/VMImage/Offers/cloud-connector/Skus/cloud-connector-azure/Versions/3.8.114763\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory_enterprise_en\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory/ArtifactTypes/VMImage/Offers/easyterritory/Skus/easyterritory_enterprise_en\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "530" + "296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35929,7 +36344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b8e4383-931a-48ad-9cac-e9af720d1834" + "8d2161fb-c2a1-4d4f-a87a-0993f475555b" ], "Cache-Control": [ "no-cache" @@ -35939,34 +36354,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13350" + "14235" ], "x-ms-correlation-request-id": [ - "d75320b7-98a4-413c-b258-ddc0749d11f7" + "fe16a2de-b34c-402b-b01f-ca8ae812f160" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:d75320b7-98a4-413c-b258-ddc0749d11f7" + "WESTUS:20150813T074710Z:fe16a2de-b34c-402b-b01f-ca8ae812f160" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/eloquera/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxvcXVlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/easyterritory/artifacttypes/vmimage/offers/easyterritory/skus/easyterritory_enterprise_en/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWFzeXRlcnJpdG9yeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vhc3l0ZXJyaXRvcnkvc2t1cy9lYXN5dGVycml0b3J5X2VudGVycHJpc2VfZW4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloqueradb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory/ArtifactTypes/VMImage/Offers/easyterritory/Skus/easyterritory_enterprise_en/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "238" + "289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -35981,7 +36396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e419af22-e13e-4b49-bb16-58faebdcb9a9" + "2403bf90-e14a-4304-8416-a9be3d2b0354" ], "Cache-Control": [ "no-cache" @@ -35991,34 +36406,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13349" + "14234" ], "x-ms-correlation-request-id": [ - "4ba6721f-364d-4562-afe7-51521a958a26" + "415ef66d-c5a3-4249-bbe2-3e64b11a727d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:4ba6721f-364d-4562-afe7-51521a958a26" + "WESTUS:20150813T074710Z:415ef66d-c5a3-4249-bbe2-3e64b11a727d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/eloquera/artifacttypes/vmimage/offers/eloqueradb/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxvcXVlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbG9xdWVyYWRiL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/easyterritory/artifacttypes/vmimage/offers/easyterritory/skus/easyterritory_enterprise_en/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWFzeXRlcnJpdG9yeS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Vhc3l0ZXJyaXRvcnkvc2t1cy9lYXN5dGVycml0b3J5X2VudGVycHJpc2VfZW4vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloqueradb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb/Skus/eloqueradb\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"easyterritory\",\r\n \"name\": \"easyterritory_enterprise_en\",\r\n \"product\": \"easyterritory\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory/ArtifactTypes/VMImage/Offers/easyterritory/Skus/easyterritory_enterprise_en/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "254" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36033,7 +36448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ae250ed-4618-441e-9394-25e3103972fc" + "aad15cc3-da5a-43d2-9602-1de08a9a8725" ], "Cache-Control": [ "no-cache" @@ -36043,34 +36458,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13348" + "14233" ], "x-ms-correlation-request-id": [ - "d6c2904e-0c1f-40eb-9f05-89b1e0c7f853" + "94dc208c-24da-496f-b137-a2546f2b6ed0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:d6c2904e-0c1f-40eb-9f05-89b1e0c7f853" + "WESTUS:20150813T074710Z:94dc208c-24da-496f-b137-a2546f2b6ed0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/eloquera/artifacttypes/vmimage/offers/eloqueradb/skus/eloqueradb/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxvcXVlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbG9xdWVyYWRiL3NrdXMvZWxvcXVlcmFkYi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/egress/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWdyZXNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb/Skus/eloqueradb/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress-switch-gateway\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "264" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36085,7 +36500,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ab64de9-0b52-4506-9ab2-6a0bb52950c8" + "7fc9c6ed-2e48-4d9e-b18b-95d00a991093" ], "Cache-Control": [ "no-cache" @@ -36095,34 +36510,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13347" + "14232" ], "x-ms-correlation-request-id": [ - "974bed2b-7e2d-48ef-9a8c-30f0053a5961" + "70471937-c4c2-4b1e-8f16-ae17c7c51afa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:974bed2b-7e2d-48ef-9a8c-30f0053a5961" + "WESTUS:20150813T074710Z:70471937-c4c2-4b1e-8f16-ae17c7c51afa" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/eloquera/artifacttypes/vmimage/offers/eloqueradb/skus/eloqueradb/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxvcXVlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbG9xdWVyYWRiL3NrdXMvZWxvcXVlcmFkYi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/egress/artifacttypes/vmimage/offers/egress-switch-gateway/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWdyZXNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWdyZXNzLXN3aXRjaC1nYXRld2F5L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"eloquera\",\r\n \"name\": \"eloqueradb\",\r\n \"product\": \"eloqueradb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb/Skus/eloqueradb/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shsg-azu-0001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway/Skus/shsg-azu-0001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "480" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36137,7 +36552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "536c423d-7f0a-4ced-a3ca-991b147dc9c8" + "a69c120d-f0bb-42bd-8b4a-ce78cecc68b2" ], "Cache-Control": [ "no-cache" @@ -36147,34 +36562,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13346" + "14231" ], "x-ms-correlation-request-id": [ - "531e5130-430e-45c4-9c6a-7245c92b2ce0" + "cc562712-47b6-47cc-ad20-ea09d531878d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212535Z:531e5130-430e-45c4-9c6a-7245c92b2ce0" + "WESTUS:20150813T074710Z:cc562712-47b6-47cc-ad20-ea09d531878d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/eperi/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXBlcmkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/egress/artifacttypes/vmimage/offers/egress-switch-gateway/skus/shsg-azu-0001/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWdyZXNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWdyZXNzLXN3aXRjaC1nYXRld2F5L3NrdXMvc2hzZy1henUtMDAwMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi-gateway-for-cloud-apps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi/ArtifactTypes/VMImage/Offers/eperi-gateway-for-cloud-apps\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway/Skus/shsg-azu-0001/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "271" + "276" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36189,7 +36604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24fb6a38-c630-404a-ba8f-5f124be30120" + "1c806d47-d86a-445f-ba57-15b65fbbbdf3" ], "Cache-Control": [ "no-cache" @@ -36199,34 +36614,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13345" + "14230" ], "x-ms-correlation-request-id": [ - "fb991505-9c4b-482c-a1de-bde11cf404e8" + "e490a3ef-2624-4051-95e7-137b2e4c12df" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:fb991505-9c4b-482c-a1de-bde11cf404e8" + "WESTUS:20150813T074711Z:e490a3ef-2624-4051-95e7-137b2e4c12df" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/eperi/artifacttypes/vmimage/offers/eperi-gateway-for-cloud-apps/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXBlcmkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lcGVyaS1nYXRld2F5LWZvci1jbG91ZC1hcHBzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/egress/artifacttypes/vmimage/offers/egress-switch-gateway/skus/shsg-azu-0001/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWdyZXNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZWdyZXNzLXN3aXRjaC1nYXRld2F5L3NrdXMvc2hzZy1henUtMDAwMS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egfca\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi/ArtifactTypes/VMImage/Offers/eperi-gateway-for-cloud-apps/Skus/egfca\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"egress\",\r\n \"name\": \"shsg-azu-0001\",\r\n \"product\": \"egress-switch-gateway\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway/Skus/shsg-azu-0001/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "259" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36241,7 +36656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55023dfd-5ef7-4a57-a354-cd9e975d0ce3" + "d93f1e12-17e8-4771-b28e-5a2eace085dc" ], "Cache-Control": [ "no-cache" @@ -36251,34 +36666,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13344" + "14229" ], "x-ms-correlation-request-id": [ - "1fced5a0-6b16-44c3-90d4-9450dfcac841" + "1d65b42a-5a82-45c7-bd37-fac7b0116ef9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:1fced5a0-6b16-44c3-90d4-9450dfcac841" + "WESTUS:20150813T074711Z:1d65b42a-5a82-45c7-bd37-fac7b0116ef9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/eperi/artifacttypes/vmimage/offers/eperi-gateway-for-cloud-apps/skus/egfca/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXBlcmkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lcGVyaS1nYXRld2F5LWZvci1jbG91ZC1hcHBzL3NrdXMvZWdmY2EvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elastacloud/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RhY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150624\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi/ArtifactTypes/VMImage/Offers/eperi-gateway-for-cloud-apps/Skus/egfca/Versions/3.0.20150624\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"brisk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud/ArtifactTypes/VMImage/Offers/brisk\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "288" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36293,7 +36708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe511be8-f645-4430-90a8-b7b5a7b72599" + "9d199ec3-a37f-4b1b-9200-f578c9872e26" ], "Cache-Control": [ "no-cache" @@ -36303,34 +36718,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13343" + "14228" ], "x-ms-correlation-request-id": [ - "c6d5bbd7-aa70-4fad-924f-86b1580ff78e" + "88bbbe9c-dd9a-4f0d-b902-e46b9fffc397" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:c6d5bbd7-aa70-4fad-924f-86b1580ff78e" + "WESTUS:20150813T074711Z:88bbbe9c-dd9a-4f0d-b902-e46b9fffc397" ], "Date": [ - "Wed, 05 Aug 2015 21:25:35 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/eperi/artifacttypes/vmimage/offers/eperi-gateway-for-cloud-apps/skus/egfca/versions/3.0.20150624?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXBlcmkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lcGVyaS1nYXRld2F5LWZvci1jbG91ZC1hcHBzL3NrdXMvZWdmY2EvdmVyc2lvbnMvMy4wLjIwMTUwNjI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elastacloud/artifacttypes/vmimage/offers/brisk/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RhY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icmlzay9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"eperi\",\r\n \"name\": \"egfca\",\r\n \"product\": \"eperi-gateway-for-cloud-apps\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150624\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi/ArtifactTypes/VMImage/Offers/eperi-gateway-for-cloud-apps/Skus/egfca/Versions/3.0.20150624\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"briskengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud/ArtifactTypes/VMImage/Offers/brisk/Skus/briskengine\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "512" + "254" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36345,7 +36760,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16327819-69eb-4fe5-8896-9e661c376682" + "77a853c3-6dee-48ca-86bb-d3ffce4003eb" ], "Cache-Control": [ "no-cache" @@ -36355,34 +36770,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13342" + "14227" ], "x-ms-correlation-request-id": [ - "5decfbea-e464-4d83-8c3b-d093a0b1d390" + "02c1cb8a-88c0-4133-815c-8cadb47a165c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:5decfbea-e464-4d83-8c3b-d093a0b1d390" + "WESTUS:20150813T074711Z:02c1cb8a-88c0-4133-815c-8cadb47a165c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elastacloud/artifacttypes/vmimage/offers/brisk/skus/briskengine/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RhY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icmlzay9za3VzL2JyaXNrZW5naW5lL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mediarich-all-media-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-all-media-server\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mediarich-hot-folder\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-hot-folder\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud/ArtifactTypes/VMImage/Offers/brisk/Skus/briskengine/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "531" + "263" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36397,7 +36812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e619dd66-c529-48d5-a6d5-776ed6962e34" + "2b2e00ec-e0e5-42f1-85e9-408353e78324" ], "Cache-Control": [ "no-cache" @@ -36407,34 +36822,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13341" + "14226" ], "x-ms-correlation-request-id": [ - "77289891-6642-4ab5-beb9-81098d93ca72" + "cd703893-8dc4-41b4-a977-bfb0ded5bff2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:77289891-6642-4ab5-beb9-81098d93ca72" + "WESTUS:20150813T074711Z:cd703893-8dc4-41b4-a977-bfb0ded5bff2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-all-media-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtYWxsLW1lZGlhLXNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elastacloud/artifacttypes/vmimage/offers/brisk/skus/briskengine/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RhY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9icmlzay9za3VzL2JyaXNrZW5naW5lL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"404115az\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-all-media-server/Skus/404115az\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"elastacloud\",\r\n \"name\": \"briskengine\",\r\n \"product\": \"brisk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud/ArtifactTypes/VMImage/Offers/brisk/Skus/briskengine/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "269" + "478" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36449,7 +36864,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c40f981-14b6-4b03-81bd-36b2136a7b10" + "c22b6599-6478-4e2d-b427-78ae53ef8350" ], "Cache-Control": [ "no-cache" @@ -36459,34 +36874,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13340" + "14225" ], "x-ms-correlation-request-id": [ - "7a0d7700-6543-4768-952a-7c5a3e870737" + "650b555e-63ef-4058-8c1a-e6331b8c61b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:7a0d7700-6543-4768-952a-7c5a3e870737" + "WESTUS:20150813T074711Z:650b555e-63ef-4058-8c1a-e6331b8c61b3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-all-media-server/skus/404115az/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtYWxsLW1lZGlhLXNlcnZlci9za3VzLzQwNDExNWF6L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elasticbox/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RpY2JveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-all-media-server/Skus/404115az/Versions/4.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox-enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox/ArtifactTypes/VMImage/Offers/elasticbox-enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "281" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36501,7 +36916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "192bbb72-1203-4869-a3c5-6871091760c5" + "aa9ad066-1518-4d89-976f-735e1ecb0e7f" ], "Cache-Control": [ "no-cache" @@ -36511,34 +36926,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13339" + "14224" ], "x-ms-correlation-request-id": [ - "f880d5f6-18d0-4f37-bdd9-27e86e7e94de" + "d7b46179-4748-4393-851d-4ae8daf7c0d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:f880d5f6-18d0-4f37-bdd9-27e86e7e94de" + "WESTUS:20150813T074711Z:d7b46179-4748-4393-851d-4ae8daf7c0d6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-all-media-server/skus/404115az/versions/4.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtYWxsLW1lZGlhLXNlcnZlci9za3VzLzQwNDExNWF6L3ZlcnNpb25zLzQuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elasticbox/artifacttypes/vmimage/offers/elasticbox-enterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RpY2JveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VsYXN0aWNib3gtZW50ZXJwcmlzZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"equilibrium\",\r\n \"name\": \"404115az\",\r\n \"product\": \"mediarich-all-media-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-all-media-server/Skus/404115az/Versions/4.0.2\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol-single-instance\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox/ArtifactTypes/VMImage/Offers/elasticbox-enterprise/Skus/byol-single-instance\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "514" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36553,7 +36968,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e738f35-d674-4963-bdb5-a389d70e7179" + "ab4b970c-1ed0-4ed5-b19d-fb2c54d9b8c7" ], "Cache-Control": [ "no-cache" @@ -36563,34 +36978,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13338" + "14223" ], "x-ms-correlation-request-id": [ - "c05570c5-4917-47fd-85c0-e5d288a1fb38" + "26172b04-747b-4c10-9722-e5910806c9a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:c05570c5-4917-47fd-85c0-e5d288a1fb38" + "WESTUS:20150813T074711Z:26172b04-747b-4c10-9722-e5910806c9a7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-hot-folder/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtaG90LWZvbGRlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elasticbox/artifacttypes/vmimage/offers/elasticbox-enterprise/skus/byol-single-instance/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RpY2JveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VsYXN0aWNib3gtZW50ZXJwcmlzZS9za3VzL2J5b2wtc2luZ2xlLWluc3RhbmNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"402000az\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-hot-folder/Skus/402000az\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox/ArtifactTypes/VMImage/Offers/elasticbox-enterprise/Skus/byol-single-instance/Versions/4.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "263" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36605,7 +37020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd32ed52-efc9-46da-96fe-4a7b8930526c" + "ea7c1311-ce69-428e-a13d-8af6bba9168f" ], "Cache-Control": [ "no-cache" @@ -36615,34 +37030,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13337" + "14222" ], "x-ms-correlation-request-id": [ - "0a1222c5-0146-40b5-8933-0dc8983f208a" + "be17fcb4-556a-4e8f-8ac1-8dd331631b0b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:0a1222c5-0146-40b5-8933-0dc8983f208a" + "WESTUS:20150813T074711Z:be17fcb4-556a-4e8f-8ac1-8dd331631b0b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-hot-folder/skus/402000az/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtaG90LWZvbGRlci9za3VzLzQwMjAwMGF6L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elasticbox/artifacttypes/vmimage/offers/elasticbox-enterprise/skus/byol-single-instance/versions/4.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxhc3RpY2JveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VsYXN0aWNib3gtZW50ZXJwcmlzZS9za3VzL2J5b2wtc2luZ2xlLWluc3RhbmNlL3ZlcnNpb25zLzQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-hot-folder/Skus/402000az/Versions/4.0.21\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"elasticbox\",\r\n \"name\": \"byol-single-instance\",\r\n \"product\": \"elasticbox-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox/ArtifactTypes/VMImage/Offers/elasticbox-enterprise/Skus/byol-single-instance/Versions/4.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "277" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36657,7 +37072,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7c2b6c3-020b-4eb1-8f64-e2e3d1a0b5aa" + "e1dfc1f1-14d2-431c-821a-785409c90fe1" ], "Cache-Control": [ "no-cache" @@ -36667,34 +37082,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13336" + "14221" ], "x-ms-correlation-request-id": [ - "5deb8f72-3c21-40b7-ab35-50518b5b8cfb" + "bfc4d70e-efd9-4b33-a330-8f1f71af4a78" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212536Z:5deb8f72-3c21-40b7-ab35-50518b5b8cfb" + "WESTUS:20150813T074712Z:bfc4d70e-efd9-4b33-a330-8f1f71af4a78" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-hot-folder/skus/402000az/versions/4.0.21?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtaG90LWZvbGRlci9za3VzLzQwMjAwMGF6L3ZlcnNpb25zLzQuMC4yMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elfiqnetworks/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxmaXFuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"equilibrium\",\r\n \"name\": \"402000az\",\r\n \"product\": \"mediarich-hot-folder\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-hot-folder/Skus/402000az/Versions/4.0.21\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloud-connector\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks/ArtifactTypes/VMImage/Offers/cloud-connector\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "504" + "253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36709,7 +37124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8748ec1-7f7c-4daa-aecc-38e647eecc6d" + "831b3d0e-261c-4995-a5f3-a136d23c04c4" ], "Cache-Control": [ "no-cache" @@ -36719,34 +37134,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13335" + "14220" ], "x-ms-correlation-request-id": [ - "79cbb792-c440-44c2-9a3e-3d18661a02f2" + "7e11882d-76dc-4123-a827-e9624a554159" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212537Z:79cbb792-c440-44c2-9a3e-3d18661a02f2" + "WESTUS:20150813T074712Z:7e11882d-76dc-4123-a827-e9624a554159" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ESET/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvRVNFVC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elfiqnetworks/artifacttypes/vmimage/offers/cloud-connector/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxmaXFuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkLWNvbm5lY3Rvci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloud-connector-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks/ArtifactTypes/VMImage/Offers/cloud-connector/Skus/cloud-connector-azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36761,7 +37176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "380fcac7-1ce7-4a04-9585-c4ec270327c2" + "a7b87601-a719-4e0f-be7c-e3a7fc474e12" ], "Cache-Control": [ "no-cache" @@ -36771,34 +37186,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13334" + "14219" ], "x-ms-correlation-request-id": [ - "fd615167-b19b-48ce-8957-bde02a2407b1" + "0fd1bdf4-1f13-4946-88ed-ac8f855fd49b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212537Z:fd615167-b19b-48ce-8957-bde02a2407b1" + "WESTUS:20150813T074712Z:0fd1bdf4-1f13-4946-88ed-ac8f855fd49b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:36 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ESET.FileSecurity/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvRVNFVC5GaWxlU2VjdXJpdHkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elfiqnetworks/artifacttypes/vmimage/offers/cloud-connector/skus/cloud-connector-azure/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxmaXFuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkLWNvbm5lY3Rvci9za3VzL2Nsb3VkLWNvbm5lY3Rvci1henVyZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.114763\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks/ArtifactTypes/VMImage/Offers/cloud-connector/Skus/cloud-connector-azure/Versions/3.8.114763\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36813,7 +37228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c64ddb37-d13d-47b6-9236-471e4de042be" + "a0926b93-adc0-42f6-842c-e829565f8529" ], "Cache-Control": [ "no-cache" @@ -36823,34 +37238,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13333" + "14218" ], "x-ms-correlation-request-id": [ - "bcbd2d87-3f5a-4cb7-b339-bc1aed23f389" + "d9ae2b8f-f84a-4f03-b493-defb3de9a8fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212537Z:bcbd2d87-3f5a-4cb7-b339-bc1aed23f389" + "WESTUS:20150813T074712Z:d9ae2b8f-f84a-4f03-b493-defb3de9a8fc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/esri/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXNyaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/elfiqnetworks/artifacttypes/vmimage/offers/cloud-connector/skus/cloud-connector-azure/versions/3.8.114763?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxmaXFuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nsb3VkLWNvbm5lY3Rvci9za3VzL2Nsb3VkLWNvbm5lY3Rvci1henVyZS92ZXJzaW9ucy8zLjguMTE0NzYzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arcgis-for-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri/ArtifactTypes/VMImage/Offers/arcgis-for-server\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"elfiqnetworks\",\r\n \"name\": \"cloud-connector-azure\",\r\n \"product\": \"cloud-connector\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.114763\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks/ArtifactTypes/VMImage/Offers/cloud-connector/Skus/cloud-connector-azure/Versions/3.8.114763\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "248" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36865,7 +37280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e54c902c-a746-4b66-8603-5424246a48e2" + "bbbbdb77-6f8d-44f8-b149-e0ebb4a99c16" ], "Cache-Control": [ "no-cache" @@ -36875,34 +37290,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13332" + "14217" ], "x-ms-correlation-request-id": [ - "a5f95700-01ac-4119-9514-6fc5d8daeea7" + "83717123-9bd6-4b2b-90b0-3718a158a234" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212537Z:a5f95700-01ac-4119-9514-6fc5d8daeea7" + "WESTUS:20150813T074712Z:83717123-9bd6-4b2b-90b0-3718a158a234" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/esri/artifacttypes/vmimage/offers/arcgis-for-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXNyaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyY2dpcy1mb3Itc2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eloquera/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxvcXVlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri/ArtifactTypes/VMImage/Offers/arcgis-for-server/Skus/cloud\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloqueradb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "247" + "238" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36917,7 +37332,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5d44c76-65b1-4993-801b-ffc2e7188600" + "fafb3dbb-5bc2-4f89-a0ea-5ba92af75a57" ], "Cache-Control": [ "no-cache" @@ -36927,34 +37342,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13331" + "14216" ], "x-ms-correlation-request-id": [ - "3d3f39c4-2edc-44db-aaf3-178e2181c1a7" + "40b9b4b9-7ce9-443a-a472-26f53f108fb5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212537Z:3d3f39c4-2edc-44db-aaf3-178e2181c1a7" + "WESTUS:20150813T074712Z:40b9b4b9-7ce9-443a-a472-26f53f108fb5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/esri/artifacttypes/vmimage/offers/arcgis-for-server/skus/cloud/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXNyaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyY2dpcy1mb3Itc2VydmVyL3NrdXMvY2xvdWQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eloquera/artifacttypes/vmimage/offers/eloqueradb/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxvcXVlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbG9xdWVyYWRiL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.9.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri/ArtifactTypes/VMImage/Offers/arcgis-for-server/Skus/cloud/Versions/0.9.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloqueradb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb/Skus/eloqueradb\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "262" + "254" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36969,7 +37384,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0877d14-2801-460b-82fa-4bee613b5027" + "b268db91-66f7-43ca-beca-f572217d5ab0" ], "Cache-Control": [ "no-cache" @@ -36979,34 +37394,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13330" + "14215" ], "x-ms-correlation-request-id": [ - "799cc758-5282-4435-91a7-7e4e26aca2b2" + "4820fe57-b6e5-4558-8764-fbf8a402da67" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212537Z:799cc758-5282-4435-91a7-7e4e26aca2b2" + "WESTUS:20150813T074712Z:4820fe57-b6e5-4558-8764-fbf8a402da67" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/esri/artifacttypes/vmimage/offers/arcgis-for-server/skus/cloud/versions/0.9.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXNyaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyY2dpcy1mb3Itc2VydmVyL3NrdXMvY2xvdWQvdmVyc2lvbnMvMC45LjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eloquera/artifacttypes/vmimage/offers/eloqueradb/skus/eloqueradb/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxvcXVlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbG9xdWVyYWRiL3NrdXMvZWxvcXVlcmFkYi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"esri\",\r\n \"name\": \"cloud\",\r\n \"product\": \"arcgis-for-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.9.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri/ArtifactTypes/VMImage/Offers/arcgis-for-server/Skus/cloud/Versions/0.9.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb/Skus/eloqueradb/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "476" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37021,7 +37436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c81890e7-a37b-480e-b696-4303d211a070" + "c5bfa126-4a26-428a-8f19-cd6e89fe0fc0" ], "Cache-Control": [ "no-cache" @@ -37031,34 +37446,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13329" + "14214" ], "x-ms-correlation-request-id": [ - "646abb6f-eb84-4598-b0f0-3a5c63a2a861" + "3b096282-e3c7-45ae-802a-bb8625984479" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212537Z:646abb6f-eb84-4598-b0f0-3a5c63a2a861" + "WESTUS:20150813T074712Z:3b096282-e3c7-45ae-802a-bb8625984479" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/exasol/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhhc29sL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eloquera/artifacttypes/vmimage/offers/eloqueradb/skus/eloqueradb/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZWxvcXVlcmEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbG9xdWVyYWRiL3NrdXMvZWxvcXVlcmFkYi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasolution-analytic-database\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"eloquera\",\r\n \"name\": \"eloqueradb\",\r\n \"product\": \"eloqueradb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb/Skus/eloqueradb/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "274" + "480" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37073,7 +37488,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53db5d22-217b-453e-8697-7cb3b1e32bb6" + "2d5fa531-4952-416e-8886-dcb841f3d282" ], "Cache-Control": [ "no-cache" @@ -37083,34 +37498,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13328" + "14213" ], "x-ms-correlation-request-id": [ - "c0bc5c55-04df-44eb-b159-a4fccff2710a" + "3fd2af5e-1fca-4b8c-a8dd-188bd5ab788e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212537Z:c0bc5c55-04df-44eb-b159-a4fccff2710a" + "WESTUS:20150813T074712Z:3fd2af5e-1fca-4b8c-a8dd-188bd5ab788e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/exasol/artifacttypes/vmimage/offers/exasolution-analytic-database/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhhc29sL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZXhhc29sdXRpb24tYW5hbHl0aWMtZGF0YWJhc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eperi/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXBlcmkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasolution_database\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database/Skus/exasolution_database\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi-gateway-for-cloud-apps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi/ArtifactTypes/VMImage/Offers/eperi-gateway-for-cloud-apps\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "291" + "271" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37125,7 +37540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5effbb45-8c11-459c-8871-f080da982571" + "455f49b7-c27f-4a04-94c3-c3f68125e75f" ], "Cache-Control": [ "no-cache" @@ -37135,34 +37550,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13327" + "14212" ], "x-ms-correlation-request-id": [ - "50ca347e-5308-4429-8e77-20ef19e99276" + "a20412cf-a8ee-42ee-85b4-011ecb29dbc7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:50ca347e-5308-4429-8e77-20ef19e99276" + "WESTUS:20150813T074713Z:a20412cf-a8ee-42ee-85b4-011ecb29dbc7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/exasol/artifacttypes/vmimage/offers/exasolution-analytic-database/skus/exasolution_database/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhhc29sL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZXhhc29sdXRpb24tYW5hbHl0aWMtZGF0YWJhc2Uvc2t1cy9leGFzb2x1dGlvbl9kYXRhYmFzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eperi/artifacttypes/vmimage/offers/eperi-gateway-for-cloud-apps/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXBlcmkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lcGVyaS1nYXRld2F5LWZvci1jbG91ZC1hcHBzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database/Skus/exasolution_database/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egfca\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi/ArtifactTypes/VMImage/Offers/eperi-gateway-for-cloud-apps/Skus/egfca\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "291" + "259" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37177,7 +37592,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fcd14bf6-3e08-48cb-9b08-2ee90c6f3d94" + "1e5ec4c8-44d5-42d8-82d8-28e3ed6be5fa" ], "Cache-Control": [ "no-cache" @@ -37187,34 +37602,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13326" + "14211" ], "x-ms-correlation-request-id": [ - "0d5a2483-8c46-4ff8-b1be-3262ddc7e845" + "747895fc-25c7-4855-8569-53d33d29d164" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:0d5a2483-8c46-4ff8-b1be-3262ddc7e845" + "WESTUS:20150813T074713Z:747895fc-25c7-4855-8569-53d33d29d164" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/exasol/artifacttypes/vmimage/offers/exasolution-analytic-database/skus/exasolution_database/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhhc29sL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZXhhc29sdXRpb24tYW5hbHl0aWMtZGF0YWJhc2Uvc2t1cy9leGFzb2x1dGlvbl9kYXRhYmFzZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eperi/artifacttypes/vmimage/offers/eperi-gateway-for-cloud-apps/skus/egfca/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXBlcmkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lcGVyaS1nYXRld2F5LWZvci1jbG91ZC1hcHBzL3NrdXMvZWdmY2EvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"exasol\",\r\n \"name\": \"exasolution_database\",\r\n \"product\": \"exasolution-analytic-database\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database/Skus/exasolution_database/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150624\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi/ArtifactTypes/VMImage/Offers/eperi-gateway-for-cloud-apps/Skus/egfca/Versions/3.0.20150624\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "532" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37229,7 +37644,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "513b7538-ac2a-40dd-a13c-4f36b46f1a9f" + "1da1aadd-0dbc-43a0-b84b-b5e7d110c44d" ], "Cache-Control": [ "no-cache" @@ -37239,34 +37654,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13325" + "14210" ], "x-ms-correlation-request-id": [ - "953ca8e3-3b34-454d-a105-f6cab270010f" + "dc158547-cae4-4b7d-9acd-32e09bb052d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:953ca8e3-3b34-454d-a105-f6cab270010f" + "WESTUS:20150813T074713Z:dc158547-cae4-4b7d-9acd-32e09bb052d6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:37 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/exit-games/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhpdC1nYW1lcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eperi/artifacttypes/vmimage/offers/eperi-gateway-for-cloud-apps/skus/egfca/versions/3.0.20150624?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXBlcmkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lcGVyaS1nYXRld2F5LWZvci1jbG91ZC1hcHBzL3NrdXMvZWdmY2EvdmVyc2lvbnMvMy4wLjIwMTUwNjI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"photon-server-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games/ArtifactTypes/VMImage/Offers/photon-server-vm\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"eperi\",\r\n \"name\": \"egfca\",\r\n \"product\": \"eperi-gateway-for-cloud-apps\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150624\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi/ArtifactTypes/VMImage/Offers/eperi-gateway-for-cloud-apps/Skus/egfca/Versions/3.0.20150624\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "252" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37281,7 +37696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b3a89c2-7784-4f6a-a209-3350d4b980b8" + "8db4451b-46cc-4c7b-aa99-7f8917c3c225" ], "Cache-Control": [ "no-cache" @@ -37291,34 +37706,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13324" + "14209" ], "x-ms-correlation-request-id": [ - "3737952f-f502-49f5-a79b-388873bf4e2d" + "97b17df1-8ac4-4eac-8305-87b603192cad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:3737952f-f502-49f5-a79b-388873bf4e2d" + "WESTUS:20150813T074713Z:97b17df1-8ac4-4eac-8305-87b603192cad" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/exit-games/artifacttypes/vmimage/offers/photon-server-vm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhpdC1nYW1lcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Bob3Rvbi1zZXJ2ZXItdm0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"photon-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games/ArtifactTypes/VMImage/Offers/photon-server-vm/Skus/photon-vm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mediarich-all-media-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-all-media-server\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mediarich-hot-folder\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-hot-folder\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "260" + "531" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37333,7 +37748,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "299ded8f-a85f-467d-8051-2bf7809b35aa" + "61f87c27-841f-4cbd-83d2-b3c9ed125209" ], "Cache-Control": [ "no-cache" @@ -37343,34 +37758,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13323" + "14208" ], "x-ms-correlation-request-id": [ - "75bc6a9b-2727-454e-8288-51ef5e2d6951" + "4c2ff1ff-2ac8-44e4-b822-5347eefaf6e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:75bc6a9b-2727-454e-8288-51ef5e2d6951" + "WESTUS:20150813T074713Z:4c2ff1ff-2ac8-44e4-b822-5347eefaf6e9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/exit-games/artifacttypes/vmimage/offers/photon-server-vm/skus/photon-vm/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhpdC1nYW1lcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Bob3Rvbi1zZXJ2ZXItdm0vc2t1cy9waG90b24tdm0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-all-media-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtYWxsLW1lZGlhLXNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games/ArtifactTypes/VMImage/Offers/photon-server-vm/Skus/photon-vm/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"404115az\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-all-media-server/Skus/404115az\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "271" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37385,7 +37800,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11da77eb-c0a5-42aa-beaa-b83c1768784a" + "2936185d-a00a-47fa-ae0a-73ceeb01f586" ], "Cache-Control": [ "no-cache" @@ -37395,34 +37810,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13322" + "14207" ], "x-ms-correlation-request-id": [ - "1c43076b-cb03-4b96-8c57-071c8549980f" + "e5f8b5c2-f7b5-4acd-8aa5-b7d013176b7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:1c43076b-cb03-4b96-8c57-071c8549980f" + "WESTUS:20150813T074713Z:e5f8b5c2-f7b5-4acd-8aa5-b7d013176b7c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/exit-games/artifacttypes/vmimage/offers/photon-server-vm/skus/photon-vm/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhpdC1nYW1lcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Bob3Rvbi1zZXJ2ZXItdm0vc2t1cy9waG90b24tdm0vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-all-media-server/skus/404115az/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtYWxsLW1lZGlhLXNlcnZlci9za3VzLzQwNDExNWF6L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"exit-games\",\r\n \"name\": \"photon-vm\",\r\n \"product\": \"photon-server-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games/ArtifactTypes/VMImage/Offers/photon-server-vm/Skus/photon-vm/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-all-media-server/Skus/404115az/Versions/4.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "494" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37437,7 +37852,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d653632c-48f3-485f-ad0f-dff6cffb3fb1" + "79759403-3aac-4ed6-bc47-6ada9c38f249" ], "Cache-Control": [ "no-cache" @@ -37447,34 +37862,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13321" + "14206" ], "x-ms-correlation-request-id": [ - "6b898b3a-d5d0-487e-92a3-7fb0cd18bae3" + "615ece87-70f4-4d1e-bb8e-4cd096053468" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:6b898b3a-d5d0-487e-92a3-7fb0cd18bae3" + "WESTUS:20150813T074713Z:615ece87-70f4-4d1e-bb8e-4cd096053468" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/expertime/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhwZXJ0aW1lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-all-media-server/skus/404115az/versions/4.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtYWxsLW1lZGlhLXNlcnZlci9za3VzLzQwNDExNWF6L3ZlcnNpb25zLzQuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magento-pimcore-as\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime/ArtifactTypes/VMImage/Offers/magento-pimcore-as\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"equilibrium\",\r\n \"name\": \"404115az\",\r\n \"product\": \"mediarich-all-media-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-all-media-server/Skus/404115az/Versions/4.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "255" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37489,7 +37904,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "530236fc-e234-48b3-abbf-3f36094ac1df" + "d6f0f181-35fc-4864-b139-99f6bd08d613" ], "Cache-Control": [ "no-cache" @@ -37499,34 +37914,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13320" + "14205" ], "x-ms-correlation-request-id": [ - "9fc56fc5-7553-42a5-a9fe-d1c4c68f99ac" + "8851bb11-96f2-454e-b3f9-347fdbd6f260" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:9fc56fc5-7553-42a5-a9fe-d1c4c68f99ac" + "WESTUS:20150813T074713Z:8851bb11-96f2-454e-b3f9-347fdbd6f260" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/expertime/artifacttypes/vmimage/offers/magento-pimcore-as/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhwZXJ0aW1lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFnZW50by1waW1jb3JlLWFzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-hot-folder/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtaG90LWZvbGRlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vm_magento_pimcore_v0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime/ArtifactTypes/VMImage/Offers/magento-pimcore-as/Skus/vm_magento_pimcore_v0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"402000az\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-hot-folder/Skus/402000az\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "285" + "263" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37541,7 +37956,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a647d86-fbd4-4560-9501-f9e3e7efdf40" + "40bf033f-2047-44cc-91fd-5de8bd4a85db" ], "Cache-Control": [ "no-cache" @@ -37551,34 +37966,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13319" + "14204" ], "x-ms-correlation-request-id": [ - "331cb933-04a3-4bab-80bc-defbf1156fa0" + "f4712b1a-0a25-443d-a004-300f0d987006" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:331cb933-04a3-4bab-80bc-defbf1156fa0" + "WESTUS:20150813T074713Z:f4712b1a-0a25-443d-a004-300f0d987006" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/expertime/artifacttypes/vmimage/offers/magento-pimcore-as/skus/vm_magento_pimcore_v0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhwZXJ0aW1lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFnZW50by1waW1jb3JlLWFzL3NrdXMvdm1fbWFnZW50b19waW1jb3JlX3YwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-hot-folder/skus/402000az/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtaG90LWZvbGRlci9za3VzLzQwMjAwMGF6L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime/ArtifactTypes/VMImage/Offers/magento-pimcore-as/Skus/vm_magento_pimcore_v0/Versions/1.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-hot-folder/Skus/402000az/Versions/4.0.21\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "284" + "277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37593,7 +38008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "994a9ca4-b2c0-4f50-8b09-799e37c2083a" + "f4dcb1a9-da6b-496c-be11-92d684fd15f4" ], "Cache-Control": [ "no-cache" @@ -37603,34 +38018,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13318" + "14203" ], "x-ms-correlation-request-id": [ - "b81cbe10-2e6e-410e-ac82-482d3d8df6db" + "f521fe4e-86e6-4faf-9356-9db8ee1d9f9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212538Z:b81cbe10-2e6e-410e-ac82-482d3d8df6db" + "WESTUS:20150813T074714Z:f521fe4e-86e6-4faf-9356-9db8ee1d9f9a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/expertime/artifacttypes/vmimage/offers/magento-pimcore-as/skus/vm_magento_pimcore_v0/versions/1.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhwZXJ0aW1lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFnZW50by1waW1jb3JlLWFzL3NrdXMvdm1fbWFnZW50b19waW1jb3JlX3YwL3ZlcnNpb25zLzEuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/equilibrium/artifacttypes/vmimage/offers/mediarich-hot-folder/skus/402000az/versions/4.0.21?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXF1aWxpYnJpdW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZWRpYXJpY2gtaG90LWZvbGRlci9za3VzLzQwMjAwMGF6L3ZlcnNpb25zLzQuMC4yMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"expertime\",\r\n \"name\": \"vm_magento_pimcore_v0\",\r\n \"product\": \"magento-pimcore-as\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime/ArtifactTypes/VMImage/Offers/magento-pimcore-as/Skus/vm_magento_pimcore_v0/Versions/1.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"equilibrium\",\r\n \"name\": \"402000az\",\r\n \"product\": \"mediarich-hot-folder\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium/ArtifactTypes/VMImage/Offers/mediarich-hot-folder/Skus/402000az/Versions/4.0.21\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "518" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37645,7 +38060,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52d4fb01-7b5b-4aaf-a54a-14c47e6df474" + "96423169-e9e2-4b75-97c7-3a80045f206c" ], "Cache-Control": [ "no-cache" @@ -37655,28 +38070,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13317" + "14202" ], "x-ms-correlation-request-id": [ - "7a56cdd1-56f8-4706-b4f4-7c9c51b0702d" + "a68ed1c9-c1dc-4c75-84a8-c1dc51728276" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:7a56cdd1-56f8-4706-b4f4-7c9c51b0702d" + "WESTUS:20150813T074714Z:a68ed1c9-c1dc-4c75-84a8-c1dc51728276" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/f5-networks/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZjUtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ESET/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvRVNFVC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -37697,7 +38112,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4446c33-e47b-43d8-888b-f1225036dcea" + "42ebb7cd-0c30-41ff-8065-fd2c35b51b05" ], "Cache-Control": [ "no-cache" @@ -37707,34 +38122,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13316" + "14201" ], "x-ms-correlation-request-id": [ - "4bc46188-3425-4a61-9cfc-48af5eb24a89" + "2f9d1ee7-9471-42f1-894f-39f1c2b30547" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:4bc46188-3425-4a61-9cfc-48af5eb24a89" + "WESTUS:20150813T074714Z:2f9d1ee7-9471-42f1-894f-39f1c2b30547" ], "Date": [ - "Wed, 05 Aug 2015 21:25:38 GMT" + "Thu, 13 Aug 2015 07:47:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ESET.FileSecurity/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvRVNFVC5GaWxlU2VjdXJpdHkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "230" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37749,7 +38164,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d57b2381-412e-40d6-ad19-d6588671998c" + "e94346e8-39e1-43c3-8686-a986ced63058" ], "Cache-Control": [ "no-cache" @@ -37759,34 +38174,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13315" + "14200" ], "x-ms-correlation-request-id": [ - "a9bc03ce-90dc-4f95-8b43-9cf57a0f685d" + "4c12b5c4-c9ff-49f4-b9de-0c1881a81496" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:a9bc03ce-90dc-4f95-8b43-9cf57a0f685d" + "WESTUS:20150813T074714Z:4c12b5c4-c9ff-49f4-b9de-0c1881a81496" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/esri/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXNyaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10tb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/10tb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20tb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/20tb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"50tb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/50tb\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arcgis-for-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri/ArtifactTypes/VMImage/Offers/arcgis-for-server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "711" + "248" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37801,7 +38216,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23217a63-96b2-4c2b-9928-7a8816c16134" + "5ce3f456-9b6e-4999-9e6b-65c070d39b13" ], "Cache-Control": [ "no-cache" @@ -37811,34 +38226,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13314" + "14199" ], "x-ms-correlation-request-id": [ - "e04206d1-1290-4533-a3d5-1a1a8321bb20" + "fbb72338-bf42-4e32-af07-144a940d1188" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:e04206d1-1290-4533-a3d5-1a1a8321bb20" + "WESTUS:20150813T074714Z:fbb72338-bf42-4e32-af07-144a940d1188" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/10tb/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvMTB0Yi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/esri/artifacttypes/vmimage/offers/arcgis-for-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXNyaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyY2dpcy1mb3Itc2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/10tb/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri/ArtifactTypes/VMImage/Offers/arcgis-for-server/Skus/cloud\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "255" + "247" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37853,7 +38268,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc3ce241-1385-43dd-8e72-657e20cfe3c1" + "02d2d200-aa6c-4511-9288-8cddbbe46fb3" ], "Cache-Control": [ "no-cache" @@ -37863,34 +38278,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13313" + "14198" ], "x-ms-correlation-request-id": [ - "de3361dd-16b0-42b8-a8ac-33e5c3cd1962" + "066ce3a6-6523-4e06-a2b3-fb092e9f670d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:de3361dd-16b0-42b8-a8ac-33e5c3cd1962" + "WESTUS:20150813T074714Z:066ce3a6-6523-4e06-a2b3-fb092e9f670d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/10tb/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvMTB0Yi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/esri/artifacttypes/vmimage/offers/arcgis-for-server/skus/cloud/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXNyaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyY2dpcy1mb3Itc2VydmVyL3NrdXMvY2xvdWQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"filebridge\",\r\n \"name\": \"10tb\",\r\n \"product\": \"azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/10tb/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.9.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri/ArtifactTypes/VMImage/Offers/arcgis-for-server/Skus/cloud/Versions/0.9.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "462" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37905,7 +38320,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9104f741-631c-4185-bfac-c9feda69e5f8" + "6536a41b-0fff-4e38-bef1-1aa7d4cc065f" ], "Cache-Control": [ "no-cache" @@ -37915,34 +38330,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13312" + "14197" ], "x-ms-correlation-request-id": [ - "32576228-26b0-44e5-9bb9-42c82a7a1c82" + "1511895c-0492-47bd-ae99-c44840ef7ac6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:32576228-26b0-44e5-9bb9-42c82a7a1c82" + "WESTUS:20150813T074714Z:1511895c-0492-47bd-ae99-c44840ef7ac6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/20tb/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvMjB0Yi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/esri/artifacttypes/vmimage/offers/arcgis-for-server/skus/cloud/versions/0.9.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXNyaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2FyY2dpcy1mb3Itc2VydmVyL3NrdXMvY2xvdWQvdmVyc2lvbnMvMC45LjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/20tb/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"esri\",\r\n \"name\": \"cloud\",\r\n \"product\": \"arcgis-for-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.9.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri/ArtifactTypes/VMImage/Offers/arcgis-for-server/Skus/cloud/Versions/0.9.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "255" + "476" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37957,7 +38372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "707afa69-2bc6-4ab3-9da4-4db5a3343610" + "98ddfe63-d8b6-47b0-ac3a-65bdd4a9dc6e" ], "Cache-Control": [ "no-cache" @@ -37967,34 +38382,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13311" + "14196" ], "x-ms-correlation-request-id": [ - "47331f85-03ba-47c3-96b6-d8f354602f1e" + "36904099-d7eb-4518-9690-ca43e2140126" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:47331f85-03ba-47c3-96b6-d8f354602f1e" + "WESTUS:20150813T074714Z:36904099-d7eb-4518-9690-ca43e2140126" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/20tb/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvMjB0Yi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/eurotech/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXVyb3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"filebridge\",\r\n \"name\": \"20tb\",\r\n \"product\": \"azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/20tb/Versions/1.0.0\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "462" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38009,7 +38424,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c91691f0-e624-4019-a09e-894218370c41" + "f9737520-f51b-4c46-bccf-9861fe3b821e" ], "Cache-Control": [ "no-cache" @@ -38019,34 +38434,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13310" + "14195" ], "x-ms-correlation-request-id": [ - "8e0af6d2-9518-4d5f-ad68-852094fe9c54" + "a6ae6a6e-9a02-4f6f-bcab-82bb8b10df73" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:8e0af6d2-9518-4d5f-ad68-852094fe9c54" + "WESTUS:20150813T074714Z:a6ae6a6e-9a02-4f6f-bcab-82bb8b10df73" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/50tb/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvNTB0Yi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/exasol/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhhc29sL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/50tb/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasolution-analytic-database\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "255" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38061,7 +38476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "561f4bd4-83f4-4e27-8f41-9f15af1b071b" + "fafd0cbe-981a-4d20-9063-e19172084dff" ], "Cache-Control": [ "no-cache" @@ -38071,34 +38486,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13309" + "14194" ], "x-ms-correlation-request-id": [ - "94ea4191-6344-4140-a33a-abc369daaf7a" + "c75785c5-0fe4-4527-afb0-27e8ac4fa720" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212539Z:94ea4191-6344-4140-a33a-abc369daaf7a" + "WESTUS:20150813T074715Z:c75785c5-0fe4-4527-afb0-27e8ac4fa720" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/50tb/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvNTB0Yi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/exasol/artifacttypes/vmimage/offers/exasolution-analytic-database/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhhc29sL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZXhhc29sdXRpb24tYW5hbHl0aWMtZGF0YWJhc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"filebridge\",\r\n \"name\": \"50tb\",\r\n \"product\": \"azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/50tb/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasolution_database\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database/Skus/exasolution_database\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "462" + "291" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38113,7 +38528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73cb63b3-4c06-40b3-9de9-7fdadb889c1b" + "ffcb1eb1-cfe3-40ae-9dd7-4c6ae2e84666" ], "Cache-Control": [ "no-cache" @@ -38123,34 +38538,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13308" + "14193" ], "x-ms-correlation-request-id": [ - "aa39f89a-dd02-40eb-befb-3f09b18c9821" + "7ceb9d10-5a5f-4205-9239-36ef3b81a858" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:aa39f89a-dd02-40eb-befb-3f09b18c9821" + "WESTUS:20150813T074715Z:7ceb9d10-5a5f-4205-9239-36ef3b81a858" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/exasol/artifacttypes/vmimage/offers/exasolution-analytic-database/skus/exasolution_database/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhhc29sL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZXhhc29sdXRpb24tYW5hbHl0aWMtZGF0YWJhc2Uvc2t1cy9leGFzb2x1dGlvbl9kYXRhYmFzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost_armor\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost_armor_ubuntu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database/Skus/exasolution_database/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "503" + "291" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38165,7 +38580,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d70f1f2-5c6a-42d7-997b-447838acedb5" + "baefaace-1aea-4f62-82f4-33bb3f56291c" ], "Cache-Control": [ "no-cache" @@ -38175,34 +38590,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13307" + "14192" ], "x-ms-correlation-request-id": [ - "b81ef74d-0db7-4564-b77e-73a04f1f480f" + "6c9f09f5-aaa4-45cd-a78e-9a990914747a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:b81ef74d-0db7-4564-b77e-73a04f1f480f" + "WESTUS:20150813T074715Z:6c9f09f5-aaa4-45cd-a78e-9a990914747a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/exasol/artifacttypes/vmimage/offers/exasolution-analytic-database/skus/exasolution_database/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhhc29sL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZXhhc29sdXRpb24tYW5hbHl0aWMtZGF0YWJhc2Uvc2t1cy9leGFzb2x1dGlvbl9kYXRhYmFzZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_centos6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor/Skus/byol_centos6\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"exasol\",\r\n \"name\": \"exasolution_database\",\r\n \"product\": \"exasolution-analytic-database\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database/Skus/exasolution_database/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "262" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38217,7 +38632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76e4af36-b296-452a-97a0-1101b384ceea" + "bd7da578-6e9c-4d1b-af01-4fbf6199620d" ], "Cache-Control": [ "no-cache" @@ -38227,34 +38642,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13306" + "14191" ], "x-ms-correlation-request-id": [ - "1aae7eee-5e74-4440-b036-12e248ac6633" + "24c6bc22-8e69-470b-ab57-dc9d033491fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:1aae7eee-5e74-4440-b036-12e248ac6633" + "WESTUS:20150813T074715Z:24c6bc22-8e69-470b-ab57-dc9d033491fc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:39 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor/skus/byol_centos6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vci9za3VzL2J5b2xfY2VudG9zNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/exit-games/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhpdC1nYW1lcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor/Skus/byol_centos6/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"photon-server-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games/ArtifactTypes/VMImage/Offers/photon-server-vm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "270" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38269,7 +38684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f6ddc9b-1c34-4e21-a281-6358426e3713" + "cd51d0c0-80f3-409b-91a1-87aa63512826" ], "Cache-Control": [ "no-cache" @@ -38279,34 +38694,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13305" + "14190" ], "x-ms-correlation-request-id": [ - "e4c63117-938f-421c-89cc-0ee0da41da29" + "18ef5966-2cac-4ced-be2c-807210ddb804" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:e4c63117-938f-421c-89cc-0ee0da41da29" + "WESTUS:20150813T074715Z:18ef5966-2cac-4ced-be2c-807210ddb804" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor/skus/byol_centos6/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vci9za3VzL2J5b2xfY2VudG9zNi92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/exit-games/artifacttypes/vmimage/offers/photon-server-vm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhpdC1nYW1lcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Bob3Rvbi1zZXJ2ZXItdm0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"firehost\",\r\n \"name\": \"byol_centos6\",\r\n \"product\": \"firehost_armor\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor/Skus/byol_centos6/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"photon-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games/ArtifactTypes/VMImage/Offers/photon-server-vm/Skus/photon-vm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "490" + "260" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38321,7 +38736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fadab03-0778-4d51-a0d7-4f6ff59e1c3c" + "9288e71f-d6c8-468c-8d57-acef501add1d" ], "Cache-Control": [ "no-cache" @@ -38331,34 +38746,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13304" + "14189" ], "x-ms-correlation-request-id": [ - "91c818d6-c2e9-422f-8df2-a2758115c390" + "06870b1e-ec17-4f9b-84d7-4d6e9ed75dd6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:91c818d6-c2e9-422f-8df2-a2758115c390" + "WESTUS:20150813T074715Z:06870b1e-ec17-4f9b-84d7-4d6e9ed75dd6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_ubuntu/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl91YnVudHUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/exit-games/artifacttypes/vmimage/offers/photon-server-vm/skus/photon-vm/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhpdC1nYW1lcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Bob3Rvbi1zZXJ2ZXItdm0vc2t1cy9waG90b24tdm0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_ubuntu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu/Skus/byol_ubuntu\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games/ArtifactTypes/VMImage/Offers/photon-server-vm/Skus/photon-vm/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "267" + "271" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38373,7 +38788,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3da76827-9682-4e84-ba09-e31f28f303f0" + "5594f07c-78d1-4609-a68b-0883add3ef88" ], "Cache-Control": [ "no-cache" @@ -38383,34 +38798,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13303" + "14188" ], "x-ms-correlation-request-id": [ - "31bef33a-d3cf-4170-a9f7-07cd70c869f3" + "e0153cbb-b109-4937-b357-d804467876f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:31bef33a-d3cf-4170-a9f7-07cd70c869f3" + "WESTUS:20150813T074715Z:e0153cbb-b109-4937-b357-d804467876f3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_ubuntu/skus/byol_ubuntu/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl91YnVudHUvc2t1cy9ieW9sX3VidW50dS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/exit-games/artifacttypes/vmimage/offers/photon-server-vm/skus/photon-vm/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhpdC1nYW1lcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Bob3Rvbi1zZXJ2ZXItdm0vc2t1cy9waG90b24tdm0vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu/Skus/byol_ubuntu/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"exit-games\",\r\n \"name\": \"photon-vm\",\r\n \"product\": \"photon-server-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games/ArtifactTypes/VMImage/Offers/photon-server-vm/Skus/photon-vm/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "276" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38425,7 +38840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5a56ae5-894e-4cf0-b02c-dabd95e68ee5" + "e95e5ada-af00-4178-8b42-acbb0395b1d0" ], "Cache-Control": [ "no-cache" @@ -38435,34 +38850,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13302" + "14187" ], "x-ms-correlation-request-id": [ - "db4ae058-cba5-42f0-86e2-ecdfcd0cb2e4" + "efde7734-ce2b-4f30-963e-186cadf21d4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:db4ae058-cba5-42f0-86e2-ecdfcd0cb2e4" + "WESTUS:20150813T074715Z:efde7734-ce2b-4f30-963e-186cadf21d4b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_ubuntu/skus/byol_ubuntu/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl91YnVudHUvc2t1cy9ieW9sX3VidW50dS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/expertime/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhwZXJ0aW1lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"firehost\",\r\n \"name\": \"byol_ubuntu\",\r\n \"product\": \"firehost_armor_ubuntu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu/Skus/byol_ubuntu/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magento-pimcore-as\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime/ArtifactTypes/VMImage/Offers/magento-pimcore-as\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "502" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38477,7 +38892,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37a5fb7a-6661-49b1-9436-e7ef128e5310" + "ade3ba2d-23b7-4d54-8a6a-1d6c1738af5a" ], "Cache-Control": [ "no-cache" @@ -38487,34 +38902,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13301" + "14186" ], "x-ms-correlation-request-id": [ - "15eaf4e3-e12f-4735-93ff-17e4b24b9710" + "01be3435-4a6f-40f0-bc47-c5f0dcd150fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:15eaf4e3-e12f-4735-93ff-17e4b24b9710" + "WESTUS:20150813T074716Z:01be3435-4a6f-40f0-bc47-c5f0dcd150fb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/flexerasoftware/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmxleGVyYXNvZnR3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/expertime/artifacttypes/vmimage/offers/magento-pimcore-as/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhwZXJ0aW1lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFnZW50by1waW1jb3JlLWFzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexera-software-licensing\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vm_magento_pimcore_v0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime/ArtifactTypes/VMImage/Offers/magento-pimcore-as/Skus/vm_magento_pimcore_v0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "277" + "285" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38529,7 +38944,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f7d3eaa-3dd9-4f3d-a1c1-640ec8e5dff9" + "09afe361-3141-46ef-a057-c2bebac624e7" ], "Cache-Control": [ "no-cache" @@ -38539,34 +38954,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13300" + "14185" ], "x-ms-correlation-request-id": [ - "b536fabe-ffc8-41fb-b306-0f58782835d9" + "a47e9238-9e1d-44bd-996c-24398c3876fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:b536fabe-ffc8-41fb-b306-0f58782835d9" + "WESTUS:20150813T074716Z:a47e9238-9e1d-44bd-996c-24398c3876fe" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/flexerasoftware/artifacttypes/vmimage/offers/flexera-software-licensing/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmxleGVyYXNvZnR3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZmxleGVyYS1zb2Z0d2FyZS1saWNlbnNpbmcvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/expertime/artifacttypes/vmimage/offers/magento-pimcore-as/skus/vm_magento_pimcore_v0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhwZXJ0aW1lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFnZW50by1waW1jb3JlLWFzL3NrdXMvdm1fbWFnZW50b19waW1jb3JlX3YwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"software-monetization\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing/Skus/software-monetization\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime/ArtifactTypes/VMImage/Offers/magento-pimcore-as/Skus/vm_magento_pimcore_v0/Versions/1.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "299" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38581,7 +38996,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6215c08c-b2b1-4dc0-bbb5-c76971960850" + "b2bfef2f-17f9-4654-ae07-67e34e5e9e7d" ], "Cache-Control": [ "no-cache" @@ -38591,34 +39006,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13299" + "14184" ], "x-ms-correlation-request-id": [ - "6c453858-8278-4f56-9a62-2915ec02271a" + "32ec76ef-d7fd-4c0c-892a-dccd5124b9b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212540Z:6c453858-8278-4f56-9a62-2915ec02271a" + "WESTUS:20150813T074716Z:32ec76ef-d7fd-4c0c-892a-dccd5124b9b7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/flexerasoftware/artifacttypes/vmimage/offers/flexera-software-licensing/skus/software-monetization/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmxleGVyYXNvZnR3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZmxleGVyYS1zb2Z0d2FyZS1saWNlbnNpbmcvc2t1cy9zb2Z0d2FyZS1tb25ldGl6YXRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/expertime/artifacttypes/vmimage/offers/magento-pimcore-as/skus/vm_magento_pimcore_v0/versions/1.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZXhwZXJ0aW1lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFnZW50by1waW1jb3JlLWFzL3NrdXMvdm1fbWFnZW50b19waW1jb3JlX3YwL3ZlcnNpb25zLzEuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing/Skus/software-monetization/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"expertime\",\r\n \"name\": \"vm_magento_pimcore_v0\",\r\n \"product\": \"magento-pimcore-as\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime/ArtifactTypes/VMImage/Offers/magento-pimcore-as/Skus/vm_magento_pimcore_v0/Versions/1.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "298" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38633,7 +39048,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62d7ac37-221a-4f83-88c9-bf70744ece79" + "c6a5c617-aa5b-40b8-a56b-334906fe9c95" ], "Cache-Control": [ "no-cache" @@ -38643,34 +39058,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13298" + "14183" ], "x-ms-correlation-request-id": [ - "7f399753-e1d8-4dfd-8cef-c092ca9e153d" + "f4cd81e0-27fc-41bc-93cd-fda247a84afd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212541Z:7f399753-e1d8-4dfd-8cef-c092ca9e153d" + "WESTUS:20150813T074716Z:f4cd81e0-27fc-41bc-93cd-fda247a84afd" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/flexerasoftware/artifacttypes/vmimage/offers/flexera-software-licensing/skus/software-monetization/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmxleGVyYXNvZnR3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZmxleGVyYS1zb2Z0d2FyZS1saWNlbnNpbmcvc2t1cy9zb2Z0d2FyZS1tb25ldGl6YXRpb24vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/f5-networks/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZjUtbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"flexerasoftware\",\r\n \"name\": \"software-monetization\",\r\n \"product\": \"flexera-software-licensing\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing/Skus/software-monetization/Versions/1.0.0\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "548" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38685,7 +39100,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fde6aedd-94cc-45c7-879c-6b84348da768" + "498f78e8-6af2-482d-97f0-3b3cda191116" ], "Cache-Control": [ "no-cache" @@ -38695,34 +39110,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13297" + "14182" ], "x-ms-correlation-request-id": [ - "f9e96b37-eac2-4b71-b467-728da36738e2" + "55139459-f360-45fb-97dc-306d6a77159f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212541Z:f9e96b37-eac2-4b71-b467-728da36738e2" + "WESTUS:20150813T074716Z:55139459-f360-45fb-97dc-306d6a77159f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/foghorn-systems/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9naG9ybi1zeXN0ZW1zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-edge-device-manager\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems/ArtifactTypes/VMImage/Offers/foghorn-edge-device-manager\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "279" + "230" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38737,7 +39152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a03c525-3a33-4fc9-b9c1-346cb01d113f" + "8d646440-87ff-4dc0-acae-43260db96fcc" ], "Cache-Control": [ "no-cache" @@ -38747,34 +39162,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13296" + "14181" ], "x-ms-correlation-request-id": [ - "4c5c1a7b-407c-459c-bd77-c85e92ce05cc" + "b636b811-087f-4b30-985f-dd782b253c8d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212541Z:4c5c1a7b-407c-459c-bd77-c85e92ce05cc" + "WESTUS:20150813T074716Z:b636b811-087f-4b30-985f-dd782b253c8d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:40 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/foghorn-systems/artifacttypes/vmimage/offers/foghorn-edge-device-manager/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9naG9ybi1zeXN0ZW1zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZm9naG9ybi1lZGdlLWRldmljZS1tYW5hZ2VyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-edm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems/ArtifactTypes/VMImage/Offers/foghorn-edge-device-manager/Skus/foghorn-edm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10tb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/10tb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20tb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/20tb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"50tb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/50tb\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "280" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38789,7 +39204,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df84d1f1-01aa-4477-ab4e-f6ed082f9fc1" + "8ada7c3c-0dd2-4b5d-8fe1-1d3186d6e501" ], "Cache-Control": [ "no-cache" @@ -38799,34 +39214,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13295" + "14180" ], "x-ms-correlation-request-id": [ - "d0af5bf4-9e05-4b6c-acf1-a49be5e072e5" + "ef039548-603e-4f86-a3b7-2300aabe1dbf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212541Z:d0af5bf4-9e05-4b6c-acf1-a49be5e072e5" + "WESTUS:20150813T074716Z:ef039548-603e-4f86-a3b7-2300aabe1dbf" ], "Date": [ - "Wed, 05 Aug 2015 21:25:41 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/foghorn-systems/artifacttypes/vmimage/offers/foghorn-edge-device-manager/skus/foghorn-edm/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9naG9ybi1zeXN0ZW1zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZm9naG9ybi1lZGdlLWRldmljZS1tYW5hZ2VyL3NrdXMvZm9naG9ybi1lZG0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/10tb/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvMTB0Yi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems/ArtifactTypes/VMImage/Offers/foghorn-edge-device-manager/Skus/foghorn-edm/Versions/0.8.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/10tb/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "289" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38841,7 +39256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e634cfb-2ef4-4593-83a4-8af348750dbf" + "96a71b17-4e67-4e14-b5fa-4c37051487a1" ], "Cache-Control": [ "no-cache" @@ -38851,34 +39266,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13294" + "14179" ], "x-ms-correlation-request-id": [ - "3617d71f-89b9-485a-a576-447cf155fa34" + "0ac1ab2d-f420-489c-b596-dbe37368f080" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212541Z:3617d71f-89b9-485a-a576-447cf155fa34" + "WESTUS:20150813T074716Z:0ac1ab2d-f420-489c-b596-dbe37368f080" ], "Date": [ - "Wed, 05 Aug 2015 21:25:41 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/foghorn-systems/artifacttypes/vmimage/offers/foghorn-edge-device-manager/skus/foghorn-edm/versions/0.8.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9naG9ybi1zeXN0ZW1zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZm9naG9ybi1lZGdlLWRldmljZS1tYW5hZ2VyL3NrdXMvZm9naG9ybi1lZG0vdmVyc2lvbnMvMC44LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/10tb/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvMTB0Yi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"foghorn-systems\",\r\n \"name\": \"foghorn-edm\",\r\n \"product\": \"foghorn-edge-device-manager\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems/ArtifactTypes/VMImage/Offers/foghorn-edge-device-manager/Skus/foghorn-edm/Versions/0.8.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"filebridge\",\r\n \"name\": \"10tb\",\r\n \"product\": \"azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/10tb/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "528" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38893,7 +39308,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9edcb0f2-6348-43b4-b888-2367038663d3" + "dbc68432-b273-4a32-916c-9997189c9311" ], "Cache-Control": [ "no-cache" @@ -38903,34 +39318,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13293" + "14178" ], "x-ms-correlation-request-id": [ - "1fffd2a0-6e26-4602-a6cf-cc9a3161e9dc" + "21f924af-1fc4-4cd8-b222-a9923fb35458" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212541Z:1fffd2a0-6e26-4602-a6cf-cc9a3161e9dc" + "WESTUS:20150813T074717Z:21f924af-1fc4-4cd8-b222-a9923fb35458" ], "Date": [ - "Wed, 05 Aug 2015 21:25:41 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/fortinet/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9ydGluZXQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/20tb/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvMjB0Yi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/20tb/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38945,7 +39360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be703a6d-b27b-496c-82e3-acf9f6f081a6" + "eb17bd64-ea41-49d0-962a-fbe421be5147" ], "Cache-Control": [ "no-cache" @@ -38955,34 +39370,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13292" + "14177" ], "x-ms-correlation-request-id": [ - "078a6b33-1f61-4091-9961-cf784b9c9b25" + "3c639579-c4f5-43e6-9b91-441930901f84" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212541Z:078a6b33-1f61-4091-9961-cf784b9c9b25" + "WESTUS:20150813T074717Z:3c639579-c4f5-43e6-9b91-441930901f84" ], "Date": [ - "Wed, 05 Aug 2015 21:25:41 GMT" + "Thu, 13 Aug 2015 07:47:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/20tb/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvMjB0Yi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"filebridge\",\r\n \"name\": \"20tb\",\r\n \"product\": \"azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/20tb/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38997,7 +39412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53ab556e-fa20-42c8-b2dd-a72424becf0a" + "e92d6a5a-a98e-458b-816b-68896b6cfc4f" ], "Cache-Control": [ "no-cache" @@ -39007,34 +39422,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13291" + "14176" ], "x-ms-correlation-request-id": [ - "6d357066-efda-40e8-a8bd-8efc0bfcba8c" + "fd91ca8e-2c85-4836-a5ba-979b5efc53fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212541Z:6d357066-efda-40e8-a8bd-8efc0bfcba8c" + "WESTUS:20150813T074717Z:fd91ca8e-2c85-4836-a5ba-979b5efc53fd" ], "Date": [ - "Wed, 05 Aug 2015 21:25:41 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Gemalto.SafeNet.ProtectV.Azure/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2VtYWx0by5TYWZlTmV0LlByb3RlY3RWLkF6dXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/50tb/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvNTB0Yi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/50tb/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39049,7 +39464,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d8a6162-4e64-4a1f-9c12-9bddd75677a9" + "98e34c05-d111-4bd2-bd00-ca9fc473e3e6" ], "Cache-Control": [ "no-cache" @@ -39059,34 +39474,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13290" + "14175" ], "x-ms-correlation-request-id": [ - "3a6235e7-f297-4b6a-84f7-f5917fada97e" + "745820b5-a8b9-4b42-b31d-92909a2ea8ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:3a6235e7-f297-4b6a-84f7-f5917fada97e" + "WESTUS:20150813T074717Z:745820b5-a8b9-4b42-b31d-92909a2ea8ba" ], "Date": [ - "Wed, 05 Aug 2015 21:25:41 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/GitHub/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2l0SHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/filebridge/artifacttypes/vmimage/offers/azure/skus/50tb/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlsZWJyaWRnZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2F6dXJlL3NrdXMvNTB0Yi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub-Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub/ArtifactTypes/VMImage/Offers/GitHub-Enterprise\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"filebridge\",\r\n \"name\": \"50tb\",\r\n \"product\": \"azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/50tb/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "250" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39101,7 +39516,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31a7dfbb-129f-4520-ac20-655cae2cb32a" + "a91bf2b4-2176-4c3b-a80a-5e3eb8427085" ], "Cache-Control": [ "no-cache" @@ -39111,34 +39526,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13289" + "14174" ], "x-ms-correlation-request-id": [ - "f9eea991-b8f3-4ad8-b34d-7f1a9a948113" + "b2c85dd5-fae3-4435-b43f-22d64716bbd9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:f9eea991-b8f3-4ad8-b34d-7f1a9a948113" + "WESTUS:20150813T074717Z:b2c85dd5-fae3-4435-b43f-22d64716bbd9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:41 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/GitHub/artifacttypes/vmimage/offers/GitHub-Enterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2l0SHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvR2l0SHViLUVudGVycHJpc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub-Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub/ArtifactTypes/VMImage/Offers/GitHub-Enterprise/Skus/GitHub-Enterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost_armor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost_armor_ubuntu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost_armor_windows\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_windows\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "273" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39153,7 +39568,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18eda0d0-2d2f-4483-9007-1dec070b06bf" + "ee72cec2-3b30-4f72-8070-162ba6c51827" ], "Cache-Control": [ "no-cache" @@ -39163,34 +39578,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13288" + "14173" ], "x-ms-correlation-request-id": [ - "b4e77251-e303-47d7-845b-9f4b560b1b0e" + "f35719d4-d3d2-4a5f-b42d-d871156bfaf8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:b4e77251-e303-47d7-845b-9f4b560b1b0e" + "WESTUS:20150813T074717Z:f35719d4-d3d2-4a5f-b42d-d871156bfaf8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:41 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/GitHub/artifacttypes/vmimage/offers/GitHub-Enterprise/skus/GitHub-Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2l0SHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvR2l0SHViLUVudGVycHJpc2Uvc2t1cy9HaXRIdWItRW50ZXJwcmlzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub/ArtifactTypes/VMImage/Offers/GitHub-Enterprise/Skus/GitHub-Enterprise/Versions/2.2.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_centos6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor/Skus/byol_centos6\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "276" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39205,7 +39620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f64668f-afa0-4fe6-8c6f-3fa17d8b9956" + "faf1ee3b-b468-4d45-8ebf-1164f6ff3bd1" ], "Cache-Control": [ "no-cache" @@ -39215,34 +39630,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13287" + "14172" ], "x-ms-correlation-request-id": [ - "a047e456-3d1a-4012-90bc-60aeca661fcc" + "cd96ef8c-da78-434a-b1d1-0379e5a5d6c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:a047e456-3d1a-4012-90bc-60aeca661fcc" + "WESTUS:20150813T074717Z:cd96ef8c-da78-434a-b1d1-0379e5a5d6c7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/GitHub/artifacttypes/vmimage/offers/GitHub-Enterprise/skus/GitHub-Enterprise/versions/2.2.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2l0SHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvR2l0SHViLUVudGVycHJpc2Uvc2t1cy9HaXRIdWItRW50ZXJwcmlzZS92ZXJzaW9ucy8yLjIuND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor/skus/byol_centos6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vci9za3VzL2J5b2xfY2VudG9zNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub/ArtifactTypes/VMImage/Offers/GitHub-Enterprise/Skus/GitHub-Enterprise/Versions/2.2.4\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor/Skus/byol_centos6/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "375" + "270" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39257,7 +39672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f39c203-915f-4b75-bc7e-09cdcb066fcf" + "218e9af7-1824-4847-a129-c3f2d54ac601" ], "Cache-Control": [ "no-cache" @@ -39267,34 +39682,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13286" + "14171" ], "x-ms-correlation-request-id": [ - "4dc642c0-bbc9-4377-b1d1-ebf53ea08e78" + "93b99344-7415-4579-b860-99ab81e230f2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:4dc642c0-bbc9-4377-b1d1-ebf53ea08e78" + "WESTUS:20150813T074717Z:93b99344-7415-4579-b860-99ab81e230f2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/greensql/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ3JlZW5zcWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor/skus/byol_centos6/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vci9za3VzL2J5b2xfY2VudG9zNi92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql-database-security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"firehost\",\r\n \"name\": \"byol_centos6\",\r\n \"product\": \"firehost_armor\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor/Skus/byol_centos6/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "270" + "490" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39309,7 +39724,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89b4388f-d680-4e02-a4fb-ad9f7f3da752" + "cc374d05-2911-434b-a784-de919853a711" ], "Cache-Control": [ "no-cache" @@ -39319,34 +39734,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13285" + "14170" ], "x-ms-correlation-request-id": [ - "93fe6374-b428-4a6a-8093-d163808b945d" + "f1b1a1cb-d625-43d1-a5d0-229240a60f01" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:93fe6374-b428-4a6a-8093-d163808b945d" + "WESTUS:20150813T074717Z:f1b1a1cb-d625-43d1-a5d0-229240a60f01" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/greensql/artifacttypes/vmimage/offers/greensql-database-security/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ3JlZW5zcWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ncmVlbnNxbC1kYXRhYmFzZS1zZWN1cml0eS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_ubuntu/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl91YnVudHUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql_database_security_azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security/Skus/greensql_database_security_azure\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_ubuntu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu/Skus/byol_ubuntu\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "314" + "267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39361,7 +39776,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8964b0a1-ae53-4ace-bb37-cee49d5ca709" + "d6e7f506-d38c-4ac0-a4b4-eedc4e0e895e" ], "Cache-Control": [ "no-cache" @@ -39371,34 +39786,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13284" + "14169" ], "x-ms-correlation-request-id": [ - "1c9cdbfe-6777-4af9-bedd-14c9d2683940" + "c8a91648-596a-4d19-82d9-fc2e74177809" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:1c9cdbfe-6777-4af9-bedd-14c9d2683940" + "WESTUS:20150813T074717Z:c8a91648-596a-4d19-82d9-fc2e74177809" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/greensql/artifacttypes/vmimage/offers/greensql-database-security/skus/greensql_database_security_azure/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ3JlZW5zcWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ncmVlbnNxbC1kYXRhYmFzZS1zZWN1cml0eS9za3VzL2dyZWVuc3FsX2RhdGFiYXNlX3NlY3VyaXR5X2F6dXJlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_ubuntu/skus/byol_ubuntu/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl91YnVudHUvc2t1cy9ieW9sX3VidW50dS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security/Skus/greensql_database_security_azure/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu/Skus/byol_ubuntu/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "302" + "276" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39413,7 +39828,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d009e499-632c-4ff4-b1ab-c10e3ac522c3" + "8a5834e5-d056-4aa9-a308-70221ab0a6dd" ], "Cache-Control": [ "no-cache" @@ -39423,34 +39838,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13283" + "14168" ], "x-ms-correlation-request-id": [ - "846aa647-93d2-4274-9dd0-e2fba6933a34" + "b36eef28-1644-4b66-be85-47117a397208" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:846aa647-93d2-4274-9dd0-e2fba6933a34" + "WESTUS:20150813T074718Z:b36eef28-1644-4b66-be85-47117a397208" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/greensql/artifacttypes/vmimage/offers/greensql-database-security/skus/greensql_database_security_azure/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ3JlZW5zcWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ncmVlbnNxbC1kYXRhYmFzZS1zZWN1cml0eS9za3VzL2dyZWVuc3FsX2RhdGFiYXNlX3NlY3VyaXR5X2F6dXJlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_ubuntu/skus/byol_ubuntu/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl91YnVudHUvc2t1cy9ieW9sX3VidW50dS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"greensql\",\r\n \"name\": \"greensql_database_security_azure\",\r\n \"product\": \"greensql-database-security\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security/Skus/greensql_database_security_azure/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"firehost\",\r\n \"name\": \"byol_ubuntu\",\r\n \"product\": \"firehost_armor_ubuntu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu/Skus/byol_ubuntu/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "554" + "502" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39465,7 +39880,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99ca0155-5e62-4a62-b8c2-c27449f1b0d8" + "ae2ea904-4406-4a31-ae71-7133fd24391a" ], "Cache-Control": [ "no-cache" @@ -39475,34 +39890,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13282" + "14167" ], "x-ms-correlation-request-id": [ - "47a457fb-18ae-4371-8d7c-4a2bac5b261e" + "269dfa63-3abd-4b15-ae59-e95a45cab347" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212542Z:47a457fb-18ae-4371-8d7c-4a2bac5b261e" + "WESTUS:20150813T074718Z:269dfa63-3abd-4b15-ae59-e95a45cab347" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/halobicloud/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFsb2JpY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_windows/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl93aW5kb3dzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halo-paas2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud/ArtifactTypes/VMImage/Offers/halo-paas2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_windows2012r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_windows/Skus/byol_windows2012r2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "241" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39517,7 +39932,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "657537d8-a032-4ba0-aa2b-a957fb121974" + "f7b6f8d9-05a1-4875-9be6-030dad6dffd6" ], "Cache-Control": [ "no-cache" @@ -39527,34 +39942,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13281" + "14166" ], "x-ms-correlation-request-id": [ - "8edc9dcc-5a95-404c-8ffe-282c992e2313" + "f56928c6-fcf0-42a2-b695-c568ede7f8f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:8edc9dcc-5a95-404c-8ffe-282c992e2313" + "WESTUS:20150813T074718Z:f56928c6-fcf0-42a2-b695-c568ede7f8f0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/halobicloud/artifacttypes/vmimage/offers/halo-paas2/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFsb2JpY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9oYWxvLXBhYXMyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_windows/skus/byol_windows2012r2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl93aW5kb3dzL3NrdXMvYnlvbF93aW5kb3dzMjAxMnIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halopaas02\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud/ArtifactTypes/VMImage/Offers/halo-paas2/Skus/halopaas02\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_windows/Skus/byol_windows2012r2/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "257" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39569,7 +39984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb27070c-1663-4aed-af87-8124f44be8f2" + "22eb7274-a9cc-4d2a-b63b-453d5a57ab73" ], "Cache-Control": [ "no-cache" @@ -39579,34 +39994,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13280" + "14165" ], "x-ms-correlation-request-id": [ - "9b72f3a7-95a5-42ac-b2f4-a97d0e37118c" + "62d878e6-43f3-4e98-9c62-85cd1141084b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:9b72f3a7-95a5-42ac-b2f4-a97d0e37118c" + "WESTUS:20150813T074718Z:62d878e6-43f3-4e98-9c62-85cd1141084b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/halobicloud/artifacttypes/vmimage/offers/halo-paas2/skus/halopaas02/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFsb2JpY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9oYWxvLXBhYXMyL3NrdXMvaGFsb3BhYXMwMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/firehost/artifacttypes/vmimage/offers/firehost_armor_windows/skus/byol_windows2012r2/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmlyZWhvc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9maXJlaG9zdF9hcm1vcl93aW5kb3dzL3NrdXMvYnlvbF93aW5kb3dzMjAxMnIyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.7.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud/ArtifactTypes/VMImage/Offers/halo-paas2/Skus/halopaas02/Versions/1.7.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"firehost\",\r\n \"name\": \"byol_windows2012r2\",\r\n \"product\": \"firehost_armor_windows\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_windows/Skus/byol_windows2012r2/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "267" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39621,7 +40036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d464e4d3-0245-4a7d-b3a1-5c63ebf383b8" + "7f968f81-b7b7-4b02-a194-f503fc50203b" ], "Cache-Control": [ "no-cache" @@ -39631,34 +40046,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13279" + "14164" ], "x-ms-correlation-request-id": [ - "5e216258-4aa0-464d-92c9-4b120e4e42f3" + "66b74d44-c66e-4944-9b13-94cfdc7baf04" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:5e216258-4aa0-464d-92c9-4b120e4e42f3" + "WESTUS:20150813T074718Z:66b74d44-c66e-4944-9b13-94cfdc7baf04" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/halobicloud/artifacttypes/vmimage/offers/halo-paas2/skus/halopaas02/versions/1.7.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFsb2JpY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9oYWxvLXBhYXMyL3NrdXMvaGFsb3BhYXMwMi92ZXJzaW9ucy8xLjcuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/flexerasoftware/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmxleGVyYXNvZnR3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"halobicloud\",\r\n \"name\": \"halopaas02\",\r\n \"product\": \"halo-paas2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.7.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud/ArtifactTypes/VMImage/Offers/halo-paas2/Skus/halopaas02/Versions/1.7.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexera-software-licensing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "528" + "277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39673,7 +40088,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3fdf2f20-4bcd-499b-8d61-397cbd272596" + "304b8421-615c-4980-8fcb-56a6fd22bb53" ], "Cache-Control": [ "no-cache" @@ -39683,34 +40098,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13278" + "14163" ], "x-ms-correlation-request-id": [ - "bc0f01f5-c55d-494d-bb63-fcaf8d7972e9" + "12eb3257-92b1-4261-85a7-d493d8a7e1c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:bc0f01f5-c55d-494d-bb63-fcaf8d7972e9" + "WESTUS:20150813T074718Z:12eb3257-92b1-4261-85a7-d493d8a7e1c2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/flexerasoftware/artifacttypes/vmimage/offers/flexera-software-licensing/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmxleGVyYXNvZnR3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZmxleGVyYS1zb2Z0d2FyZS1saWNlbnNpbmcvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu-insight\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"software-monetization\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing/Skus/software-monetization\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "238" + "299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39725,7 +40140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06cd1184-8a9e-4cc9-ab85-9d3e5d6d087b" + "b3855df7-a115-4697-aa46-7deafaa2f03c" ], "Cache-Control": [ "no-cache" @@ -39735,34 +40150,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13277" + "14162" ], "x-ms-correlation-request-id": [ - "bcacef38-8b0f-4fbd-9b24-f57f709dc260" + "017fbe51-502d-48c2-804e-5849770424d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:bcacef38-8b0f-4fbd-9b24-f57f709dc260" + "WESTUS:20150813T074718Z:017fbe51-502d-48c2-804e-5849770424d1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:42 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/flexerasoftware/artifacttypes/vmimage/offers/flexera-software-licensing/skus/software-monetization/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmxleGVyYXNvZnR3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZmxleGVyYS1zb2Z0d2FyZS1saWNlbnNpbmcvc2t1cy9zb2Z0d2FyZS1tb25ldGl6YXRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing/Skus/software-monetization/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1011" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39777,7 +40192,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2827dac-f4a7-4558-ba54-2f72f91aaa2e" + "0657068c-a4c2-4b69-9aba-a9129b24c41f" ], "Cache-Control": [ "no-cache" @@ -39787,34 +40202,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13276" + "14161" ], "x-ms-correlation-request-id": [ - "09b61b73-7d1b-495c-8828-4f95fc330ff3" + "994cc87a-d66d-4215-b8c1-e16acb35f6b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:09b61b73-7d1b-495c-8828-4f95fc330ff3" + "WESTUS:20150813T074718Z:994cc87a-d66d-4215-b8c1-e16acb35f6b5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/flexerasoftware/artifacttypes/vmimage/offers/flexera-software-licensing/skus/software-monetization/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZmxleGVyYXNvZnR3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZmxleGVyYS1zb2Z0d2FyZS1saWNlbnNpbmcvc2t1cy9zb2Z0d2FyZS1tb25ldGl6YXRpb24vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise/Versions/1.1.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"flexerasoftware\",\r\n \"name\": \"software-monetization\",\r\n \"product\": \"flexera-software-licensing\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing/Skus/software-monetization/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "262" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39829,7 +40244,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b1357d7-31b5-4edb-b3f0-c6f08e9b8f07" + "e75ae6dd-f2d0-4808-9d26-6530c95fff34" ], "Cache-Control": [ "no-cache" @@ -39839,34 +40254,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13275" + "14160" ], "x-ms-correlation-request-id": [ - "75b899a0-4db0-4256-adeb-c6fbedd66c65" + "5e9f874b-f3c9-4340-a8a2-55f900e3e599" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:75b899a0-4db0-4256-adeb-c6fbedd66c65" + "WESTUS:20150813T074718Z:5e9f874b-f3c9-4340-a8a2-55f900e3e599" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/enterprise/versions/1.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnMvMS4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/foghorn-systems/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9naG9ybi1zeXN0ZW1zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hanu\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"hanu-insight\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise/Versions/1.1.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-edge-device-manager\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems/ArtifactTypes/VMImage/Offers/foghorn-edge-device-manager\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "476" + "279" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39881,7 +40296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d89ffce0-ab1c-4eab-b560-399e55387045" + "0d160905-d83f-4850-9ba0-b3d30a9e9736" ], "Cache-Control": [ "no-cache" @@ -39891,34 +40306,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13274" + "14159" ], "x-ms-correlation-request-id": [ - "7d9f10f2-88f0-4311-8548-ebaa40e8d0ec" + "2a65bf3f-f666-4425-bea0-4a306226d82b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:7d9f10f2-88f0-4311-8548-ebaa40e8d0ec" + "WESTUS:20150813T074718Z:2a65bf3f-f666-4425-bea0-4a306226d82b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/enterprise-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL2VudGVycHJpc2UtYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/foghorn-systems/artifacttypes/vmimage/offers/foghorn-edge-device-manager/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9naG9ybi1zeXN0ZW1zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZm9naG9ybi1lZGdlLWRldmljZS1tYW5hZ2VyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise-byol/Versions/1.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-edm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems/ArtifactTypes/VMImage/Offers/foghorn-edge-device-manager/Skus/foghorn-edm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "267" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39933,7 +40348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbb9300d-a509-46e4-9318-7f959d7eabcf" + "6ba0d22b-1cbe-4e1d-8075-b8b03ff3f5e6" ], "Cache-Control": [ "no-cache" @@ -39943,34 +40358,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13273" + "14158" ], "x-ms-correlation-request-id": [ - "06708e10-dbd4-4713-884d-335bab0a7c52" + "b68d7ee4-e0d8-4b60-bd2c-ac8a2489c3b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:06708e10-dbd4-4713-884d-335bab0a7c52" + "WESTUS:20150813T074719Z:b68d7ee4-e0d8-4b60-bd2c-ac8a2489c3b7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/enterprise-byol/versions/1.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL2VudGVycHJpc2UtYnlvbC92ZXJzaW9ucy8xLjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/foghorn-systems/artifacttypes/vmimage/offers/foghorn-edge-device-manager/skus/foghorn-edm/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9naG9ybi1zeXN0ZW1zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZm9naG9ybi1lZGdlLWRldmljZS1tYW5hZ2VyL3NrdXMvZm9naG9ybi1lZG0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hanu\",\r\n \"name\": \"enterprise-byol\",\r\n \"product\": \"hanu-insight\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise-byol/Versions/1.1.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems/ArtifactTypes/VMImage/Offers/foghorn-edge-device-manager/Skus/foghorn-edm/Versions/0.8.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "486" + "289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -39985,7 +40400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a4d82f8-ced6-4d01-b56f-f3c088a47d5c" + "e5ae5825-1c67-42fa-89c3-b9e8d9179cdf" ], "Cache-Control": [ "no-cache" @@ -39995,34 +40410,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13272" + "14157" ], "x-ms-correlation-request-id": [ - "6bad9285-9d50-420b-b8bb-7763c0d2dc1f" + "b8730992-2e5b-4c49-bd76-c6241f17d1fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:6bad9285-9d50-420b-b8bb-7763c0d2dc1f" + "WESTUS:20150813T074719Z:b8730992-2e5b-4c49-bd76-c6241f17d1fb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL3N0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/foghorn-systems/artifacttypes/vmimage/offers/foghorn-edge-device-manager/skus/foghorn-edm/versions/0.8.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9naG9ybi1zeXN0ZW1zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvZm9naG9ybi1lZGdlLWRldmljZS1tYW5hZ2VyL3NrdXMvZm9naG9ybi1lZG0vdmVyc2lvbnMvMC44LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"foghorn-systems\",\r\n \"name\": \"foghorn-edm\",\r\n \"product\": \"foghorn-edge-device-manager\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems/ArtifactTypes/VMImage/Offers/foghorn-edge-device-manager/Skus/foghorn-edm/Versions/0.8.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "260" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40037,7 +40452,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd959b13-0c6c-4c69-88d8-2a998fa6948b" + "ec9e6be7-36d5-4643-a6b4-5c932bc46795" ], "Cache-Control": [ "no-cache" @@ -40047,34 +40462,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13271" + "14156" ], "x-ms-correlation-request-id": [ - "a5b16305-5ac1-4c31-a8e8-a0da6e096cb2" + "8b9b0376-3418-4cb6-acaf-419411f2d76a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212543Z:a5b16305-5ac1-4c31-a8e8-a0da6e096cb2" + "WESTUS:20150813T074719Z:8b9b0376-3418-4cb6-acaf-419411f2d76a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/standard/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL3N0YW5kYXJkL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/fortinet/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZm9ydGluZXQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hanu\",\r\n \"name\": \"standard\",\r\n \"product\": \"hanu-insight\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard/Versions/1.0.0\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "472" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40089,7 +40504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aad210a2-c0d9-4b5f-aaba-7dd9e88dbff3" + "9f43539f-01cf-4805-a146-d24c630944f3" ], "Cache-Control": [ "no-cache" @@ -40099,34 +40514,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13270" + "14155" ], "x-ms-correlation-request-id": [ - "67968aa4-8267-4ea9-b00a-aa33002213fe" + "7dbe973e-32b0-4ca8-8ba2-c73ef62c4599" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:67968aa4-8267-4ea9-b00a-aa33002213fe" + "WESTUS:20150813T074719Z:7dbe973e-32b0-4ca8-8ba2-c73ef62c4599" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/standard-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL3N0YW5kYXJkLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard-byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"safenet-protectv\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "265" + "257" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40141,7 +40556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10a085b8-14c8-48d0-85a0-aa41f3e08106" + "26610c7c-1acb-4d73-bc4c-a5f67db186de" ], "Cache-Control": [ "no-cache" @@ -40151,34 +40566,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13269" + "14154" ], "x-ms-correlation-request-id": [ - "c3bbecdb-67b6-4aec-a90a-cf9a34f222bc" + "5935631e-71f5-4151-9328-3d24b187477a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:c3bbecdb-67b6-4aec-a90a-cf9a34f222bc" + "WESTUS:20150813T074719Z:5935631e-71f5-4151-9328-3d24b187477a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/standard-byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL3N0YW5kYXJkLWJ5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers/safenet-protectv/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2FmZW5ldC1wcm90ZWN0di9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hanu\",\r\n \"name\": \"standard-byol\",\r\n \"product\": \"hanu-insight\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard-byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"100_protectv_clients\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/100_protectv_clients\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"200_protectv_clients\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/200_protectv_clients\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"50_protectv_clients\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/50_protectv_clients\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "482" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40193,7 +40608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a3721d1-75bf-4b68-8be5-3773dee94b01" + "5edbc540-4e67-4226-a198-d12913646ead" ], "Cache-Control": [ "no-cache" @@ -40203,34 +40618,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13268" + "14153" ], "x-ms-correlation-request-id": [ - "5baa8f7f-1f08-429c-aca4-81a8d855e0d7" + "b8f38146-590d-4f39-bdce-6c5429880dd8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:5baa8f7f-1f08-429c-aca4-81a8d855e0d7" + "WESTUS:20150813T074719Z:b8f38146-590d-4f39-bdce-6c5429880dd8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers/safenet-protectv/skus/100_protectv_clients/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2FmZW5ldC1wcm90ZWN0di9za3VzLzEwMF9wcm90ZWN0dl9jbGllbnRzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hp-loadrunner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/100_protectv_clients/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "251" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40245,7 +40660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ee4e149-22c9-44a7-8c93-89d59399450f" + "12b9eb7b-cad3-4d30-9e1a-9d65fb227e9d" ], "Cache-Control": [ "no-cache" @@ -40255,34 +40670,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13267" + "14152" ], "x-ms-correlation-request-id": [ - "ccce6985-e951-4f24-b827-c95e13a15c54" + "7cd64f8c-982c-44a3-a16e-5fecb6218e48" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:ccce6985-e951-4f24-b827-c95e13a15c54" + "WESTUS:20150813T074719Z:7cd64f8c-982c-44a3-a16e-5fecb6218e48" ], "Date": [ - "Wed, 05 Aug 2015 21:25:43 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-loadrunner/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtbG9hZHJ1bm5lci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers/safenet-protectv/skus/100_protectv_clients/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2FmZW5ldC1wcm90ZWN0di9za3VzLzEwMF9wcm90ZWN0dl9jbGllbnRzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lr_12_02_ga_2012r2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner/Skus/lr_12_02_ga_2012r2\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"gemalto-safenet\",\r\n \"name\": \"100_protectv_clients\",\r\n \"product\": \"safenet-protectv\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/100_protectv_clients/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "280" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40297,7 +40712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fcf4fde2-e97b-4630-9bf7-d89048a4ed88" + "3e060739-3bb3-466e-b93a-731286e7bca5" ], "Cache-Control": [ "no-cache" @@ -40307,34 +40722,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13266" + "14151" ], "x-ms-correlation-request-id": [ - "05049025-702c-42f7-9431-fd6c90e2058d" + "f75aca86-d8d7-4d11-9625-5c34bf57a4ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:05049025-702c-42f7-9431-fd6c90e2058d" + "WESTUS:20150813T074719Z:f75aca86-d8d7-4d11-9625-5c34bf57a4ce" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-loadrunner/skus/lr_12_02_ga_2012r2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtbG9hZHJ1bm5lci9za3VzL2xyXzEyXzAyX2dhXzIwMTJyMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers/safenet-protectv/skus/200_protectv_clients/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2FmZW5ldC1wcm90ZWN0di9za3VzLzIwMF9wcm90ZWN0dl9jbGllbnRzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner/Skus/lr_12_02_ga_2012r2/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/200_protectv_clients/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "282" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40349,7 +40764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "359ef8fd-0a37-4cdf-a577-1e9c02da997a" + "05762519-e945-4215-9329-e00650e2dd87" ], "Cache-Control": [ "no-cache" @@ -40359,34 +40774,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13265" + "14150" ], "x-ms-correlation-request-id": [ - "4e0d7084-f177-454d-bf6a-265c67cc0886" + "f48002bf-0b7a-4807-9c7c-38ec72856b2a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:4e0d7084-f177-454d-bf6a-265c67cc0886" + "WESTUS:20150813T074719Z:f48002bf-0b7a-4807-9c7c-38ec72856b2a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-loadrunner/skus/lr_12_02_ga_2012r2/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtbG9hZHJ1bm5lci9za3VzL2xyXzEyXzAyX2dhXzIwMTJyMi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers/safenet-protectv/skus/200_protectv_clients/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2FmZW5ldC1wcm90ZWN0di9za3VzLzIwMF9wcm90ZWN0dl9jbGllbnRzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hewlett-packard\",\r\n \"name\": \"lr_12_02_ga_2012r2\",\r\n \"product\": \"hp-loadrunner\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner/Skus/lr_12_02_ga_2012r2/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"gemalto-safenet\",\r\n \"name\": \"200_protectv_clients\",\r\n \"product\": \"safenet-protectv\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/200_protectv_clients/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "516" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40401,7 +40816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff415ff5-b001-4183-8e38-a5b97454dba0" + "01a0eae0-cfab-4273-a5d7-5589f6315746" ], "Cache-Control": [ "no-cache" @@ -40411,34 +40826,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13264" + "14149" ], "x-ms-correlation-request-id": [ - "a00e98eb-c2db-4159-a332-ae1a4d6af1c9" + "a34d6e4d-a806-4e6f-9443-0fd61dca9ec2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:a00e98eb-c2db-4159-a332-ae1a4d6af1c9" + "WESTUS:20150813T074719Z:a34d6e4d-a806-4e6f-9443-0fd61dca9ec2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers/safenet-protectv/skus/50_protectv_clients/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2FmZW5ldC1wcm90ZWN0di9za3VzLzUwX3Byb3RlY3R2X2NsaWVudHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks-sandbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks-sandbox\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/50_protectv_clients/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "499" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40453,7 +40868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81c2c625-17a3-4b6b-8dee-051515e4ff92" + "eba6e2f3-8680-4a6e-ae45-f852194c5dc5" ], "Cache-Control": [ "no-cache" @@ -40463,34 +40878,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13263" + "14148" ], "x-ms-correlation-request-id": [ - "80ac698f-8883-4220-98e3-02d53343762d" + "3cb0941e-4abb-4656-98e2-7fa24925f33b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:80ac698f-8883-4220-98e3-02d53343762d" + "WESTUS:20150813T074720Z:3cb0941e-4abb-4656-98e2-7fa24925f33b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/gemalto-safenet/artifacttypes/vmimage/offers/safenet-protectv/skus/50_protectv_clients/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ2VtYWx0by1zYWZlbmV0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2FmZW5ldC1wcm90ZWN0di9za3VzLzUwX3Byb3RlY3R2X2NsaWVudHMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataplatform\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"gemalto-safenet\",\r\n \"name\": \"50_protectv_clients\",\r\n \"product\": \"safenet-protectv\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet/ArtifactTypes/VMImage/Offers/safenet-protectv/Skus/50_protectv_clients/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "262" + "522" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40505,7 +40920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "016feb69-47e9-4925-964d-ad4c746aa723" + "50d5d1ac-c734-4a4c-895c-90acd8997b7d" ], "Cache-Control": [ "no-cache" @@ -40515,34 +40930,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13262" + "14147" ], "x-ms-correlation-request-id": [ - "7d145b42-6c2c-4264-9f7d-2f435df80ba8" + "fb5fa145-0a69-46c1-9e7f-7483f0c9edd1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:7d145b42-6c2c-4264-9f7d-2f435df80ba8" + "WESTUS:20150813T074720Z:fb5fa145-0a69-46c1-9e7f-7483f0c9edd1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks/skus/dataplatform/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy9za3VzL2RhdGFwbGF0Zm9ybS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Gemalto.SafeNet.ProtectV/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2VtYWx0by5TYWZlTmV0LlByb3RlY3RWL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform/Versions/1.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "537" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40557,7 +40972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d6eb743-9675-460b-8eee-5968d9539dea" + "36aa85a3-f05d-4f3d-a435-4fa11e2e28b2" ], "Cache-Control": [ "no-cache" @@ -40567,34 +40982,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13261" + "14146" ], "x-ms-correlation-request-id": [ - "6a5c907b-ce05-4274-8fd9-9aab0af7cb66" + "c36a4cbf-a5cd-40b7-8331-70182c637eb3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212544Z:6a5c907b-ce05-4274-8fd9-9aab0af7cb66" + "WESTUS:20150813T074720Z:c36a4cbf-a5cd-40b7-8331-70182c637eb3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks/skus/dataplatform/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy9za3VzL2RhdGFwbGF0Zm9ybS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Gemalto.SafeNet.ProtectV.Azure/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2VtYWx0by5TYWZlTmV0LlByb3RlY3RWLkF6dXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hortonworks\",\r\n \"name\": \"dataplatform\",\r\n \"product\": \"hortonworks\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n },\r\n {\r\n \"lun\": 15\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform/Versions/1.0.0\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "1093" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40609,7 +41024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ecef229f-0ca7-4f11-b43f-0d40f3c3a5aa" + "a1703958-45f4-46b4-9caf-3220cc29e6e9" ], "Cache-Control": [ "no-cache" @@ -40619,34 +41034,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13260" + "14145" ], "x-ms-correlation-request-id": [ - "9ea4e55e-0ea2-4d06-8227-49c6b00e52c0" + "3b472d5d-0fd3-41f8-98be-14c87285e1e8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:9ea4e55e-0ea2-4d06-8227-49c6b00e52c0" + "WESTUS:20150813T074720Z:3b472d5d-0fd3-41f8-98be-14c87285e1e8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks/skus/dataplatform/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy9za3VzL2RhdGFwbGF0Zm9ybS92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/GitHub/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2l0SHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hortonworks\",\r\n \"name\": \"dataplatform\",\r\n \"product\": \"hortonworks\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub-Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub/ArtifactTypes/VMImage/Offers/GitHub-Enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "791" + "250" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40661,7 +41076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "840ef907-d731-4f63-b047-88f2395d7db6" + "ccabe8d1-c07c-471e-9629-b761cf367580" ], "Cache-Control": [ "no-cache" @@ -40671,34 +41086,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13259" + "14144" ], "x-ms-correlation-request-id": [ - "9730e461-00c6-4e69-abf7-900c819e67c0" + "ec871ead-3153-472c-8213-5b78992ba160" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:9730e461-00c6-4e69-abf7-900c819e67c0" + "WESTUS:20150813T074720Z:ec871ead-3153-472c-8213-5b78992ba160" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks-sandbox/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy1zYW5kYm94L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/GitHub/artifacttypes/vmimage/offers/GitHub-Enterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2l0SHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvR2l0SHViLUVudGVycHJpc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sandbox22\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks-sandbox/Skus/sandbox22\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub-Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub/ArtifactTypes/VMImage/Offers/GitHub-Enterprise/Skus/GitHub-Enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "264" + "273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40713,7 +41128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56d2ce93-4b4e-4b86-b592-2b273c4677c3" + "d8371235-9b8e-431a-a132-81f2280a50ba" ], "Cache-Control": [ "no-cache" @@ -40723,34 +41138,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13258" + "14143" ], "x-ms-correlation-request-id": [ - "a4a73340-afb2-4fd0-818c-3b58817cca94" + "97727ea6-03e7-4078-a2c0-d618353d6a61" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:a4a73340-afb2-4fd0-818c-3b58817cca94" + "WESTUS:20150813T074720Z:97727ea6-03e7-4078-a2c0-d618353d6a61" ], "Date": [ - "Wed, 05 Aug 2015 21:25:44 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks-sandbox/skus/sandbox22/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy1zYW5kYm94L3NrdXMvc2FuZGJveDIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/GitHub/artifacttypes/vmimage/offers/GitHub-Enterprise/skus/GitHub-Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2l0SHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvR2l0SHViLUVudGVycHJpc2Uvc2t1cy9HaXRIdWItRW50ZXJwcmlzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks-sandbox/Skus/sandbox22/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub/ArtifactTypes/VMImage/Offers/GitHub-Enterprise/Skus/GitHub-Enterprise/Versions/2.2.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "275" + "276" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40765,7 +41180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e00c03b-5ddb-4100-b4a3-80e26717b5a9" + "31c1f134-7f77-4757-b108-64eef6fe6039" ], "Cache-Control": [ "no-cache" @@ -40775,34 +41190,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13257" + "14142" ], "x-ms-correlation-request-id": [ - "fefe96a0-6879-4919-82f0-02c2b525d644" + "e543a7a7-7ead-41f3-983e-5c3af8c36a92" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:fefe96a0-6879-4919-82f0-02c2b525d644" + "WESTUS:20150813T074720Z:e543a7a7-7ead-41f3-983e-5c3af8c36a92" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks-sandbox/skus/sandbox22/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy1zYW5kYm94L3NrdXMvc2FuZGJveDIyL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/GitHub/artifacttypes/vmimage/offers/GitHub-Enterprise/skus/GitHub-Enterprise/versions/2.2.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvR2l0SHViL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvR2l0SHViLUVudGVycHJpc2Uvc2t1cy9HaXRIdWItRW50ZXJwcmlzZS92ZXJzaW9ucy8yLjIuND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hortonworks\",\r\n \"name\": \"sandbox22\",\r\n \"product\": \"hortonworks-sandbox\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks-sandbox/Skus/sandbox22/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub/ArtifactTypes/VMImage/Offers/GitHub-Enterprise/Skus/GitHub-Enterprise/Versions/2.2.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "500" + "375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40817,7 +41232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6abc807-9299-4a47-8d88-3f556e601693" + "f48fbd4c-78d2-4f43-b533-a41909a6702c" ], "Cache-Control": [ "no-cache" @@ -40827,34 +41242,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13256" + "14141" ], "x-ms-correlation-request-id": [ - "d0bda8e0-ec65-443e-bf13-5d2981cc53c5" + "f834fa3d-93e5-477d-9896-8f924b755336" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:d0bda8e0-ec65-443e-bf13-5d2981cc53c5" + "WESTUS:20150813T074720Z:f834fa3d-93e5-477d-9896-8f924b755336" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iaansys/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFhbnN5cy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/greensql/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ3JlZW5zcWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys-magento\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys/ArtifactTypes/VMImage/Offers/iaansys-magento\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql-database-security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "247" + "270" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40869,7 +41284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "034d2d39-3ac8-4676-8eed-fd15bfeb4268" + "a5d6125d-6a7c-457b-9798-3ca2d7eb62f2" ], "Cache-Control": [ "no-cache" @@ -40879,34 +41294,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13255" + "14140" ], "x-ms-correlation-request-id": [ - "f5b41036-fbc8-4423-a4c6-a1df7193ce77" + "0bd2fd50-68a9-464f-ba7f-0f36dfc0cc44" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:f5b41036-fbc8-4423-a4c6-a1df7193ce77" + "WESTUS:20150813T074720Z:0bd2fd50-68a9-464f-ba7f-0f36dfc0cc44" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iaansys/artifacttypes/vmimage/offers/iaansys-magento/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFhbnN5cy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2lhYW5zeXMtbWFnZW50by9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/greensql/artifacttypes/vmimage/offers/greensql-database-security/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ3JlZW5zcWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ncmVlbnNxbC1kYXRhYmFzZS1zZWN1cml0eS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys-magento-ubuntu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys/ArtifactTypes/VMImage/Offers/iaansys-magento/Skus/iaansys-magento-ubuntu\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql_database_security_azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security/Skus/greensql_database_security_azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "282" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40921,7 +41336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67150f2b-038a-4bbc-8554-890e8114670f" + "ed88dc43-43bf-437e-8b13-6ee33366a014" ], "Cache-Control": [ "no-cache" @@ -40931,34 +41346,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13254" + "14139" ], "x-ms-correlation-request-id": [ - "2bbcc22c-61f1-450f-b0ec-3034880cd510" + "f1486825-568e-4c2f-af52-c54cd91d836a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:2bbcc22c-61f1-450f-b0ec-3034880cd510" + "WESTUS:20150813T074720Z:f1486825-568e-4c2f-af52-c54cd91d836a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iaansys/artifacttypes/vmimage/offers/iaansys-magento/skus/iaansys-magento-ubuntu/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFhbnN5cy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2lhYW5zeXMtbWFnZW50by9za3VzL2lhYW5zeXMtbWFnZW50by11YnVudHUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/greensql/artifacttypes/vmimage/offers/greensql-database-security/skus/greensql_database_security_azure/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ3JlZW5zcWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ncmVlbnNxbC1kYXRhYmFzZS1zZWN1cml0eS9za3VzL2dyZWVuc3FsX2RhdGFiYXNlX3NlY3VyaXR5X2F6dXJlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.9.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys/ArtifactTypes/VMImage/Offers/iaansys-magento/Skus/iaansys-magento-ubuntu/Versions/1.9.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security/Skus/greensql_database_security_azure/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "280" + "302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -40973,7 +41388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0595cac-15c0-4abd-bc0d-9dfbc626de53" + "9b7c7668-d9fe-4ab8-a365-f97097e20f16" ], "Cache-Control": [ "no-cache" @@ -40983,34 +41398,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13253" + "14138" ], "x-ms-correlation-request-id": [ - "4cb0c573-4074-46da-a266-a0c897bfde6e" + "8fca81cf-5668-4f10-af70-b4a869dbd995" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:4cb0c573-4074-46da-a266-a0c897bfde6e" + "WESTUS:20150813T074721Z:8fca81cf-5668-4f10-af70-b4a869dbd995" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iaansys/artifacttypes/vmimage/offers/iaansys-magento/skus/iaansys-magento-ubuntu/versions/1.9.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFhbnN5cy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2lhYW5zeXMtbWFnZW50by9za3VzL2lhYW5zeXMtbWFnZW50by11YnVudHUvdmVyc2lvbnMvMS45LjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/greensql/artifacttypes/vmimage/offers/greensql-database-security/skus/greensql_database_security_azure/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvZ3JlZW5zcWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ncmVlbnNxbC1kYXRhYmFzZS1zZWN1cml0eS9za3VzL2dyZWVuc3FsX2RhdGFiYXNlX3NlY3VyaXR5X2F6dXJlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"iaansys\",\r\n \"name\": \"iaansys-magento-ubuntu\",\r\n \"product\": \"iaansys-magento\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.9.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys/ArtifactTypes/VMImage/Offers/iaansys-magento/Skus/iaansys-magento-ubuntu/Versions/1.9.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"greensql\",\r\n \"name\": \"greensql_database_security_azure\",\r\n \"product\": \"greensql-database-security\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security/Skus/greensql_database_security_azure/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "510" + "554" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41025,7 +41440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4619d70-4b67-433a-8c0c-ca5af048ba63" + "2180e09d-2869-4a8d-bd2b-d863e298b13f" ], "Cache-Control": [ "no-cache" @@ -41035,34 +41450,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13252" + "14137" ], "x-ms-correlation-request-id": [ - "32192126-f5ff-4aa2-b16c-e7c5afeeabf4" + "e8715859-22a5-4a19-a2d0-e60af1ef1e1f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212545Z:32192126-f5ff-4aa2-b16c-e7c5afeeabf4" + "WESTUS:20150813T074721Z:e8715859-22a5-4a19-a2d0-e60af1ef1e1f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iamcloud/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/halobicloud/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFsb2JpY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"university-for-life\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud/ArtifactTypes/VMImage/Offers/university-for-life\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halo-paas2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud/ArtifactTypes/VMImage/Offers/halo-paas2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "256" + "241" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41077,7 +41492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8809dc19-b51c-4195-9f68-8a6c8904a91a" + "0c7f6c69-109b-4b4f-9d27-3d6e81172d18" ], "Cache-Control": [ "no-cache" @@ -41087,34 +41502,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13251" + "14136" ], "x-ms-correlation-request-id": [ - "f58b902f-6053-4b90-beb9-118b23382f2b" + "8ce4076a-c602-4854-bbf0-8f42c3392000" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:f58b902f-6053-4b90-beb9-118b23382f2b" + "WESTUS:20150813T074721Z:8ce4076a-c602-4854-bbf0-8f42c3392000" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iamcloud/artifacttypes/vmimage/offers/university-for-life/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy91bml2ZXJzaXR5LWZvci1saWZlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/halobicloud/artifacttypes/vmimage/offers/halo-paas2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFsb2JpY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9oYWxvLXBhYXMyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"university-for-life\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud/ArtifactTypes/VMImage/Offers/university-for-life/Skus/university-for-life\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halopaas02\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud/ArtifactTypes/VMImage/Offers/halo-paas2/Skus/halopaas02\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "281" + "257" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41129,7 +41544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "490393a3-9a3f-48bd-a615-97ca884ab075" + "3f1e306e-d10c-408f-b25c-9726ad87b520" ], "Cache-Control": [ "no-cache" @@ -41139,34 +41554,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13250" + "14135" ], "x-ms-correlation-request-id": [ - "792d80dd-5572-4030-9d17-631138dc0de9" + "418ba5ac-67b4-4770-b894-c1dc6e9c0c74" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:792d80dd-5572-4030-9d17-631138dc0de9" + "WESTUS:20150813T074721Z:418ba5ac-67b4-4770-b894-c1dc6e9c0c74" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iamcloud/artifacttypes/vmimage/offers/university-for-life/skus/university-for-life/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy91bml2ZXJzaXR5LWZvci1saWZlL3NrdXMvdW5pdmVyc2l0eS1mb3ItbGlmZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/halobicloud/artifacttypes/vmimage/offers/halo-paas2/skus/halopaas02/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFsb2JpY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9oYWxvLXBhYXMyL3NrdXMvaGFsb3BhYXMwMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud/ArtifactTypes/VMImage/Offers/university-for-life/Skus/university-for-life/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.7.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud/ArtifactTypes/VMImage/Offers/halo-paas2/Skus/halopaas02/Versions/1.7.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "282" + "267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41181,7 +41596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3df0d0fe-e653-454a-99de-e5cbcdc45dd2" + "08059fc2-8252-4e60-a0bf-085cc93d345a" ], "Cache-Control": [ "no-cache" @@ -41191,34 +41606,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13249" + "14134" ], "x-ms-correlation-request-id": [ - "f725a6b4-1742-4662-8ba0-d3ba6cecc1b1" + "21e0debe-2c6a-4abc-89bf-da1c6d7a7944" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:f725a6b4-1742-4662-8ba0-d3ba6cecc1b1" + "WESTUS:20150813T074721Z:21e0debe-2c6a-4abc-89bf-da1c6d7a7944" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iamcloud/artifacttypes/vmimage/offers/university-for-life/skus/university-for-life/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy91bml2ZXJzaXR5LWZvci1saWZlL3NrdXMvdW5pdmVyc2l0eS1mb3ItbGlmZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/halobicloud/artifacttypes/vmimage/offers/halo-paas2/skus/halopaas02/versions/1.7.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFsb2JpY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9oYWxvLXBhYXMyL3NrdXMvaGFsb3BhYXMwMi92ZXJzaW9ucy8xLjcuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"iamcloud\",\r\n \"name\": \"university-for-life\",\r\n \"product\": \"university-for-life\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud/ArtifactTypes/VMImage/Offers/university-for-life/Skus/university-for-life/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"halobicloud\",\r\n \"name\": \"halopaas02\",\r\n \"product\": \"halo-paas2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.7.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud/ArtifactTypes/VMImage/Offers/halo-paas2/Skus/halopaas02/Versions/1.7.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "516" + "528" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41233,7 +41648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ea8b6d8-2c62-4722-8c94-53759ba01978" + "d2880b84-c334-49ea-bca3-448177944fe1" ], "Cache-Control": [ "no-cache" @@ -41243,34 +41658,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13248" + "14133" ], "x-ms-correlation-request-id": [ - "4cc748ab-0d6b-4fb6-a765-303b67ac167a" + "25bd14b2-41f0-4615-ae83-4518ff8866f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:4cc748ab-0d6b-4fb6-a765-303b67ac167a" + "WESTUS:20150813T074721Z:25bd14b2-41f0-4615-ae83-4518ff8866f6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:45 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc-process-guidance-suite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu-insight\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "265" + "238" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41285,7 +41700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db754f58-6c5c-4fd7-a50e-6d022df4713b" + "c9c96665-165a-41ff-87c2-b4c28d8b0f66" ], "Cache-Control": [ "no-cache" @@ -41295,34 +41710,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13247" + "14132" ], "x-ms-correlation-request-id": [ - "38f36246-5fc1-4439-8eb7-b98b3258d736" + "04aef2d7-801d-4815-9efe-a83eaae06f4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:38f36246-5fc1-4439-8eb7-b98b3258d736" + "WESTUS:20150813T074721Z:04aef2d7-801d-4815-9efe-a83eaae06f4b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc_pgs41_l\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_l\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc_pgs41_m\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_m\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc_pgs41_s\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_s\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc_pgs41_xs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_xs\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1061" + "1011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41337,7 +41752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93286303-db3b-43d6-99b9-ce8edd563ce8" + "ba7b64bb-7a69-4e8f-a2fc-7f187446b8b2" ], "Cache-Control": [ "no-cache" @@ -41347,34 +41762,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13246" + "14131" ], "x-ms-correlation-request-id": [ - "bced09ff-1ee9-4fb1-b96d-f7deffcf4437" + "e1fe10bd-8a34-461c-b94b-2b0e634f889f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:bced09ff-1ee9-4fb1-b96d-f7deffcf4437" + "WESTUS:20150813T074721Z:e1fe10bd-8a34-461c-b94b-2b0e634f889f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_l/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_l/Versions/4.1.1020141105\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise/Versions/1.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "294" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41389,7 +41804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1aa602c-e95e-4b06-ac85-af9ad0e8d98e" + "c44677e4-b0c4-454a-bfaf-f754b10f2d83" ], "Cache-Control": [ "no-cache" @@ -41399,34 +41814,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13245" + "14130" ], "x-ms-correlation-request-id": [ - "454bde5a-c62d-4989-83b7-a0c94b810efb" + "8ce25899-ab6a-4a85-b765-b861e134940c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:454bde5a-c62d-4989-83b7-a0c94b810efb" + "WESTUS:20150813T074721Z:8ce25899-ab6a-4a85-b765-b861e134940c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_l/versions/4.1.1020141105?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfbC92ZXJzaW9ucy80LjEuMTAyMDE0MTEwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/enterprise/versions/1.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL2VudGVycHJpc2UvdmVyc2lvbnMvMS4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"imc\",\r\n \"name\": \"imc_pgs41_l\",\r\n \"product\": \"imc-process-guidance-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_l/Versions/4.1.1020141105\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hanu\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"hanu-insight\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise/Versions/1.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "564" + "476" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41441,7 +41856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d527663e-20c4-4194-8792-f9cadf13b017" + "feaa673e-4ec3-43bb-bc88-35b8960a48d3" ], "Cache-Control": [ "no-cache" @@ -41451,34 +41866,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13244" + "14129" ], "x-ms-correlation-request-id": [ - "b05ac171-a79f-4c95-a869-c4fba70f49d4" + "50f2d8c0-9e37-4627-9ab3-21bb44494766" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:b05ac171-a79f-4c95-a869-c4fba70f49d4" + "WESTUS:20150813T074721Z:50f2d8c0-9e37-4627-9ab3-21bb44494766" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_m/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfbS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/enterprise-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL2VudGVycHJpc2UtYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_m/Versions/4.1.1020141105\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise-byol/Versions/1.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "294" + "267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41493,7 +41908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27b246b3-a022-45ad-880f-4f92fa4e2ec2" + "7f3cab89-377b-47d6-8ba4-56a37ec0ad10" ], "Cache-Control": [ "no-cache" @@ -41503,34 +41918,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13243" + "14128" ], "x-ms-correlation-request-id": [ - "baa98202-5376-4c93-acb4-abc14f0c90c5" + "9a329240-765c-4419-9a17-2990e27e837b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212546Z:baa98202-5376-4c93-acb4-abc14f0c90c5" + "WESTUS:20150813T074722Z:9a329240-765c-4419-9a17-2990e27e837b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_m/versions/4.1.1020141105?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfbS92ZXJzaW9ucy80LjEuMTAyMDE0MTEwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/enterprise-byol/versions/1.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL2VudGVycHJpc2UtYnlvbC92ZXJzaW9ucy8xLjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"imc\",\r\n \"name\": \"imc_pgs41_m\",\r\n \"product\": \"imc-process-guidance-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_m/Versions/4.1.1020141105\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hanu\",\r\n \"name\": \"enterprise-byol\",\r\n \"product\": \"hanu-insight\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/enterprise-byol/Versions/1.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "564" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41545,7 +41960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d16fa06a-34c3-4ee5-be9e-095fae4e7766" + "55777267-aa7f-4913-ae73-7162e555f1ef" ], "Cache-Control": [ "no-cache" @@ -41555,34 +41970,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13242" + "14127" ], "x-ms-correlation-request-id": [ - "0430fbd6-0729-41a3-84c4-4e91e7b3afdb" + "c8532eca-5035-4970-a3a9-2d0c36b11fee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:0430fbd6-0729-41a3-84c4-4e91e7b3afdb" + "WESTUS:20150813T074722Z:c8532eca-5035-4970-a3a9-2d0c36b11fee" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_s/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL3N0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_s/Versions/4.1.1020141105\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard/Versions/1.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "294" + "260" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41597,7 +42012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d2448c1-a284-4f58-8f30-4ed7e664df67" + "1649f8de-c0d5-4ca1-89d8-4deff0da2528" ], "Cache-Control": [ "no-cache" @@ -41607,34 +42022,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13241" + "14126" ], "x-ms-correlation-request-id": [ - "a594b0df-7e0d-4f9d-a452-375092ec96ad" + "11cf6bdc-f31b-486b-aeb4-cffcafc7fd4d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:a594b0df-7e0d-4f9d-a452-375092ec96ad" + "WESTUS:20150813T074722Z:11cf6bdc-f31b-486b-aeb4-cffcafc7fd4d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_s/versions/4.1.1020141105?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfcy92ZXJzaW9ucy80LjEuMTAyMDE0MTEwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/standard/versions/1.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL3N0YW5kYXJkL3ZlcnNpb25zLzEuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"imc\",\r\n \"name\": \"imc_pgs41_s\",\r\n \"product\": \"imc-process-guidance-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_s/Versions/4.1.1020141105\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hanu\",\r\n \"name\": \"standard\",\r\n \"product\": \"hanu-insight\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard/Versions/1.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "564" + "472" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41649,7 +42064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9491923b-209c-47d7-bd70-f463a77f5ed4" + "5a4381aa-3771-4f78-b23e-9900913d2e2f" ], "Cache-Control": [ "no-cache" @@ -41659,34 +42074,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13240" + "14125" ], "x-ms-correlation-request-id": [ - "716e567f-38a3-4839-b0a0-26ae89840d88" + "2fe4c5b0-53ca-4744-a846-4202be2e905a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:716e567f-38a3-4839-b0a0-26ae89840d88" + "WESTUS:20150813T074722Z:2fe4c5b0-53ca-4744-a846-4202be2e905a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_xs/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfeHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/standard-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL3N0YW5kYXJkLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_xs/Versions/4.1.1020141105\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard-byol/Versions/1.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "295" + "265" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41701,7 +42116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbd89a66-4188-4b82-bbb7-3193b823585b" + "ec10a59f-693f-4626-8b1b-7683d556be73" ], "Cache-Control": [ "no-cache" @@ -41711,34 +42126,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13239" + "14124" ], "x-ms-correlation-request-id": [ - "c24203b2-96d9-468e-81a5-c821b06917c9" + "2c110aed-4967-4ca9-9e2e-1e671e441e54" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:c24203b2-96d9-468e-81a5-c821b06917c9" + "WESTUS:20150813T074722Z:2c110aed-4967-4ca9-9e2e-1e671e441e54" ], "Date": [ - "Wed, 05 Aug 2015 21:25:46 GMT" + "Thu, 13 Aug 2015 07:47:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_xs/versions/4.1.1020141105?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfeHMvdmVyc2lvbnMvNC4xLjEwMjAxNDExMDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hanu/artifacttypes/vmimage/offers/hanu-insight/skus/standard-byol/versions/1.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGFudS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hhbnUtaW5zaWdodC9za3VzL3N0YW5kYXJkLWJ5b2wvdmVyc2lvbnMvMS4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"imc\",\r\n \"name\": \"imc_pgs41_xs\",\r\n \"product\": \"imc-process-guidance-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_xs/Versions/4.1.1020141105\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hanu\",\r\n \"name\": \"standard-byol\",\r\n \"product\": \"hanu-insight\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard-byol/Versions/1.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "566" + "482" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41753,7 +42168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bd7d10c-c7c6-4055-ad7d-3eae8921c677" + "b63aadba-4446-43c7-a4d3-8292e6c7bb01" ], "Cache-Control": [ "no-cache" @@ -41763,34 +42178,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13238" + "14123" ], "x-ms-correlation-request-id": [ - "d45f097a-689b-4f6d-8a0b-c0c82b87096b" + "f6453cb9-42de-45e9-be5b-69695bca11ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:d45f097a-689b-4f6d-8a0b-c0c82b87096b" + "WESTUS:20150813T074722Z:f6453cb9-42de-45e9-be5b-69695bca11ee" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/infolibrarian/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb2xpYnJhcmlhbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian-metadata-management-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian/ArtifactTypes/VMImage/Offers/infolibrarian-metadata-management-server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hp-loadrunner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hp-quality-center\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-quality-center\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "303" + "507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41805,7 +42220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a68e7d98-d309-4d60-b80d-b81f19c59282" + "179ef5b2-6e1b-4bae-af30-30eeef85c7e7" ], "Cache-Control": [ "no-cache" @@ -41815,34 +42230,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13237" + "14122" ], "x-ms-correlation-request-id": [ - "35e3804b-4802-4fa0-b692-ecfcad038375" + "2c725ba0-3e2f-4ef6-b275-97b0228a6380" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:35e3804b-4802-4fa0-b692-ecfcad038375" + "WESTUS:20150813T074722Z:2c725ba0-3e2f-4ef6-b275-97b0228a6380" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/infolibrarian/artifacttypes/vmimage/offers/infolibrarian-metadata-management-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb2xpYnJhcmlhbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2luZm9saWJyYXJpYW4tbWV0YWRhdGEtbWFuYWdlbWVudC1zZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-loadrunner/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtbG9hZHJ1bm5lci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian-metadata-windows-64-bit-hourly\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian/ArtifactTypes/VMImage/Offers/infolibrarian-metadata-management-server/Skus/infolibrarian-metadata-windows-64-bit-hourly\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lr_12_02_ga_2012r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner/Skus/lr_12_02_ga_2012r2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "357" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41857,7 +42272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bbd3fc6-f2c0-4df2-a7d7-67fdf51fb83e" + "e90054fd-a563-4c35-9cd2-05d57df5076f" ], "Cache-Control": [ "no-cache" @@ -41867,34 +42282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13236" + "14121" ], "x-ms-correlation-request-id": [ - "d2c30b34-f8d6-4ff8-81d0-f0afb51d298e" + "d4f43abc-927d-4f66-afbe-64ade7f89727" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:d2c30b34-f8d6-4ff8-81d0-f0afb51d298e" + "WESTUS:20150813T074722Z:d4f43abc-927d-4f66-afbe-64ade7f89727" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/infolibrarian/artifacttypes/vmimage/offers/infolibrarian-metadata-management-server/skus/infolibrarian-metadata-windows-64-bit-hourly/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb2xpYnJhcmlhbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2luZm9saWJyYXJpYW4tbWV0YWRhdGEtbWFuYWdlbWVudC1zZXJ2ZXIvc2t1cy9pbmZvbGlicmFyaWFuLW1ldGFkYXRhLXdpbmRvd3MtNjQtYml0LWhvdXJseS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-loadrunner/skus/lr_12_02_ga_2012r2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtbG9hZHJ1bm5lci9za3VzL2xyXzEyXzAyX2dhXzIwMTJyMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian/ArtifactTypes/VMImage/Offers/infolibrarian-metadata-management-server/Skus/infolibrarian-metadata-windows-64-bit-hourly/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner/Skus/lr_12_02_ga_2012r2/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "333" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41909,7 +42324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a79cb18-04c6-4bbc-aa23-77d024bf132e" + "49db8c6c-7cfb-46d9-986e-f7b5339f4720" ], "Cache-Control": [ "no-cache" @@ -41919,34 +42334,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13235" + "14120" ], "x-ms-correlation-request-id": [ - "2f6bb229-60c5-437c-9767-985a69f90d7e" + "4e584525-1be3-4851-bae0-8d7fed243672" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:2f6bb229-60c5-437c-9767-985a69f90d7e" + "WESTUS:20150813T074723Z:4e584525-1be3-4851-bae0-8d7fed243672" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/infolibrarian/artifacttypes/vmimage/offers/infolibrarian-metadata-management-server/skus/infolibrarian-metadata-windows-64-bit-hourly/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb2xpYnJhcmlhbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2luZm9saWJyYXJpYW4tbWV0YWRhdGEtbWFuYWdlbWVudC1zZXJ2ZXIvc2t1cy9pbmZvbGlicmFyaWFuLW1ldGFkYXRhLXdpbmRvd3MtNjQtYml0LWhvdXJseS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-loadrunner/skus/lr_12_02_ga_2012r2/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtbG9hZHJ1bm5lci9za3VzL2xyXzEyXzAyX2dhXzIwMTJyMi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"infolibrarian\",\r\n \"name\": \"infolibrarian-metadata-windows-64-bit-hourly\",\r\n \"product\": \"infolibrarian-metadata-management-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian/ArtifactTypes/VMImage/Offers/infolibrarian-metadata-management-server/Skus/infolibrarian-metadata-windows-64-bit-hourly/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hewlett-packard\",\r\n \"name\": \"lr_12_02_ga_2012r2\",\r\n \"product\": \"hp-loadrunner\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner/Skus/lr_12_02_ga_2012r2/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "618" + "516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -41961,7 +42376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e319519f-e76e-408c-9546-be47f58c6ed7" + "161abe21-4dbc-46a8-bcc3-101bd72cf364" ], "Cache-Control": [ "no-cache" @@ -41971,34 +42386,138 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13234" + "14119" ], "x-ms-correlation-request-id": [ - "cf528d0e-3aa4-449e-a630-9508599f28a1" + "6278d223-0b34-436d-a1f0-ad3d4f290345" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212547Z:cf528d0e-3aa4-449e-a630-9508599f28a1" + "WESTUS:20150813T074723Z:6278d223-0b34-436d-a1f0-ad3d4f290345" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-quality-center/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtcXVhbGl0eS1jZW50ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hp_qc_community_edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-quality-center/Skus/hp_qc_community_edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "261" + "294" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "022f7408-e113-47ea-ace9-06bd0b7a600d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14118" + ], + "x-ms-correlation-request-id": [ + "34a70cc9-5913-4fc3-b894-5cc9545cdb2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074723Z:34a70cc9-5913-4fc3-b894-5cc9545cdb2b" + ], + "Date": [ + "Thu, 13 Aug 2015 07:47:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-quality-center/skus/hp_qc_community_edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtcXVhbGl0eS1jZW50ZXIvc2t1cy9ocF9xY19jb21tdW5pdHlfZWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-quality-center/Skus/hp_qc_community_edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8af4dd9c-4de3-4214-a2f5-4e04431a544f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14117" + ], + "x-ms-correlation-request-id": [ + "025c1dd9-d4d3-4c6d-af7b-88c30eb70753" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074723Z:025c1dd9-d4d3-4c6d-af7b-88c30eb70753" + ], + "Date": [ + "Thu, 13 Aug 2015 07:47:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hewlett-packard/artifacttypes/vmimage/offers/hp-quality-center/skus/hp_qc_community_edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaGV3bGV0dC1wYWNrYXJkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaHAtcXVhbGl0eS1jZW50ZXIvc2t1cy9ocF9xY19jb21tdW5pdHlfZWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hewlett-packard\",\r\n \"name\": \"hp_qc_community_edition\",\r\n \"product\": \"hp-quality-center\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-quality-center/Skus/hp_qc_community_edition/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42013,7 +42532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b3f6f0e-5641-4905-b2d6-5a46a451b619" + "966fad67-ae97-4c1c-b259-434e7934582b" ], "Cache-Control": [ "no-cache" @@ -42023,34 +42542,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13233" + "14116" ], "x-ms-correlation-request-id": [ - "3191b995-879e-4bdd-8d43-6a01a1baaa92" + "edb1a5cb-3a90-4ecd-b6ef-0a6254267cd1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:3191b995-879e-4bdd-8d43-6a01a1baaa92" + "WESTUS:20150813T074723Z:edb1a5cb-3a90-4ecd-b6ef-0a6254267cd1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica_cloud_secure_agent_32_bit\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica_cloud_secure_agent_32_bit_linux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit_linux\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks-sandbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks-sandbox\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "657" + "499" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42065,7 +42584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b99621cd-207d-44d9-808c-7a6e0da1c9ef" + "ff089df3-6747-4a43-934c-df7458e10312" ], "Cache-Control": [ "no-cache" @@ -42075,34 +42594,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13232" + "14115" ], "x-ms-correlation-request-id": [ - "40edf3f5-0603-423a-a4e4-f6705945cc61" + "943b40a5-ab11-4657-b761-cdc437b6fe2d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:40edf3f5-0603-423a-a4e4-f6705945cc61" + "WESTUS:20150813T074723Z:943b40a5-ab11-4657-b761-cdc437b6fe2d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus/informatica_cloud_secure_agent_32_bit/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzL2luZm9ybWF0aWNhX2Nsb3VkX3NlY3VyZV9hZ2VudF8zMl9iaXQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataplatform\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "307" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42117,7 +42636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b88aad2-6810-45f4-823c-c58f71674377" + "b69326e3-d85f-4fee-8b1f-abf8d53da6f5" ], "Cache-Control": [ "no-cache" @@ -42127,34 +42646,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13231" + "14114" ], "x-ms-correlation-request-id": [ - "04eb6d7a-d6a9-4268-bf1f-1fbf9d83402f" + "0c055f46-0b7f-4a8c-999f-fa32a7230b44" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:04eb6d7a-d6a9-4268-bf1f-1fbf9d83402f" + "WESTUS:20150813T074723Z:0c055f46-0b7f-4a8c-999f-fa32a7230b44" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus/informatica_cloud_secure_agent_32_bit/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzL2luZm9ybWF0aWNhX2Nsb3VkX3NlY3VyZV9hZ2VudF8zMl9iaXQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks/skus/dataplatform/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy9za3VzL2RhdGFwbGF0Zm9ybS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"informatica-cloud\",\r\n \"name\": \"informatica_cloud_secure_agent_32_bit\",\r\n \"product\": \"informatica-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform/Versions/1.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "566" + "537" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42169,7 +42688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc9f5cf4-f8e7-4f4b-8a34-cf5c5ce32c41" + "911e8c12-515a-4994-b3df-14d21125bd67" ], "Cache-Control": [ "no-cache" @@ -42179,34 +42698,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13230" + "14113" ], "x-ms-correlation-request-id": [ - "14ab5fc4-5910-49cf-b8ff-bfcd00ffcca5" + "a4ed5f6d-6e30-4340-a7b6-70b7a7e6ce26" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:14ab5fc4-5910-49cf-b8ff-bfcd00ffcca5" + "WESTUS:20150813T074724Z:a4ed5f6d-6e30-4340-a7b6-70b7a7e6ce26" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus/informatica_cloud_secure_agent_32_bit_linux/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzL2luZm9ybWF0aWNhX2Nsb3VkX3NlY3VyZV9hZ2VudF8zMl9iaXRfbGludXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks/skus/dataplatform/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy9za3VzL2RhdGFwbGF0Zm9ybS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit_linux/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hortonworks\",\r\n \"name\": \"dataplatform\",\r\n \"product\": \"hortonworks\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n },\r\n {\r\n \"lun\": 15\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "1093" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42221,7 +42740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f9dd98d-f3c4-4ca7-9fe0-f93900c930d0" + "6d26208c-c6bf-475c-8eb3-a34823d8c70f" ], "Cache-Control": [ "no-cache" @@ -42231,34 +42750,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13229" + "14112" ], "x-ms-correlation-request-id": [ - "776b3fa7-c748-42e4-9459-493ce5107b4f" + "5ae1e04b-694c-40ec-87b1-0d65099dd94b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:776b3fa7-c748-42e4-9459-493ce5107b4f" + "WESTUS:20150813T074724Z:5ae1e04b-694c-40ec-87b1-0d65099dd94b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:47 GMT" + "Thu, 13 Aug 2015 07:47:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus/informatica_cloud_secure_agent_32_bit_linux/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzL2luZm9ybWF0aWNhX2Nsb3VkX3NlY3VyZV9hZ2VudF8zMl9iaXRfbGludXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks/skus/dataplatform/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy9za3VzL2RhdGFwbGF0Zm9ybS92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"informatica-cloud\",\r\n \"name\": \"informatica_cloud_secure_agent_32_bit_linux\",\r\n \"product\": \"informatica-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit_linux/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hortonworks\",\r\n \"name\": \"dataplatform\",\r\n \"product\": \"hortonworks\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks/Skus/dataplatform/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "576" + "791" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42273,7 +42792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5351d5e1-c124-49a9-8216-79f1f96b3043" + "4dcb2b6d-ae17-4914-b66a-42fbd0029a64" ], "Cache-Control": [ "no-cache" @@ -42283,34 +42802,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13228" + "14111" ], "x-ms-correlation-request-id": [ - "063a5419-28b7-4c64-82e3-c24a38d5621f" + "af8a9b10-b568-4e03-b521-fe6fd7188058" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:063a5419-28b7-4c64-82e3-c24a38d5621f" + "WESTUS:20150813T074724Z:af8a9b10-b568-4e03-b521-fe6fd7188058" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/infostrat/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3N0cmF0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks-sandbox/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy1zYW5kYm94L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"portvue\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat/ArtifactTypes/VMImage/Offers/portvue\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sandbox22\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks-sandbox/Skus/sandbox22\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "233" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42325,7 +42844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39b11fa8-2d1d-41bd-b20f-39193dadb989" + "d567a805-baff-4609-bc92-162f830e8338" ], "Cache-Control": [ "no-cache" @@ -42335,34 +42854,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13227" + "14110" ], "x-ms-correlation-request-id": [ - "5c4d2c2f-e475-45a4-9c72-114d90b0b5ad" + "722bf059-5e7c-4865-8f1e-fe55bdd35c5d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:5c4d2c2f-e475-45a4-9c72-114d90b0b5ad" + "WESTUS:20150813T074724Z:722bf059-5e7c-4865-8f1e-fe55bdd35c5d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/infostrat/artifacttypes/vmimage/offers/portvue/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3N0cmF0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcG9ydHZ1ZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks-sandbox/skus/sandbox22/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy1zYW5kYm94L3NrdXMvc2FuZGJveDIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostratportvuev1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat/ArtifactTypes/VMImage/Offers/portvue/Skus/infostratportvuev1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks-sandbox/Skus/sandbox22/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "268" + "275" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42377,7 +42896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b40555c5-d0d8-4967-9680-5123098773bc" + "55c36fb6-7682-4430-b58e-a823c763e12d" ], "Cache-Control": [ "no-cache" @@ -42387,34 +42906,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13226" + "14109" ], "x-ms-correlation-request-id": [ - "924f89e8-0810-4300-91f3-7c9db7026e99" + "5965cff3-a06f-4b42-a022-126aab4ac5ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:924f89e8-0810-4300-91f3-7c9db7026e99" + "WESTUS:20150813T074724Z:5965cff3-a06f-4b42-a022-126aab4ac5ac" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/infostrat/artifacttypes/vmimage/offers/portvue/skus/infostratportvuev1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3N0cmF0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcG9ydHZ1ZS9za3VzL2luZm9zdHJhdHBvcnR2dWV2MS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/hortonworks/artifacttypes/vmimage/offers/hortonworks-sandbox/skus/sandbox22/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaG9ydG9ud29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9ob3J0b253b3Jrcy1zYW5kYm94L3NrdXMvc2FuZGJveDIyL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat/ArtifactTypes/VMImage/Offers/portvue/Skus/infostratportvuev1/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"hortonworks\",\r\n \"name\": \"sandbox22\",\r\n \"product\": \"hortonworks-sandbox\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks/ArtifactTypes/VMImage/Offers/hortonworks-sandbox/Skus/sandbox22/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "270" + "500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42429,7 +42948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7362ffd4-26a3-4d8b-8e43-6f5f3b8dee76" + "7a174119-8a24-4b38-b140-9519ff9364a0" ], "Cache-Control": [ "no-cache" @@ -42439,34 +42958,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13225" + "14108" ], "x-ms-correlation-request-id": [ - "f23ac5a4-db92-4fff-a090-e0640dae4cce" + "40ef5bcd-44bd-47ef-92ef-91a10eeac2bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:f23ac5a4-db92-4fff-a090-e0640dae4cce" + "WESTUS:20150813T074724Z:40ef5bcd-44bd-47ef-92ef-91a10eeac2bd" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/infostrat/artifacttypes/vmimage/offers/portvue/skus/infostratportvuev1/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3N0cmF0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcG9ydHZ1ZS9za3VzL2luZm9zdHJhdHBvcnR2dWV2MS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iaansys/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFhbnN5cy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"infostrat\",\r\n \"name\": \"infostratportvuev1\",\r\n \"product\": \"portvue\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat/ArtifactTypes/VMImage/Offers/portvue/Skus/infostratportvuev1/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys-magento\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys/ArtifactTypes/VMImage/Offers/iaansys-magento\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "492" + "247" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42481,7 +43000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64d22452-717c-4725-817f-67e7ea5c613a" + "e8cbd643-4fcd-481e-86a8-d5a83c113171" ], "Cache-Control": [ "no-cache" @@ -42491,34 +43010,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13224" + "14107" ], "x-ms-correlation-request-id": [ - "13dceab2-e9d4-4585-95d1-5cb337122905" + "69051d1b-c2f0-409e-8bcd-2b3a05324afc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212548Z:13dceab2-e9d4-4585-95d1-5cb337122905" + "WESTUS:20150813T074724Z:69051d1b-c2f0-409e-8bcd-2b3a05324afc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/intelligent-plant-ltd/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW50ZWxsaWdlbnQtcGxhbnQtbHRkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iaansys/artifacttypes/vmimage/offers/iaansys-magento/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFhbnN5cy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2lhYW5zeXMtbWFnZW50by9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-gestalt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd/ArtifactTypes/VMImage/Offers/intelligent-plant-gestalt\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys-magento-ubuntu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys/ArtifactTypes/VMImage/Offers/iaansys-magento/Skus/iaansys-magento-ubuntu\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "281" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42533,7 +43052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "613f03fa-a61a-4ed7-9cf8-45c80f795548" + "f1a184d7-ee22-4bc5-9adf-21a2a9747660" ], "Cache-Control": [ "no-cache" @@ -42543,34 +43062,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13223" + "14106" ], "x-ms-correlation-request-id": [ - "561b2583-3944-4f00-b36f-c1835a5f6199" + "30780179-d181-4470-8acd-852699c0206c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:561b2583-3944-4f00-b36f-c1835a5f6199" + "WESTUS:20150813T074724Z:30780179-d181-4470-8acd-852699c0206c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/intelligent-plant-ltd/artifacttypes/vmimage/offers/intelligent-plant-gestalt/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW50ZWxsaWdlbnQtcGxhbnQtbHRkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW50ZWxsaWdlbnQtcGxhbnQtZ2VzdGFsdC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iaansys/artifacttypes/vmimage/offers/iaansys-magento/skus/iaansys-magento-ubuntu/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFhbnN5cy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2lhYW5zeXMtbWFnZW50by9za3VzL2lhYW5zeXMtbWFnZW50by11YnVudHUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gestalt_suite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd/ArtifactTypes/VMImage/Offers/intelligent-plant-gestalt/Skus/gestalt_suite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.9.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys/ArtifactTypes/VMImage/Offers/iaansys-magento/Skus/iaansys-magento-ubuntu/Versions/1.9.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "288" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42585,7 +43104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d31a37d-e7d2-44fe-84e9-2cb50f07eaec" + "44d6729a-ff9c-470e-9ba9-cbb7e966bcb3" ], "Cache-Control": [ "no-cache" @@ -42595,34 +43114,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13222" + "14105" ], "x-ms-correlation-request-id": [ - "e002498e-3769-42d1-8ab4-10601e857514" + "4bf9a4ce-65bf-4814-abf0-802aa7351ee6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:e002498e-3769-42d1-8ab4-10601e857514" + "WESTUS:20150813T074724Z:4bf9a4ce-65bf-4814-abf0-802aa7351ee6" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/intelligent-plant-ltd/artifacttypes/vmimage/offers/intelligent-plant-gestalt/skus/gestalt_suite/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW50ZWxsaWdlbnQtcGxhbnQtbHRkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW50ZWxsaWdlbnQtcGxhbnQtZ2VzdGFsdC9za3VzL2dlc3RhbHRfc3VpdGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iaansys/artifacttypes/vmimage/offers/iaansys-magento/skus/iaansys-magento-ubuntu/versions/1.9.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFhbnN5cy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2lhYW5zeXMtbWFnZW50by9za3VzL2lhYW5zeXMtbWFnZW50by11YnVudHUvdmVyc2lvbnMvMS45LjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd/ArtifactTypes/VMImage/Offers/intelligent-plant-gestalt/Skus/gestalt_suite/Versions/2.1.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"iaansys\",\r\n \"name\": \"iaansys-magento-ubuntu\",\r\n \"product\": \"iaansys-magento\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.9.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys/ArtifactTypes/VMImage/Offers/iaansys-magento/Skus/iaansys-magento-ubuntu/Versions/1.9.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "295" + "510" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42637,7 +43156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e39c6fb-006f-4e1a-96a8-b88ee2d1c446" + "fd597686-0be9-4d56-a67d-b0554cbdf113" ], "Cache-Control": [ "no-cache" @@ -42647,34 +43166,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13221" + "14104" ], "x-ms-correlation-request-id": [ - "f2636263-72f7-4d90-817e-312016823d88" + "97c3afcc-4d40-4796-acb4-d61af111da2f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:f2636263-72f7-4d90-817e-312016823d88" + "WESTUS:20150813T074724Z:97c3afcc-4d40-4796-acb4-d61af111da2f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/intelligent-plant-ltd/artifacttypes/vmimage/offers/intelligent-plant-gestalt/skus/gestalt_suite/versions/2.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW50ZWxsaWdlbnQtcGxhbnQtbHRkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW50ZWxsaWdlbnQtcGxhbnQtZ2VzdGFsdC9za3VzL2dlc3RhbHRfc3VpdGUvdmVyc2lvbnMvMi4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iamcloud/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"intelligent-plant-ltd\",\r\n \"name\": \"gestalt_suite\",\r\n \"product\": \"intelligent-plant-gestalt\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd/ArtifactTypes/VMImage/Offers/intelligent-plant-gestalt/Skus/gestalt_suite/Versions/2.1.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"university-for-life\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud/ArtifactTypes/VMImage/Offers/university-for-life\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "542" + "256" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42689,7 +43208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d39df89e-314c-43e2-8b82-84c13a950f02" + "5d914965-8c72-44ba-a9e5-c00f6b1318f5" ], "Cache-Control": [ "no-cache" @@ -42699,34 +43218,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13220" + "14103" ], "x-ms-correlation-request-id": [ - "e21ddffe-8d44-41d1-b912-7ddc1a439dcf" + "4968ec2d-e1cd-4b24-b435-a397f88b5574" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:e21ddffe-8d44-41d1-b912-7ddc1a439dcf" + "WESTUS:20150813T074725Z:4968ec2d-e1cd-4b24-b435-a397f88b5574" ], "Date": [ - "Wed, 05 Aug 2015 21:25:48 GMT" + "Thu, 13 Aug 2015 07:47:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iquest/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXF1ZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iamcloud/artifacttypes/vmimage/offers/university-for-life/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy91bml2ZXJzaXR5LWZvci1saWZlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meeting-rooms\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"university-for-life\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud/ArtifactTypes/VMImage/Offers/university-for-life/Skus/university-for-life\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "242" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42741,7 +43260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f46a9540-7a6a-486d-9f47-c1c205664ba7" + "6deb148b-ab9c-4d0e-8f3e-c72764e4f013" ], "Cache-Control": [ "no-cache" @@ -42751,31 +43270,135 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13219" + "14102" + ], + "x-ms-correlation-request-id": [ + "f9d16a67-3c0c-4a3c-afb6-8cc6f9f31137" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074725Z:f9d16a67-3c0c-4a3c-afb6-8cc6f9f31137" + ], + "Date": [ + "Thu, 13 Aug 2015 07:47:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iamcloud/artifacttypes/vmimage/offers/university-for-life/skus/university-for-life/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy91bml2ZXJzaXR5LWZvci1saWZlL3NrdXMvdW5pdmVyc2l0eS1mb3ItbGlmZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud/ArtifactTypes/VMImage/Offers/university-for-life/Skus/university-for-life/Versions/1.0.0\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fa1c0e06-7af9-4659-9eda-a0e3ec10990e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14101" + ], + "x-ms-correlation-request-id": [ + "6b53ae59-9d31-4b5f-a86b-1e257d90f1e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074725Z:6b53ae59-9d31-4b5f-a86b-1e257d90f1e8" + ], + "Date": [ + "Thu, 13 Aug 2015 07:47:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iamcloud/artifacttypes/vmimage/offers/university-for-life/skus/university-for-life/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaWFtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy91bml2ZXJzaXR5LWZvci1saWZlL3NrdXMvdW5pdmVyc2l0eS1mb3ItbGlmZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"iamcloud\",\r\n \"name\": \"university-for-life\",\r\n \"product\": \"university-for-life\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud/ArtifactTypes/VMImage/Offers/university-for-life/Skus/university-for-life/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f9b623b4-8149-4714-b089-433b10340e21" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14100" ], "x-ms-correlation-request-id": [ - "7d394658-d764-4ba2-9a99-b5e65fa8d49e" + "e7e5e29d-b923-45f9-bf85-8a1b70bdedad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:7d394658-d764-4ba2-9a99-b5e65fa8d49e" + "WESTUS:20150813T074725Z:e7e5e29d-b923-45f9-bf85-8a1b70bdedad" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iquest/artifacttypes/vmimage/offers/meeting-rooms/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXF1ZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVldGluZy1yb29tcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms/Skus/enterprise-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc-process-guidance-suite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "265" @@ -42793,7 +43416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7817020f-e565-4890-8f06-90214f9075a7" + "79cf3939-2acf-4ec5-89f5-059f158d1faa" ], "Cache-Control": [ "no-cache" @@ -42803,34 +43426,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13218" + "14099" ], "x-ms-correlation-request-id": [ - "a0adb2e7-f32e-4790-a063-0269383a96cf" + "69ccb935-eb62-4882-97ea-fa2cfd924045" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:a0adb2e7-f32e-4790-a063-0269383a96cf" + "WESTUS:20150813T074725Z:69ccb935-eb62-4882-97ea-fa2cfd924045" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iquest/artifacttypes/vmimage/offers/meeting-rooms/skus/enterprise-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXF1ZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVldGluZy1yb29tcy9za3VzL2VudGVycHJpc2UtYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms/Skus/enterprise-byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc_pgs41_l\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_l\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc_pgs41_m\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_m\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc_pgs41_s\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_s\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc_pgs41_xs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_xs\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "270" + "1061" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42845,7 +43468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d4b5250-e629-40a1-8eb4-1205deb9fdc1" + "49a4f785-d2e1-45e2-8f98-028dff73e26e" ], "Cache-Control": [ "no-cache" @@ -42855,34 +43478,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13217" + "14098" ], "x-ms-correlation-request-id": [ - "bc590a80-30c3-4d7f-ba27-0dd52af562b7" + "c2bfc259-a676-4030-b7f8-8d91e867826f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:bc590a80-30c3-4d7f-ba27-0dd52af562b7" + "WESTUS:20150813T074725Z:c2bfc259-a676-4030-b7f8-8d91e867826f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/iquest/artifacttypes/vmimage/offers/meeting-rooms/skus/enterprise-byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXF1ZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVldGluZy1yb29tcy9za3VzL2VudGVycHJpc2UtYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_l/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"iquest\",\r\n \"name\": \"enterprise-byol\",\r\n \"product\": \"meeting-rooms\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms/Skus/enterprise-byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_l/Versions/4.1.1020141105\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "490" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42897,7 +43520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f652a86-241b-4192-9398-c8f7c7faf43d" + "585f0ba0-6c89-4b2f-9d23-9cce7caf9188" ], "Cache-Control": [ "no-cache" @@ -42907,34 +43530,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13216" + "14097" ], "x-ms-correlation-request-id": [ - "0111b0c4-be27-4715-b20f-5640aedba74f" + "819ce1d9-a8af-45f0-bc29-a6f63a7a413b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:0111b0c4-be27-4715-b20f-5640aedba74f" + "WESTUS:20150813T074725Z:819ce1d9-a8af-45f0-bc29-a6f63a7a413b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/itelios/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXRlbGlvcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_l/versions/4.1.1020141105?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfbC92ZXJzaW9ucy80LjEuMTAyMDE0MTEwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magento2-on-zendserver\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios/ArtifactTypes/VMImage/Offers/magento2-on-zendserver\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"imc\",\r\n \"name\": \"imc_pgs41_l\",\r\n \"product\": \"imc-process-guidance-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_l/Versions/4.1.1020141105\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "261" + "564" ], "Content-Type": [ "application/json; charset=utf-8" @@ -42949,7 +43572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1106459e-f4f6-434a-9f26-c835d16d6bf3" + "b74c4ba4-76f8-4a2b-9ded-277c0bb4c6fc" ], "Cache-Control": [ "no-cache" @@ -42959,34 +43582,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13215" + "14096" ], "x-ms-correlation-request-id": [ - "d4acbdeb-8a17-4909-9c8b-556fa2b9e1bd" + "3287e19e-9bcf-47cb-8777-982b4da9b331" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212549Z:d4acbdeb-8a17-4909-9c8b-556fa2b9e1bd" + "WESTUS:20150813T074725Z:3287e19e-9bcf-47cb-8777-982b4da9b331" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/itelios/artifacttypes/vmimage/offers/magento2-on-zendserver/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXRlbGlvcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VudG8yLW9uLXplbmRzZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_m/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfbS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magento2-0-74-0-beta14-demo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios/ArtifactTypes/VMImage/Offers/magento2-on-zendserver/Skus/magento2-0-74-0-beta14-demo\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_m/Versions/4.1.1020141105\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "299" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43001,7 +43624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae4c2cae-f994-404e-8e0c-3ade99fd4dcf" + "a2b32dab-c802-4b6a-8b7f-206eccebb2cd" ], "Cache-Control": [ "no-cache" @@ -43011,34 +43634,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13214" + "14095" ], "x-ms-correlation-request-id": [ - "2f987365-4cb5-4f61-8c05-1395ef514295" + "dc264669-4802-46e6-8aad-10e48ea0d5f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212550Z:2f987365-4cb5-4f61-8c05-1395ef514295" + "WESTUS:20150813T074725Z:dc264669-4802-46e6-8aad-10e48ea0d5f5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/itelios/artifacttypes/vmimage/offers/magento2-on-zendserver/skus/magento2-0-74-0-beta14-demo/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXRlbGlvcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VudG8yLW9uLXplbmRzZXJ2ZXIvc2t1cy9tYWdlbnRvMi0wLTc0LTAtYmV0YTE0LWRlbW8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_m/versions/4.1.1020141105?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfbS92ZXJzaW9ucy80LjEuMTAyMDE0MTEwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios/ArtifactTypes/VMImage/Offers/magento2-on-zendserver/Skus/magento2-0-74-0-beta14-demo/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"imc\",\r\n \"name\": \"imc_pgs41_m\",\r\n \"product\": \"imc-process-guidance-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_m/Versions/4.1.1020141105\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "292" + "564" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43053,7 +43676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fd01dc4-a4c7-47be-ba4f-ee7400b5e6ff" + "5e201f5e-1970-4ee1-8872-dea2acfbc8e9" ], "Cache-Control": [ "no-cache" @@ -43063,34 +43686,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13213" + "14094" ], "x-ms-correlation-request-id": [ - "64fe1a6b-4f58-49b1-a3ce-57ea52f73466" + "2ca4f9d6-b349-4ef7-b0d7-990bf4142ca4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212550Z:64fe1a6b-4f58-49b1-a3ce-57ea52f73466" + "WESTUS:20150813T074726Z:2ca4f9d6-b349-4ef7-b0d7-990bf4142ca4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/itelios/artifacttypes/vmimage/offers/magento2-on-zendserver/skus/magento2-0-74-0-beta14-demo/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXRlbGlvcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VudG8yLW9uLXplbmRzZXJ2ZXIvc2t1cy9tYWdlbnRvMi0wLTc0LTAtYmV0YTE0LWRlbW8vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_s/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"itelios\",\r\n \"name\": \"magento2-0-74-0-beta14-demo\",\r\n \"product\": \"magento2-on-zendserver\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios/ArtifactTypes/VMImage/Offers/magento2-on-zendserver/Skus/magento2-0-74-0-beta14-demo/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_s/Versions/4.1.1020141105\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "534" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43105,7 +43728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4836040-8b97-4b71-900f-49b54c07b767" + "b261f7d4-d2bc-45ba-b478-4d59563a6b81" ], "Cache-Control": [ "no-cache" @@ -43115,34 +43738,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13212" + "14093" ], "x-ms-correlation-request-id": [ - "d2512e7e-43e1-48ed-8e77-519d2c718600" + "3493317f-f20d-400c-b4c2-b6316824bed0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212550Z:d2512e7e-43e1-48ed-8e77-519d2c718600" + "WESTUS:20150813T074726Z:3493317f-f20d-400c-b4c2-b6316824bed0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jelastic/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamVsYXN0aWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_s/versions/4.1.1020141105?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfcy92ZXJzaW9ucy80LjEuMTAyMDE0MTEwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic-hybrid-paas-standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"imc\",\r\n \"name\": \"imc_pgs41_s\",\r\n \"product\": \"imc-process-guidance-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_s/Versions/4.1.1020141105\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "276" + "564" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43157,7 +43780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "610d1692-b1f1-4c18-9fd4-5c8b61e91f54" + "e9da1cac-1acb-4efd-b562-5a733f10bfb0" ], "Cache-Control": [ "no-cache" @@ -43167,34 +43790,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13211" + "14092" ], "x-ms-correlation-request-id": [ - "e7ee8484-3bdb-4f90-873d-0fbecebb57f4" + "2e9abc16-dedc-42d0-a051-9fef782dd3c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212550Z:e7ee8484-3bdb-4f90-873d-0fbecebb57f4" + "WESTUS:20150813T074726Z:2e9abc16-dedc-42d0-a051-9fef782dd3c3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:49 GMT" + "Thu, 13 Aug 2015 07:47:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jelastic/artifacttypes/vmimage/offers/jelastic-hybrid-paas-standard/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamVsYXN0aWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZWxhc3RpYy1oeWJyaWQtcGFhcy1zdGFuZGFyZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_xs/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfeHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic_azure_hybrid_basic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard/Skus/jelastic_azure_hybrid_basic\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_xs/Versions/4.1.1020141105\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "307" + "295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43209,7 +43832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d434460f-34fc-4b4f-9172-d2331b229aaa" + "7b925119-6ec8-4145-bb76-9a30f6a751a8" ], "Cache-Control": [ "no-cache" @@ -43219,34 +43842,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13210" + "14091" ], "x-ms-correlation-request-id": [ - "d474bdd7-a316-42d1-b19f-7433ca530768" + "de8ccf57-f9e2-4f33-b3b7-849bbf3ed8f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212550Z:d474bdd7-a316-42d1-b19f-7433ca530768" + "WESTUS:20150813T074726Z:de8ccf57-f9e2-4f33-b3b7-849bbf3ed8f5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jelastic/artifacttypes/vmimage/offers/jelastic-hybrid-paas-standard/skus/jelastic_azure_hybrid_basic/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamVsYXN0aWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZWxhc3RpYy1oeWJyaWQtcGFhcy1zdGFuZGFyZC9za3VzL2plbGFzdGljX2F6dXJlX2h5YnJpZF9iYXNpYy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/imc/artifacttypes/vmimage/offers/imc-process-guidance-suite/skus/imc_pgs41_xs/versions/4.1.1020141105?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW1jL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW1jLXByb2Nlc3MtZ3VpZGFuY2Utc3VpdGUvc2t1cy9pbWNfcGdzNDFfeHMvdmVyc2lvbnMvNC4xLjEwMjAxNDExMDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard/Skus/jelastic_azure_hybrid_basic/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"imc\",\r\n \"name\": \"imc_pgs41_xs\",\r\n \"product\": \"imc-process-guidance-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.1020141105\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc/ArtifactTypes/VMImage/Offers/imc-process-guidance-suite/Skus/imc_pgs41_xs/Versions/4.1.1020141105\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "300" + "566" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43261,7 +43884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a8717c2-6466-46cb-a3b3-ba37d31249df" + "bc2bdb32-fb3c-4dd8-9648-106eaf188d44" ], "Cache-Control": [ "no-cache" @@ -43271,34 +43894,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13209" + "14090" ], "x-ms-correlation-request-id": [ - "5d7d0251-dd51-4653-b041-055a791feb27" + "7705e878-7ac0-4532-87a8-fb51b8667afc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212550Z:5d7d0251-dd51-4653-b041-055a791feb27" + "WESTUS:20150813T074726Z:7705e878-7ac0-4532-87a8-fb51b8667afc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jelastic/artifacttypes/vmimage/offers/jelastic-hybrid-paas-standard/skus/jelastic_azure_hybrid_basic/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamVsYXN0aWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZWxhc3RpYy1oeWJyaWQtcGFhcy1zdGFuZGFyZC9za3VzL2plbGFzdGljX2F6dXJlX2h5YnJpZF9iYXNpYy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/infolibrarian/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb2xpYnJhcmlhbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jelastic\",\r\n \"name\": \"jelastic_azure_hybrid_basic\",\r\n \"product\": \"jelastic-hybrid-paas-standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard/Skus/jelastic_azure_hybrid_basic/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian-metadata-management-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian/ArtifactTypes/VMImage/Offers/infolibrarian-metadata-management-server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "550" + "303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43313,7 +43936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e35952a9-fed9-46f3-babe-7e6c1a2b1e85" + "6b5b3613-5bfc-4c29-b63d-cc8a3347615f" ], "Cache-Control": [ "no-cache" @@ -43323,34 +43946,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13208" + "14089" ], "x-ms-correlation-request-id": [ - "4eadd49a-4e21-467a-8154-c7322c56ef08" + "8c0d3182-504d-4018-b856-8b7cd40f8539" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212550Z:4eadd49a-4e21-467a-8154-c7322c56ef08" + "WESTUS:20150813T074726Z:8c0d3182-504d-4018-b856-8b7cd40f8539" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/infolibrarian/artifacttypes/vmimage/offers/infolibrarian-metadata-management-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb2xpYnJhcmlhbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2luZm9saWJyYXJpYW4tbWV0YWRhdGEtbWFuYWdlbWVudC1zZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus-application-load-balancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian-metadata-windows-64-bit-hourly\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian/ArtifactTypes/VMImage/Offers/infolibrarian-metadata-management-server/Skus/infolibrarian-metadata-windows-64-bit-hourly\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "286" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43365,7 +43988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1533d5d-32f7-484c-a739-e405ee0bea05" + "99222635-dbfc-48a7-9bce-eadb97d6c872" ], "Cache-Control": [ "no-cache" @@ -43375,34 +43998,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13207" + "14088" ], "x-ms-correlation-request-id": [ - "2a91e29b-5863-4dd2-847c-4ee237732648" + "f3a0cf94-65eb-41b1-8217-2c78c2d603b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212550Z:2a91e29b-5863-4dd2-847c-4ee237732648" + "WESTUS:20150813T074726Z:f3a0cf94-65eb-41b1-8217-2c78c2d603b5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/infolibrarian/artifacttypes/vmimage/offers/infolibrarian-metadata-management-server/skus/infolibrarian-metadata-windows-64-bit-hourly/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb2xpYnJhcmlhbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2luZm9saWJyYXJpYW4tbWV0YWRhdGEtbWFuYWdlbWVudC1zZXJ2ZXIvc2t1cy9pbmZvbGlicmFyaWFuLW1ldGFkYXRhLXdpbmRvd3MtNjQtYml0LWhvdXJseS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-10g\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-10g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-1g\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-1g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-3g\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-3g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-500m\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-500m\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-5g\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-5g\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian/ArtifactTypes/VMImage/Offers/infolibrarian-metadata-management-server/Skus/infolibrarian-metadata-windows-64-bit-hourly/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1765" + "333" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43417,7 +44040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e174de8c-cd97-4e65-afc6-d3532dc72d32" + "af9d79c0-06e9-4494-883f-b03dcf1e3feb" ], "Cache-Control": [ "no-cache" @@ -43427,34 +44050,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13206" + "14087" ], "x-ms-correlation-request-id": [ - "0843088a-3144-4122-8ae1-f6934b25fb4c" + "8c6ce003-4a60-449f-85ca-16cc77af775e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:0843088a-3144-4122-8ae1-f6934b25fb4c" + "WESTUS:20150813T074726Z:8c6ce003-4a60-449f-85ca-16cc77af775e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/infolibrarian/artifacttypes/vmimage/offers/infolibrarian-metadata-management-server/skus/infolibrarian-metadata-windows-64-bit-hourly/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb2xpYnJhcmlhbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2luZm9saWJyYXJpYW4tbWV0YWRhdGEtbWFuYWdlbWVudC1zZXJ2ZXIvc2t1cy9pbmZvbGlicmFyaWFuLW1ldGFkYXRhLXdpbmRvd3MtNjQtYml0LWhvdXJseS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-byol/Versions/4.2.5\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"infolibrarian\",\r\n \"name\": \"infolibrarian-metadata-windows-64-bit-hourly\",\r\n \"product\": \"infolibrarian-metadata-management-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian/ArtifactTypes/VMImage/Offers/infolibrarian-metadata-management-server/Skus/infolibrarian-metadata-windows-64-bit-hourly/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "296" + "618" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43469,7 +44092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1bd793ef-b71d-4d0f-b3bc-242c1e231764" + "b99f2523-f0ce-488b-82e9-69fc75a0f27a" ], "Cache-Control": [ "no-cache" @@ -43479,34 +44102,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13205" + "14086" ], "x-ms-correlation-request-id": [ - "b079a676-44f0-41a9-9ae9-1818fd4e48d8" + "5005adca-d149-4ad8-9f72-e3c08d0c0aa1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:b079a676-44f0-41a9-9ae9-1818fd4e48d8" + "WESTUS:20150813T074726Z:5005adca-d149-4ad8-9f72-e3c08d0c0aa1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-byol/versions/4.2.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS1ieW9sL3ZlcnNpb25zLzQuMi41P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-byol\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-byol/Versions/4.2.5\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "542" + "261" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43521,7 +44144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62900e77-3ddd-49e1-9150-7553f3ecbe54" + "a515ae44-0be8-473d-8bde-f99f2bbfa2d2" ], "Cache-Control": [ "no-cache" @@ -43531,34 +44154,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13204" + "14085" ], "x-ms-correlation-request-id": [ - "7c279488-9ff2-4f89-8192-867aee55ee61" + "1f9dd03a-56ea-44c2-963f-5b0f77ddb0df" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:7c279488-9ff2-4f89-8192-867aee55ee61" + "WESTUS:20150813T074726Z:1f9dd03a-56ea-44c2-963f-5b0f77ddb0df" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-10g/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0xMGcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-10g/Versions/4.2.5\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica_cloud_secure_agent_32_bit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica_cloud_secure_agent_32_bit_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit_linux\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "298" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43573,7 +44196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04a6ed41-d927-4eca-8a5f-d8040fbc0334" + "bbea9451-66d1-49c1-b6df-61fa5b13e0af" ], "Cache-Control": [ "no-cache" @@ -43583,34 +44206,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13203" + "14084" ], "x-ms-correlation-request-id": [ - "b595c649-fa86-4961-b81b-0b0e64b5b44d" + "a06a8abb-1296-4387-af6c-bbc5d501c37f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:b595c649-fa86-4961-b81b-0b0e64b5b44d" + "WESTUS:20150813T074727Z:a06a8abb-1296-4387-af6c-bbc5d501c37f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-10g/versions/4.2.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0xMGcvdmVyc2lvbnMvNC4yLjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus/informatica_cloud_secure_agent_32_bit/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzL2luZm9ybWF0aWNhX2Nsb3VkX3NlY3VyZV9hZ2VudF8zMl9iaXQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-10g\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-10g/Versions/4.2.5\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "546" + "307" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43625,7 +44248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15a911a5-e2e8-40e7-a46a-dac5ce001fd4" + "fb87be35-2437-474c-bb6a-0d809b64aa20" ], "Cache-Control": [ "no-cache" @@ -43635,34 +44258,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13202" + "14083" ], "x-ms-correlation-request-id": [ - "46bb968b-b548-4ee8-bdf6-bd352ea207dc" + "8258779a-ac07-4a68-9527-87da3727967d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:46bb968b-b548-4ee8-bdf6-bd352ea207dc" + "WESTUS:20150813T074727Z:8258779a-ac07-4a68-9527-87da3727967d" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-1g/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0xZy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus/informatica_cloud_secure_agent_32_bit/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzL2luZm9ybWF0aWNhX2Nsb3VkX3NlY3VyZV9hZ2VudF8zMl9iaXQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-1g/Versions/4.2.5\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"informatica-cloud\",\r\n \"name\": \"informatica_cloud_secure_agent_32_bit\",\r\n \"product\": \"informatica-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "297" + "566" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43677,7 +44300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67e95e6d-1ced-4024-9c89-45650225e876" + "3cf3d3b8-a813-4ff2-bb23-b59eb50a50e4" ], "Cache-Control": [ "no-cache" @@ -43687,34 +44310,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13201" + "14082" ], "x-ms-correlation-request-id": [ - "4ed9ab39-fee6-405d-9829-4463136222dc" + "92c495fb-835f-4cdb-b273-a45f43729150" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:4ed9ab39-fee6-405d-9829-4463136222dc" + "WESTUS:20150813T074727Z:92c495fb-835f-4cdb-b273-a45f43729150" ], "Date": [ - "Wed, 05 Aug 2015 21:25:50 GMT" + "Thu, 13 Aug 2015 07:47:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-1g/versions/4.2.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0xZy92ZXJzaW9ucy80LjIuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus/informatica_cloud_secure_agent_32_bit_linux/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzL2luZm9ybWF0aWNhX2Nsb3VkX3NlY3VyZV9hZ2VudF8zMl9iaXRfbGludXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-1g\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-1g/Versions/4.2.5\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit_linux/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "544" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43729,7 +44352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f00da7d3-c8ce-4563-abf8-93df5af46d04" + "53b05bee-f792-44f4-b723-692092549f5b" ], "Cache-Control": [ "no-cache" @@ -43739,34 +44362,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13200" + "14081" ], "x-ms-correlation-request-id": [ - "3ced48fd-8ebc-43aa-80ee-f32fd8cd57cb" + "bc593890-79d0-4afb-b769-26878b7dbdb1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:3ced48fd-8ebc-43aa-80ee-f32fd8cd57cb" + "WESTUS:20150813T074727Z:bc593890-79d0-4afb-b769-26878b7dbdb1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-3g/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0zZy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/informatica-cloud/artifacttypes/vmimage/offers/informatica-cloud/skus/informatica_cloud_secure_agent_32_bit_linux/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3JtYXRpY2EtY2xvdWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9pbmZvcm1hdGljYS1jbG91ZC9za3VzL2luZm9ybWF0aWNhX2Nsb3VkX3NlY3VyZV9hZ2VudF8zMl9iaXRfbGludXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-3g/Versions/4.2.5\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"informatica-cloud\",\r\n \"name\": \"informatica_cloud_secure_agent_32_bit_linux\",\r\n \"product\": \"informatica-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud/ArtifactTypes/VMImage/Offers/informatica-cloud/Skus/informatica_cloud_secure_agent_32_bit_linux/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "297" + "576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43781,7 +44404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ec58aea-50d7-4664-9fa5-ed2cf6ed58c5" + "7c35094f-f222-45ff-9313-86f36d82cd8b" ], "Cache-Control": [ "no-cache" @@ -43791,34 +44414,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13199" + "14080" ], "x-ms-correlation-request-id": [ - "f78921d2-7065-4fce-88e0-f65ef0a933ac" + "84168dc7-68d0-4b4c-a502-a98c63722746" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:f78921d2-7065-4fce-88e0-f65ef0a933ac" + "WESTUS:20150813T074727Z:84168dc7-68d0-4b4c-a502-a98c63722746" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-3g/versions/4.2.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0zZy92ZXJzaW9ucy80LjIuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/infostrat/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3N0cmF0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-3g\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-3g/Versions/4.2.5\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"portvue\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat/ArtifactTypes/VMImage/Offers/portvue\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "544" + "233" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43833,7 +44456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3dbbb95-fdfa-4e7f-9a60-0640f618589d" + "9434524c-d45d-4fd8-9ced-56a8fbd32c83" ], "Cache-Control": [ "no-cache" @@ -43843,34 +44466,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13198" + "14079" ], "x-ms-correlation-request-id": [ - "eee858c7-6d71-4722-9fe2-f9418798954b" + "0212b32f-1f4b-495b-b3aa-667cd820e0c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:eee858c7-6d71-4722-9fe2-f9418798954b" + "WESTUS:20150813T074727Z:0212b32f-1f4b-495b-b3aa-667cd820e0c3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-500m/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS01MDBtL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/infostrat/artifacttypes/vmimage/offers/portvue/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3N0cmF0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcG9ydHZ1ZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-500m/Versions/4.2.5\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostratportvuev1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat/ArtifactTypes/VMImage/Offers/portvue/Skus/infostratportvuev1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "299" + "268" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43885,7 +44508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21bffce9-6ac3-425d-8233-605c92895a7c" + "90721069-7314-4214-b8d0-062327086e25" ], "Cache-Control": [ "no-cache" @@ -43895,34 +44518,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13197" + "14078" ], "x-ms-correlation-request-id": [ - "dc8234db-b42e-440c-95f8-c0e2adc7feca" + "bd982ad8-7a4b-47c1-b531-7e73aa9fe3fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:dc8234db-b42e-440c-95f8-c0e2adc7feca" + "WESTUS:20150813T074727Z:bd982ad8-7a4b-47c1-b531-7e73aa9fe3fc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-500m/versions/4.2.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS01MDBtL3ZlcnNpb25zLzQuMi41P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/infostrat/artifacttypes/vmimage/offers/portvue/skus/infostratportvuev1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3N0cmF0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcG9ydHZ1ZS9za3VzL2luZm9zdHJhdHBvcnR2dWV2MS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-500m\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-500m/Versions/4.2.5\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat/ArtifactTypes/VMImage/Offers/portvue/Skus/infostratportvuev1/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "548" + "270" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43937,7 +44560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e6fd6cc-12f3-4fc7-9b9b-e2d83e05d6e3" + "fb8d1f02-0acb-4f3e-8bb7-693bc970baa4" ], "Cache-Control": [ "no-cache" @@ -43947,34 +44570,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13196" + "14077" ], "x-ms-correlation-request-id": [ - "adcd0ca8-8c91-45b9-be59-b23bbb75399e" + "b972ec94-61be-4a8d-9e0f-24c23bf13c7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212551Z:adcd0ca8-8c91-45b9-be59-b23bbb75399e" + "WESTUS:20150813T074727Z:b972ec94-61be-4a8d-9e0f-24c23bf13c7c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-5g/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS01Zy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/infostrat/artifacttypes/vmimage/offers/portvue/skus/infostratportvuev1/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW5mb3N0cmF0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcG9ydHZ1ZS9za3VzL2luZm9zdHJhdHBvcnR2dWV2MS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-5g/Versions/4.2.5\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"infostrat\",\r\n \"name\": \"infostratportvuev1\",\r\n \"product\": \"portvue\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat/ArtifactTypes/VMImage/Offers/portvue/Skus/infostratportvuev1/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "297" + "492" ], "Content-Type": [ "application/json; charset=utf-8" @@ -43989,7 +44612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6fc50ea2-870b-415e-b953-ece73f43d101" + "4e733332-eca8-42a5-9c94-1237f44d0e7e" ], "Cache-Control": [ "no-cache" @@ -43999,34 +44622,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13195" + "14076" ], "x-ms-correlation-request-id": [ - "caa0f65f-6414-441e-8f89-4bc4667627a7" + "51a5fe78-1e2a-48cf-b330-8bff9d2e2d45" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:caa0f65f-6414-441e-8f89-4bc4667627a7" + "WESTUS:20150813T074727Z:51a5fe78-1e2a-48cf-b330-8bff9d2e2d45" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-5g/versions/4.2.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS01Zy92ZXJzaW9ucy80LjIuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/intelligent-plant-ltd/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW50ZWxsaWdlbnQtcGxhbnQtbHRkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-5g\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-5g/Versions/4.2.5\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-gestalt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd/ArtifactTypes/VMImage/Offers/intelligent-plant-gestalt\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "544" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44041,7 +44664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "072e7d09-8987-4fdb-bca0-92bec5092513" + "a26dc6b6-7f55-40e5-9a23-a1c1b5633d31" ], "Cache-Control": [ "no-cache" @@ -44051,34 +44674,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13194" + "14075" ], "x-ms-correlation-request-id": [ - "90d776de-e99b-4a99-9f9f-46e16dcf41e6" + "a83f8517-220a-4b36-979e-d355c825f5b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:90d776de-e99b-4a99-9f9f-46e16dcf41e6" + "WESTUS:20150813T074728Z:a83f8517-220a-4b36-979e-d355c825f5b2" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/intelligent-plant-ltd/artifacttypes/vmimage/offers/intelligent-plant-gestalt/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW50ZWxsaWdlbnQtcGxhbnQtbHRkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW50ZWxsaWdlbnQtcGxhbnQtZ2VzdGFsdC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"artifactory\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gestalt_suite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd/ArtifactTypes/VMImage/Offers/intelligent-plant-gestalt/Skus/gestalt_suite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "237" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44093,7 +44716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4d64c4a-9348-41e9-a821-0ddab39b17c4" + "5efa5437-7ce8-466d-99f5-63e0340542c4" ], "Cache-Control": [ "no-cache" @@ -44103,34 +44726,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13193" + "14074" ], "x-ms-correlation-request-id": [ - "33a01e6a-f3ea-4ed5-a910-5674f76aba00" + "6c3a2c77-4b2a-4a76-9008-8702f9434a59" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:33a01e6a-f3ea-4ed5-a910-5674f76aba00" + "WESTUS:20150813T074728Z:6c3a2c77-4b2a-4a76-9008-8702f9434a59" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/intelligent-plant-ltd/artifacttypes/vmimage/offers/intelligent-plant-gestalt/skus/gestalt_suite/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW50ZWxsaWdlbnQtcGxhbnQtbHRkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW50ZWxsaWdlbnQtcGxhbnQtZ2VzdGFsdC9za3VzL2dlc3RhbHRfc3VpdGUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"artifactory-3-7-0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-7-0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"artifactory-3-8-0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-8-0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"artifactory-3-9-2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-9-2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd/ArtifactTypes/VMImage/Offers/intelligent-plant-gestalt/Skus/gestalt_suite/Versions/2.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "792" + "295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44145,7 +44768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87c37525-8cf6-4850-963a-59a3e64769dc" + "86c9874d-84c2-4da9-8a8e-3ff4cc4fccaa" ], "Cache-Control": [ "no-cache" @@ -44155,34 +44778,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13192" + "14073" ], "x-ms-correlation-request-id": [ - "f00f8f75-0f2a-44b7-94fb-41a2141c40ef" + "f93b2f52-35f0-4f77-8885-2238457dc758" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:f00f8f75-0f2a-44b7-94fb-41a2141c40ef" + "WESTUS:20150813T074728Z:f93b2f52-35f0-4f77-8885-2238457dc758" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-7-0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtNy0wL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/intelligent-plant-ltd/artifacttypes/vmimage/offers/intelligent-plant-gestalt/skus/gestalt_suite/versions/2.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaW50ZWxsaWdlbnQtcGxhbnQtbHRkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvaW50ZWxsaWdlbnQtcGxhbnQtZ2VzdGFsdC9za3VzL2dlc3RhbHRfc3VpdGUvdmVyc2lvbnMvMi4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.7.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-7-0/Versions/3.7.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"intelligent-plant-ltd\",\r\n \"name\": \"gestalt_suite\",\r\n \"product\": \"intelligent-plant-gestalt\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd/ArtifactTypes/VMImage/Offers/intelligent-plant-gestalt/Skus/gestalt_suite/Versions/2.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "269" + "542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44197,7 +44820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82f0fc83-43b5-4f55-8227-2a81e0d84b44" + "af125538-f205-4314-a182-920dd1356b96" ], "Cache-Control": [ "no-cache" @@ -44207,34 +44830,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13191" + "14072" ], "x-ms-correlation-request-id": [ - "7df00f03-41a9-4149-9bcd-e3d72871728f" + "c4bcf142-fe7a-4f6f-87f9-9e61120fe338" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:7df00f03-41a9-4149-9bcd-e3d72871728f" + "WESTUS:20150813T074728Z:c4bcf142-fe7a-4f6f-87f9-9e61120fe338" ], "Date": [ - "Wed, 05 Aug 2015 21:25:51 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-7-0/versions/3.7.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtNy0wL3ZlcnNpb25zLzMuNy4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iquest/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXF1ZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jfrog\",\r\n \"name\": \"artifactory-3-7-0\",\r\n \"product\": \"artifactory\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.7.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-7-0/Versions/3.7.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meeting-rooms\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "488" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44249,7 +44872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cad52bca-d08b-4fa5-b698-0ee2d42edc90" + "1bb2ee1c-9250-491c-bee2-cb3a14ae604a" ], "Cache-Control": [ "no-cache" @@ -44259,34 +44882,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13190" + "14071" ], "x-ms-correlation-request-id": [ - "fa818f61-7070-4d82-b15f-b85ada1f776d" + "81472e8c-8fc4-4b12-a536-b6e0fd5ab436" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:fa818f61-7070-4d82-b15f-b85ada1f776d" + "WESTUS:20150813T074728Z:81472e8c-8fc4-4b12-a536-b6e0fd5ab436" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-8-0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtOC0wL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iquest/artifacttypes/vmimage/offers/meeting-rooms/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXF1ZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVldGluZy1yb29tcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-8-0/Versions/3.8.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms/Skus/enterprise-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "269" + "265" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44301,7 +44924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9641d02b-10f7-4ab7-ae28-ec219f7a18a8" + "7554b2a3-b21a-447c-a1ae-8afed352f0ba" ], "Cache-Control": [ "no-cache" @@ -44311,34 +44934,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13189" + "14070" ], "x-ms-correlation-request-id": [ - "ceea6171-ac26-484b-8ecb-ddd01d862fbe" + "9b998213-972e-4b71-b685-15ac7630e617" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:ceea6171-ac26-484b-8ecb-ddd01d862fbe" + "WESTUS:20150813T074728Z:9b998213-972e-4b71-b685-15ac7630e617" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-8-0/versions/3.8.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtOC0wL3ZlcnNpb25zLzMuOC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iquest/artifacttypes/vmimage/offers/meeting-rooms/skus/enterprise-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXF1ZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVldGluZy1yb29tcy9za3VzL2VudGVycHJpc2UtYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jfrog\",\r\n \"name\": \"artifactory-3-8-0\",\r\n \"product\": \"artifactory\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-8-0/Versions/3.8.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms/Skus/enterprise-byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "488" + "270" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44353,7 +44976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c8a43b4-5635-4df0-b138-41e210318591" + "79d24832-adb1-4455-ad70-6bb8483721ba" ], "Cache-Control": [ "no-cache" @@ -44363,34 +44986,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13188" + "14069" ], "x-ms-correlation-request-id": [ - "13413052-c92a-4cf7-8092-768ea1f52fb9" + "06aa6665-18c2-4efc-ac3a-0250ea355665" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:13413052-c92a-4cf7-8092-768ea1f52fb9" + "WESTUS:20150813T074728Z:06aa6665-18c2-4efc-ac3a-0250ea355665" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-9-2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtOS0yL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/iquest/artifacttypes/vmimage/offers/meeting-rooms/skus/enterprise-byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXF1ZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVldGluZy1yb29tcy9za3VzL2VudGVycHJpc2UtYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.9.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-9-2/Versions/3.9.2\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"iquest\",\r\n \"name\": \"enterprise-byol\",\r\n \"product\": \"meeting-rooms\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms/Skus/enterprise-byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "269" + "490" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44405,7 +45028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eae3fa0f-f259-439f-b57f-a382fe68e9ac" + "c89afa03-5921-414f-895a-f0640c0f3477" ], "Cache-Control": [ "no-cache" @@ -44415,34 +45038,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13187" + "14068" ], "x-ms-correlation-request-id": [ - "bde54be6-6b6b-4bca-9a4c-508dd14497af" + "329eac2e-0339-4755-b234-5c42cbc55fe4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:bde54be6-6b6b-4bca-9a4c-508dd14497af" + "WESTUS:20150813T074728Z:329eac2e-0339-4755-b234-5c42cbc55fe4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-9-2/versions/3.9.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtOS0yL3ZlcnNpb25zLzMuOS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/itelios/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXRlbGlvcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jfrog\",\r\n \"name\": \"artifactory-3-9-2\",\r\n \"product\": \"artifactory\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.9.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-9-2/Versions/3.9.2\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magento2-on-zendserver\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios/ArtifactTypes/VMImage/Offers/magento2-on-zendserver\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "488" + "261" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44457,7 +45080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4036fe0c-b159-4e1e-a1a5-7e6fafe05fa6" + "9ce515d9-a84b-411f-9a2e-7b4d73b40086" ], "Cache-Control": [ "no-cache" @@ -44467,34 +45090,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13186" + "14067" ], "x-ms-correlation-request-id": [ - "eece8057-f4cc-4d78-b712-5f9dabb56aac" + "1ca13af1-9115-4fd2-800e-708abcbd82f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212552Z:eece8057-f4cc-4d78-b712-5f9dabb56aac" + "WESTUS:20150813T074729Z:1ca13af1-9115-4fd2-800e-708abcbd82f7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/itelios/artifacttypes/vmimage/offers/magento2-on-zendserver/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXRlbGlvcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VudG8yLW9uLXplbmRzZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing-vpa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magento2-0-74-0-beta14-demo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios/ArtifactTypes/VMImage/Offers/magento2-on-zendserver/Skus/magento2-0-74-0-beta14-demo\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "239" + "299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44509,7 +45132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a13c2566-94ba-459c-ad77-57e693bc21cf" + "586884d9-ca6b-4393-b02c-bf1863b79609" ], "Cache-Control": [ "no-cache" @@ -44519,34 +45142,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13185" + "14066" ], "x-ms-correlation-request-id": [ - "dabfcd4d-41d5-4c41-bdf7-89c6af307588" + "91ec112c-f54e-44cf-8e56-3056dfdde1cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:dabfcd4d-41d5-4c41-bdf7-89c6af307588" + "WESTUS:20150813T074729Z:91ec112c-f54e-44cf-8e56-3056dfdde1cf" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/itelios/artifacttypes/vmimage/offers/magento2-on-zendserver/skus/magento2-0-74-0-beta14-demo/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXRlbGlvcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VudG8yLW9uLXplbmRzZXJ2ZXIvc2t1cy9tYWdlbnRvMi0wLTc0LTAtYmV0YTE0LWRlbW8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activedirectory-free\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-free\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activedirectory-silver-support\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-silver-support\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios/ArtifactTypes/VMImage/Offers/magento2-on-zendserver/Skus/magento2-0-74-0-beta14-demo/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "565" + "292" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44561,7 +45184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "582a7389-1223-4e4c-99d8-1d169c05651c" + "54f88967-595c-4e5f-8933-945e3ba7eaaf" ], "Cache-Control": [ "no-cache" @@ -44571,34 +45194,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13184" + "14065" ], "x-ms-correlation-request-id": [ - "91c54481-0fa6-45d7-99bf-173fa6a7011f" + "e3a045a3-4f33-4011-8f51-5d92db13080b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:91c54481-0fa6-45d7-99bf-173fa6a7011f" + "WESTUS:20150813T074729Z:e3a045a3-4f33-4011-8f51-5d92db13080b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus/activedirectory-free/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXMvYWN0aXZlZGlyZWN0b3J5LWZyZWUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/itelios/artifacttypes/vmimage/offers/magento2-on-zendserver/skus/magento2-0-74-0-beta14-demo/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvaXRlbGlvcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VudG8yLW9uLXplbmRzZXJ2ZXIvc2t1cy9tYWdlbnRvMi0wLTc0LTAtYmV0YTE0LWRlbW8vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-free/Versions/1.0.4\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"itelios\",\r\n \"name\": \"magento2-0-74-0-beta14-demo\",\r\n \"product\": \"magento2-on-zendserver\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios/ArtifactTypes/VMImage/Offers/magento2-on-zendserver/Skus/magento2-0-74-0-beta14-demo/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "274" + "534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44613,7 +45236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f130865-f1f4-4f7e-a94d-d6275f2cf65c" + "62ebba86-85d7-4e98-a671-d2355c3ed481" ], "Cache-Control": [ "no-cache" @@ -44623,34 +45246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13183" + "14064" ], "x-ms-correlation-request-id": [ - "49e2da53-4872-44bd-98e2-46d1af08f295" + "8b717f16-a6f9-4615-8a35-5d531eca5348" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:49e2da53-4872-44bd-98e2-46d1af08f295" + "WESTUS:20150813T074729Z:8b717f16-a6f9-4615-8a35-5d531eca5348" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus/activedirectory-free/versions/1.0.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXMvYWN0aXZlZGlyZWN0b3J5LWZyZWUvdmVyc2lvbnMvMS4wLjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jelastic/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamVsYXN0aWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaazing\",\r\n \"name\": \"activedirectory-free\",\r\n \"product\": \"kaazing-vpa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-free/Versions/1.0.4\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic-hybrid-paas-standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "498" + "276" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44665,7 +45288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6040a5fd-9174-4a77-aa4b-8cff6a02be92" + "e56ad46b-35cb-49c4-b71e-2d3492ca6878" ], "Cache-Control": [ "no-cache" @@ -44675,34 +45298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13182" + "14063" ], "x-ms-correlation-request-id": [ - "549234f1-9ea4-4243-88d0-173d08085795" + "b11aba04-366e-478f-a54a-f9ab2634640c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:549234f1-9ea4-4243-88d0-173d08085795" + "WESTUS:20150813T074729Z:b11aba04-366e-478f-a54a-f9ab2634640c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus/activedirectory-silver-support/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXMvYWN0aXZlZGlyZWN0b3J5LXNpbHZlci1zdXBwb3J0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jelastic/artifacttypes/vmimage/offers/jelastic-hybrid-paas-standard/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamVsYXN0aWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZWxhc3RpYy1oeWJyaWQtcGFhcy1zdGFuZGFyZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-silver-support/Versions/1.0.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic_azure_hybrid_basic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard/Skus/jelastic_azure_hybrid_basic\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "284" + "307" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44717,7 +45340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4fb6078-d3be-4fa9-837b-7e882af22c25" + "0ef6815d-c827-4468-8c57-3a5f89988d9f" ], "Cache-Control": [ "no-cache" @@ -44727,34 +45350,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13181" + "14062" ], "x-ms-correlation-request-id": [ - "c76da5d9-8af8-4407-9419-82e1af213ea1" + "3b210f29-1251-4b67-9d1f-31e86619e125" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:c76da5d9-8af8-4407-9419-82e1af213ea1" + "WESTUS:20150813T074729Z:3b210f29-1251-4b67-9d1f-31e86619e125" ], "Date": [ - "Wed, 05 Aug 2015 21:25:52 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus/activedirectory-silver-support/versions/1.0.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXMvYWN0aXZlZGlyZWN0b3J5LXNpbHZlci1zdXBwb3J0L3ZlcnNpb25zLzEuMC40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jelastic/artifacttypes/vmimage/offers/jelastic-hybrid-paas-standard/skus/jelastic_azure_hybrid_basic/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamVsYXN0aWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZWxhc3RpYy1oeWJyaWQtcGFhcy1zdGFuZGFyZC9za3VzL2plbGFzdGljX2F6dXJlX2h5YnJpZF9iYXNpYy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaazing\",\r\n \"name\": \"activedirectory-silver-support\",\r\n \"product\": \"kaazing-vpa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-silver-support/Versions/1.0.4\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard/Skus/jelastic_azure_hybrid_basic/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "518" + "300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44769,7 +45392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f70cf0e-9577-4704-8d8a-4cbb0b89fae3" + "b4d251a4-2ec0-494d-a0b3-43388e29fb2e" ], "Cache-Control": [ "no-cache" @@ -44779,34 +45402,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13180" + "14061" ], "x-ms-correlation-request-id": [ - "727ca1ba-21ea-472f-8000-0f6810da4a57" + "a48edc25-1a9f-4155-a84e-b55f9113d733" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:727ca1ba-21ea-472f-8000-0f6810da4a57" + "WESTUS:20150813T074729Z:a48edc25-1a9f-4155-a84e-b55f9113d733" ], "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jelastic/artifacttypes/vmimage/offers/jelastic-hybrid-paas-standard/skus/jelastic_azure_hybrid_basic/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamVsYXN0aWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZWxhc3RpYy1oeWJyaWQtcGFhcy1zdGFuZGFyZC9za3VzL2plbGFzdGljX2F6dXJlX2h5YnJpZF9iYXNpYy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_secure_mail_gateway\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kaspersky_secure_mail_gateway\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kav_for_lfs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_lfs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kav_for_wsee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_wsee\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jelastic\",\r\n \"name\": \"jelastic_azure_hybrid_basic\",\r\n \"product\": \"jelastic-hybrid-paas-standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard/Skus/jelastic_azure_hybrid_basic/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "767" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44821,7 +45444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc45091c-7362-4c4a-addb-73c699f10093" + "368dfd9a-6e34-4c91-aee2-2f690d5a8ea6" ], "Cache-Control": [ "no-cache" @@ -44831,34 +45454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13179" + "14060" ], "x-ms-correlation-request-id": [ - "5ceea260-b434-49a6-908d-a82808cc31f8" + "d0607413-214e-4613-87ee-a54d2b1199c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:5ceea260-b434-49a6-908d-a82808cc31f8" + "WESTUS:20150813T074729Z:d0607413-214e-4613-87ee-a54d2b1199c5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kaspersky_secure_mail_gateway/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ksg\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kaspersky_secure_mail_gateway/Skus/ksg\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus-application-load-balancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "264" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44873,7 +45496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36e81c13-9e2d-4b2e-9bd8-2a707e99a6eb" + "88cba16a-4a08-4db8-809a-54d50ca9e547" ], "Cache-Control": [ "no-cache" @@ -44883,34 +45506,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13178" + "14059" ], "x-ms-correlation-request-id": [ - "3738ff38-efed-4c8a-a877-f769ff1b10f5" + "9e208915-89b2-4570-ba49-b9864e8b0042" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:3738ff38-efed-4c8a-a877-f769ff1b10f5" + "WESTUS:20150813T074730Z:9e208915-89b2-4570-ba49-b9864e8b0042" ], "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kaspersky_secure_mail_gateway/skus/ksg/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXMva3NnL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.67\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kaspersky_secure_mail_gateway/Skus/ksg/Versions/1.0.67\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-10g\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-10g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-1g\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-1g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-3g\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-3g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-500m\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-500m\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jnxalbx-azure-va-5g\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-5g\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "283" + "1765" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44925,7 +45548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7244066-a33d-44ce-a528-d21bbafb48ee" + "defd002b-af48-43a2-8fe5-6ee79a8164a5" ], "Cache-Control": [ "no-cache" @@ -44935,34 +45558,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13177" + "14058" ], "x-ms-correlation-request-id": [ - "65b30297-4c16-4dcc-b2e2-b26d37b782d9" + "f898f4df-d7a0-4ca4-a2c7-315775f657e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:65b30297-4c16-4dcc-b2e2-b26d37b782d9" + "WESTUS:20150813T074730Z:f898f4df-d7a0-4ca4-a2c7-315775f657e5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kaspersky_secure_mail_gateway/skus/ksg/versions/1.0.67?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXMva3NnL3ZlcnNpb25zLzEuMC42Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaspersky_lab\",\r\n \"name\": \"ksg\",\r\n \"product\": \"kaspersky_secure_mail_gateway\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.67\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kaspersky_secure_mail_gateway/Skus/ksg/Versions/1.0.67\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-byol/Versions/4.2.5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "514" + "296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -44977,7 +45600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b021d1f-3909-436f-9b5a-cc1bf358a9e5" + "74e61e6c-7cbb-4b84-ba42-1238286807d9" ], "Cache-Control": [ "no-cache" @@ -44987,190 +45610,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13176" - ], - "x-ms-correlation-request-id": [ - "29279f7c-3c69-4683-a839-6a958526dd22" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150805T212553Z:29279f7c-3c69-4683-a839-6a958526dd22" - ], - "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_lfs/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3JfbGZzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kav_for_lfs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_lfs/Skus/kav_for_lfs\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "262" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "6b5f8470-bd10-4687-b9c9-8224b6b2aca8" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13175" - ], - "x-ms-correlation-request-id": [ - "2336fc98-4afd-4055-8770-5e8ce1073c32" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:2336fc98-4afd-4055-8770-5e8ce1073c32" - ], - "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_lfs/skus/kav_for_lfs/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3JfbGZzL3NrdXMva2F2X2Zvcl9sZnMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_lfs/Skus/kav_for_lfs/Versions/1.0.0\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "271" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0dfec039-d4ae-45bb-bd32-5b015b8af1f4" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13174" - ], - "x-ms-correlation-request-id": [ - "b5c5fa15-803d-43dc-8071-6275a5a4ae85" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:b5c5fa15-803d-43dc-8071-6275a5a4ae85" - ], - "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_lfs/skus/kav_for_lfs/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3JfbGZzL3NrdXMva2F2X2Zvcl9sZnMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaspersky_lab\",\r\n \"name\": \"kav_for_lfs\",\r\n \"product\": \"kav_for_lfs\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_lfs/Skus/kav_for_lfs/Versions/1.0.0\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "492" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a1a9a28d-4373-481a-b828-fcf6f9b18e3f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "13173" + "14057" ], "x-ms-correlation-request-id": [ - "cda663c4-f989-4f1f-9bc7-0f980d276c4c" + "8c19c069-700b-4ba8-a152-2c469aebd064" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:cda663c4-f989-4f1f-9bc7-0f980d276c4c" + "WESTUS:20150813T074730Z:8c19c069-700b-4ba8-a152-2c469aebd064" ], "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_wsee/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-byol/versions/4.2.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS1ieW9sL3ZlcnNpb25zLzQuMi41P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kav_for_wsee\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_wsee/Skus/kav_for_wsee\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-byol\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-byol/Versions/4.2.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45185,7 +45652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a42bc2bf-1771-4105-9d11-d93a22d59c64" + "8c610de0-42b3-4137-a8ee-181eca299ce2" ], "Cache-Control": [ "no-cache" @@ -45195,34 +45662,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13172" + "14056" ], "x-ms-correlation-request-id": [ - "c1c525ae-48cb-4c00-8e89-dfc8bc4bfecb" + "defe1133-0979-4443-952c-1915269f861a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:c1c525ae-48cb-4c00-8e89-dfc8bc4bfecb" + "WESTUS:20150813T074730Z:defe1133-0979-4443-952c-1915269f861a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_wsee/skus/kav_for_wsee/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzL2thdl9mb3Jfd3NlZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-10g/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0xMGcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_wsee/Skus/kav_for_wsee/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-10g/Versions/4.2.5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "273" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45237,7 +45704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b35765f-f79f-4030-9c32-d89e325d5bea" + "e35b49e5-89ae-4815-9ad2-bc7b112c43b3" ], "Cache-Control": [ "no-cache" @@ -45247,34 +45714,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13171" + "14055" ], "x-ms-correlation-request-id": [ - "254646da-67f3-4089-8128-20d2e908192d" + "8f70adc7-30ae-4d54-b95b-f71c360b5d3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:254646da-67f3-4089-8128-20d2e908192d" + "WESTUS:20150813T074730Z:8f70adc7-30ae-4d54-b95b-f71c360b5d3a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:53 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_wsee/skus/kav_for_wsee/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzL2thdl9mb3Jfd3NlZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-10g/versions/4.2.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0xMGcvdmVyc2lvbnMvNC4yLjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaspersky_lab\",\r\n \"name\": \"kav_for_wsee\",\r\n \"product\": \"kav_for_wsee\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_wsee/Skus/kav_for_wsee/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-10g\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-10g/Versions/4.2.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "498" + "546" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45289,7 +45756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5905233-4264-4595-ae48-f7aa55391f89" + "bbeff8b2-91ca-459f-8a51-7d8b8bb7cd41" ], "Cache-Control": [ "no-cache" @@ -45299,34 +45766,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13170" + "14054" ], "x-ms-correlation-request-id": [ - "fc4beb31-7f08-4036-b7ee-764a26d57182" + "43ab7d64-0947-4818-9293-b72887367fd7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:fc4beb31-7f08-4036-b7ee-764a26d57182" + "WESTUS:20150813T074730Z:43ab7d64-0947-4818-9293-b72887367fd7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-1g/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0xZy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-1g/Versions/4.2.5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "236" + "297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45341,7 +45808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c2e62a8-c00c-491d-ae7c-1ec6d239ae5a" + "8dbea102-289e-4c4b-9d20-8c7dc3e517d3" ], "Cache-Control": [ "no-cache" @@ -45351,34 +45818,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13169" + "14053" ], "x-ms-correlation-request-id": [ - "bfc34ec0-3617-4b28-ab3f-fbd376470726" + "df167212-2a71-4217-8152-03d8410af875" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:bfc34ec0-3617-4b28-ab3f-fbd376470726" + "WESTUS:20150813T074730Z:df167212-2a71-4217-8152-03d8410af875" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-1g/versions/4.2.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0xZy92ZXJzaW9ucy80LjIuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basic-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/basic-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-10g-hrl\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-10g-hrl\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-200-hrl\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-200-hrl\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-2000-hrl\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-2000-hrl\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-5000-hrl\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-5000-hrl\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-1g\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-1g/Versions/4.2.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1265" + "544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45393,7 +45860,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "397500f8-8c2f-48f7-a888-8d7c45cc2bfd" + "d40bb495-f324-4444-b9ea-04c44de32e50" ], "Cache-Control": [ "no-cache" @@ -45403,34 +45870,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13168" + "14052" ], "x-ms-correlation-request-id": [ - "72ca950c-bc82-47ab-a05a-8025310298d2" + "cb825271-40d5-427f-8d30-a009da449ead" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:72ca950c-bc82-47ab-a05a-8025310298d2" + "WESTUS:20150813T074730Z:cb825271-40d5-427f-8d30-a009da449ead" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/basic-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy9iYXNpYy1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-3g/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0zZy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/basic-byol/Versions/7.1.263001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-3g/Versions/4.2.5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "273" + "297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45445,7 +45912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79c7fafb-cb17-4ebb-bfa7-ef1cf7a01a46" + "8b782836-64ca-4c5f-824a-b0b8c4d67d1a" ], "Cache-Control": [ "no-cache" @@ -45455,34 +45922,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13167" + "14051" ], "x-ms-correlation-request-id": [ - "f35f9ad0-2c88-4373-bae2-d3b3ea33d7c7" + "cddf7690-5c85-4f3b-b98a-15b778610eaf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212554Z:f35f9ad0-2c88-4373-bae2-d3b3ea33d7c7" + "WESTUS:20150813T074730Z:cddf7690-5c85-4f3b-b98a-15b778610eaf" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/basic-byol/versions/7.1.263001?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy9iYXNpYy1ieW9sL3ZlcnNpb25zLzcuMS4yNjMwMDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-3g/versions/4.2.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS0zZy92ZXJzaW9ucy80LjIuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"basic-byol\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/basic-byol/Versions/7.1.263001\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-3g\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-3g/Versions/4.2.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "486" + "544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45497,7 +45964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0acfd45a-f03d-47b6-997f-1fc595d735e2" + "ebe8f768-8478-43d1-8761-fdf6652d24b5" ], "Cache-Control": [ "no-cache" @@ -45507,34 +45974,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13166" + "14050" ], "x-ms-correlation-request-id": [ - "4dfdbe04-47af-4768-9403-3d841ece0c93" + "88e1e996-beff-43ea-a4e0-a3afc8454bfb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:4dfdbe04-47af-4768-9403-3d841ece0c93" + "WESTUS:20150813T074730Z:88e1e996-beff-43ea-a4e0-a3afc8454bfb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-10g-hrl/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMTBnLWhybC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-500m/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS01MDBtL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-10g-hrl/Versions/7.1.263001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-500m/Versions/4.2.5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "274" + "299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45549,7 +46016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9c03ef4-a923-4ef2-9bc4-28e5ed203507" + "959c5341-e567-4d05-8255-197d9213444e" ], "Cache-Control": [ "no-cache" @@ -45559,34 +46026,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13165" + "14049" ], "x-ms-correlation-request-id": [ - "9d96f7e4-0df5-4e7b-b4bb-c5006984236c" + "18c2243b-bb50-4174-9165-7c344d39393a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:9d96f7e4-0df5-4e7b-b4bb-c5006984236c" + "WESTUS:20150813T074730Z:18c2243b-bb50-4174-9165-7c344d39393a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-10g-hrl/versions/7.1.263001?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMTBnLWhybC92ZXJzaW9ucy83LjEuMjYzMDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-500m/versions/4.2.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS01MDBtL3ZlcnNpb25zLzQuMi41P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"vlm-10g-hrl\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-10g-hrl/Versions/7.1.263001\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-500m\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-500m/Versions/4.2.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "488" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45601,7 +46068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9416ab39-69db-410f-8028-1eacc1b29878" + "5fa187d8-ca25-450d-b565-6cd37aac1a79" ], "Cache-Control": [ "no-cache" @@ -45611,34 +46078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13164" + "14048" ], "x-ms-correlation-request-id": [ - "f441edb3-07ba-49d4-bc7f-0aa0fb311f61" + "449d0321-1287-450b-b5f5-3727f0d074c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:f441edb3-07ba-49d4-bc7f-0aa0fb311f61" + "WESTUS:20150813T074731Z:449d0321-1287-450b-b5f5-3727f0d074c4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-200-hrl/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMjAwLWhybC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-5g/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS01Zy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-200-hrl/Versions/7.1.263001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-5g/Versions/4.2.5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "274" + "297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45653,7 +46120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39af06c7-ba8e-4851-8224-00d8ec8835f4" + "c4c92c47-5948-49bb-8718-57df3845a4fb" ], "Cache-Control": [ "no-cache" @@ -45663,34 +46130,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13163" + "14047" ], "x-ms-correlation-request-id": [ - "7bccf292-d502-401b-869e-610063076af4" + "5c61e3dd-0433-4289-9cc4-019cc832a296" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:7bccf292-d502-401b-869e-610063076af4" + "WESTUS:20150813T074731Z:5c61e3dd-0433-4289-9cc4-019cc832a296" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-200-hrl/versions/7.1.263001?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMjAwLWhybC92ZXJzaW9ucy83LjEuMjYzMDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jetnexus/artifacttypes/vmimage/offers/jetnexus-application-load-balancer/skus/jnxalbx-azure-va-5g/versions/4.2.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamV0bmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qZXRuZXh1cy1hcHBsaWNhdGlvbi1sb2FkLWJhbGFuY2VyL3NrdXMvam54YWxieC1henVyZS12YS01Zy92ZXJzaW9ucy80LjIuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"vlm-200-hrl\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-200-hrl/Versions/7.1.263001\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jetnexus\",\r\n \"name\": \"jnxalbx-azure-va-5g\",\r\n \"product\": \"jetnexus-application-load-balancer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus/ArtifactTypes/VMImage/Offers/jetnexus-application-load-balancer/Skus/jnxalbx-azure-va-5g/Versions/4.2.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "488" + "544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45705,7 +46172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "962d54c9-eb2d-4437-b6bd-7c981c0c1f68" + "0d60eabf-f861-4767-a5b2-9a9e539cdd1f" ], "Cache-Control": [ "no-cache" @@ -45715,34 +46182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13162" + "14046" ], "x-ms-correlation-request-id": [ - "b416edb1-733c-49ff-bfdd-4dc747042c0f" + "a769d22a-0dfc-4405-b73e-52fd5fc5a736" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:b416edb1-733c-49ff-bfdd-4dc747042c0f" + "WESTUS:20150813T074731Z:a769d22a-0dfc-4405-b73e-52fd5fc5a736" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-2000-hrl/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMjAwMC1ocmwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-2000-hrl/Versions/7.1.263001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"artifactory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "275" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45757,7 +46224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2cd1aebd-4936-49e8-a6de-02fd6f6fb51b" + "ad48d589-f238-4fc1-ab6e-901c64ef4ece" ], "Cache-Control": [ "no-cache" @@ -45767,34 +46234,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13161" + "14045" ], "x-ms-correlation-request-id": [ - "7cc28e63-0a15-4216-8ce3-1a3ed8d512e1" + "bd4fa2a3-fd0d-4067-bc1f-4e01428ea4e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:7cc28e63-0a15-4216-8ce3-1a3ed8d512e1" + "WESTUS:20150813T074731Z:bd4fa2a3-fd0d-4067-bc1f-4e01428ea4e9" ], "Date": [ - "Wed, 05 Aug 2015 21:25:54 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-2000-hrl/versions/7.1.263001?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMjAwMC1ocmwvdmVyc2lvbnMvNy4xLjI2MzAwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"vlm-2000-hrl\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-2000-hrl/Versions/7.1.263001\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"artifactory-3-7-0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-7-0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"artifactory-3-8-0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-8-0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"artifactory-3-9-2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-9-2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "490" + "792" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45809,7 +46276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c14ca3f6-d1f7-4bbc-8cc6-7be43fccf0c7" + "05b8b2d2-08cd-4c72-b319-8cc2069a7670" ], "Cache-Control": [ "no-cache" @@ -45819,34 +46286,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13160" + "14044" ], "x-ms-correlation-request-id": [ - "59d87b2a-d9cf-42ea-9400-051259235813" + "a6257a9c-6a94-4175-90ee-f1b4c558af1e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:59d87b2a-d9cf-42ea-9400-051259235813" + "WESTUS:20150813T074731Z:a6257a9c-6a94-4175-90ee-f1b4c558af1e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:55 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-5000-hrl/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tNTAwMC1ocmwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-7-0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtNy0wL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-5000-hrl/Versions/7.1.263001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.7.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-7-0/Versions/3.7.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "275" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45861,7 +46328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b40568b-20d5-49dc-8a15-7925252eac01" + "79e57e43-82fb-4e9e-981f-dd62a1f28012" ], "Cache-Control": [ "no-cache" @@ -45871,34 +46338,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13159" + "14043" ], "x-ms-correlation-request-id": [ - "bb64f19e-27af-4c0d-b23d-15bd9bdae7d7" + "4973d86a-2727-41f6-843a-10190a90c353" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:bb64f19e-27af-4c0d-b23d-15bd9bdae7d7" + "WESTUS:20150813T074731Z:4973d86a-2727-41f6-843a-10190a90c353" ], "Date": [ - "Wed, 05 Aug 2015 21:25:55 GMT" + "Thu, 13 Aug 2015 07:47:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-5000-hrl/versions/7.1.263001?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tNTAwMC1ocmwvdmVyc2lvbnMvNy4xLjI2MzAwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-7-0/versions/3.7.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtNy0wL3ZlcnNpb25zLzMuNy4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"vlm-5000-hrl\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.263001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-5000-hrl/Versions/7.1.263001\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jfrog\",\r\n \"name\": \"artifactory-3-7-0\",\r\n \"product\": \"artifactory\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.7.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-7-0/Versions/3.7.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "490" + "488" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45913,7 +46380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d0cf1a0-1041-4967-a6f3-749316ce0e3b" + "01019c06-1b16-4541-abaa-2ea7ddb67353" ], "Cache-Control": [ "no-cache" @@ -45923,34 +46390,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13158" + "14042" ], "x-ms-correlation-request-id": [ - "9b620c53-ea6b-4151-9429-05e8ec70d7d8" + "dec1fc00-4476-42a7-8204-57e4b25e380f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:9b620c53-ea6b-4151-9429-05e8ec70d7d8" + "WESTUS:20150813T074731Z:dec1fc00-4476-42a7-8204-57e4b25e380f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:55 GMT" + "Thu, 13 Aug 2015 07:47:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/le/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-8-0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtOC0wL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logentries-datahub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le/ArtifactTypes/VMImage/Offers/logentries-datahub\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-8-0/Versions/3.8.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "248" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -45965,7 +46432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5342c405-2f5e-4896-909f-23d3e3ac88a8" + "9914c6b0-20b7-4282-bf68-f9e1cd04d474" ], "Cache-Control": [ "no-cache" @@ -45975,34 +46442,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13157" + "14041" ], "x-ms-correlation-request-id": [ - "e93eacf6-e79d-4b24-b093-579e2995cc71" + "b316e655-a261-4e95-a50e-db2255d5a595" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212555Z:e93eacf6-e79d-4b24-b093-579e2995cc71" + "WESTUS:20150813T074731Z:b316e655-a261-4e95-a50e-db2255d5a595" ], "Date": [ - "Wed, 05 Aug 2015 21:25:55 GMT" + "Thu, 13 Aug 2015 07:47:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/le/artifacttypes/vmimage/offers/logentries-datahub/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dlbnRyaWVzLWRhdGFodWIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-8-0/versions/3.8.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtOC0wL3ZlcnNpb25zLzMuOC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azuredh\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le/ArtifactTypes/VMImage/Offers/logentries-datahub/Skus/azuredh\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jfrog\",\r\n \"name\": \"artifactory-3-8-0\",\r\n \"product\": \"artifactory\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.8.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-8-0/Versions/3.8.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "250" + "488" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46017,7 +46484,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b67897df-069a-4095-bfa1-0728f7cba36a" + "a3b92077-913b-4c78-9881-5a4339398971" ], "Cache-Control": [ "no-cache" @@ -46027,34 +46494,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13156" + "14040" ], "x-ms-correlation-request-id": [ - "10a909e6-4f51-4956-a783-0143a25d862e" + "66366b9c-28e1-4ba1-9d64-111b3461128a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212556Z:10a909e6-4f51-4956-a783-0143a25d862e" + "WESTUS:20150813T074731Z:66366b9c-28e1-4ba1-9d64-111b3461128a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:55 GMT" + "Thu, 13 Aug 2015 07:47:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/le/artifacttypes/vmimage/offers/logentries-datahub/skus/azuredh/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dlbnRyaWVzLWRhdGFodWIvc2t1cy9henVyZWRoL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-9-2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtOS0yL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le/ArtifactTypes/VMImage/Offers/logentries-datahub/Skus/azuredh/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.9.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-9-2/Versions/3.9.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "263" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46069,7 +46536,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a23d550-3b6f-467b-91e4-0a8a41776b68" + "db19ea16-731e-420c-8c88-8c8b37055858" ], "Cache-Control": [ "no-cache" @@ -46079,34 +46546,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13155" + "14039" ], "x-ms-correlation-request-id": [ - "26e8810a-2990-4c8b-a624-6209a6dde5bc" + "60daa118-704c-4f98-b09c-6cdd1dcd1ce8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212556Z:26e8810a-2990-4c8b-a624-6209a6dde5bc" + "WESTUS:20150813T074731Z:60daa118-704c-4f98-b09c-6cdd1dcd1ce8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:55 GMT" + "Thu, 13 Aug 2015 07:47:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/le/artifacttypes/vmimage/offers/logentries-datahub/skus/azuredh/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dlbnRyaWVzLWRhdGFodWIvc2t1cy9henVyZWRoL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/jfrog/artifacttypes/vmimage/offers/artifactory/skus/artifactory-3-9-2/versions/3.9.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvamZyb2cvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hcnRpZmFjdG9yeS9za3VzL2FydGlmYWN0b3J5LTMtOS0yL3ZlcnNpb25zLzMuOS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"le\",\r\n \"name\": \"azuredh\",\r\n \"product\": \"logentries-datahub\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le/ArtifactTypes/VMImage/Offers/logentries-datahub/Skus/azuredh/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"jfrog\",\r\n \"name\": \"artifactory-3-9-2\",\r\n \"product\": \"artifactory\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.9.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog/ArtifactTypes/VMImage/Offers/artifactory/Skus/artifactory-3-9-2/Versions/3.9.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "478" + "488" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46121,7 +46588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23f30ead-5c36-4aea-941e-b07d68550682" + "9df4c481-ae10-4ea2-89db-6f9ee68f4cad" ], "Cache-Control": [ "no-cache" @@ -46131,34 +46598,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13154" + "14038" ], "x-ms-correlation-request-id": [ - "2b001fd2-a696-4bb0-88db-9899e112032a" + "af40e497-7c12-4691-830e-ac242fae2e56" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212556Z:2b001fd2-a696-4bb0-88db-9899e112032a" + "WESTUS:20150813T074732Z:af40e497-7c12-4691-830e-ac242fae2e56" ], "Date": [ - "Wed, 05 Aug 2015 21:25:55 GMT" + "Thu, 13 Aug 2015 07:47:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/lieberlieber/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYmVybGllYmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber-web-collaborator\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing-vpa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "280" + "239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46173,7 +46640,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d906a05b-10fa-4339-b865-5e97ee2d2c53" + "1aa48638-d2fd-4f01-9f38-1e9d9426b622" ], "Cache-Control": [ "no-cache" @@ -46183,34 +46650,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13153" + "14037" ], "x-ms-correlation-request-id": [ - "54cdb91d-1e56-4881-b1d0-1daebe3b73e4" + "f4482d89-4ec1-4bed-b63f-e7f5bdd8700a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212556Z:54cdb91d-1e56-4881-b1d0-1daebe3b73e4" + "WESTUS:20150813T074732Z:f4482d89-4ec1-4bed-b63f-e7f5bdd8700a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/lieberlieber/artifacttypes/vmimage/offers/lieberlieber-web-collaborator/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYmVybGllYmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbGllYmVybGllYmVyLXdlYi1jb2xsYWJvcmF0b3Ivc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"llweb4ea01\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator/Skus/llweb4ea01\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activedirectory-free\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-free\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activedirectory-silver-support\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-silver-support\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "277" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46225,7 +46692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2d1cc7b-883e-4266-b8d1-51c2b2cc40e1" + "d1c94b5d-0a77-4ccb-a758-1d9c133588b2" ], "Cache-Control": [ "no-cache" @@ -46235,34 +46702,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13152" + "14036" ], "x-ms-correlation-request-id": [ - "af38dba8-02bc-4b72-9bcc-6fb25bc8453b" + "9a8f1d3d-ab1b-44f3-afc9-71171fe4ca34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212556Z:af38dba8-02bc-4b72-9bcc-6fb25bc8453b" + "WESTUS:20150813T074732Z:9a8f1d3d-ab1b-44f3-afc9-71171fe4ca34" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/lieberlieber/artifacttypes/vmimage/offers/lieberlieber-web-collaborator/skus/llweb4ea01/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYmVybGllYmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbGllYmVybGllYmVyLXdlYi1jb2xsYWJvcmF0b3Ivc2t1cy9sbHdlYjRlYTAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus/activedirectory-free/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXMvYWN0aXZlZGlyZWN0b3J5LWZyZWUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator/Skus/llweb4ea01/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-free/Versions/1.0.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46277,7 +46744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4eac9820-8364-4a1d-8a22-2193cd9c2ce1" + "9d21e37e-52dc-482d-9e2b-2c85a2bf4f48" ], "Cache-Control": [ "no-cache" @@ -46287,34 +46754,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13151" + "14035" ], "x-ms-correlation-request-id": [ - "de336988-aba5-48ac-8446-cc45c3d8a8b1" + "24694ad5-6da2-438b-a568-f42f082f15a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212556Z:de336988-aba5-48ac-8446-cc45c3d8a8b1" + "WESTUS:20150813T074732Z:24694ad5-6da2-438b-a568-f42f082f15a0" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/lieberlieber/artifacttypes/vmimage/offers/lieberlieber-web-collaborator/skus/llweb4ea01/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYmVybGllYmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbGllYmVybGllYmVyLXdlYi1jb2xsYWJvcmF0b3Ivc2t1cy9sbHdlYjRlYTAxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus/activedirectory-free/versions/1.0.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXMvYWN0aXZlZGlyZWN0b3J5LWZyZWUvdmVyc2lvbnMvMS4wLjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"lieberlieber\",\r\n \"name\": \"llweb4ea01\",\r\n \"product\": \"lieberlieber-web-collaborator\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator/Skus/llweb4ea01/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaazing\",\r\n \"name\": \"activedirectory-free\",\r\n \"product\": \"kaazing-vpa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-free/Versions/1.0.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "526" + "498" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46329,7 +46796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a574cc4-1422-474c-9853-768c7ec00234" + "030af9f5-c5aa-49bd-83e2-75b861dc82c6" ], "Cache-Control": [ "no-cache" @@ -46339,34 +46806,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13150" + "14034" ], "x-ms-correlation-request-id": [ - "e82e7f2d-e7f0-49ba-a2c4-5074d966f726" + "fb8c889b-cd22-4cff-9e41-00dc7f948ea8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212556Z:e82e7f2d-e7f0-49ba-a2c4-5074d966f726" + "WESTUS:20150813T074732Z:fb8c889b-cd22-4cff-9e41-00dc7f948ea8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/liebsoft/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYnNvZnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus/activedirectory-silver-support/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXMvYWN0aXZlZGlyZWN0b3J5LXNpbHZlci1zdXBwb3J0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise_random_password_manager\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft/ArtifactTypes/VMImage/Offers/enterprise_random_password_manager\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-silver-support/Versions/1.0.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "286" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46381,7 +46848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7d4f7f8-1c1a-4172-8caf-18231da242c7" + "bc32e48a-ddb9-41f6-8439-c6be1d33114a" ], "Cache-Control": [ "no-cache" @@ -46391,34 +46858,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13149" + "14033" ], "x-ms-correlation-request-id": [ - "1eaa7606-71a5-4a45-bc86-f0c349b4b121" + "18373bac-2275-42e3-bc18-2012a6209c4f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:1eaa7606-71a5-4a45-bc86-f0c349b4b121" + "WESTUS:20150813T074732Z:18373bac-2275-42e3-bc18-2012a6209c4f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/liebsoft/artifacttypes/vmimage/offers/enterprise_random_password_manager/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYnNvZnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbnRlcnByaXNlX3JhbmRvbV9wYXNzd29yZF9tYW5hZ2VyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaazing/artifacttypes/vmimage/offers/kaazing-vpa/skus/activedirectory-silver-support/versions/1.0.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FhemluZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thYXppbmctdnBhL3NrdXMvYWN0aXZlZGlyZWN0b3J5LXNpbHZlci1zdXBwb3J0L3ZlcnNpb25zLzEuMC40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"erpm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft/ArtifactTypes/VMImage/Offers/enterprise_random_password_manager/Skus/erpm\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaazing\",\r\n \"name\": \"activedirectory-silver-support\",\r\n \"product\": \"kaazing-vpa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing/ArtifactTypes/VMImage/Offers/kaazing-vpa/Skus/activedirectory-silver-support/Versions/1.0.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "266" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46433,7 +46900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8eb5d28e-0a66-4e47-af19-a61bd2eed6f0" + "22996c33-2a36-442b-896e-669d4fb333a4" ], "Cache-Control": [ "no-cache" @@ -46443,34 +46910,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13148" + "14032" ], "x-ms-correlation-request-id": [ - "81a7cf3e-4ee5-4ccf-9121-77838f1d88fa" + "8bcb4e2f-833a-46b0-8619-c6a69a8eb7e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:81a7cf3e-4ee5-4ccf-9121-77838f1d88fa" + "WESTUS:20150813T074732Z:8bcb4e2f-833a-46b0-8619-c6a69a8eb7e7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/liebsoft/artifacttypes/vmimage/offers/enterprise_random_password_manager/skus/erpm/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYnNvZnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbnRlcnByaXNlX3JhbmRvbV9wYXNzd29yZF9tYW5hZ2VyL3NrdXMvZXJwbS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.83.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft/ArtifactTypes/VMImage/Offers/enterprise_random_password_manager/Skus/erpm/Versions/4.83.8\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_secure_mail_gateway\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kaspersky_secure_mail_gateway\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kav_for_lfs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_lfs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kav_for_wsee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_wsee\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "284" + "767" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46485,7 +46952,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "220f8650-5bab-4e37-99e0-9626c4046e39" + "bb6a5126-4227-4500-85ba-bce872ec85d9" ], "Cache-Control": [ "no-cache" @@ -46495,34 +46962,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13147" + "14031" ], "x-ms-correlation-request-id": [ - "c2ddd856-c1ff-46a7-902f-e55476b21e3b" + "4d399bd8-f445-46a9-ae0a-ce089e78f57a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:c2ddd856-c1ff-46a7-902f-e55476b21e3b" + "WESTUS:20150813T074733Z:4d399bd8-f445-46a9-ae0a-ce089e78f57a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/liebsoft/artifacttypes/vmimage/offers/enterprise_random_password_manager/skus/erpm/versions/4.83.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYnNvZnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbnRlcnByaXNlX3JhbmRvbV9wYXNzd29yZF9tYW5hZ2VyL3NrdXMvZXJwbS92ZXJzaW9ucy80LjgzLjg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kaspersky_secure_mail_gateway/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"liebsoft\",\r\n \"name\": \"erpm\",\r\n \"product\": \"enterprise_random_password_manager\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.83.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft/ArtifactTypes/VMImage/Offers/enterprise_random_password_manager/Skus/erpm/Versions/4.83.8\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ksg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kaspersky_secure_mail_gateway/Skus/ksg\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "518" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46537,7 +47004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba873434-e2f9-487b-8a83-0a8832b2d6cf" + "1a4765fc-4e3f-4129-af7c-80ba238c0533" ], "Cache-Control": [ "no-cache" @@ -46547,34 +47014,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13146" + "14030" ], "x-ms-correlation-request-id": [ - "50ac6ed6-f3e4-4d55-8dca-5291000dbc25" + "b1fa50ab-724b-4ebf-8ad6-1f46da37fb9c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:50ac6ed6-f3e4-4d55-8dca-5291000dbc25" + "WESTUS:20150813T074733Z:b1fa50ab-724b-4ebf-8ad6-1f46da37fb9c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/literatu/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGl0ZXJhdHUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kaspersky_secure_mail_gateway/skus/ksg/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXMva3NnL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu/ArtifactTypes/VMImage/Offers/literatu\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.67\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kaspersky_secure_mail_gateway/Skus/ksg/Versions/1.0.67\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "234" + "283" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46589,7 +47056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d1e6832-11c7-4564-898d-833ffeaa35db" + "411aa2d8-1f69-47c2-94ed-05aea4e2c750" ], "Cache-Control": [ "no-cache" @@ -46599,34 +47066,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13145" + "14029" ], "x-ms-correlation-request-id": [ - "60d55148-bf1f-42d8-b72c-73068e9c9589" + "eb3b805d-9f6e-453d-9cf1-24bd1eb66056" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:60d55148-bf1f-42d8-b72c-73068e9c9589" + "WESTUS:20150813T074733Z:eb3b805d-9f6e-453d-9cf1-24bd1eb66056" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/literatu/artifacttypes/vmimage/offers/literatu/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGl0ZXJhdHUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9saXRlcmF0dS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kaspersky_secure_mail_gateway/skus/ksg/versions/1.0.67?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXMva3NnL3ZlcnNpb25zLzEuMC42Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lit-az-vir\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu/ArtifactTypes/VMImage/Offers/literatu/Skus/lit-az-vir\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaspersky_lab\",\r\n \"name\": \"ksg\",\r\n \"product\": \"kaspersky_secure_mail_gateway\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.67\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kaspersky_secure_mail_gateway/Skus/ksg/Versions/1.0.67\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "252" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46641,7 +47108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc2143ee-73ae-48f0-9e93-b8e942f5437e" + "dadc5caf-22ab-485d-a846-9099d7a3e93b" ], "Cache-Control": [ "no-cache" @@ -46651,31 +47118,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13144" + "14028" ], "x-ms-correlation-request-id": [ - "bd467648-1ed5-471f-b519-8f3e53a21631" + "da61f63c-f9e0-4b1b-a17a-02de882a7d29" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:bd467648-1ed5-471f-b519-8f3e53a21631" + "WESTUS:20150813T074733Z:da61f63c-f9e0-4b1b-a17a-02de882a7d29" ], "Date": [ - "Wed, 05 Aug 2015 21:25:56 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/literatu/artifacttypes/vmimage/offers/literatu/skus/lit-az-vir/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGl0ZXJhdHUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9saXRlcmF0dS9za3VzL2xpdC1hei12aXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_lfs/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3JfbGZzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu/ArtifactTypes/VMImage/Offers/literatu/Skus/lit-az-vir/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kav_for_lfs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_lfs/Skus/kav_for_lfs\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "262" @@ -46693,7 +47160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f10b339c-0329-4d01-8dde-18061a4f44d3" + "2644b89a-58d0-41d7-8ec5-8bf153e67b0c" ], "Cache-Control": [ "no-cache" @@ -46703,34 +47170,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13143" + "14027" ], "x-ms-correlation-request-id": [ - "7954afc7-2f13-4b38-a922-ca232d8be18e" + "754ddcaf-c048-4596-8147-ac66ed040881" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:7954afc7-2f13-4b38-a922-ca232d8be18e" + "WESTUS:20150813T074733Z:754ddcaf-c048-4596-8147-ac66ed040881" ], "Date": [ - "Wed, 05 Aug 2015 21:25:57 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/literatu/artifacttypes/vmimage/offers/literatu/skus/lit-az-vir/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGl0ZXJhdHUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9saXRlcmF0dS9za3VzL2xpdC1hei12aXIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_lfs/skus/kav_for_lfs/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3JfbGZzL3NrdXMva2F2X2Zvcl9sZnMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"literatu\",\r\n \"name\": \"lit-az-vir\",\r\n \"product\": \"literatu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu/ArtifactTypes/VMImage/Offers/literatu/Skus/lit-az-vir/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_lfs/Skus/kav_for_lfs/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "474" + "271" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46745,7 +47212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42ac840b-a8ba-42c3-9314-069a90de95b9" + "a178ef26-3701-4711-bb7c-10dd03a9886f" ], "Cache-Control": [ "no-cache" @@ -46755,34 +47222,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13142" + "14026" ], "x-ms-correlation-request-id": [ - "e799afbd-82d4-42da-9f47-15c6eff0ab82" + "70f1d056-24b0-4414-b775-28d10f5578f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:e799afbd-82d4-42da-9f47-15c6eff0ab82" + "WESTUS:20150813T074733Z:70f1d056-24b0-4414-b775-28d10f5578f4" ], "Date": [ - "Wed, 05 Aug 2015 21:25:57 GMT" + "Thu, 13 Aug 2015 07:47:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loadbalancer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9hZGJhbGFuY2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_lfs/skus/kav_for_lfs/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3JfbGZzL3NrdXMva2F2X2Zvcl9sZnMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer-org-load-balancer-for-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer/ArtifactTypes/VMImage/Offers/loadbalancer-org-load-balancer-for-azure\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaspersky_lab\",\r\n \"name\": \"kav_for_lfs\",\r\n \"product\": \"kav_for_lfs\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_lfs/Skus/kav_for_lfs/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "302" + "492" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46797,7 +47264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95a7b4b1-b837-40d6-8091-4a9f9d39bd5f" + "22c4dd6c-8d65-42bd-92a6-a16e0dd23345" ], "Cache-Control": [ "no-cache" @@ -46807,34 +47274,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13141" + "14025" ], "x-ms-correlation-request-id": [ - "1a740c31-e0aa-43ee-9684-bf9d63ad9137" + "21b08f0a-e972-445c-a630-103b9e7c2ff8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212557Z:1a740c31-e0aa-43ee-9684-bf9d63ad9137" + "WESTUS:20150813T074733Z:21b08f0a-e972-445c-a630-103b9e7c2ff8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:57 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loadbalancer/artifacttypes/vmimage/offers/loadbalancer-org-load-balancer-for-azure/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9hZGJhbGFuY2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9hZGJhbGFuY2VyLW9yZy1sb2FkLWJhbGFuY2VyLWZvci1henVyZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_wsee/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer_org_azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer/ArtifactTypes/VMImage/Offers/loadbalancer-org-load-balancer-for-azure/Skus/loadbalancer_org_azure\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kav_for_wsee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_wsee/Skus/kav_for_wsee\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "312" + "265" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46849,7 +47316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44ff6d74-05b4-49eb-894f-7526ce6ae403" + "e9778dbe-b718-4630-8ceb-c581839effe7" ], "Cache-Control": [ "no-cache" @@ -46859,34 +47326,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13140" + "14024" ], "x-ms-correlation-request-id": [ - "549a9ae1-366d-4c34-a97b-6b4b37073567" + "224d3a87-bb72-47d4-8bc3-ddcb75c9524f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212558Z:549a9ae1-366d-4c34-a97b-6b4b37073567" + "WESTUS:20150813T074733Z:224d3a87-bb72-47d4-8bc3-ddcb75c9524f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:57 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loadbalancer/artifacttypes/vmimage/offers/loadbalancer-org-load-balancer-for-azure/skus/loadbalancer_org_azure/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9hZGJhbGFuY2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9hZGJhbGFuY2VyLW9yZy1sb2FkLWJhbGFuY2VyLWZvci1henVyZS9za3VzL2xvYWRiYWxhbmNlcl9vcmdfYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_wsee/skus/kav_for_wsee/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzL2thdl9mb3Jfd3NlZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer/ArtifactTypes/VMImage/Offers/loadbalancer-org-load-balancer-for-azure/Skus/loadbalancer_org_azure/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_wsee/Skus/kav_for_wsee/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "310" + "273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46901,7 +47368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5100a59-9dca-40e5-bf3f-c2fc2e9ce4c4" + "67a6f1a4-03cc-481a-8e6c-dc2b64c2746c" ], "Cache-Control": [ "no-cache" @@ -46911,34 +47378,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13139" + "14023" ], "x-ms-correlation-request-id": [ - "06506d19-e707-40d4-99d8-b9ba00c395b7" + "50cbb522-4a4b-4608-bf66-88264c3c919f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212558Z:06506d19-e707-40d4-99d8-b9ba00c395b7" + "WESTUS:20150813T074733Z:50cbb522-4a4b-4608-bf66-88264c3c919f" ], "Date": [ - "Wed, 05 Aug 2015 21:25:57 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loadbalancer/artifacttypes/vmimage/offers/loadbalancer-org-load-balancer-for-azure/skus/loadbalancer_org_azure/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9hZGJhbGFuY2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9hZGJhbGFuY2VyLW9yZy1sb2FkLWJhbGFuY2VyLWZvci1henVyZS9za3VzL2xvYWRiYWxhbmNlcl9vcmdfYXp1cmUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kaspersky_lab/artifacttypes/vmimage/offers/kav_for_wsee/skus/kav_for_wsee/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzL2thdl9mb3Jfd3NlZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loadbalancer\",\r\n \"name\": \"loadbalancer_org_azure\",\r\n \"product\": \"loadbalancer-org-load-balancer-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer/ArtifactTypes/VMImage/Offers/loadbalancer-org-load-balancer-for-azure/Skus/loadbalancer_org_azure/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kaspersky_lab\",\r\n \"name\": \"kav_for_wsee\",\r\n \"product\": \"kav_for_wsee\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab/ArtifactTypes/VMImage/Offers/kav_for_wsee/Skus/kav_for_wsee/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "570" + "498" ], "Content-Type": [ "application/json; charset=utf-8" @@ -46953,7 +47420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "747ea6c0-c7f9-4824-8f88-7c82775a781c" + "b8aece06-f6aa-4c6b-bff1-113171a1ad3c" ], "Cache-Control": [ "no-cache" @@ -46963,34 +47430,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13138" + "14022" ], "x-ms-correlation-request-id": [ - "3367dcc0-fa9c-4cd3-b796-71b7af15f238" + "4507e7f3-9e1d-49a9-ae0b-89eafe1d1637" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212558Z:3367dcc0-fa9c-4cd3-b796-71b7af15f238" + "WESTUS:20150813T074733Z:4507e7f3-9e1d-49a9-ae0b-89eafe1d1637" ], "Date": [ - "Wed, 05 Aug 2015 21:25:57 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-info-11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-info-11\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-vision-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-vision-1_4-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1_4-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "756" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47005,7 +47472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a51f0a4-329f-429f-b28b-e4513fdad384" + "483c3d6b-a59b-4ae0-859b-de35f7a6aca6" ], "Cache-Control": [ "no-cache" @@ -47015,34 +47482,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13137" + "14021" ], "x-ms-correlation-request-id": [ - "ec97505d-f34f-4065-a848-d3627cbac2d9" + "223959a7-680b-44e0-84de-b73127f3f08c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212558Z:ec97505d-f34f-4065-a848-d3627cbac2d9" + "WESTUS:20150813T074734Z:223959a7-680b-44e0-84de-b73127f3f08c" ], "Date": [ - "Wed, 05 Aug 2015 21:25:57 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-info-11/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLWluZm8tMTEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-info-v11-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-info-11/Skus/logi-info-v11-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basic-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/basic-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-10g-hrl\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-10g-hrl\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-200-hrl\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-200-hrl\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-2000-hrl\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-2000-hrl\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vlm-5000-hrl\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-5000-hrl\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "278" + "1265" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47057,7 +47524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2f3225e-5392-41aa-a669-ba471f7b1543" + "89b5e3b7-fe89-4fde-9eaa-5e286e6b62ef" ], "Cache-Control": [ "no-cache" @@ -47067,34 +47534,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13136" + "14020" ], "x-ms-correlation-request-id": [ - "23dc33b6-205e-47e5-bc59-e1b7a476c3f7" + "0af29f57-9b51-4f2f-aa8d-bfdaa02c3a4a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212558Z:23dc33b6-205e-47e5-bc59-e1b7a476c3f7" + "WESTUS:20150813T074734Z:0af29f57-9b51-4f2f-aa8d-bfdaa02c3a4a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:57 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-info-11/skus/logi-info-v11-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLWluZm8tMTEvc2t1cy9sb2dpLWluZm8tdjExLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/basic-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy9iYXNpYy1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-info-11/Skus/logi-info-v11-byol/Versions/11.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/basic-byol/Versions/7.1.280053\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "282" + "273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47109,7 +47576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cdf28ab-ecd8-4eed-96a7-f97664648b54" + "04bc03d2-b5ee-4e7c-8c94-61e254dca670" ], "Cache-Control": [ "no-cache" @@ -47119,34 +47586,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13135" + "14019" ], "x-ms-correlation-request-id": [ - "0e230531-8cd8-41d4-8e10-6cfcab545fc1" + "a6f5667c-d586-43c9-9fab-e9ae22e322c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212558Z:0e230531-8cd8-41d4-8e10-6cfcab545fc1" + "WESTUS:20150813T074734Z:a6f5667c-d586-43c9-9fab-e9ae22e322c3" ], "Date": [ - "Wed, 05 Aug 2015 21:25:58 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-info-11/skus/logi-info-v11-byol/versions/11.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLWluZm8tMTEvc2t1cy9sb2dpLWluZm8tdjExLWJ5b2wvdmVyc2lvbnMvMTEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/basic-byol/versions/7.1.280053?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy9iYXNpYy1ieW9sL3ZlcnNpb25zLzcuMS4yODAwNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"logi-analytics\",\r\n \"name\": \"logi-info-v11-byol\",\r\n \"product\": \"logi-info-11\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-info-11/Skus/logi-info-v11-byol/Versions/11.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"basic-byol\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/basic-byol/Versions/7.1.280053\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "514" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47161,7 +47628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19809fb5-3026-4e97-9304-ccaf224c432e" + "e8d81b80-041a-4af9-8b65-f962adcd47cb" ], "Cache-Control": [ "no-cache" @@ -47171,34 +47638,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13134" + "14018" ], "x-ms-correlation-request-id": [ - "b324ee35-df3f-40c6-8a92-698e4d1a72a3" + "dfc7882e-c708-43c3-8bc8-15e530f5db17" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212558Z:b324ee35-df3f-40c6-8a92-698e4d1a72a3" + "WESTUS:20150813T074734Z:dfc7882e-c708-43c3-8bc8-15e530f5db17" ], "Date": [ - "Wed, 05 Aug 2015 21:25:58 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-10g-hrl/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMTBnLWhybC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-vision-hourly\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1/Skus/logi-vision-hourly\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-10g-hrl/Versions/7.1.280053\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "279" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47213,7 +47680,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ffb6e4e-4a9d-48a5-a716-e6769c9710ac" + "4f12ecd2-cabb-4614-913b-874bc4992280" ], "Cache-Control": [ "no-cache" @@ -47223,34 +47690,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13133" + "14017" ], "x-ms-correlation-request-id": [ - "9a90377e-9f17-40e9-9978-9da9cce62e1a" + "84819223-65ee-48da-80f3-83ed563dd05b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:9a90377e-9f17-40e9-9978-9da9cce62e1a" + "WESTUS:20150813T074734Z:84819223-65ee-48da-80f3-83ed563dd05b" ], "Date": [ - "Wed, 05 Aug 2015 21:25:58 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1/skus/logi-vision-hourly/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xL3NrdXMvbG9naS12aXNpb24taG91cmx5L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-10g-hrl/versions/7.1.280053?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMTBnLWhybC92ZXJzaW9ucy83LjEuMjgwMDUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1/Skus/logi-vision-hourly/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"vlm-10g-hrl\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-10g-hrl/Versions/7.1.280053\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "281" + "488" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47265,7 +47732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e69293bd-1f2c-4630-8ef5-8cd6a6e7b14c" + "202dcba3-6152-41db-a20b-b7f048d157c1" ], "Cache-Control": [ "no-cache" @@ -47275,34 +47742,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13132" + "14016" ], "x-ms-correlation-request-id": [ - "8a3fbddf-e2b9-4b31-80ed-8ba9dd0a2526" + "e71afed7-13e5-494b-b8da-c9f3748ef63a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:8a3fbddf-e2b9-4b31-80ed-8ba9dd0a2526" + "WESTUS:20150813T074734Z:e71afed7-13e5-494b-b8da-c9f3748ef63a" ], "Date": [ - "Wed, 05 Aug 2015 21:25:58 GMT" + "Thu, 13 Aug 2015 07:47:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1/skus/logi-vision-hourly/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xL3NrdXMvbG9naS12aXNpb24taG91cmx5L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-200-hrl/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMjAwLWhybC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"logi-analytics\",\r\n \"name\": \"logi-vision-hourly\",\r\n \"product\": \"logi-vision-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1/Skus/logi-vision-hourly/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-200-hrl/Versions/7.1.280053\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "514" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47317,7 +47784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17318982-93ed-4588-bedb-7e0c59866cd0" + "507b2444-0cdb-4af1-86bb-b65ee5a38b49" ], "Cache-Control": [ "no-cache" @@ -47327,34 +47794,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13131" + "14015" ], "x-ms-correlation-request-id": [ - "25aa1bda-2a01-43e3-a5c7-82c7222f2907" + "9552b132-6f74-4fe3-9bd8-78d0b478badc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:25aa1bda-2a01-43e3-a5c7-82c7222f2907" + "WESTUS:20150813T074734Z:9552b132-6f74-4fe3-9bd8-78d0b478badc" ], "Date": [ - "Wed, 05 Aug 2015 21:25:58 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1_4-byol/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xXzQtYnlvbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-200-hrl/versions/7.1.280053?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMjAwLWhybC92ZXJzaW9ucy83LjEuMjgwMDUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-vision-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1_4-byol/Skus/logi-vision-byol\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"vlm-200-hrl\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-200-hrl/Versions/7.1.280053\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "282" + "488" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47369,7 +47836,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2dcdfe30-1cf9-4d6e-990a-365fbbe752d1" + "b610a24f-3fde-4547-be75-aedb8bd38f70" ], "Cache-Control": [ "no-cache" @@ -47379,34 +47846,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13130" + "14014" ], "x-ms-correlation-request-id": [ - "9cd5f850-f90a-45a3-8d9b-6e1b723ec522" + "f287829b-2310-4356-ac55-a66cc4a62ce7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:9cd5f850-f90a-45a3-8d9b-6e1b723ec522" + "WESTUS:20150813T074734Z:f287829b-2310-4356-ac55-a66cc4a62ce7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:58 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1_4-byol/skus/logi-vision-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xXzQtYnlvbC9za3VzL2xvZ2ktdmlzaW9uLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-2000-hrl/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMjAwMC1ocmwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1_4-byol/Skus/logi-vision-byol/Versions/1.4.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-2000-hrl/Versions/7.1.280053\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "286" + "275" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47421,7 +47888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76d26fc2-8caa-4873-9b2d-c7c9ad7fef4c" + "b7bd0ad1-5d24-442c-8fe4-1f6b6a29ab3a" ], "Cache-Control": [ "no-cache" @@ -47431,34 +47898,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13129" + "14013" ], "x-ms-correlation-request-id": [ - "44cefb3e-f2d0-49f3-8516-890850d9aae2" + "bd8a4327-c24d-4a67-af4c-cba6b9a46eeb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:44cefb3e-f2d0-49f3-8516-890850d9aae2" + "WESTUS:20150813T074734Z:bd8a4327-c24d-4a67-af4c-cba6b9a46eeb" ], "Date": [ - "Wed, 05 Aug 2015 21:25:58 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1_4-byol/skus/logi-vision-byol/versions/1.4.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xXzQtYnlvbC9za3VzL2xvZ2ktdmlzaW9uLWJ5b2wvdmVyc2lvbnMvMS40LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-2000-hrl/versions/7.1.280053?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tMjAwMC1ocmwvdmVyc2lvbnMvNy4xLjI4MDA1Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"logi-analytics\",\r\n \"name\": \"logi-vision-byol\",\r\n \"product\": \"logi-vision-1_4-byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1_4-byol/Skus/logi-vision-byol/Versions/1.4.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"vlm-2000-hrl\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-2000-hrl/Versions/7.1.280053\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "524" + "490" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47473,7 +47940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c9d31ab-3ab5-43e0-9b34-1f7adf30c980" + "860095b4-7bf0-4950-96cb-25cf2889298a" ], "Cache-Control": [ "no-cache" @@ -47483,34 +47950,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13128" + "14012" ], "x-ms-correlation-request-id": [ - "9d9d44f0-63f1-4add-86ac-f37cf11a861f" + "c341d334-b6a4-458d-92fa-3af910b6f7d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:9d9d44f0-63f1-4add-86ac-f37cf11a861f" + "WESTUS:20150813T074734Z:c341d334-b6a4-458d-92fa-3af910b6f7d5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:58 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-5000-hrl/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tNTAwMC1ocmwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"digital-dna-authentication-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-5000-hrl/Versions/7.1.280053\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "287" + "275" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47525,7 +47992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64a5a97d-6aa7-4a61-9d19-db9afc32b0ee" + "5954fc25-04b6-4dbc-b5ef-e5e195819f8a" ], "Cache-Control": [ "no-cache" @@ -47535,34 +48002,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13127" + "14011" ], "x-ms-correlation-request-id": [ - "eb649262-1a1b-4061-8243-c77546039de1" + "bc43364f-28c6-430e-93a8-015a7ffc65e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:eb649262-1a1b-4061-8243-c77546039de1" + "WESTUS:20150813T074735Z:bc43364f-28c6-430e-93a8-015a7ffc65e5" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/kemptech/artifacttypes/vmimage/offers/vlm-azure/skus/vlm-5000-hrl/versions/7.1.280053?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2VtcHRlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92bG0tYXp1cmUvc2t1cy92bG0tNTAwMC1ocmwvdmVyc2lvbnMvNy4xLjI4MDA1Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise-plus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise-plus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"small-business\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"small-business-plus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business-plus\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"kemptech\",\r\n \"name\": \"vlm-5000-hrl\",\r\n \"product\": \"vlm-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.280053\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech/ArtifactTypes/VMImage/Offers/vlm-azure/Skus/vlm-5000-hrl/Versions/7.1.280053\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1147" + "490" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47577,7 +48044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f846cb2-3792-4e7b-b1cd-118f9e6514bb" + "60c1939d-207c-4d75-93e8-fce69bd768af" ], "Cache-Control": [ "no-cache" @@ -47587,34 +48054,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13126" + "14010" ], "x-ms-correlation-request-id": [ - "f511e863-7d49-40c8-9e9c-94e91dd52403" + "4ef67c29-bd82-4e96-9e70-738810ee25d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:f511e863-7d49-40c8-9e9c-94e91dd52403" + "WESTUS:20150813T074735Z:4ef67c29-bd82-4e96-9e70-738810ee25d8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9lbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/le/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise/Versions/5.8.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logentries-datahub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le/ArtifactTypes/VMImage/Offers/logentries-datahub\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "290" + "248" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47629,7 +48096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c23861e-2b3d-4cf5-a891-e5fcb6cb523c" + "f85660e1-9e67-4682-86bf-f552e53d688b" ], "Cache-Control": [ "no-cache" @@ -47639,34 +48106,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13125" + "14009" ], "x-ms-correlation-request-id": [ - "e3d34c2b-d32b-43ee-9de4-0c6acb69df85" + "165c148f-5b07-4ee0-805f-8aa9b64e5db1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212559Z:e3d34c2b-d32b-43ee-9de4-0c6acb69df85" + "WESTUS:20150813T074735Z:165c148f-5b07-4ee0-805f-8aa9b64e5db1" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/enterprise/versions/5.8.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9lbnRlcnByaXNlL3ZlcnNpb25zLzUuOC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/le/artifacttypes/vmimage/offers/logentries-datahub/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dlbnRyaWVzLWRhdGFodWIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loginpeople\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"digital-dna-authentication-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise/Versions/5.8.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azuredh\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le/ArtifactTypes/VMImage/Offers/logentries-datahub/Skus/azuredh\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "530" + "250" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47681,7 +48148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "618c2c06-3ae0-47b3-87cf-1db614e9fcd9" + "28deaa26-e13a-4019-b94b-5f466e65ce45" ], "Cache-Control": [ "no-cache" @@ -47691,34 +48158,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13124" + "14008" ], "x-ms-correlation-request-id": [ - "ddee3265-4996-40b0-a2a0-372850fbba20" + "7ac4df38-cb1a-449a-9f52-27aaab942eea" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:ddee3265-4996-40b0-a2a0-372850fbba20" + "WESTUS:20150813T074735Z:7ac4df38-cb1a-449a-9f52-27aaab942eea" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/enterprise-plus/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9lbnRlcnByaXNlLXBsdXMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/le/artifacttypes/vmimage/offers/logentries-datahub/skus/azuredh/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dlbnRyaWVzLWRhdGFodWIvc2t1cy9henVyZWRoL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise-plus/Versions/5.8.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le/ArtifactTypes/VMImage/Offers/logentries-datahub/Skus/azuredh/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "295" + "263" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47733,7 +48200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1dc805c7-fcec-4b31-9734-66006cc7ca96" + "d5c1d1cf-ec49-427d-ab18-41224f473c65" ], "Cache-Control": [ "no-cache" @@ -47743,34 +48210,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13123" + "14007" ], "x-ms-correlation-request-id": [ - "d7fe8c16-a5ba-4cea-90ae-db57a5dbb417" + "85a95cad-deaf-47c6-b23a-4fab352d8577" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:d7fe8c16-a5ba-4cea-90ae-db57a5dbb417" + "WESTUS:20150813T074735Z:85a95cad-deaf-47c6-b23a-4fab352d8577" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/enterprise-plus/versions/5.8.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9lbnRlcnByaXNlLXBsdXMvdmVyc2lvbnMvNS44LjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/le/artifacttypes/vmimage/offers/logentries-datahub/skus/azuredh/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dlbnRyaWVzLWRhdGFodWIvc2t1cy9henVyZWRoL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loginpeople\",\r\n \"name\": \"enterprise-plus\",\r\n \"product\": \"digital-dna-authentication-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise-plus/Versions/5.8.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"le\",\r\n \"name\": \"azuredh\",\r\n \"product\": \"logentries-datahub\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le/ArtifactTypes/VMImage/Offers/logentries-datahub/Skus/azuredh/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "478" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47785,7 +48252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f98683d-521f-4500-abbc-3d883c56a891" + "5d5fb6b5-773b-4f10-acaf-0832c2311f25" ], "Cache-Control": [ "no-cache" @@ -47795,34 +48262,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13122" + "14006" ], "x-ms-correlation-request-id": [ - "f0cd0d69-1d3b-4072-9fcc-7812f85fb18d" + "d79c4049-2d4b-4fea-84f5-86051b3c73f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:f0cd0d69-1d3b-4072-9fcc-7812f85fb18d" + "WESTUS:20150813T074735Z:d79c4049-2d4b-4fea-84f5-86051b3c73f8" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/small-business/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9zbWFsbC1idXNpbmVzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/lieberlieber/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYmVybGllYmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business/Versions/5.8.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber-web-collaborator\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "294" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47837,7 +48304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6eabecbf-5c27-4136-a3fc-87bfc80879b2" + "2aaa34f4-55da-461c-9666-3b390b52773e" ], "Cache-Control": [ "no-cache" @@ -47847,34 +48314,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13121" + "14005" ], "x-ms-correlation-request-id": [ - "fbfde45e-3db3-45ab-935b-39eadcf28c5b" + "a08b8ee1-8876-493d-9920-77421d38ee9e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:fbfde45e-3db3-45ab-935b-39eadcf28c5b" + "WESTUS:20150813T074735Z:a08b8ee1-8876-493d-9920-77421d38ee9e" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/small-business/versions/5.8.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9zbWFsbC1idXNpbmVzcy92ZXJzaW9ucy81LjguMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/lieberlieber/artifacttypes/vmimage/offers/lieberlieber-web-collaborator/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYmVybGllYmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbGllYmVybGllYmVyLXdlYi1jb2xsYWJvcmF0b3Ivc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loginpeople\",\r\n \"name\": \"small-business\",\r\n \"product\": \"digital-dna-authentication-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business/Versions/5.8.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"llweb4ea01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator/Skus/llweb4ea01\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "538" + "277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47889,7 +48356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3533d67-6717-41f8-9b52-04e1663d6bb4" + "19145f2d-25f3-4391-9747-2a4889dcbc9e" ], "Cache-Control": [ "no-cache" @@ -47899,34 +48366,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13120" + "14004" ], "x-ms-correlation-request-id": [ - "e9e6bc04-5806-4214-80e4-8fbdbd4a34b6" + "c68ebd48-6dd2-4352-aa2a-441971881293" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:e9e6bc04-5806-4214-80e4-8fbdbd4a34b6" + "WESTUS:20150813T074735Z:c68ebd48-6dd2-4352-aa2a-441971881293" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/small-business-plus/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9zbWFsbC1idXNpbmVzcy1wbHVzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/lieberlieber/artifacttypes/vmimage/offers/lieberlieber-web-collaborator/skus/llweb4ea01/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYmVybGllYmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbGllYmVybGllYmVyLXdlYi1jb2xsYWJvcmF0b3Ivc2t1cy9sbHdlYjRlYTAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business-plus/Versions/5.8.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator/Skus/llweb4ea01/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "299" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47941,7 +48408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e00daba-c32b-448c-8bfe-3bd46e177114" + "af60fd9f-d546-427a-8b2e-b2b5062fbe47" ], "Cache-Control": [ "no-cache" @@ -47951,34 +48418,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13119" + "14003" ], "x-ms-correlation-request-id": [ - "ab0eb141-a487-4448-97d0-06294f787116" + "7d7c361d-a2ee-4138-b843-1ad5572bbae7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:ab0eb141-a487-4448-97d0-06294f787116" + "WESTUS:20150813T074735Z:7d7c361d-a2ee-4138-b843-1ad5572bbae7" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/small-business-plus/versions/5.8.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9zbWFsbC1idXNpbmVzcy1wbHVzL3ZlcnNpb25zLzUuOC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/lieberlieber/artifacttypes/vmimage/offers/lieberlieber-web-collaborator/skus/llweb4ea01/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYmVybGllYmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbGllYmVybGllYmVyLXdlYi1jb2xsYWJvcmF0b3Ivc2t1cy9sbHdlYjRlYTAxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loginpeople\",\r\n \"name\": \"small-business-plus\",\r\n \"product\": \"digital-dna-authentication-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business-plus/Versions/5.8.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"lieberlieber\",\r\n \"name\": \"llweb4ea01\",\r\n \"product\": \"lieberlieber-web-collaborator\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator/Skus/llweb4ea01/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "548" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -47993,7 +48460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d019cf59-a4f6-4b1e-af43-240fcf6cc238" + "5be95e19-a402-4018-baa7-5ef7222ea7fc" ], "Cache-Control": [ "no-cache" @@ -48003,34 +48470,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13118" + "14002" ], "x-ms-correlation-request-id": [ - "643eb344-4a59-4a2e-a483-f53624e1166b" + "febbb8ba-0ef6-489d-99f1-a6c586ebb8ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:643eb344-4a59-4a2e-a483-f53624e1166b" + "WESTUS:20150813T074735Z:febbb8ba-0ef6-489d-99f1-a6c586ebb8ba" ], "Date": [ - "Wed, 05 Aug 2015 21:25:59 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logtrust/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9ndHJ1c3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/liebsoft/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYnNvZnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust-log-management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise_random_password_manager\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft/ArtifactTypes/VMImage/Offers/enterprise_random_password_manager\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "264" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48045,7 +48512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2883ada-0b3b-4874-aabd-485919014196" + "d2de7e62-1bc0-4bbd-a2c8-e2bf921041e7" ], "Cache-Control": [ "no-cache" @@ -48055,34 +48522,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13117" + "14001" ], "x-ms-correlation-request-id": [ - "959ca117-5d56-4114-aa8b-6480a70f04f3" + "94d50228-e53d-4063-a116-de5c4e216d83" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:959ca117-5d56-4114-aa8b-6480a70f04f3" + "WESTUS:20150813T074736Z:94d50228-e53d-4063-a116-de5c4e216d83" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logtrust/artifacttypes/vmimage/offers/logtrust-log-management/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9ndHJ1c3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2d0cnVzdC1sb2ctbWFuYWdlbWVudC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/liebsoft/artifacttypes/vmimage/offers/enterprise_random_password_manager/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYnNvZnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbnRlcnByaXNlX3JhbmRvbV9wYXNzd29yZF9tYW5hZ2VyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lmrelay\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management/Skus/lmrelay\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"erpm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft/ArtifactTypes/VMImage/Offers/enterprise_random_password_manager/Skus/erpm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "261" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48097,7 +48564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f75a00a3-d8e8-414c-99bb-68a6826f8c6f" + "51cab957-d478-49aa-9571-c0698ff681a2" ], "Cache-Control": [ "no-cache" @@ -48107,34 +48574,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13116" + "14000" ], "x-ms-correlation-request-id": [ - "f9f88263-d85d-4fc5-9262-b6a76b86eb10" + "41be2048-97d1-4876-9862-508d5f5bc4ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212600Z:f9f88263-d85d-4fc5-9262-b6a76b86eb10" + "WESTUS:20150813T074736Z:41be2048-97d1-4876-9862-508d5f5bc4ff" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logtrust/artifacttypes/vmimage/offers/logtrust-log-management/skus/lmrelay/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9ndHJ1c3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2d0cnVzdC1sb2ctbWFuYWdlbWVudC9za3VzL2xtcmVsYXkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/liebsoft/artifacttypes/vmimage/offers/enterprise_random_password_manager/skus/erpm/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYnNvZnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbnRlcnByaXNlX3JhbmRvbV9wYXNzd29yZF9tYW5hZ2VyL3NrdXMvZXJwbS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management/Skus/lmrelay/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.83.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft/ArtifactTypes/VMImage/Offers/enterprise_random_password_manager/Skus/erpm/Versions/4.83.8\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "274" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48149,7 +48616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5ce191f-a4c1-4fc7-a745-c1bee6f23551" + "e9c9b756-9bd5-4e27-a3d1-34dc815f5f39" ], "Cache-Control": [ "no-cache" @@ -48159,34 +48626,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13115" + "13999" ], "x-ms-correlation-request-id": [ - "7d227bee-4009-4d5f-af5b-b4bc66a861eb" + "365e4922-71fa-44ed-9220-a3076a0e8b7a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:7d227bee-4009-4d5f-af5b-b4bc66a861eb" + "WESTUS:20150813T074736Z:365e4922-71fa-44ed-9220-a3076a0e8b7a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/logtrust/artifacttypes/vmimage/offers/logtrust-log-management/skus/lmrelay/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9ndHJ1c3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2d0cnVzdC1sb2ctbWFuYWdlbWVudC9za3VzL2xtcmVsYXkvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/liebsoft/artifacttypes/vmimage/offers/enterprise_random_password_manager/skus/erpm/versions/4.83.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGllYnNvZnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9lbnRlcnByaXNlX3JhbmRvbV9wYXNzd29yZF9tYW5hZ2VyL3NrdXMvZXJwbS92ZXJzaW9ucy80LjgzLjg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"logtrust\",\r\n \"name\": \"lmrelay\",\r\n \"product\": \"logtrust-log-management\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management/Skus/lmrelay/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"liebsoft\",\r\n \"name\": \"erpm\",\r\n \"product\": \"enterprise_random_password_manager\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.83.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft/ArtifactTypes/VMImage/Offers/enterprise_random_password_manager/Skus/erpm/Versions/4.83.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "498" + "518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48201,7 +48668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "527596da-7325-4eaa-817b-be9cb938f549" + "6d73150c-22ed-4f77-8f97-31a26e52a9de" ], "Cache-Control": [ "no-cache" @@ -48211,34 +48678,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13114" + "13998" ], "x-ms-correlation-request-id": [ - "4a895fdd-0107-4d20-8ca4-03a71b083522" + "ccb8701e-87cd-4da7-9ca9-99de20b0e511" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:4a895fdd-0107-4d20-8ca4-03a71b083522" + "WESTUS:20150813T074736Z:ccb8701e-87cd-4da7-9ca9-99de20b0e511" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/looker/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9va2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/literatu/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGl0ZXJhdHUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker-analytics-platform\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu/ArtifactTypes/VMImage/Offers/literatu\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "266" + "234" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48253,7 +48720,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b7ecaf0-d3fd-46e1-98ba-c1ec69a3800e" + "801f3d9c-1e6e-48c0-bbc3-b005d2206687" ], "Cache-Control": [ "no-cache" @@ -48263,34 +48730,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13113" + "13997" ], "x-ms-correlation-request-id": [ - "4c24fe5b-8be7-443c-bdc1-76d3ccd61e46" + "121ffaaf-37af-4fc9-8705-91be5db33f90" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:4c24fe5b-8be7-443c-bdc1-76d3ccd61e46" + "WESTUS:20150813T074736Z:121ffaaf-37af-4fc9-8705-91be5db33f90" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/looker/artifacttypes/vmimage/offers/looker-analytics-platform/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9va2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9va2VyLWFuYWx5dGljcy1wbGF0Zm9ybS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/literatu/artifacttypes/vmimage/offers/literatu/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGl0ZXJhdHUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9saXRlcmF0dS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker-analytics-platform-sqldb-10users\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform/Skus/looker-analytics-platform-sqldb-10users\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lit-az-vir\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu/ArtifactTypes/VMImage/Offers/literatu/Skus/lit-az-vir\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "325" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48305,7 +48772,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b38d25d2-24a9-46fa-ae26-12758c3f8eda" + "6aaa9dbd-6298-49e0-b9ea-21a902c37217" ], "Cache-Control": [ "no-cache" @@ -48315,34 +48782,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13112" + "13996" ], "x-ms-correlation-request-id": [ - "bae55c5e-6d3b-4096-b0c2-73244db0a174" + "8c404d77-2dce-437c-bb4c-15ef10d660d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:bae55c5e-6d3b-4096-b0c2-73244db0a174" + "WESTUS:20150813T074736Z:8c404d77-2dce-437c-bb4c-15ef10d660d4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/looker/artifacttypes/vmimage/offers/looker-analytics-platform/skus/looker-analytics-platform-sqldb-10users/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9va2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9va2VyLWFuYWx5dGljcy1wbGF0Zm9ybS9za3VzL2xvb2tlci1hbmFseXRpY3MtcGxhdGZvcm0tc3FsZGItMTB1c2Vycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/literatu/artifacttypes/vmimage/offers/literatu/skus/lit-az-vir/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGl0ZXJhdHUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9saXRlcmF0dS9za3VzL2xpdC1hei12aXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform/Skus/looker-analytics-platform-sqldb-10users/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu/ArtifactTypes/VMImage/Offers/literatu/Skus/lit-az-vir/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "306" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48357,7 +48824,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a71bf3c-cb42-4748-857f-e40b07a5cd14" + "272e0224-45d5-48ba-9286-e236d9342a8e" ], "Cache-Control": [ "no-cache" @@ -48367,34 +48834,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13111" + "13995" ], "x-ms-correlation-request-id": [ - "9907ac7b-eeb4-437d-ad49-75e60e9f4ea0" + "54d9b081-592a-4e77-b8ab-10f1248231f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:9907ac7b-eeb4-437d-ad49-75e60e9f4ea0" + "WESTUS:20150813T074736Z:54d9b081-592a-4e77-b8ab-10f1248231f0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/looker/artifacttypes/vmimage/offers/looker-analytics-platform/skus/looker-analytics-platform-sqldb-10users/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9va2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9va2VyLWFuYWx5dGljcy1wbGF0Zm9ybS9za3VzL2xvb2tlci1hbmFseXRpY3MtcGxhdGZvcm0tc3FsZGItMTB1c2Vycy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/literatu/artifacttypes/vmimage/offers/literatu/skus/lit-az-vir/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbGl0ZXJhdHUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9saXRlcmF0dS9za3VzL2xpdC1hei12aXIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"looker\",\r\n \"name\": \"looker-analytics-platform-sqldb-10users\",\r\n \"product\": \"looker-analytics-platform\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform/Skus/looker-analytics-platform-sqldb-10users/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"literatu\",\r\n \"name\": \"lit-az-vir\",\r\n \"product\": \"literatu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu/ArtifactTypes/VMImage/Offers/literatu/Skus/lit-az-vir/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "562" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48409,7 +48876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab206977-3329-46af-b58e-a2a025b83a86" + "bfd5032a-8b6f-4048-940b-eababda84264" ], "Cache-Control": [ "no-cache" @@ -48419,34 +48886,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13110" + "13994" ], "x-ms-correlation-request-id": [ - "2f3c2afc-daa9-4615-a6d6-09972c18de58" + "78c1eaae-b676-4f54-b163-79e0b8ff4449" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:2f3c2afc-daa9-4615-a6d6-09972c18de58" + "WESTUS:20150813T074736Z:78c1eaae-b676-4f54-b163-79e0b8ff4449" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/magelia/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFnZWxpYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loadbalancer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9hZGJhbGFuY2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia-webstore-professional\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer-org-load-balancer-for-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer/ArtifactTypes/VMImage/Offers/loadbalancer-org-load-balancer-for-azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "275" + "302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48461,7 +48928,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "add775bf-f99e-4652-a62f-99dfaca978e2" + "b1ab34d0-1292-4714-937b-d31fd29d270b" ], "Cache-Control": [ "no-cache" @@ -48471,34 +48938,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13109" + "13993" ], "x-ms-correlation-request-id": [ - "1aa59768-e0be-408c-bc30-cf8e5ebb0604" + "646bbe26-5744-4d0b-b265-533b7b3cd2c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:1aa59768-e0be-408c-bc30-cf8e5ebb0604" + "WESTUS:20150813T074737Z:646bbe26-5744-4d0b-b265-533b7b3cd2c6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:00 GMT" + "Thu, 13 Aug 2015 07:47:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/magelia/artifacttypes/vmimage/offers/magelia-webstore-professional/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFnZWxpYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VsaWEtd2Vic3RvcmUtcHJvZmVzc2lvbmFsL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loadbalancer/artifacttypes/vmimage/offers/loadbalancer-org-load-balancer-for-azure/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9hZGJhbGFuY2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9hZGJhbGFuY2VyLW9yZy1sb2FkLWJhbGFuY2VyLWZvci1henVyZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia-webstore-professional-edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional/Skus/magelia-webstore-professional-edition\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer_org_azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer/ArtifactTypes/VMImage/Offers/loadbalancer-org-load-balancer-for-azure/Skus/loadbalancer_org_azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "326" + "312" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48513,7 +48980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "773f9659-59c7-46df-bf94-1086cd921f9b" + "0ee0cedc-5579-46c3-a3ec-ad37501174c4" ], "Cache-Control": [ "no-cache" @@ -48523,34 +48990,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13108" + "13992" ], "x-ms-correlation-request-id": [ - "4ce45975-c5ed-4e5d-aa66-b7453b68754b" + "54c3d8d3-1ae4-4727-a84d-30005fc1b2f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:4ce45975-c5ed-4e5d-aa66-b7453b68754b" + "WESTUS:20150813T074737Z:54c3d8d3-1ae4-4727-a84d-30005fc1b2f4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/magelia/artifacttypes/vmimage/offers/magelia-webstore-professional/skus/magelia-webstore-professional-edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFnZWxpYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VsaWEtd2Vic3RvcmUtcHJvZmVzc2lvbmFsL3NrdXMvbWFnZWxpYS13ZWJzdG9yZS1wcm9mZXNzaW9uYWwtZWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loadbalancer/artifacttypes/vmimage/offers/loadbalancer-org-load-balancer-for-azure/skus/loadbalancer_org_azure/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9hZGJhbGFuY2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9hZGJhbGFuY2VyLW9yZy1sb2FkLWJhbGFuY2VyLWZvci1henVyZS9za3VzL2xvYWRiYWxhbmNlcl9vcmdfYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional/Skus/magelia-webstore-professional-edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer/ArtifactTypes/VMImage/Offers/loadbalancer-org-load-balancer-for-azure/Skus/loadbalancer_org_azure/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "309" + "310" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48565,7 +49032,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4ac90ab-0e5a-4034-a512-c2ae85f1cdba" + "445c3820-99f5-4ca4-bd80-723e9efdd345" ], "Cache-Control": [ "no-cache" @@ -48575,31 +49042,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13107" + "13991" ], "x-ms-correlation-request-id": [ - "61f29e63-c4f2-4ca9-b186-cb68438eaa6c" + "c22d4e4a-ab50-4311-8b81-d40d9a821f73" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:61f29e63-c4f2-4ca9-b186-cb68438eaa6c" + "WESTUS:20150813T074737Z:c22d4e4a-ab50-4311-8b81-d40d9a821f73" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/magelia/artifacttypes/vmimage/offers/magelia-webstore-professional/skus/magelia-webstore-professional-edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFnZWxpYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VsaWEtd2Vic3RvcmUtcHJvZmVzc2lvbmFsL3NrdXMvbWFnZWxpYS13ZWJzdG9yZS1wcm9mZXNzaW9uYWwtZWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loadbalancer/artifacttypes/vmimage/offers/loadbalancer-org-load-balancer-for-azure/skus/loadbalancer_org_azure/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9hZGJhbGFuY2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9hZGJhbGFuY2VyLW9yZy1sb2FkLWJhbGFuY2VyLWZvci1henVyZS9za3VzL2xvYWRiYWxhbmNlcl9vcmdfYXp1cmUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"magelia\",\r\n \"name\": \"magelia-webstore-professional-edition\",\r\n \"product\": \"magelia-webstore-professional\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional/Skus/magelia-webstore-professional-edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loadbalancer\",\r\n \"name\": \"loadbalancer_org_azure\",\r\n \"product\": \"loadbalancer-org-load-balancer-for-azure\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer/ArtifactTypes/VMImage/Offers/loadbalancer-org-load-balancer-for-azure/Skus/loadbalancer_org_azure/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "570" @@ -48617,7 +49084,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa3de8d8-17eb-4909-abfd-a4ae9389ca60" + "0886994f-12f4-4082-a878-2d9d5529e2c8" ], "Cache-Control": [ "no-cache" @@ -48627,34 +49094,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13106" + "13990" ], "x-ms-correlation-request-id": [ - "36a212d0-dda4-41f0-8694-15b55f81efad" + "fada3e67-6834-4919-8a9d-98d831bc7074" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212601Z:36a212d0-dda4-41f0-8694-15b55f81efad" + "WESTUS:20150813T074737Z:fada3e67-6834-4919-8a9d-98d831bc7074" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/massiveanalytic-/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFzc2l2ZWFuYWx5dGljLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oscarap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-/ArtifactTypes/VMImage/Offers/oscarap\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-info-11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-info-11\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-vision-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-vision-1_4-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1_4-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "240" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48669,7 +49136,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40a98886-05e4-49dc-aee0-d221c87edcc2" + "ac0803e6-ce80-4652-8c3b-d1ad5905a1c7" ], "Cache-Control": [ "no-cache" @@ -48679,34 +49146,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13105" + "13989" ], "x-ms-correlation-request-id": [ - "bf3efc0c-a8db-4a90-83f9-0fa6d98ba742" + "e39d34c4-70eb-453d-8b46-37282d62df1e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:bf3efc0c-a8db-4a90-83f9-0fa6d98ba742" + "WESTUS:20150813T074737Z:e39d34c4-70eb-453d-8b46-37282d62df1e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/massiveanalytic-/artifacttypes/vmimage/offers/oscarap/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFzc2l2ZWFuYWx5dGljLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29zY2FyYXAvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-info-11/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLWluZm8tMTEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oscarap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-/ArtifactTypes/VMImage/Offers/oscarap/Skus/oscarap\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-info-v11-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-info-11/Skus/logi-info-v11-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "253" + "278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48721,7 +49188,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ffab091-8d63-4bac-bd82-469cdff29920" + "3f05958a-3571-4937-9d29-2787cdb6e124" ], "Cache-Control": [ "no-cache" @@ -48731,34 +49198,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13104" + "13988" ], "x-ms-correlation-request-id": [ - "0e896673-8023-47bb-bcfd-d54ddd80d9dc" + "97fc6c72-7022-47fd-8142-43c7d0ae07b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:0e896673-8023-47bb-bcfd-d54ddd80d9dc" + "WESTUS:20150813T074737Z:97fc6c72-7022-47fd-8142-43c7d0ae07b0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/massiveanalytic-/artifacttypes/vmimage/offers/oscarap/skus/oscarap/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFzc2l2ZWFuYWx5dGljLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29zY2FyYXAvc2t1cy9vc2NhcmFwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-info-11/skus/logi-info-v11-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLWluZm8tMTEvc2t1cy9sb2dpLWluZm8tdjExLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.6.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-/ArtifactTypes/VMImage/Offers/oscarap/Skus/oscarap/Versions/0.6.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-info-11/Skus/logi-info-v11-byol/Versions/11.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "266" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48773,7 +49240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56741cd6-abff-4890-8b43-50dbbf283815" + "61b1080d-711b-4915-acb4-8c5c4ab78781" ], "Cache-Control": [ "no-cache" @@ -48783,34 +49250,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13103" + "13987" ], "x-ms-correlation-request-id": [ - "3f3f8ac2-3519-448a-ab22-9c5fd16633ef" + "3ff4d46a-9faa-4ddd-bc16-7a8cac3c2b7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:3f3f8ac2-3519-448a-ab22-9c5fd16633ef" + "WESTUS:20150813T074737Z:3ff4d46a-9faa-4ddd-bc16-7a8cac3c2b7b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/massiveanalytic-/artifacttypes/vmimage/offers/oscarap/skus/oscarap/versions/0.6.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFzc2l2ZWFuYWx5dGljLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29zY2FyYXAvc2t1cy9vc2NhcmFwL3ZlcnNpb25zLzAuNi4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-info-11/skus/logi-info-v11-byol/versions/11.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLWluZm8tMTEvc2t1cy9sb2dpLWluZm8tdjExLWJ5b2wvdmVyc2lvbnMvMTEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"massiveanalytic-\",\r\n \"name\": \"oscarap\",\r\n \"product\": \"oscarap\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.6.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-/ArtifactTypes/VMImage/Offers/oscarap/Skus/oscarap/Versions/0.6.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"logi-analytics\",\r\n \"name\": \"logi-info-v11-byol\",\r\n \"product\": \"logi-info-11\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-info-11/Skus/logi-info-v11-byol/Versions/11.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "482" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48825,7 +49292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc869fc3-0b94-44ba-ae8a-073f4dc28345" + "f442fde6-d92e-4505-b1f4-77ce0ceb2df5" ], "Cache-Control": [ "no-cache" @@ -48835,34 +49302,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13102" + "13986" ], "x-ms-correlation-request-id": [ - "55612ca0-99ed-44e5-a5e9-ac17b3d6900a" + "72e292b9-cb75-4cca-9d19-25988262cacd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:55612ca0-99ed-44e5-a5e9-ac17b3d6900a" + "WESTUS:20150813T074738Z:72e292b9-cb75-4cca-9d19-25988262cacd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/McAfee.EndpointSecurity/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWNBZmVlLkVuZHBvaW50U2VjdXJpdHkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-vision-hourly\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1/Skus/logi-vision-hourly\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "279" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48877,7 +49344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "adb37a04-c7a9-45f6-a24c-38640ea526c5" + "9ce0f305-bb47-4958-8ae5-d65f7ae6e074" ], "Cache-Control": [ "no-cache" @@ -48887,34 +49354,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13101" + "13985" ], "x-ms-correlation-request-id": [ - "f4f24272-9f81-4e56-83b2-744a580f7f12" + "3b2dd32e-ba6b-4531-8c69-67aa3556d017" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:f4f24272-9f81-4e56-83b2-744a580f7f12" + "WESTUS:20150813T074738Z:3b2dd32e-ba6b-4531-8c69-67aa3556d017" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/McAfee.EndpointSecurity.test3/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWNBZmVlLkVuZHBvaW50U2VjdXJpdHkudGVzdDMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1/skus/logi-vision-hourly/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xL3NrdXMvbG9naS12aXNpb24taG91cmx5L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1/Skus/logi-vision-hourly/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48929,7 +49396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe713a03-0fe4-4894-a7bf-2cc5dc53e5ae" + "e96d95fc-6e04-46a0-a024-9bd92e8bd14c" ], "Cache-Control": [ "no-cache" @@ -48939,34 +49406,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13100" + "13984" ], "x-ms-correlation-request-id": [ - "62c354fc-ff1a-4149-b5f1-6b85f86eaa93" + "7a42b0a4-81d9-466c-89b1-b58c96407a28" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:62c354fc-ff1a-4149-b5f1-6b85f86eaa93" + "WESTUS:20150813T074738Z:7a42b0a4-81d9-466c-89b1-b58c96407a28" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/meanio/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVhbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1/skus/logi-vision-hourly/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xL3NrdXMvbG9naS12aXNpb24taG91cmx5L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio-050-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio/ArtifactTypes/VMImage/Offers/meanio-050-vm\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"logi-analytics\",\r\n \"name\": \"logi-vision-hourly\",\r\n \"product\": \"logi-vision-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1/Skus/logi-vision-hourly/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "242" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -48981,7 +49448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd757c75-4160-448b-9d78-4bf7eab13567" + "d6eb0292-9b52-4b3a-9063-554cd42ff806" ], "Cache-Control": [ "no-cache" @@ -48991,34 +49458,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13099" + "13983" ], "x-ms-correlation-request-id": [ - "5e11a939-0e5d-4e44-95cb-400a713cce41" + "2894bfc1-e927-4ed6-adc9-b4cc773b90da" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:5e11a939-0e5d-4e44-95cb-400a713cce41" + "WESTUS:20150813T074738Z:2894bfc1-e927-4ed6-adc9-b4cc773b90da" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/meanio/artifacttypes/vmimage/offers/meanio-050-vm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVhbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVhbmlvLTA1MC12bS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1_4-byol/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xXzQtYnlvbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio-050-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio/ArtifactTypes/VMImage/Offers/meanio-050-vm/Skus/meanio-050-vm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-vision-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1_4-byol/Skus/logi-vision-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "261" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49033,7 +49500,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "103e884d-2136-49f5-8feb-8b0b117caf41" + "bc7874b3-ae85-4cb2-8869-f4238016eb70" ], "Cache-Control": [ "no-cache" @@ -49043,34 +49510,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13098" + "13982" ], "x-ms-correlation-request-id": [ - "daa05731-b98f-416c-b910-25b57a771b85" + "1070f6b0-84b6-493a-9618-66a782f8b4ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:daa05731-b98f-416c-b910-25b57a771b85" + "WESTUS:20150813T074738Z:1070f6b0-84b6-493a-9618-66a782f8b4ee" ], "Date": [ - "Wed, 05 Aug 2015 21:26:01 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/meanio/artifacttypes/vmimage/offers/meanio-050-vm/skus/meanio-050-vm/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVhbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVhbmlvLTA1MC12bS9za3VzL21lYW5pby0wNTAtdm0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1_4-byol/skus/logi-vision-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xXzQtYnlvbC9za3VzL2xvZ2ktdmlzaW9uLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.5.01\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio/ArtifactTypes/VMImage/Offers/meanio-050-vm/Skus/meanio-050-vm/Versions/0.5.01\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1_4-byol/Skus/logi-vision-byol/Versions/1.4.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "270" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49085,7 +49552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5c9346d-e831-4f6b-9cb2-8d61421e7b84" + "2090f314-59a4-4acb-a26f-86d672e310c5" ], "Cache-Control": [ "no-cache" @@ -49095,34 +49562,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13097" + "13981" ], "x-ms-correlation-request-id": [ - "2debb483-21fc-4c77-9825-21f9576cb572" + "2be9c4dc-5a49-435f-9db0-169e2bd5385c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:2debb483-21fc-4c77-9825-21f9576cb572" + "WESTUS:20150813T074738Z:2be9c4dc-5a49-435f-9db0-169e2bd5385c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/meanio/artifacttypes/vmimage/offers/meanio-050-vm/skus/meanio-050-vm/versions/0.5.01?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVhbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVhbmlvLTA1MC12bS9za3VzL21lYW5pby0wNTAtdm0vdmVyc2lvbnMvMC41LjAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logi-analytics/artifacttypes/vmimage/offers/logi-vision-1_4-byol/skus/logi-vision-byol/versions/1.4.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naS1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2dpLXZpc2lvbi0xXzQtYnlvbC9za3VzL2xvZ2ktdmlzaW9uLWJ5b2wvdmVyc2lvbnMvMS40LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"meanio\",\r\n \"name\": \"meanio-050-vm\",\r\n \"product\": \"meanio-050-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.5.01\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio/ArtifactTypes/VMImage/Offers/meanio-050-vm/Skus/meanio-050-vm/Versions/0.5.01\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"logi-analytics\",\r\n \"name\": \"logi-vision-byol\",\r\n \"product\": \"logi-vision-1_4-byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1_4-byol/Skus/logi-vision-byol/Versions/1.4.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "488" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49137,7 +49604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efd9ffe1-7b4b-433b-af7c-b7e5665c83ae" + "64e3e7e1-2362-4fbe-a566-61ee2295d743" ], "Cache-Control": [ "no-cache" @@ -49147,34 +49614,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13096" + "13980" ], "x-ms-correlation-request-id": [ - "a07443d0-99c0-4cbe-b6cc-74262dcd1d1f" + "e1d95f33-dcdb-435f-84d3-ab2463ccb9d3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212602Z:a07443d0-99c0-4cbe-b6cc-74262dcd1d1f" + "WESTUS:20150813T074738Z:e1d95f33-dcdb-435f-84d3-ab2463ccb9d3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql-community-single-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-community-single-vm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql-enterprise-single-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-enterprise-single-vm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"digital-dna-authentication-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "535" + "287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49189,7 +49656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7d31424-04f4-48e3-8afa-ba8ae19d2398" + "c1da0f87-d260-4e4d-bb4f-13d154581489" ], "Cache-Control": [ "no-cache" @@ -49199,34 +49666,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13095" + "13979" ], "x-ms-correlation-request-id": [ - "36fe7077-d684-4546-8112-9cfba3b254f0" + "d4ea35d4-cb6c-4362-8318-946db07ceb89" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:36fe7077-d684-4546-8112-9cfba3b254f0" + "WESTUS:20150813T074738Z:d4ea35d4-cb6c-4362-8318-946db07ceb89" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-community-single-vm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWNvbW11bml0eS1zaW5nbGUtdm0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql-community-single-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-community-single-vm/Skus/memsql-community-single-vm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprise-plus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise-plus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"small-business\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"small-business-plus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business-plus\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "300" + "1147" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49241,7 +49708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3f9165b-dee2-41f5-a18d-21d9d74a6605" + "b2aa97f9-7f21-425e-929b-d4c94edc45fa" ], "Cache-Control": [ "no-cache" @@ -49251,34 +49718,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13094" + "13978" ], "x-ms-correlation-request-id": [ - "4dfe3e62-c4d2-4a11-8b06-45208131ac0d" + "0bfe5399-21e8-4e16-b97c-0e8a4af4a95b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:4dfe3e62-c4d2-4a11-8b06-45208131ac0d" + "WESTUS:20150813T074738Z:0bfe5399-21e8-4e16-b97c-0e8a4af4a95b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-community-single-vm/skus/memsql-community-single-vm/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWNvbW11bml0eS1zaW5nbGUtdm0vc2t1cy9tZW1zcWwtY29tbXVuaXR5LXNpbmdsZS12bS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9lbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-community-single-vm/Skus/memsql-community-single-vm/Versions/4.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise/Versions/5.8.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "294" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49293,7 +49760,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91ccc366-8202-4f73-a353-8ceb1c1f00e3" + "2b360458-7c94-4195-a2eb-e9c60726470a" ], "Cache-Control": [ "no-cache" @@ -49303,34 +49770,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13093" + "13977" ], "x-ms-correlation-request-id": [ - "99d1ae97-295a-440f-bed9-54b472e6ccb3" + "c359b881-46eb-4d79-aee3-6d76e061f2ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:99d1ae97-295a-440f-bed9-54b472e6ccb3" + "WESTUS:20150813T074739Z:c359b881-46eb-4d79-aee3-6d76e061f2ae" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-community-single-vm/skus/memsql-community-single-vm/versions/4.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWNvbW11bml0eS1zaW5nbGUtdm0vc2t1cy9tZW1zcWwtY29tbXVuaXR5LXNpbmdsZS12bS92ZXJzaW9ucy80LjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/enterprise/versions/5.8.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9lbnRlcnByaXNlL3ZlcnNpb25zLzUuOC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"memsql\",\r\n \"name\": \"memsql-community-single-vm\",\r\n \"product\": \"memsql-community-single-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-community-single-vm/Skus/memsql-community-single-vm/Versions/4.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loginpeople\",\r\n \"name\": \"enterprise\",\r\n \"product\": \"digital-dna-authentication-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise/Versions/5.8.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "538" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49345,7 +49812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af816515-ff85-41ee-b1b4-2838c3a70b43" + "25269200-c43c-4b34-85b8-2a34cae4da10" ], "Cache-Control": [ "no-cache" @@ -49355,34 +49822,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13092" + "13976" ], "x-ms-correlation-request-id": [ - "e09822da-9db5-402c-b968-d2fba316032f" + "71c29d24-b132-40ab-9bad-4e5ca09b7136" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:e09822da-9db5-402c-b968-d2fba316032f" + "WESTUS:20150813T074739Z:71c29d24-b132-40ab-9bad-4e5ca09b7136" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-enterprise-single-vm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/enterprise-plus/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9lbnRlcnByaXNlLXBsdXMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql-enterprise-single-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-enterprise-single-vm/Skus/memsql-enterprise-single-vm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise-plus/Versions/5.8.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "303" + "295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49397,7 +49864,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7248ed32-f127-4c78-a807-58dd75fd009d" + "9d189483-5022-45d7-a576-b5779297dc0d" ], "Cache-Control": [ "no-cache" @@ -49407,34 +49874,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13091" + "13975" ], "x-ms-correlation-request-id": [ - "df29e9e4-268f-44f0-88db-dc1af4d7e27c" + "06476567-98b9-4267-83fd-fa9abd24f87f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:df29e9e4-268f-44f0-88db-dc1af4d7e27c" + "WESTUS:20150813T074739Z:06476567-98b9-4267-83fd-fa9abd24f87f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-enterprise-single-vm/skus/memsql-enterprise-single-vm/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3NrdXMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/enterprise-plus/versions/5.8.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9lbnRlcnByaXNlLXBsdXMvdmVyc2lvbnMvNS44LjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-enterprise-single-vm/Skus/memsql-enterprise-single-vm/Versions/4.0.2\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loginpeople\",\r\n \"name\": \"enterprise-plus\",\r\n \"product\": \"digital-dna-authentication-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/enterprise-plus/Versions/5.8.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "296" + "540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49449,7 +49916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28866a30-da08-40d2-a1d7-6a71f78ae407" + "26dbb8c1-79e3-4d57-853a-98eadceabd73" ], "Cache-Control": [ "no-cache" @@ -49459,34 +49926,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13090" + "13974" ], "x-ms-correlation-request-id": [ - "92888e72-5846-4431-b6ec-42437f056785" + "7ed90033-9000-4f5d-bf55-bad955633bf2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:92888e72-5846-4431-b6ec-42437f056785" + "WESTUS:20150813T074739Z:7ed90033-9000-4f5d-bf55-bad955633bf2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-enterprise-single-vm/skus/memsql-enterprise-single-vm/versions/4.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3NrdXMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3ZlcnNpb25zLzQuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/small-business/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9zbWFsbC1idXNpbmVzcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"memsql\",\r\n \"name\": \"memsql-enterprise-single-vm\",\r\n \"product\": \"memsql-enterprise-single-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-enterprise-single-vm/Skus/memsql-enterprise-single-vm/Versions/4.0.2\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business/Versions/5.8.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "542" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49501,7 +49968,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d16dae1-629e-42b7-a362-179f08eebb33" + "35745341-f14b-46c6-b267-ff700c851d83" ], "Cache-Control": [ "no-cache" @@ -49511,34 +49978,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13089" + "13973" ], "x-ms-correlation-request-id": [ - "79f8a1ed-3bf5-4e44-8ce5-d0c7054cb1f3" + "d9d6e26c-3426-4a25-ac05-ea10351821e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:79f8a1ed-3bf5-4e44-8ce5-d0c7054cb1f3" + "WESTUS:20150813T074739Z:d9d6e26c-3426-4a25-ac05-ea10351821e0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/small-business/versions/5.8.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9zbWFsbC1idXNpbmVzcy92ZXJzaW9ucy81LjguMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mental-notes-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/mental-notes-vm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"testmentalnotes\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/testmentalnotes\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loginpeople\",\r\n \"name\": \"small-business\",\r\n \"product\": \"digital-dna-authentication-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business/Versions/5.8.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "499" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49553,7 +50020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "924f4a70-456d-4ca5-8aad-691a5999fc7c" + "0312f4e8-462e-4ac6-9963-29af29a1a783" ], "Cache-Control": [ "no-cache" @@ -49563,34 +50030,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13088" + "13972" ], "x-ms-correlation-request-id": [ - "89d807b9-304a-4262-a375-062a78b7ebd3" + "ea55e3c7-0ddb-4af6-a466-ba47d26a4d43" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:89d807b9-304a-4262-a375-062a78b7ebd3" + "WESTUS:20150813T074739Z:ea55e3c7-0ddb-4af6-a466-ba47d26a4d43" ], "Date": [ - "Wed, 05 Aug 2015 21:26:02 GMT" + "Thu, 13 Aug 2015 07:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/mental-notes-vm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZW50YWwtbm90ZXMtdm0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/small-business-plus/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9zbWFsbC1idXNpbmVzcy1wbHVzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mn01\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/mental-notes-vm/Skus/mn01\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business-plus/Versions/5.8.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "250" + "299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49605,7 +50072,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1757f0bf-92f4-4856-9a28-642760ff222c" + "09768e48-f93b-47e3-aa5a-4571a1ac5a79" ], "Cache-Control": [ "no-cache" @@ -49615,34 +50082,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13087" + "13971" ], "x-ms-correlation-request-id": [ - "3205bb18-c124-4653-999f-75334ec74913" + "80b74626-7ff3-4ce6-8f60-f653e0f290ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:3205bb18-c124-4653-999f-75334ec74913" + "WESTUS:20150813T074739Z:80b74626-7ff3-4ce6-8f60-f653e0f290ff" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/mental-notes-vm/skus/mn01/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZW50YWwtbm90ZXMtdm0vc2t1cy9tbjAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/loginpeople/artifacttypes/vmimage/offers/digital-dna-authentication-server/skus/small-business-plus/versions/5.8.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9naW5wZW9wbGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9kaWdpdGFsLWRuYS1hdXRoZW50aWNhdGlvbi1zZXJ2ZXIvc2t1cy9zbWFsbC1idXNpbmVzcy1wbHVzL3ZlcnNpb25zLzUuOC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/mental-notes-vm/Skus/mn01/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"loginpeople\",\r\n \"name\": \"small-business-plus\",\r\n \"product\": \"digital-dna-authentication-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople/ArtifactTypes/VMImage/Offers/digital-dna-authentication-server/Skus/small-business-plus/Versions/5.8.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "266" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49657,7 +50124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41d4fa98-a09d-4be2-9643-19b2b865b1f4" + "52e3e2aa-6e2c-46aa-8cc0-d2a946792ddd" ], "Cache-Control": [ "no-cache" @@ -49667,34 +50134,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13086" + "13970" ], "x-ms-correlation-request-id": [ - "52e5937b-ab77-4f97-b767-b5035715c60f" + "d120b7f1-6b9b-478d-86d0-6d0dd574ff68" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212603Z:52e5937b-ab77-4f97-b767-b5035715c60f" + "WESTUS:20150813T074739Z:d120b7f1-6b9b-478d-86d0-6d0dd574ff68" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/mental-notes-vm/skus/mn01/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZW50YWwtbm90ZXMtdm0vc2t1cy9tbjAxL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logtrust/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9ndHJ1c3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mentalnotes\",\r\n \"name\": \"mn01\",\r\n \"product\": \"mental-notes-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/mental-notes-vm/Skus/mn01/Versions/1.0.2\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust-log-management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "484" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49709,7 +50176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c48f9802-c7ca-4a51-84ed-a48845946dea" + "daea4dd8-d524-4246-bdc3-145899a9e2e0" ], "Cache-Control": [ "no-cache" @@ -49719,34 +50186,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13085" + "13969" ], "x-ms-correlation-request-id": [ - "14c20623-ac33-4f91-bee1-27e1845b0bf0" + "2c894fcd-5460-4370-822c-be40dcfeb7ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:14c20623-ac33-4f91-bee1-27e1845b0bf0" + "WESTUS:20150813T074740Z:2c894fcd-5460-4370-822c-be40dcfeb7ae" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/testmentalnotes/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90ZXN0bWVudGFsbm90ZXMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logtrust/artifacttypes/vmimage/offers/logtrust-log-management/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9ndHJ1c3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2d0cnVzdC1sb2ctbWFuYWdlbWVudC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mn001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/testmentalnotes/Skus/mn001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lmrelay\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management/Skus/lmrelay\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "252" + "261" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49761,7 +50228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a9afd85-9b34-4af3-8b3f-660056200ad8" + "33140677-b91f-4e5f-bcb9-08b5a203a5b8" ], "Cache-Control": [ "no-cache" @@ -49771,34 +50238,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13084" + "13968" ], "x-ms-correlation-request-id": [ - "a3a96835-166a-491c-91f6-be229b8a88cc" + "6bf57616-3dcf-4a82-a1a3-7d4ff79c4d95" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:a3a96835-166a-491c-91f6-be229b8a88cc" + "WESTUS:20150813T074740Z:6bf57616-3dcf-4a82-a1a3-7d4ff79c4d95" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/testmentalnotes/skus/mn001/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90ZXN0bWVudGFsbm90ZXMvc2t1cy9tbjAwMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logtrust/artifacttypes/vmimage/offers/logtrust-log-management/skus/lmrelay/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9ndHJ1c3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2d0cnVzdC1sb2ctbWFuYWdlbWVudC9za3VzL2xtcmVsYXkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/testmentalnotes/Skus/mn001/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management/Skus/lmrelay/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "267" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49813,7 +50280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31d7143b-7f67-4433-850b-c031d2f94e70" + "1ce658e7-d51f-49c9-a95b-9a79a6f88b21" ], "Cache-Control": [ "no-cache" @@ -49823,34 +50290,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13083" + "13967" ], "x-ms-correlation-request-id": [ - "2b05443a-b3f3-458a-9d92-dde7de8716c9" + "66b92315-5bd8-4daa-ba4d-007b736e3f90" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:2b05443a-b3f3-458a-9d92-dde7de8716c9" + "WESTUS:20150813T074740Z:66b92315-5bd8-4daa-ba4d-007b736e3f90" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/testmentalnotes/skus/mn001/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90ZXN0bWVudGFsbm90ZXMvc2t1cy9tbjAwMS92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/logtrust/artifacttypes/vmimage/offers/logtrust-log-management/skus/lmrelay/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9ndHJ1c3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9sb2d0cnVzdC1sb2ctbWFuYWdlbWVudC9za3VzL2xtcmVsYXkvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mentalnotes\",\r\n \"name\": \"mn001\",\r\n \"product\": \"testmentalnotes\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/testmentalnotes/Skus/mn001/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"logtrust\",\r\n \"name\": \"lmrelay\",\r\n \"product\": \"logtrust-log-management\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management/Skus/lmrelay/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "486" + "498" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49865,7 +50332,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2548dadc-f619-4fae-b7b7-a0e8a333770d" + "98d00977-b7d3-42d4-a823-d32698bc0626" ], "Cache-Control": [ "no-cache" @@ -49875,34 +50342,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13082" + "13966" ], "x-ms-correlation-request-id": [ - "c1f43766-1c36-44bd-b819-e7c137141492" + "761075f3-edf3-4ea9-92c4-68f84be818bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:c1f43766-1c36-44bd-b819-e7c137141492" + "WESTUS:20150813T074740Z:761075f3-edf3-4ea9-92c4-68f84be818bb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mesosphere/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVzb3NwaGVyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/looker/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9va2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker-analytics-platform\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49917,7 +50384,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a9e0958-aad9-427a-a13a-1efcf91a0ee3" + "41f24ce3-4657-48ba-983f-0fa7a561cf81" ], "Cache-Control": [ "no-cache" @@ -49927,34 +50394,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13081" + "13965" ], "x-ms-correlation-request-id": [ - "3afb54dc-7d3a-4a5e-8ee0-2b0455379257" + "6490ac71-b87a-40bf-b527-44d7ae586a3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:3afb54dc-7d3a-4a5e-8ee0-2b0455379257" + "WESTUS:20150813T074740Z:6490ac71-b87a-40bf-b527-44d7ae586a3a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/metavistech/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWV0YXZpc3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/looker/artifacttypes/vmimage/offers/looker-analytics-platform/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9va2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9va2VyLWFuYWx5dGljcy1wbGF0Zm9ybS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavis-office365-suite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker-analytics-platform-sqldb-10users\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform/Skus/looker-analytics-platform-sqldb-10users\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "267" + "325" ], "Content-Type": [ "application/json; charset=utf-8" @@ -49969,7 +50436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19322619-d170-49dd-a719-e396591df591" + "07ee5ab5-027c-47cb-9f0f-af21e85ead4f" ], "Cache-Control": [ "no-cache" @@ -49979,34 +50446,86 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13080" + "13964" ], "x-ms-correlation-request-id": [ - "44792eae-ed84-4c50-b179-5d197cc5cafe" + "56ac8e40-2940-4fa3-b53a-4a09a12413aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:44792eae-ed84-4c50-b179-5d197cc5cafe" + "WESTUS:20150813T074740Z:56ac8e40-2940-4fa3-b53a-4a09a12413aa" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/metavistech/artifacttypes/vmimage/offers/metavis-office365-suite/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWV0YXZpc3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXRhdmlzLW9mZmljZTM2NS1zdWl0ZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/looker/artifacttypes/vmimage/offers/looker-analytics-platform/skus/looker-analytics-platform-sqldb-10users/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9va2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9va2VyLWFuYWx5dGljcy1wbGF0Zm9ybS9za3VzL2xvb2tlci1hbmFseXRpY3MtcGxhdGZvcm0tc3FsZGItMTB1c2Vycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mv-office365-ste-azure-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite/Skus/mv-office365-ste-azure-1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform/Skus/looker-analytics-platform-sqldb-10users/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "298" + "306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "566e0cb5-6dc4-4633-8748-c97aa916f14e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13963" + ], + "x-ms-correlation-request-id": [ + "fb7c7950-6042-47c5-9b72-9005a8872615" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074740Z:fb7c7950-6042-47c5-9b72-9005a8872615" + ], + "Date": [ + "Thu, 13 Aug 2015 07:47:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/looker/artifacttypes/vmimage/offers/looker-analytics-platform/skus/looker-analytics-platform-sqldb-10users/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbG9va2VyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbG9va2VyLWFuYWx5dGljcy1wbGF0Zm9ybS9za3VzL2xvb2tlci1hbmFseXRpY3MtcGxhdGZvcm0tc3FsZGItMTB1c2Vycy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"looker\",\r\n \"name\": \"looker-analytics-platform-sqldb-10users\",\r\n \"product\": \"looker-analytics-platform\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform/Skus/looker-analytics-platform-sqldb-10users/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50021,7 +50540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41c77399-1ffc-4955-9201-0f3c4ed8e93d" + "0d229ae6-d26b-42ea-86cc-a38ea613511f" ], "Cache-Control": [ "no-cache" @@ -50031,34 +50550,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13079" + "13962" ], "x-ms-correlation-request-id": [ - "ba715de7-8541-448e-9edb-475c7c09e025" + "2f3e440a-137f-44b2-91db-f047d1c6f867" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:ba715de7-8541-448e-9edb-475c7c09e025" + "WESTUS:20150813T074740Z:2f3e440a-137f-44b2-91db-f047d1c6f867" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/metavistech/artifacttypes/vmimage/offers/metavis-office365-suite/skus/mv-office365-ste-azure-1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWV0YXZpc3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXRhdmlzLW9mZmljZTM2NS1zdWl0ZS9za3VzL212LW9mZmljZTM2NS1zdGUtYXp1cmUtMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/magelia/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFnZWxpYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite/Skus/mv-office365-ste-azure-1/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia-webstore-professional\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "294" + "275" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50073,7 +50592,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a513ac67-a8bf-49de-914f-ec1633d690e9" + "8e309ff6-b1bd-4bbe-ab7f-56049dffbd6c" ], "Cache-Control": [ "no-cache" @@ -50083,34 +50602,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13078" + "13961" ], "x-ms-correlation-request-id": [ - "17051129-ae7c-4764-9570-c8487e8d1386" + "b267f1bb-21be-4816-b788-a52e8aebc003" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:17051129-ae7c-4764-9570-c8487e8d1386" + "WESTUS:20150813T074740Z:b267f1bb-21be-4816-b788-a52e8aebc003" ], "Date": [ - "Wed, 05 Aug 2015 21:26:03 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/metavistech/artifacttypes/vmimage/offers/metavis-office365-suite/skus/mv-office365-ste-azure-1/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWV0YXZpc3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXRhdmlzLW9mZmljZTM2NS1zdWl0ZS9za3VzL212LW9mZmljZTM2NS1zdGUtYXp1cmUtMS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/magelia/artifacttypes/vmimage/offers/magelia-webstore-professional/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFnZWxpYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VsaWEtd2Vic3RvcmUtcHJvZmVzc2lvbmFsL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"metavistech\",\r\n \"name\": \"mv-office365-ste-azure-1\",\r\n \"product\": \"metavis-office365-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite/Skus/mv-office365-ste-azure-1/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia-webstore-professional-edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional/Skus/magelia-webstore-professional-edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "540" + "326" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50125,7 +50644,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1081777-5240-46bc-88f2-9981020455b5" + "bd91e97e-00f3-441e-b051-19a186cef09f" ], "Cache-Control": [ "no-cache" @@ -50135,34 +50654,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13077" + "13960" ], "x-ms-correlation-request-id": [ - "83f40ab2-6553-4673-ab27-f2af0418213f" + "54f3d8c0-0c5f-46e7-813d-8b3a1dd29e3a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212604Z:83f40ab2-6553-4673-ab27-f2af0418213f" + "WESTUS:20150813T074741Z:54f3d8c0-0c5f-46e7-813d-8b3a1dd29e3a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/magelia/artifacttypes/vmimage/offers/magelia-webstore-professional/skus/magelia-webstore-professional-edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFnZWxpYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VsaWEtd2Vic3RvcmUtcHJvZmVzc2lvbmFsL3NrdXMvbWFnZWxpYS13ZWJzdG9yZS1wcm9mZXNzaW9uYWwtZWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional/Skus/magelia-webstore-professional-edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "232" + "309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50177,7 +50696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0501c063-99ff-4ce3-88c8-d863a13cf761" + "534d3189-0e86-4c92-bb81-71490791bef6" ], "Cache-Control": [ "no-cache" @@ -50187,34 +50706,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13076" + "13959" ], "x-ms-correlation-request-id": [ - "82154c12-6e94-4495-9674-ddcf1bdc6625" + "d379aa5e-4756-4173-beb5-6720a17c3ce4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:82154c12-6e94-4495-9674-ddcf1bdc6625" + "WESTUS:20150813T074741Z:d379aa5e-4756-4173-beb5-6720a17c3ce4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/magelia/artifacttypes/vmimage/offers/magelia-webstore-professional/skus/magelia-webstore-professional-edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFnZWxpYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21hZ2VsaWEtd2Vic3RvcmUtcHJvZmVzc2lvbmFsL3NrdXMvbWFnZWxpYS13ZWJzdG9yZS1wcm9mZXNzaW9uYWwtZWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sku1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sku2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sku3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku3\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"magelia\",\r\n \"name\": \"magelia-webstore-professional-edition\",\r\n \"product\": \"magelia-webstore-professional\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional/Skus/magelia-webstore-professional-edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "943" + "570" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50229,7 +50748,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1c47889-29fd-47e7-9e99-fb5b0ea2903b" + "875e0fbc-38a5-46a7-9238-5c9d28653d1c" ], "Cache-Control": [ "no-cache" @@ -50239,34 +50758,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13075" + "13958" ], "x-ms-correlation-request-id": [ - "9ed92b95-7cc7-4067-a292-4e0807682391" + "ae5d5043-72ed-4879-aef7-b7025a7cf3d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:9ed92b95-7cc7-4067-a292-4e0807682391" + "WESTUS:20150813T074741Z:ae5d5043-72ed-4879-aef7-b7025a7cf3d0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/massiveanalytic-/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFzc2l2ZWFuYWx5dGljLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/byol/Versions/1.0.201412\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oscarap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-/ArtifactTypes/VMImage/Offers/oscarap\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "264" + "240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50281,7 +50800,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "957eedec-abac-44e7-8db1-4990699eb816" + "1d90fdcf-0976-4f9c-8ac0-0655bd6162ab" ], "Cache-Control": [ "no-cache" @@ -50291,34 +50810,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13074" + "13957" ], "x-ms-correlation-request-id": [ - "233c677c-8f71-4ada-92fe-5e183d050e78" + "bf21fd95-f434-4d18-b504-f209c6af9ab9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:233c677c-8f71-4ada-92fe-5e183d050e78" + "WESTUS:20150813T074741Z:bf21fd95-f434-4d18-b504-f209c6af9ab9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/byol/versions/1.0.201412?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9ieW9sL3ZlcnNpb25zLzEuMC4yMDE0MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/massiveanalytic-/artifacttypes/vmimage/offers/oscarap/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFzc2l2ZWFuYWx5dGljLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29zY2FyYXAvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mfiles\",\r\n \"name\": \"byol\",\r\n \"product\": \"standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/byol/Versions/1.0.201412\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oscarap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-/ArtifactTypes/VMImage/Offers/oscarap/Skus/oscarap\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "549" + "253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50333,7 +50852,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f201442e-c9f4-4485-9e5f-e2322d918e86" + "e1b188da-d448-45ff-8128-ba2df756c7e2" ], "Cache-Control": [ "no-cache" @@ -50343,34 +50862,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13073" + "13956" ], "x-ms-correlation-request-id": [ - "e63c25bc-118e-4684-be72-c619c6fb898e" + "8a086043-791e-40d2-89c2-f1053085b7ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:e63c25bc-118e-4684-be72-c619c6fb898e" + "WESTUS:20150813T074741Z:8a086043-791e-40d2-89c2-f1053085b7ab" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/massiveanalytic-/artifacttypes/vmimage/offers/oscarap/skus/oscarap/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFzc2l2ZWFuYWx5dGljLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29zY2FyYXAvc2t1cy9vc2NhcmFwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku1/Versions/1.0.201412\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.6.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-/ArtifactTypes/VMImage/Offers/oscarap/Skus/oscarap/Versions/0.6.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "264" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50385,7 +50904,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "633703be-99ee-4e1a-b3c2-851d52ff8cb6" + "147a42b7-f4c9-4e66-a1be-bc0e5f2d65e0" ], "Cache-Control": [ "no-cache" @@ -50395,34 +50914,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13072" + "13955" ], "x-ms-correlation-request-id": [ - "f1c9d23b-1483-4d91-9c17-c695a0cd85ec" + "eca7d0b5-9aa8-40d1-926f-f21e64c5cc31" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:f1c9d23b-1483-4d91-9c17-c695a0cd85ec" + "WESTUS:20150813T074741Z:eca7d0b5-9aa8-40d1-926f-f21e64c5cc31" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku1/versions/1.0.201412?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UxL3ZlcnNpb25zLzEuMC4yMDE0MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/massiveanalytic-/artifacttypes/vmimage/offers/oscarap/skus/oscarap/versions/0.6.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWFzc2l2ZWFuYWx5dGljLS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29zY2FyYXAvc2t1cy9vc2NhcmFwL3ZlcnNpb25zLzAuNi4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mfiles\",\r\n \"name\": \"sku1\",\r\n \"product\": \"standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku1/Versions/1.0.201412\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"massiveanalytic-\",\r\n \"name\": \"oscarap\",\r\n \"product\": \"oscarap\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.6.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-/ArtifactTypes/VMImage/Offers/oscarap/Skus/oscarap/Versions/0.6.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "482" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50437,7 +50956,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f779e92b-10c3-44a4-91cc-4bd4d5092c02" + "a7aa5f91-c146-424c-8426-d91be87a41b6" ], "Cache-Control": [ "no-cache" @@ -50447,34 +50966,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13071" + "13954" ], "x-ms-correlation-request-id": [ - "256033e1-3abf-4f40-a05d-9a48c064048e" + "b426d3d0-199e-4aa9-9000-fb1245478e53" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:256033e1-3abf-4f40-a05d-9a48c064048e" + "WESTUS:20150813T074741Z:b426d3d0-199e-4aa9-9000-fb1245478e53" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/McAfee.EndpointSecurity/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWNBZmVlLkVuZHBvaW50U2VjdXJpdHkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku2/Versions/1.0.201412\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "264" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50489,7 +51008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87957f92-27f6-434d-8d09-363734cbce3e" + "dd7aafb6-aa18-48ca-bfed-f9d66ea36031" ], "Cache-Control": [ "no-cache" @@ -50499,34 +51018,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13070" + "13953" ], "x-ms-correlation-request-id": [ - "0c680459-0c02-4186-b74c-fae31695ebce" + "70022f9a-c02e-420c-ba56-6231d4473390" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:0c680459-0c02-4186-b74c-fae31695ebce" + "WESTUS:20150813T074741Z:70022f9a-c02e-420c-ba56-6231d4473390" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku2/versions/1.0.201412?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UyL3ZlcnNpb25zLzEuMC4yMDE0MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/McAfee.EndpointSecurity.test3/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWNBZmVlLkVuZHBvaW50U2VjdXJpdHkudGVzdDMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mfiles\",\r\n \"name\": \"sku2\",\r\n \"product\": \"standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku2/Versions/1.0.201412\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "549" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50541,7 +51060,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6f05a70-6025-45cd-809e-9a2608dd91bb" + "3b531441-c7f3-4d5a-8d15-c1e2824f9855" ], "Cache-Control": [ "no-cache" @@ -50551,34 +51070,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13069" + "13952" ], "x-ms-correlation-request-id": [ - "43596f81-6870-44d0-b146-fb4bc7842fff" + "99c15403-04f9-494d-abd3-ae558c0d6443" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:43596f81-6870-44d0-b146-fb4bc7842fff" + "WESTUS:20150813T074741Z:99c15403-04f9-494d-abd3-ae558c0d6443" ], "Date": [ - "Wed, 05 Aug 2015 21:26:04 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku3/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/meanio/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVhbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku3/Versions/1.0.201412\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio-050-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio/ArtifactTypes/VMImage/Offers/meanio-050-vm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "264" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50593,7 +51112,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90ae61ed-a880-4693-8bb1-150df49392f7" + "ca4cd773-ab68-45b3-a5b7-ece5ec93b807" ], "Cache-Control": [ "no-cache" @@ -50603,34 +51122,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13068" + "13951" ], "x-ms-correlation-request-id": [ - "4933ab10-3963-43f9-b95c-6b89e15913dc" + "a9380014-b837-46f5-a3bb-77a714b4928a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:4933ab10-3963-43f9-b95c-6b89e15913dc" + "WESTUS:20150813T074742Z:a9380014-b837-46f5-a3bb-77a714b4928a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku3/versions/1.0.201412?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UzL3ZlcnNpb25zLzEuMC4yMDE0MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/meanio/artifacttypes/vmimage/offers/meanio-050-vm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVhbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVhbmlvLTA1MC12bS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mfiles\",\r\n \"name\": \"sku3\",\r\n \"product\": \"standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku3/Versions/1.0.201412\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio-050-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio/ArtifactTypes/VMImage/Offers/meanio-050-vm/Skus/meanio-050-vm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "549" + "261" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50645,7 +51164,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ae7bac5-3e5e-4f11-94d7-71dcd7a1ade7" + "a729b65d-6e14-422b-a258-5c4ee125f675" ], "Cache-Control": [ "no-cache" @@ -50655,34 +51174,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13067" + "13950" ], "x-ms-correlation-request-id": [ - "7de406ad-a80c-41d8-9746-881870e74a7f" + "fcc7abbb-88ae-49a7-a9ba-dbc9fb4b8a31" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212605Z:7de406ad-a80c-41d8-9746-881870e74a7f" + "WESTUS:20150813T074742Z:fcc7abbb-88ae-49a7-a9ba-dbc9fb4b8a31" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/meanio/artifacttypes/vmimage/offers/meanio-050-vm/skus/meanio-050-vm/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVhbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVhbmlvLTA1MC12bS9za3VzL21lYW5pby0wNTAtdm0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"JDK\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2_and_WebLogic_Server_11g\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_and_WebLogic_Server_12c\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_11g\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_12c\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Zulu_OpenJDK\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.5.01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio/ArtifactTypes/VMImage/Offers/meanio-050-vm/Skus/meanio-050-vm/Versions/0.5.01\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2125" + "270" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50697,7 +51216,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57fc926a-be4f-4bb8-99c0-f9b87f7220dd" + "51073354-c3fc-4475-a0d1-6f75a4e872c1" ], "Cache-Control": [ "no-cache" @@ -50707,34 +51226,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13066" + "13949" ], "x-ms-correlation-request-id": [ - "e02640c8-eba8-4b25-9781-2fcc441a6cb3" + "2883ea2c-f411-49fd-ad85-d4ba61fa065f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:e02640c8-eba8-4b25-9781-2fcc441a6cb3" + "WESTUS:20150813T074742Z:2883ea2c-f411-49fd-ad85-d4ba61fa065f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/meanio/artifacttypes/vmimage/offers/meanio-050-vm/skus/meanio-050-vm/versions/0.5.01?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVhbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVhbmlvLTA1MC12bS9za3VzL21lYW5pby0wNTAtdm0vdmVyc2lvbnMvMC41LjAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"JDK_6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"JDK_7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"JDK_8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_8\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"meanio\",\r\n \"name\": \"meanio-050-vm\",\r\n \"product\": \"meanio-050-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.5.01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio/ArtifactTypes/VMImage/Offers/meanio-050-vm/Skus/meanio-050-vm/Versions/0.5.01\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "708" + "488" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50749,7 +51268,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a447472-9acf-4224-8661-d93371bbefe3" + "dc6c6013-bb81-4242-bed0-4d33e71ffea7" ], "Cache-Control": [ "no-cache" @@ -50759,34 +51278,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13065" + "13948" ], "x-ms-correlation-request-id": [ - "fa207db1-e98b-4349-8a94-c5cbcaf56fde" + "80cc1652-202a-415b-8928-badcb3270b8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:fa207db1-e98b-4349-8a94-c5cbcaf56fde" + "WESTUS:20150813T074742Z:80cc1652-202a-415b-8928-badcb3270b8c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_6/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql-community-single-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-community-single-vm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql-enterprise-single-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-enterprise-single-vm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "253" + "535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50801,7 +51320,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3857c364-4c3d-4c0e-9966-ca096e7a02f7" + "5799b409-50a7-43f5-8228-5aa8c515bd1a" ], "Cache-Control": [ "no-cache" @@ -50811,34 +51330,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13064" + "13947" ], "x-ms-correlation-request-id": [ - "6793aefe-866a-450f-aa35-9cec2c3a3040" + "53be9327-5302-45ee-8a48-c64a9a1ce450" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:6793aefe-866a-450f-aa35-9cec2c3a3040" + "WESTUS:20150813T074742Z:53be9327-5302-45ee-8a48-c64a9a1ce450" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_6/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzYvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-community-single-vm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWNvbW11bml0eS1zaW5nbGUtdm0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_6/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql-community-single-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-community-single-vm/Skus/memsql-community-single-vm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "354" + "300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50853,7 +51372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec908cde-bad1-4628-bdc5-5e00e2b938bc" + "be6b2703-e0e2-40da-9146-f137abce39e7" ], "Cache-Control": [ "no-cache" @@ -50863,34 +51382,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13063" + "13946" ], "x-ms-correlation-request-id": [ - "5500e670-0532-4922-9ac2-28c99b958e12" + "f263b380-c664-4b66-a96f-3606dba93c4c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:5500e670-0532-4922-9ac2-28c99b958e12" + "WESTUS:20150813T074742Z:f263b380-c664-4b66-a96f-3606dba93c4c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-community-single-vm/skus/memsql-community-single-vm/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWNvbW11bml0eS1zaW5nbGUtdm0vc2t1cy9tZW1zcWwtY29tbXVuaXR5LXNpbmdsZS12bS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_7/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-community-single-vm/Skus/memsql-community-single-vm/Versions/4.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "253" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50905,7 +51424,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "955095d2-5747-4cd3-8b08-e251b9bf40f5" + "d79c28e9-6874-48ab-925e-6925c6f73194" ], "Cache-Control": [ "no-cache" @@ -50915,34 +51434,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13062" + "13945" ], "x-ms-correlation-request-id": [ - "c2daaab5-7666-4a58-b5cf-c6ab57b9f6d6" + "5748aa71-f19e-4746-86b6-f3e3c83ae53f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:c2daaab5-7666-4a58-b5cf-c6ab57b9f6d6" + "WESTUS:20150813T074742Z:5748aa71-f19e-4746-86b6-f3e3c83ae53f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_7/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzcvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-community-single-vm/skus/memsql-community-single-vm/versions/4.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWNvbW11bml0eS1zaW5nbGUtdm0vc2t1cy9tZW1zcWwtY29tbXVuaXR5LXNpbmdsZS12bS92ZXJzaW9ucy80LjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_7/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"memsql\",\r\n \"name\": \"memsql-community-single-vm\",\r\n \"product\": \"memsql-community-single-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-community-single-vm/Skus/memsql-community-single-vm/Versions/4.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "354" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -50957,7 +51476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70b33592-ad55-40d7-9875-dc3a68183e6b" + "ffc50a60-4af6-47c3-8b74-8a217c67ba11" ], "Cache-Control": [ "no-cache" @@ -50967,34 +51486,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13061" + "13944" ], "x-ms-correlation-request-id": [ - "978d0b93-2acf-42fc-a6a9-acdac4aa5256" + "baa2d670-f023-4cab-aa8c-225277f1822d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:978d0b93-2acf-42fc-a6a9-acdac4aa5256" + "WESTUS:20150813T074742Z:baa2d670-f023-4cab-aa8c-225277f1822d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_8/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-enterprise-single-vm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_8/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql-enterprise-single-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-enterprise-single-vm/Skus/memsql-enterprise-single-vm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "253" + "303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51009,7 +51528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a13385d1-b38a-488f-9972-93dcd859aa96" + "01f2b8aa-589f-43e3-86ed-40b98944401d" ], "Cache-Control": [ "no-cache" @@ -51019,34 +51538,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13060" + "13943" ], "x-ms-correlation-request-id": [ - "2d268b26-1a99-4595-bf93-50081d9cf29d" + "e213457b-77af-4c00-8885-ccc5987097f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:2d268b26-1a99-4595-bf93-50081d9cf29d" + "WESTUS:20150813T074742Z:e213457b-77af-4c00-8885-ccc5987097f4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_8/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-enterprise-single-vm/skus/memsql-enterprise-single-vm/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3NrdXMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_8/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-enterprise-single-vm/Skus/memsql-enterprise-single-vm/Versions/4.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "354" + "296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51061,7 +51580,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a525208b-102a-44e4-afd6-776804b57a1f" + "13360dcc-79a8-4057-8806-8a7268cc640a" ], "Cache-Control": [ "no-cache" @@ -51071,34 +51590,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13059" + "13942" ], "x-ms-correlation-request-id": [ - "a3a0fa84-2b04-4210-8b97-f8579e52747b" + "313ba387-a5ad-4ac3-b0a5-c61578f47716" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:a3a0fa84-2b04-4210-8b97-f8579e52747b" + "WESTUS:20150813T074743Z:313ba387-a5ad-4ac3-b0a5-c61578f47716" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/memsql/artifacttypes/vmimage/offers/memsql-enterprise-single-vm/skus/memsql-enterprise-single-vm/versions/4.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVtc3FsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3NrdXMvbWVtc3FsLWVudGVycHJpc2Utc2luZ2xlLXZtL3ZlcnNpb25zLzQuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_11g_R2_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_Standard_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_12c_Standard_Edition\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"memsql\",\r\n \"name\": \"memsql-enterprise-single-vm\",\r\n \"product\": \"memsql-enterprise-single-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql/ArtifactTypes/VMImage/Offers/memsql-enterprise-single-vm/Skus/memsql-enterprise-single-vm/Versions/4.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "645" + "542" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51113,7 +51632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58ced673-b785-4d51-991f-cffc8acb37d4" + "10ee43d6-a57d-4425-b1b1-0b0a7b80bfd7" ], "Cache-Control": [ "no-cache" @@ -51123,34 +51642,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13058" + "13941" ], "x-ms-correlation-request-id": [ - "3fbaffcb-dc2d-4cf0-acc5-79aa02bbc423" + "46a19f97-217c-4480-b1b0-b96cd1f06858" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:3fbaffcb-dc2d-4cf0-acc5-79aa02bbc423" + "WESTUS:20150813T074743Z:46a19f97-217c-4480-b1b0-b96cd1f06858" ], "Date": [ - "Wed, 05 Aug 2015 21:26:05 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus/Oracle_Database_11g_R2_Enterprise_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_11g_R2_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mental-notes-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/mental-notes-vm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"testmentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/testmentalnotes\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "308" + "499" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51165,7 +51684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c25d558-b2f5-4103-98f9-3e0af64f5538" + "c100ad1b-ac26-45d1-9d7d-adc8152d3fc1" ], "Cache-Control": [ "no-cache" @@ -51175,34 +51694,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13057" + "13940" ], "x-ms-correlation-request-id": [ - "b4fece63-0fb8-4707-aa35-a21488d23256" + "cab6489d-f117-4fe9-83d1-2190b9ad29ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212606Z:b4fece63-0fb8-4707-aa35-a21488d23256" + "WESTUS:20150813T074743Z:cab6489d-f117-4fe9-83d1-2190b9ad29ce" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus/Oracle_Database_11g_R2_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/mental-notes-vm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZW50YWwtbm90ZXMtdm0vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_11g_R2_Enterprise_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mn01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/mental-notes-vm/Skus/mn01\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "409" + "250" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51217,7 +51736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e05824ec-60e9-4322-bb36-58f607d2f089" + "01b48e4c-6d7d-4dfd-bfe9-8da7ac3c09c0" ], "Cache-Control": [ "no-cache" @@ -51227,34 +51746,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13056" + "13939" ], "x-ms-correlation-request-id": [ - "c021f93d-91e1-4aa7-935a-3818c576795a" + "d4b1d097-f58f-4966-8bee-44d35b191a87" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:c021f93d-91e1-4aa7-935a-3818c576795a" + "WESTUS:20150813T074743Z:d4b1d097-f58f-4966-8bee-44d35b191a87" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus/Oracle_Database_12c_Standard_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/mental-notes-vm/skus/mn01/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZW50YWwtbm90ZXMtdm0vc2t1cy9tbjAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/mental-notes-vm/Skus/mn01/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "303" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51269,7 +51788,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c2ece25-f43f-425a-bd6d-99996d26719a" + "d0f08b70-3c05-4d9d-b601-c80906159be1" ], "Cache-Control": [ "no-cache" @@ -51279,34 +51798,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13055" + "13938" ], "x-ms-correlation-request-id": [ - "84b01b32-5bac-44e7-9f90-7b1a98c5662d" + "722c1a9d-c88f-4d5a-b42e-14ad930c3467" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:84b01b32-5bac-44e7-9f90-7b1a98c5662d" + "WESTUS:20150813T074743Z:722c1a9d-c88f-4d5a-b42e-14ad930c3467" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus/Oracle_Database_12c_Standard_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/mental-notes-vm/skus/mn01/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZW50YWwtbm90ZXMtdm0vc2t1cy9tbjAxL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mentalnotes\",\r\n \"name\": \"mn01\",\r\n \"product\": \"mental-notes-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/mental-notes-vm/Skus/mn01/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "404" + "484" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51321,7 +51840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79e0cae2-9c7f-42a6-a627-b48198c726bb" + "15a55f9e-d847-4e00-838a-739934a7e855" ], "Cache-Control": [ "no-cache" @@ -51331,34 +51850,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13054" + "13937" ], "x-ms-correlation-request-id": [ - "14348456-2fcf-4a2e-afc4-e26f5dbc7a7b" + "d645f960-d134-4c42-b002-ebe8f3a93c70" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:14348456-2fcf-4a2e-afc4-e26f5dbc7a7b" + "WESTUS:20150813T074743Z:d645f960-d134-4c42-b002-ebe8f3a93c70" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/testmentalnotes/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90ZXN0bWVudGFsbm90ZXMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mn001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/testmentalnotes/Skus/mn001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "793" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51373,7 +51892,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "016a8be1-9127-4501-aac0-deffcc52cf68" + "4b708306-7e84-4852-8356-e44ae05e62e8" ], "Cache-Control": [ "no-cache" @@ -51383,34 +51902,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13053" + "13936" ], "x-ms-correlation-request-id": [ - "8711dca0-c723-43b8-a9d0-fefd788259bb" + "e4f16d07-24a6-4ce8-81da-2b7b4b426d06" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:8711dca0-c723-43b8-a9d0-fefd788259bb" + "WESTUS:20150813T074743Z:e4f16d07-24a6-4ce8-81da-2b7b4b426d06" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJhbmQtV2ViTG9naWNfU2VydmVyXzExZ19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/testmentalnotes/skus/mn001/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90ZXN0bWVudGFsbm90ZXMvc2t1cy9tbjAwMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/testmentalnotes/Skus/mn001/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "355" + "267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51425,7 +51944,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2b6998e-509d-4b4b-a938-da91a85d5252" + "7aeced97-8261-43b8-a050-ca0024c31729" ], "Cache-Control": [ "no-cache" @@ -51435,34 +51954,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13052" + "13935" ], "x-ms-correlation-request-id": [ - "210af7f3-908c-480c-bb1c-e9b68deaa5ce" + "8da6a71d-1f04-4c79-8608-19a3bfc195ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:210af7f3-908c-480c-bb1c-e9b68deaa5ce" + "WESTUS:20150813T074743Z:8da6a71d-1f04-4c79-8608-19a3bfc195ad" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJhbmQtV2ViTG9naWNfU2VydmVyXzExZ19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mentalnotes/artifacttypes/vmimage/offers/testmentalnotes/skus/mn001/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVudGFsbm90ZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90ZXN0bWVudGFsbm90ZXMvc2t1cy9tbjAwMS92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mentalnotes\",\r\n \"name\": \"mn001\",\r\n \"product\": \"testmentalnotes\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes/ArtifactTypes/VMImage/Offers/testmentalnotes/Skus/mn001/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "456" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51477,7 +51996,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8bec8d16-d472-4129-bcf0-758a2de98102" + "6f446f37-07ce-4aa7-9543-86ef45fe7135" ], "Cache-Control": [ "no-cache" @@ -51487,34 +52006,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13051" + "13934" ], "x-ms-correlation-request-id": [ - "8c646a9c-9015-4291-af4e-db47259b37b7" + "07a33a55-371a-4537-9f2b-60ee29b86c4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:8c646a9c-9015-4291-af4e-db47259b37b7" + "WESTUS:20150813T074743Z:07a33a55-371a-4537-9f2b-60ee29b86c4e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMWdfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mesosphere/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWVzb3NwaGVyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "354" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51529,7 +52048,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04b28b39-9299-433a-9783-35199462a51c" + "631179d7-d1fa-4cf7-8419-4c5c1ca38d20" ], "Cache-Control": [ "no-cache" @@ -51539,34 +52058,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13050" + "13933" ], "x-ms-correlation-request-id": [ - "238250fe-bc1d-473b-b0ab-f889cfa1b161" + "77f3137d-cd60-4bdb-b8ed-6d47fe61d21b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:238250fe-bc1d-473b-b0ab-f889cfa1b161" + "WESTUS:20150813T074743Z:77f3137d-cd60-4bdb-b8ed-6d47fe61d21b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMWdfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/metavistech/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWV0YXZpc3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavis-office365-suite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "455" + "267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51581,7 +52100,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fe16548-7841-4541-8f1b-a04ae58b6140" + "c8c78ba6-27eb-4c78-ad9e-13c363ab3221" ], "Cache-Control": [ "no-cache" @@ -51591,34 +52110,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13049" + "13932" ], "x-ms-correlation-request-id": [ - "7b98d8dc-8738-4094-99dc-78915f13ec32" + "692d38c2-a1d3-45fb-a790-b1a0a1a874dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:7b98d8dc-8738-4094-99dc-78915f13ec32" + "WESTUS:20150813T074744Z:692d38c2-a1d3-45fb-a790-b1a0a1a874dd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/metavistech/artifacttypes/vmimage/offers/metavis-office365-suite/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWV0YXZpc3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXRhdmlzLW9mZmljZTM2NS1zdWl0ZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_Standard_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Standard_Edition\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mv-office365-ste-azure-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite/Skus/mv-office365-ste-azure-1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "633" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51633,7 +52152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb017bab-e1ba-4ed3-b880-f160f7fc02ac" + "087af415-e6c7-4bdc-9c7a-3a692a05619e" ], "Cache-Control": [ "no-cache" @@ -51643,34 +52162,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13048" + "13931" ], "x-ms-correlation-request-id": [ - "52821914-aa70-40ab-a9c4-abbb8cf687fa" + "05dbc8ff-1ad2-45df-86bb-90ebee06dfb7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:52821914-aa70-40ab-a9c4-abbb8cf687fa" + "WESTUS:20150813T074744Z:05dbc8ff-1ad2-45df-86bb-90ebee06dfb7" ], "Date": [ - "Wed, 05 Aug 2015 21:26:06 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus/Oracle_Database_12c_Enterprise_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/metavistech/artifacttypes/vmimage/offers/metavis-office365-suite/skus/mv-office365-ste-azure-1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWV0YXZpc3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXRhdmlzLW9mZmljZTM2NS1zdWl0ZS9za3VzL212LW9mZmljZTM2NS1zdGUtYXp1cmUtMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite/Skus/mv-office365-ste-azure-1/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "302" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51685,7 +52204,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d4f4d33-1758-4a1c-b9cc-29d93f435d4a" + "4f61e392-8ccf-4b65-8247-ae83594fbfbe" ], "Cache-Control": [ "no-cache" @@ -51695,34 +52214,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13047" + "13930" ], "x-ms-correlation-request-id": [ - "d775620e-bee2-4394-b144-c1872f20e427" + "b4f58e62-fbf4-4309-a432-449364113541" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212607Z:d775620e-bee2-4394-b144-c1872f20e427" + "WESTUS:20150813T074744Z:b4f58e62-fbf4-4309-a432-449364113541" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus/Oracle_Database_12c_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/metavistech/artifacttypes/vmimage/offers/metavis-office365-suite/skus/mv-office365-ste-azure-1/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWV0YXZpc3RlY2gvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXRhdmlzLW9mZmljZTM2NS1zdWl0ZS9za3VzL212LW9mZmljZTM2NS1zdGUtYXp1cmUtMS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Enterprise_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"metavistech\",\r\n \"name\": \"mv-office365-ste-azure-1\",\r\n \"product\": \"metavis-office365-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite/Skus/mv-office365-ste-azure-1/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "403" + "540" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51737,7 +52256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9faa0eab-a6a0-4637-894e-e9951a1e66d2" + "024dc098-5e86-47e8-9421-fdf14361563e" ], "Cache-Control": [ "no-cache" @@ -51747,34 +52266,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13046" + "13929" ], "x-ms-correlation-request-id": [ - "8f603d03-64ab-4be5-822d-08a7f0351b82" + "e1cfc0ab-5300-43b2-a7cd-43f2de6e9b6b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:8f603d03-64ab-4be5-822d-08a7f0351b82" + "WESTUS:20150813T074744Z:e1cfc0ab-5300-43b2-a7cd-43f2de6e9b6b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus/Oracle_Database_12c_Standard_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "300" + "232" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51789,7 +52308,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ad4f86b-5085-47f4-a36c-89d711a898ca" + "41556064-8e80-4bfc-89c5-e9bd6af47294" ], "Cache-Control": [ "no-cache" @@ -51799,34 +52318,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13045" + "13928" ], "x-ms-correlation-request-id": [ - "1e64ef1e-e1fc-4e35-8ac3-1a3b1651969e" + "eba20939-7e86-4f16-8524-2777e5a79596" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:1e64ef1e-e1fc-4e35-8ac3-1a3b1651969e" + "WESTUS:20150813T074744Z:eba20939-7e86-4f16-8524-2777e5a79596" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus/Oracle_Database_12c_Standard_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sku1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sku2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sku3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "401" + "943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51841,7 +52360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e8ae51f-7016-4311-8cc6-9702fbd7aaf4" + "9b2fc5b6-e30a-4d4b-b08f-f5499a4d3ff4" ], "Cache-Control": [ "no-cache" @@ -51851,34 +52370,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13044" + "13927" ], "x-ms-correlation-request-id": [ - "f40d6336-b0ed-4b8f-b82f-f5b7c309b0bf" + "6a32288d-9816-47db-8d5b-30d78cc7df34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:f40d6336-b0ed-4b8f-b82f-f5b7c309b0bf" + "WESTUS:20150813T074744Z:6a32288d-9816-47db-8d5b-30d78cc7df34" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/byol/Versions/1.0.201412\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "777" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51893,7 +52412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65b2c6c8-ece0-4c93-8ff6-4caa6afc32ea" + "dcc6d74c-ac37-44f0-b6cf-af23d809250f" ], "Cache-Control": [ "no-cache" @@ -51903,34 +52422,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13043" + "13926" ], "x-ms-correlation-request-id": [ - "72a9d5cf-b1e6-405b-bc0a-acb28fb68832" + "47916216-e2ad-4dd1-bf56-202c4ab98be4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:72a9d5cf-b1e6-405b-bc0a-acb28fb68832" + "WESTUS:20150813T074744Z:47916216-e2ad-4dd1-bf56-202c4ab98be4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMmNfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/byol/versions/1.0.201412?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9ieW9sL3ZlcnNpb25zLzEuMC4yMDE0MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mfiles\",\r\n \"name\": \"byol\",\r\n \"product\": \"standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/byol/Versions/1.0.201412\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "350" + "549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51945,7 +52464,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d893fa3-156b-4915-9c86-4412086d7aa0" + "9883effc-32fc-40c9-9d3c-af32a56c132d" ], "Cache-Control": [ "no-cache" @@ -51955,34 +52474,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13042" + "13925" ], "x-ms-correlation-request-id": [ - "cfb58d39-cfdd-4461-8706-557036efc262" + "18164bd5-bd30-4a67-87fa-8efc0ea826a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:cfb58d39-cfdd-4461-8706-557036efc262" + "WESTUS:20150813T074744Z:18164bd5-bd30-4a67-87fa-8efc0ea826a9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMmNfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku1/Versions/1.0.201412\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "451" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -51997,7 +52516,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f0bdd40-74fe-42c1-9020-8151e585c8c4" + "e6f2e168-7d12-4ca2-bb8d-6b57bf9bebe1" ], "Cache-Control": [ "no-cache" @@ -52007,34 +52526,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13041" + "13924" ], "x-ms-correlation-request-id": [ - "1921117b-daca-44e9-8518-40ecbdfe2a25" + "606acb11-364b-4a47-b4b5-b3c91371725a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:1921117b-daca-44e9-8518-40ecbdfe2a25" + "WESTUS:20150813T074744Z:606acb11-364b-4a47-b4b5-b3c91371725a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku1/versions/1.0.201412?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UxL3ZlcnNpb25zLzEuMC4yMDE0MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mfiles\",\r\n \"name\": \"sku1\",\r\n \"product\": \"standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku1/Versions/1.0.201412\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "348" + "549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52049,7 +52568,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14466d92-1ccc-4b8f-8d3a-5dcb284642ec" + "a9aa6aaa-5aac-4068-b766-347b26426957" ], "Cache-Control": [ "no-cache" @@ -52059,34 +52578,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13040" + "13923" ], "x-ms-correlation-request-id": [ - "bd7e68f7-c18b-4c72-b470-d15bbf346acc" + "469d1e69-6c02-4729-b99f-b3bfe3dc37b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:bd7e68f7-c18b-4c72-b470-d15bbf346acc" + "WESTUS:20150813T074744Z:469d1e69-6c02-4729-b99f-b3bfe3dc37b1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku2/Versions/1.0.201412\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "449" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52101,7 +52620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "249c8270-bb82-40bd-b43f-891535dda6ee" + "88d1e074-207a-452b-a8ba-a8dafdeacfaa" ], "Cache-Control": [ "no-cache" @@ -52111,34 +52630,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13039" + "13922" ], "x-ms-correlation-request-id": [ - "c29735f4-99aa-4f58-9d59-8934d64cb1a2" + "e078841b-3853-4bfb-a392-87234f14024f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:c29735f4-99aa-4f58-9d59-8934d64cb1a2" + "WESTUS:20150813T074745Z:e078841b-3853-4bfb-a392-87234f14024f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku2/versions/1.0.201412?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UyL3ZlcnNpb25zLzEuMC4yMDE0MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_11g_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_11g_R2_Standard_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mfiles\",\r\n \"name\": \"sku2\",\r\n \"product\": \"standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku2/Versions/1.0.201412\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "681" + "549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52153,7 +52672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "188867bd-f173-4f80-928a-9109dad91855" + "9c4b7995-c73e-479f-9304-3c65803e9b45" ], "Cache-Control": [ "no-cache" @@ -52163,34 +52682,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13038" + "13921" ], "x-ms-correlation-request-id": [ - "a6766b3b-8b46-49ca-a644-4d8aab0056e6" + "98a8ceec-e83c-4f33-97e2-8855bde72fa9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:a6766b3b-8b46-49ca-a644-4d8aab0056e6" + "WESTUS:20150813T074745Z:98a8ceec-e83c-4f33-97e2-8855bde72fa9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus/Oracle_WebLogic_Server_11g_Enterprise_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzExZ19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku3/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku3/Versions/1.0.201412\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "316" + "264" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52205,7 +52724,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19ccc41a-47b5-4a3c-bca5-ca46e56f7d0c" + "6d1b4411-bd03-4187-a87c-4323bfc461c9" ], "Cache-Control": [ "no-cache" @@ -52215,34 +52734,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13037" + "13920" ], "x-ms-correlation-request-id": [ - "a13d2b02-0193-4fd7-a149-843b4fd4bb2a" + "85b35dc2-228a-44ba-bc5b-5a0fa735dc72" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:a13d2b02-0193-4fd7-a149-843b4fd4bb2a" + "WESTUS:20150813T074745Z:85b35dc2-228a-44ba-bc5b-5a0fa735dc72" ], "Date": [ - "Wed, 05 Aug 2015 21:26:07 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus/Oracle_WebLogic_Server_11g_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzExZ19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mfiles/artifacttypes/vmimage/offers/standard/skus/sku3/versions/1.0.201412?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWZpbGVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RhbmRhcmQvc2t1cy9za3UzL3ZlcnNpb25zLzEuMC4yMDE0MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_Enterprise_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mfiles\",\r\n \"name\": \"sku3\",\r\n \"product\": \"standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201412\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles/ArtifactTypes/VMImage/Offers/standard/Skus/sku3/Versions/1.0.201412\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52257,7 +52776,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bab59966-b3bc-4d45-965f-6535e8cc1a51" + "4426128c-266a-4ea1-91e1-52ed60022dda" ], "Cache-Control": [ "no-cache" @@ -52267,34 +52786,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13036" + "13919" ], "x-ms-correlation-request-id": [ - "6cddfd94-e1cd-477b-81ff-1566fb0d9911" + "73cdef69-a931-4853-b7c8-b58554222307" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212608Z:6cddfd94-e1cd-477b-81ff-1566fb0d9911" + "WESTUS:20150813T074745Z:73cdef69-a931-4853-b7c8-b58554222307" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzExZ19SMl9TdGFuZGFyZF9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"JDK\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2_and_WebLogic_Server_11g\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_and_WebLogic_Server_12c\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_11g\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_12c\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Zulu_OpenJDK\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "317" + "2125" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52309,7 +52828,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2d65436-190d-437d-b9dc-66183713f641" + "d3eab7ab-2eef-4408-9dad-eb3ed8f68a24" ], "Cache-Control": [ "no-cache" @@ -52319,34 +52838,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13035" + "13918" ], "x-ms-correlation-request-id": [ - "d8622a25-df0f-454c-b0e5-0848342c70c3" + "25525a82-61b6-4167-b998-e9fdb64ea1f2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:d8622a25-df0f-454c-b0e5-0848342c70c3" + "WESTUS:20150813T074745Z:25525a82-61b6-4167-b998-e9fdb64ea1f2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzExZ19SMl9TdGFuZGFyZF9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"JDK_6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"JDK_7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"JDK_8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_8\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "418" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52361,7 +52880,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9870993c-1323-4b88-ae15-4d3fb6118c85" + "2e7835c3-38ea-46d4-8d37-133187756fe4" ], "Cache-Control": [ "no-cache" @@ -52371,34 +52890,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13034" + "13917" ], "x-ms-correlation-request-id": [ - "9e3e0fb4-d2be-44ba-bec7-a31f4a7ed32a" + "de880a89-c70f-4cd0-b5b4-6ac7c7c9df79" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:9e3e0fb4-d2be-44ba-bec7-a31f4a7ed32a" + "WESTUS:20150813T074745Z:de880a89-c70f-4cd0-b5b4-6ac7c7c9df79" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_12c_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_12c_Standard_Edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Standard_Edition\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_6/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "675" + "253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52413,7 +52932,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab0430f3-34da-4ef6-9586-4e5eaec01112" + "d9ae8786-9593-458b-8294-8afc19d84555" ], "Cache-Control": [ "no-cache" @@ -52423,34 +52942,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13033" + "13916" ], "x-ms-correlation-request-id": [ - "d3f71243-1db6-46e0-a96f-47926186b1d5" + "4c1e4398-bdbf-4394-9395-ab79d21575fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:d3f71243-1db6-46e0-a96f-47926186b1d5" + "WESTUS:20150813T074745Z:4c1e4398-bdbf-4394-9395-ab79d21575fe" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus/Oracle_WebLogic_Server_12c_Enterprise_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzEyY19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_6/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzYvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_6/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "316" + "354" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52465,7 +52984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c172e226-4a15-424b-aaeb-e406328e6353" + "1f507a8e-dc2b-4853-b993-713c6035128e" ], "Cache-Control": [ "no-cache" @@ -52475,34 +52994,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13032" + "13915" ], "x-ms-correlation-request-id": [ - "f818dd35-2b08-47b5-b61a-b617fc938cc7" + "311cdf29-f0ef-48cd-a624-e8bf486c700e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:f818dd35-2b08-47b5-b61a-b617fc938cc7" + "WESTUS:20150813T074745Z:311cdf29-f0ef-48cd-a624-e8bf486c700e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus/Oracle_WebLogic_Server_12c_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzEyY19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Enterprise_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_7/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "417" + "253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52517,7 +53036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b161806-bca8-41ee-aad0-d022e1c936f3" + "2d6e2138-4212-4a0e-b64e-1856d5f7f21c" ], "Cache-Control": [ "no-cache" @@ -52527,34 +53046,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13031" + "13914" ], "x-ms-correlation-request-id": [ - "c5a6f2eb-da36-4e9f-834e-b8c2c6f675f1" + "63773dc5-760b-44ef-a0e1-3f24e003551f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:c5a6f2eb-da36-4e9f-834e-b8c2c6f675f1" + "WESTUS:20150813T074745Z:63773dc5-760b-44ef-a0e1-3f24e003551f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus/Oracle_WebLogic_Server_12c_Standard_Edition/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzEyY19TdGFuZGFyZF9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_7/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzcvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_7/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "314" + "354" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52569,7 +53088,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5b790bd-c984-48fb-8c66-6c945be7af33" + "d3024ebe-696d-407f-bdac-383e2028af80" ], "Cache-Control": [ "no-cache" @@ -52579,34 +53098,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13030" + "13913" ], "x-ms-correlation-request-id": [ - "86b89187-c5f7-435c-adac-648c552e060e" + "e6669dda-1ea5-4327-a017-30c801898e85" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:86b89187-c5f7-435c-adac-648c552e060e" + "WESTUS:20150813T074746Z:e6669dda-1ea5-4327-a017-30c801898e85" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus/Oracle_WebLogic_Server_12c_Standard_Edition/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzEyY19TdGFuZGFyZF9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_8/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Standard_Edition/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_8/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "415" + "253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52621,7 +53140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a05fdaa7-136c-4038-8449-2d2213f6dfa0" + "94b4f62e-d492-468c-a11c-4de8d2cbc700" ], "Cache-Control": [ "no-cache" @@ -52631,34 +53150,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13029" + "13912" ], "x-ms-correlation-request-id": [ - "6f8837b8-8d5f-4be6-88f0-a7246ca6597d" + "1b01af4d-630a-46aa-aeee-fe9b5cf8ed1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:6f8837b8-8d5f-4be6-88f0-a7246ca6597d" + "WESTUS:20150813T074746Z:1b01af4d-630a-46aa-aeee-fe9b5cf8ed1b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/JDK/skus/JDK_8/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvSkRLL3NrdXMvSkRLXzgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Zulu_OpenJDK_package_v1.7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Zulu_OpenJDK_package_v1.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.8\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_8/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "354" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52673,7 +53192,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91ceb302-7e5e-472e-9148-1e413fb74f0e" + "73355745-c4b3-46c1-873d-a4673ea6c49b" ], "Cache-Control": [ "no-cache" @@ -52683,34 +53202,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13028" + "13911" ], "x-ms-correlation-request-id": [ - "d670486f-1472-4656-bfe5-9209833a8a71" + "811f36b6-cd09-40fc-b230-c3a01889365d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:d670486f-1472-4656-bfe5-9209833a8a71" + "WESTUS:20150813T074746Z:811f36b6-cd09-40fc-b230-c3a01889365d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus/Zulu_OpenJDK_package_v1.7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXMvWnVsdV9PcGVuSkRLX3BhY2thZ2VfdjEuNy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.7/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_11g_R2_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_Standard_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_12c_Standard_Edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "282" + "645" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52725,7 +53244,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cd69f68-b057-492c-85ab-de1f038c8303" + "152f826e-e70b-43c3-a66e-d564e3a72966" ], "Cache-Control": [ "no-cache" @@ -52735,34 +53254,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13027" + "13910" ], "x-ms-correlation-request-id": [ - "c4aa000a-0660-43c6-859f-a8b4e6dca121" + "6164f025-9a9a-49f8-a3c1-fe48157ebc6b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:c4aa000a-0660-43c6-859f-a8b4e6dca121" + "WESTUS:20150813T074746Z:6164f025-9a9a-49f8-a3c1-fe48157ebc6b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus/Zulu_OpenJDK_package_v1.7/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXMvWnVsdV9PcGVuSkRLX3BhY2thZ2VfdjEuNy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus/Oracle_Database_11g_R2_Enterprise_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.7/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_11g_R2_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "383" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52777,7 +53296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "765b128a-c215-4d32-b4d2-7d00a03688a9" + "44279b21-8ca6-4fba-8d8a-bf8a6e88b6d7" ], "Cache-Control": [ "no-cache" @@ -52787,34 +53306,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13026" + "13909" ], "x-ms-correlation-request-id": [ - "6a7285ce-0abc-49d3-9be3-24067f8d196e" + "efbb2c98-4e23-4deb-954e-648b44258d59" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212609Z:6a7285ce-0abc-49d3-9be3-24067f8d196e" + "WESTUS:20150813T074746Z:efbb2c98-4e23-4deb-954e-648b44258d59" ], "Date": [ - "Wed, 05 Aug 2015 21:26:08 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus/Zulu_OpenJDK_package_v1.8/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXMvWnVsdV9PcGVuSkRLX3BhY2thZ2VfdjEuOC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus/Oracle_Database_11g_R2_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.8/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_11g_R2_Enterprise_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "282" + "409" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52829,7 +53348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a40d31b-941e-437c-8c62-a5a2dd950f1b" + "719852ac-35cc-48b9-b8db-b26c60087ff2" ], "Cache-Control": [ "no-cache" @@ -52839,34 +53358,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13025" + "13908" ], "x-ms-correlation-request-id": [ - "f0abc58b-9ad4-45b1-8905-46722be2294e" + "17672d9e-c00c-458b-8f47-43cf1de921ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:f0abc58b-9ad4-45b1-8905-46722be2294e" + "WESTUS:20150813T074746Z:17672d9e-c00c-458b-8f47-43cf1de921ab" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus/Zulu_OpenJDK_package_v1.8/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXMvWnVsdV9PcGVuSkRLX3BhY2thZ2VfdjEuOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus/Oracle_Database_12c_Standard_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.8/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "383" + "303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52881,7 +53400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8904c236-5e7c-4d6c-9fa8-57e3b68f1c9b" + "5479e064-378d-4952-8eff-d395d824c425" ], "Cache-Control": [ "no-cache" @@ -52891,34 +53410,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13024" + "13907" ], "x-ms-correlation-request-id": [ - "85895206-09c4-46f3-857f-3f1ae3926a2a" + "9c7b2123-9d2f-4441-bda2-76bca8ee5acc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:85895206-09c4-46f3-857f-3f1ae3926a2a" + "WESTUS:20150813T074746Z:9c7b2123-9d2f-4441-bda2-76bca8ee5acc" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Applications/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLkFwcGxpY2F0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2/skus/Oracle_Database_12c_Standard_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMi9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52933,7 +53452,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ebc2051f-d1ec-4347-9c20-55332fd1d734" + "9df87406-ba32-45c9-9ecc-6e01eca3659a" ], "Cache-Control": [ "no-cache" @@ -52943,34 +53462,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13023" + "13906" ], "x-ms-correlation-request-id": [ - "d4d8b01b-0902-4544-94cc-67b62b02a00e" + "9db64fc3-e1a8-48b0-bf2c-f8965a491180" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:d4d8b01b-0902-4544-94cc-67b62b02a00e" + "WESTUS:20150813T074746Z:9db64fc3-e1a8-48b0-bf2c-f8965a491180" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Backup.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLkJhY2t1cC5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -52985,7 +53504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5ce318d-253e-4362-b56d-bda7971c0a91" + "97ac1bed-5ffa-464b-a5c0-bf5019ab7b18" ], "Cache-Control": [ "no-cache" @@ -52995,34 +53514,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13022" + "13905" ], "x-ms-correlation-request-id": [ - "84862fdf-37d3-4083-be11-9000387a7b5c" + "f3887b61-47b0-4081-9f5d-8785deee1623" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:84862fdf-37d3-4083-be11-9000387a7b5c" + "WESTUS:20150813T074746Z:f3887b61-47b0-4081-9f5d-8785deee1623" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Diagnostics/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLkRpYWdub3N0aWNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJhbmQtV2ViTG9naWNfU2VydmVyXzExZ19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53037,7 +53556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e228d0ce-2764-416b-8e27-880f6314b5f8" + "95394f8f-9696-40f5-b708-bc2571744de5" ], "Cache-Control": [ "no-cache" @@ -53047,34 +53566,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13021" + "13904" ], "x-ms-correlation-request-id": [ - "9a7589ba-2a20-451e-8ffc-ca8e525db86a" + "5b59dfd5-e69e-44c5-9e0e-cf0a39881edf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:9a7589ba-2a20-451e-8ffc-ca8e525db86a" + "WESTUS:20150813T074746Z:5b59dfd5-e69e-44c5-9e0e-cf0a39881edf" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLkV4dGVuc2lvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJhbmQtV2ViTG9naWNfU2VydmVyXzExZ19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2and-WebLogic_Server_11g_Enterprise_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "456" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53089,7 +53608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7198a572-4856-40d4-8878-9c626d51b97e" + "984f8639-ce43-426b-916b-57992a6ac802" ], "Cache-Control": [ "no-cache" @@ -53099,34 +53618,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13020" + "13903" ], "x-ms-correlation-request-id": [ - "53bd1093-2cb6-4ba2-a9e4-d280c6c4ede5" + "54fc111f-fdc0-449c-b417-ea803c7bf8f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:53bd1093-2cb6-4ba2-a9e4-d280c6c4ede5" + "WESTUS:20150813T074747Z:54fc111f-fdc0-449c-b417-ea803c7bf8f7" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.RecoveryServices/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLlJlY292ZXJ5U2VydmljZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMWdfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "354" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53141,7 +53660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24ed3472-5b4c-459a-ab1d-6dbe429d5bd3" + "6efdf0e0-8fd7-4a2c-bb59-095e190721ee" ], "Cache-Control": [ "no-cache" @@ -53151,34 +53670,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13019" + "13902" ], "x-ms-correlation-request-id": [ - "a5d66765-c6cd-47c8-ab3b-6d8f2e7e0e4e" + "62444d7e-1210-4df8-be5f-f12fb53182ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:a5d66765-c6cd-47c8-ab3b-6d8f2e7e0e4e" + "WESTUS:20150813T074747Z:62444d7e-1210-4df8-be5f-f12fb53182ce" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Security/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLlNlY3VyaXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzExZ19SMl9hbmRfV2ViTG9naWNfU2VydmVyXzExZy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMWdfUjJfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMWdfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_11g_R2_and_WebLogic_Server_11g/Skus/Oracle_Database_11g_R2_and_WebLogic_Server_11g_Standard_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53193,7 +53712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff53967a-3fcc-4651-bef3-bcacf2a36911" + "fe0201b8-14e7-4402-9c2d-e4bc5de7eeff" ], "Cache-Control": [ "no-cache" @@ -53203,34 +53722,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13018" + "13901" ], "x-ms-correlation-request-id": [ - "b18dd58d-9942-4fbb-ba81-8551ee6d44bc" + "56608498-c87e-4340-a1b5-15b4084079a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:b18dd58d-9942-4fbb-ba81-8551ee6d44bc" + "WESTUS:20150813T074747Z:56608498-c87e-4340-a1b5-15b4084079a5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Security.Internal/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLlNlY3VyaXR5LkludGVybmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_Standard_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Standard_Edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53245,7 +53764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e80414e2-e620-4116-975f-7174fdb7149f" + "533eca79-b749-40e7-a65d-baa7b1c49fd3" ], "Cache-Control": [ "no-cache" @@ -53255,34 +53774,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13017" + "13900" ], "x-ms-correlation-request-id": [ - "3edf8ef1-735a-4ff1-bd71-1f5952e2a3f7" + "74e5bb2a-39fa-40fa-8457-d4b2ca830e14" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:3edf8ef1-735a-4ff1-bd71-1f5952e2a3f7" + "WESTUS:20150813T074747Z:74e5bb2a-39fa-40fa-8457-d4b2ca830e14" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.WindowsFabric.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLldpbmRvd3NGYWJyaWMuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus/Oracle_Database_12c_Enterprise_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53297,7 +53816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8c4ab94-a447-46c0-8f8f-e5ee8d15eee0" + "5765663b-8031-44f0-9fa9-7fbbe11432c7" ], "Cache-Control": [ "no-cache" @@ -53307,34 +53826,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13016" + "13899" ], "x-ms-correlation-request-id": [ - "3ae121e9-7f69-43d6-9140-5ec5ab93e5c7" + "ce3acf9e-7bf0-45d3-97dd-f5b3fe2ba57b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:3ae121e9-7f69-43d6-9140-5ec5ab93e5c7" + "WESTUS:20150813T074747Z:ce3acf9e-7bf0-45d3-97dd-f5b3fe2ba57b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlQ0FULkF6dXJlRW5oYW5jZWRNb25pdG9yaW5nL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus/Oracle_Database_12c_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Enterprise_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "403" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53349,7 +53868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40dc7edf-f800-41ff-b4f0-ea9fa1dad31f" + "e28616bd-9a66-4053-a82b-8a655ff347ba" ], "Cache-Control": [ "no-cache" @@ -53359,34 +53878,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13015" + "13898" ], "x-ms-correlation-request-id": [ - "4c9b6dcd-31ac-4843-bb6b-ab181a071751" + "0771929d-f0c4-414d-bfbb-d2481df85395" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:4c9b6dcd-31ac-4843-bb6b-ab181a071751" + "WESTUS:20150813T074747Z:0771929d-f0c4-414d-bfbb-d2481df85395" ], "Date": [ - "Wed, 05 Aug 2015 21:26:09 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlQ0FULkF6dXJlRW5oYW5jZWRNb25pdG9yaW5nVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus/Oracle_Database_12c_Standard_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53401,7 +53920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "269f1535-877a-4e62-8f04-e39fc9c7cce1" + "56e0c769-45f5-40f4-a8e3-1d59d610fffc" ], "Cache-Control": [ "no-cache" @@ -53411,34 +53930,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13014" + "13897" ], "x-ms-correlation-request-id": [ - "ee7a183e-9cf6-4be7-8971-e4e22d75d8d1" + "4b800483-0b63-44ed-938e-b6de6ec4db84" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212610Z:ee7a183e-9cf6-4be7-8971-e4e22d75d8d1" + "WESTUS:20150813T074747Z:4b800483-0b63-44ed-938e-b6de6ec4db84" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c/skus/Oracle_Database_12c_Standard_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53453,7 +53972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f98b2f13-92a2-4265-b74e-332dd7a4a030" + "58d1e700-1d66-4fc5-b8c7-1d8836c9ba9f" ], "Cache-Control": [ "no-cache" @@ -53463,34 +53982,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13013" + "13896" ], "x-ms-correlation-request-id": [ - "3cbedeb0-a6b3-4455-a6de-264484c604e4" + "14035f29-86f4-43c7-b6d8-eeb7a1c2ccbb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212611Z:3cbedeb0-a6b3-4455-a6de-264484c604e4" + "WESTUS:20150813T074747Z:14035f29-86f4-43c7-b6d8-eeb7a1c2ccbb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.EnterpriseCloud.Monitoring/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkVudGVycHJpc2VDbG91ZC5Nb25pdG9yaW5nL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "777" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53505,7 +54024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44b78535-ad38-4ac3-b7a8-465355c062d7" + "a41d4130-a215-4295-9477-2b6d8f8ea9b8" ], "Cache-Control": [ "no-cache" @@ -53515,34 +54034,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13012" + "13895" ], "x-ms-correlation-request-id": [ - "46ee850e-f97f-4817-bbbc-1d6f2470e3e5" + "9b172ad2-dbb2-488b-9fc4-5ab0caec9278" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212611Z:46ee850e-f97f-4817-bbbc-1d6f2470e3e5" + "WESTUS:20150813T074747Z:9b172ad2-dbb2-488b-9fc4-5ab0caec9278" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.EnterpriseCloud.Monitoring.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkVudGVycHJpc2VDbG91ZC5Nb25pdG9yaW5nLlRlc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMmNfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "350" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53557,7 +54076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ffb7cc9-4f9c-4428-b72e-7d8e41b8dfef" + "67b9695a-2d33-4cdc-bbb9-a93750841a3e" ], "Cache-Control": [ "no-cache" @@ -53567,34 +54086,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13011" + "13894" ], "x-ms-correlation-request-id": [ - "e8af7c24-ab0f-4a50-8404-0026d23d3710" + "b1c46d9e-a548-4971-8bf9-301e865990dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212611Z:e8af7c24-ab0f-4a50-8404-0026d23d3710" + "WESTUS:20150813T074747Z:b1c46d9e-a548-4971-8bf9-301e865990dd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.HpcCompute/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkhwY0NvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMmNfRW50ZXJwcmlzZV9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Enterprise_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "451" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53609,7 +54128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7126617-37f4-426e-be2f-37ba3257009c" + "33496eab-ee49-4005-9975-d24d5816420a" ], "Cache-Control": [ "no-cache" @@ -53619,34 +54138,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13010" + "13893" ], "x-ms-correlation-request-id": [ - "18589ddc-2f1b-482a-b8ef-2fd78b255845" + "4dff19ae-e80a-4b74-820a-0b3693c2ef2e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212611Z:18589ddc-2f1b-482a-b8ef-2fd78b255845" + "WESTUS:20150813T074748Z:4dff19ae-e80a-4b74-820a-0b3693c2ef2e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.HpcPack/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkhwY1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53661,7 +54180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0fe781b4-e8a4-4dd2-bbc2-4096b3532635" + "d9645df9-8650-4770-803d-e5488a55ad26" ], "Cache-Control": [ "no-cache" @@ -53671,34 +54190,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13009" + "13892" ], "x-ms-correlation-request-id": [ - "ebe2629d-249d-4f67-b8f6-2a7ea82a9067" + "8bd44468-c1a8-4cfc-a0fe-8c57c794f9c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212611Z:ebe2629d-249d-4f67-b8f6-2a7ea82a9067" + "WESTUS:20150813T074748Z:8bd44468-c1a8-4cfc-a0fe-8c57c794f9c5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Lk9TVENFeHRlbnNpb25zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_Database_12c_and_WebLogic_Server_12c/skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX0RhdGFiYXNlXzEyY19hbmRfV2ViTG9naWNfU2VydmVyXzEyYy9za3VzL09yYWNsZV9EYXRhYmFzZV8xMmNfYW5kX1dlYkxvZ2ljX1NlcnZlcl8xMmNfU3RhbmRhcmRfRWRpdGlvbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c_and_WebLogic_Server_12c/Skus/Oracle_Database_12c_and_WebLogic_Server_12c_Standard_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53713,7 +54232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ba36be2-1bc5-4a3e-aba6-f482ad3cf9eb" + "3dbb0d97-31ca-4f3e-ae69-cfa05e33c852" ], "Cache-Control": [ "no-cache" @@ -53723,34 +54242,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13008" + "13891" ], "x-ms-correlation-request-id": [ - "698fdf18-bff5-4241-84b7-68dbdf077bee" + "43fe7920-8bfb-462a-8ea1-35439dc104f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212611Z:698fdf18-bff5-4241-84b7-68dbdf077bee" + "WESTUS:20150813T074748Z:43fe7920-8bfb-462a-8ea1-35439dc104f4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_11g_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_11g_R2_Standard_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "681" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53765,7 +54284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61583bde-f661-42fd-a008-567e0ffaa714" + "2f66d4ca-5e96-4d03-baf5-6161df890cc1" ], "Cache-Control": [ "no-cache" @@ -53775,34 +54294,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13007" + "13890" ], "x-ms-correlation-request-id": [ - "9be7deb7-7849-48bd-be70-a7d557cbe781" + "1cd2b922-2fb4-48c2-89c6-53b781ea0770" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212611Z:9be7deb7-7849-48bd-be70-a7d557cbe781" + "WESTUS:20150813T074748Z:1cd2b922-2fb4-48c2-89c6-53b781ea0770" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell.Internal/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwuSW50ZXJuYWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus/Oracle_WebLogic_Server_11g_Enterprise_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzExZ19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53817,7 +54336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6154be9d-5ef3-4d96-a250-a933ef050650" + "26669ee0-8b90-451e-ac37-4b8db63c116d" ], "Cache-Control": [ "no-cache" @@ -53827,34 +54346,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13006" + "13889" ], "x-ms-correlation-request-id": [ - "5a55642a-68ca-4a09-abd6-03848efcb2a7" + "6b20ddf4-1c57-4d38-b0d0-8d687e0e9464" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212611Z:5a55642a-68ca-4a09-abd6-03848efcb2a7" + "WESTUS:20150813T074748Z:6b20ddf4-1c57-4d38-b0d0-8d687e0e9464" ], "Date": [ - "Wed, 05 Aug 2015 21:26:10 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell.Internal.Telemetry/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwuSW50ZXJuYWwuVGVsZW1ldHJ5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus/Oracle_WebLogic_Server_11g_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzExZ19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_Enterprise_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53869,7 +54388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2eac1c00-261f-4d3d-97bd-0a418e1c62c9" + "fb309584-d677-4256-aa42-222010bf4978" ], "Cache-Control": [ "no-cache" @@ -53879,34 +54398,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13005" + "13888" ], "x-ms-correlation-request-id": [ - "da1b48d4-a2be-41b3-827a-ab534f664ec7" + "e0ac5910-c7a1-483b-84a5-91c80bbfaf6c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:da1b48d4-a2be-41b3-827a-ab534f664ec7" + "WESTUS:20150813T074748Z:e0ac5910-c7a1-483b-84a5-91c80bbfaf6c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzExZ19SMl9TdGFuZGFyZF9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53921,7 +54440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da0f2e2d-6675-4680-b69d-bae210c729cd" + "f1b74592-72ba-4b0a-a990-208540f7ed66" ], "Cache-Control": [ "no-cache" @@ -53931,34 +54450,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13004" + "13887" ], "x-ms-correlation-request-id": [ - "871c2d62-881f-47f2-a6f9-64bcc61cdccd" + "f6ccd7a6-d971-4d4e-827d-c04b1457698f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:871c2d62-881f-47f2-a6f9-64bcc61cdccd" + "WESTUS:20150813T074748Z:f6ccd7a6-d971-4d4e-827d-c04b1457698f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.SqlServer.Managability.IaaS.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlNxbFNlcnZlci5NYW5hZ2FiaWxpdHkuSWFhUy5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_11g/skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMWcvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzExZ19SMl9TdGFuZGFyZF9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_11g/Skus/Oracle_WebLogic_Server_11g_R2_Standard_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -53973,7 +54492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "099c6b9d-3836-46f7-bb7c-4f23aa6cbea7" + "19348c9b-1bf6-48fa-b970-ba7ec9a9e91a" ], "Cache-Control": [ "no-cache" @@ -53983,34 +54502,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13003" + "13886" ], "x-ms-correlation-request-id": [ - "df21f79f-f100-4dff-b0ac-509536371955" + "44a2dfeb-fd3d-461c-bd4d-4c3c80ab3936" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:df21f79f-f100-4dff-b0ac-509536371955" + "WESTUS:20150813T074748Z:44a2dfeb-fd3d-461c-bd4d-4c3c80ab3936" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.SqlServer.Management/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlNxbFNlcnZlci5NYW5hZ2VtZW50L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_12c_Enterprise_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Enterprise_Edition\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle_WebLogic_Server_12c_Standard_Edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Standard_Edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "675" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54025,7 +54544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8fd7740c-948f-414d-ae29-7c02e64a1d9f" + "76dec66f-9bac-4a9b-bbb1-5deffd00f25b" ], "Cache-Control": [ "no-cache" @@ -54035,34 +54554,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13002" + "13885" ], "x-ms-correlation-request-id": [ - "5257cd73-3d31-4bb2-97bf-6b71596f4a01" + "38183c93-d5d6-47ce-bb42-d8927f302c70" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:5257cd73-3d31-4bb2-97bf-6b71596f4a01" + "WESTUS:20150813T074748Z:38183c93-d5d6-47ce-bb42-d8927f302c70" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.SystemCenter/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlN5c3RlbUNlbnRlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus/Oracle_WebLogic_Server_12c_Enterprise_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzEyY19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54077,7 +54596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6dfa1c6-7ef2-48dc-a4e1-0bc68ff5db5c" + "ecbbcb74-3470-40a4-8340-4b8835d8008c" ], "Cache-Control": [ "no-cache" @@ -54087,34 +54606,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13001" + "13884" ], "x-ms-correlation-request-id": [ - "9a7232b8-9684-423c-92b0-4446020a83b9" + "301f3b76-5600-4872-8817-9a7c6f992f9e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:9a7232b8-9684-423c-92b0-4446020a83b9" + "WESTUS:20150813T074748Z:301f3b76-5600-4872-8817-9a7c6f992f9e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.VisualStudio.Azure.RemoteDebug/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlZpc3VhbFN0dWRpby5BenVyZS5SZW1vdGVEZWJ1Zy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus/Oracle_WebLogic_Server_12c_Enterprise_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzEyY19FbnRlcnByaXNlX0VkaXRpb24vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Enterprise_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54129,7 +54648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb602464-51ca-4768-ba93-636b17b12fd0" + "a3e7a859-416b-4e36-b658-1e6eb7f62dec" ], "Cache-Control": [ "no-cache" @@ -54139,34 +54658,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "13000" + "13883" ], "x-ms-correlation-request-id": [ - "0d1a4b20-c00b-4776-bb33-b08e63e3bc0c" + "00edb4c0-9147-4e72-ab62-f490fca1f162" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:0d1a4b20-c00b-4776-bb33-b08e63e3bc0c" + "WESTUS:20150813T074749Z:00edb4c0-9147-4e72-ab62-f490fca1f162" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlZpc3VhbFN0dWRpby5BenVyZS5SZW1vdGVEZWJ1Zy5Kc29uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus/Oracle_WebLogic_Server_12c_Standard_Edition/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzEyY19TdGFuZGFyZF9FZGl0aW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54181,7 +54700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6f1d86c4-9abc-4aec-864c-ba31970a3a8f" + "28e950f0-d813-4f2d-bcf3-cbffa22c9a0c" ], "Cache-Control": [ "no-cache" @@ -54191,34 +54710,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12999" + "13882" ], "x-ms-correlation-request-id": [ - "f0f786ea-e756-45f9-9fa5-9482d50c112e" + "245b8b70-5e81-42e1-b477-5eddb42add81" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:f0f786ea-e756-45f9-9fa5-9482d50c112e" + "WESTUS:20150813T074749Z:245b8b70-5e81-42e1-b477-5eddb42add81" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows.AzureRemoteApp.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuQXp1cmVSZW1vdGVBcHAuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Oracle_WebLogic_Server_12c/skus/Oracle_WebLogic_Server_12c_Standard_Edition/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlX1dlYkxvZ2ljX1NlcnZlcl8xMmMvc2t1cy9PcmFjbGVfV2ViTG9naWNfU2VydmVyXzEyY19TdGFuZGFyZF9FZGl0aW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_WebLogic_Server_12c/Skus/Oracle_WebLogic_Server_12c_Standard_Edition/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "415" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54233,7 +54752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15bd3ee2-8abe-403e-92c8-1beef90696af" + "878d39a4-204d-4c57-8369-b6565eacd5fa" ], "Cache-Control": [ "no-cache" @@ -54243,34 +54762,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12998" + "13881" ], "x-ms-correlation-request-id": [ - "1b14ad21-16ce-4b1c-87c3-ea9277eee3c7" + "679a4230-48fd-4351-be39-a734caa41441" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:1b14ad21-16ce-4b1c-87c3-ea9277eee3c7" + "WESTUS:20150813T074749Z:679a4230-48fd-4351-be39-a734caa41441" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows.RemoteDesktop/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuUmVtb3RlRGVza3RvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Zulu_OpenJDK_package_v1.7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Zulu_OpenJDK_package_v1.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.8\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54285,7 +54804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59cb6622-40c2-44f2-8c29-b74c906767b3" + "1c53525c-74e7-42fa-80f2-8c74febfdd87" ], "Cache-Control": [ "no-cache" @@ -54295,34 +54814,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12997" + "13880" ], "x-ms-correlation-request-id": [ - "3994288d-7558-4ff0-b3d4-60e60e138904" + "5daf6e87-a1c6-48e0-8e69-c7aafb9bec2d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:3994288d-7558-4ff0-b3d4-60e60e138904" + "WESTUS:20150813T074749Z:5daf6e87-a1c6-48e0-8e69-c7aafb9bec2d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.WindowsAzure.Compute/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3NBenVyZS5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus/Zulu_OpenJDK_package_v1.7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXMvWnVsdV9PcGVuSkRLX3BhY2thZ2VfdjEuNy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.7/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54337,7 +54856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d9ea2af-3794-4f86-bf4a-97cb65b22025" + "d31eacac-a584-4d96-add3-b975693e6280" ], "Cache-Control": [ "no-cache" @@ -54347,34 +54866,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12996" + "13879" ], "x-ms-correlation-request-id": [ - "b0b890e0-d1ab-4135-8c1f-f6798c38679a" + "091c726f-a4ff-441d-be92-eb4c6001ee79" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212612Z:b0b890e0-d1ab-4135-8c1f-f6798c38679a" + "WESTUS:20150813T074749Z:091c726f-a4ff-441d-be92-eb4c6001ee79" ], "Date": [ - "Wed, 05 Aug 2015 21:26:11 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus/Zulu_OpenJDK_package_v1.7/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXMvWnVsdV9PcGVuSkRLX3BhY2thZ2VfdjEuNy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Configuration-Server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Configuration-Server-Non-VPN\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Configuration-Server-VPN\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Master-Target-Server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Process-Server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.7/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1380" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54389,7 +54908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b07c1aa3-f38c-4df3-8102-deb0c31435a9" + "97fa964f-7dc3-4ad2-9c55-d9ca155a61f0" ], "Cache-Control": [ "no-cache" @@ -54399,34 +54918,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12995" + "13878" ], "x-ms-correlation-request-id": [ - "fb231262-0a21-4460-871b-540850a1c018" + "0cc42267-4cf9-48f3-b675-c857749ac69f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:fb231262-0a21-4460-871b-540850a1c018" + "WESTUS:20150813T074749Z:0cc42267-4cf9-48f3-b675-c857749ac69f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus/Zulu_OpenJDK_package_v1.8/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXMvWnVsdV9PcGVuSkRLX3BhY2thZ2VfdjEuOC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.8/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "314" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54441,7 +54960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70630740-5b68-431b-83af-23cdfba09370" + "e57a6626-7106-4ec1-9ace-68314706ee13" ], "Cache-Control": [ "no-cache" @@ -54451,34 +54970,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12994" + "13877" ], "x-ms-correlation-request-id": [ - "c679eacd-b338-40f5-b787-5435db9407c9" + "9efd8c3e-7791-4b1a-90dc-0e0c64809708" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:c679eacd-b338-40f5-b787-5435db9407c9" + "WESTUS:20150813T074749Z:9efd8c3e-7791-4b1a-90dc-0e0c64809708" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft/artifacttypes/vmimage/offers/Zulu_OpenJDK/skus/Zulu_OpenJDK_package_v1.8/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvWnVsdV9PcGVuSkRLL3NrdXMvWnVsdV9PcGVuSkRLX3BhY2thZ2VfdjEuOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.8/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "952" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54493,7 +55012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "336fa754-26a7-4224-901f-463961d9f30d" + "c63864b7-eb84-4554-9e9c-8e40245083b8" ], "Cache-Control": [ "no-cache" @@ -54503,34 +55022,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12993" + "13876" ], "x-ms-correlation-request-id": [ - "37572560-5d5d-4bdd-96be-251abac60a52" + "1684b9fe-81fd-4cab-bde6-212f2f0342e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:37572560-5d5d-4bdd-96be-251abac60a52" + "WESTUS:20150813T074749Z:1684b9fe-81fd-4cab-bde6-212f2f0342e6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.06?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Applications/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLkFwcGxpY2F0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "419" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54545,7 +55064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f791f160-dbc0-4ee1-8152-1f4f88989d10" + "a126404a-2074-4827-9d09-b0d784dec0ac" ], "Cache-Control": [ "no-cache" @@ -54555,34 +55074,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12992" + "13875" ], "x-ms-correlation-request-id": [ - "7bdfa03b-ea38-461e-aead-363439722f17" + "8fa17046-c4f3-4ffb-b27e-9c4e8fabc9f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:7bdfa03b-ea38-461e-aead-363439722f17" + "WESTUS:20150813T074749Z:8fa17046-c4f3-4ffb-b27e-9c4e8fabc9f6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.08?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Backup.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLkJhY2t1cC5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "419" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54597,7 +55116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2e161b1-0658-4580-8a6d-0b70501fe179" + "b52a4b84-2f3d-414c-a96a-0f7330498fbd" ], "Cache-Control": [ "no-cache" @@ -54607,34 +55126,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12991" + "13874" ], "x-ms-correlation-request-id": [ - "c8b694f3-f6ff-4a11-9a2c-5a7368084b23" + "ccd65e3f-00ac-4480-b748-d3949e8d8974" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:c8b694f3-f6ff-4a11-9a2c-5a7368084b23" + "WESTUS:20150813T074749Z:ccd65e3f-00ac-4480-b748-d3949e8d8974" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus/Windows-2012-R2-Datacenter/versions/201507.02.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wMi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Diagnostics/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLkRpYWdub3N0aWNzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "423" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54649,7 +55168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11cf6aec-7d58-4b9d-9e35-25dc9804cc28" + "5676358a-2778-4874-839a-f4c79af5e912" ], "Cache-Control": [ "no-cache" @@ -54659,34 +55178,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12990" + "13873" ], "x-ms-correlation-request-id": [ - "49953467-15f9-4f5e-bb06-7f4c83f7ba3e" + "97ba8514-fd2a-4ff9-92ba-5bed97a8bfd0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:49953467-15f9-4f5e-bb06-7f4c83f7ba3e" + "WESTUS:20150813T074749Z:97ba8514-fd2a-4ff9-92ba-5bed97a8bfd0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLkV4dGVuc2lvbnMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "322" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54701,7 +55220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89a61a3e-5af2-453b-866a-a98a2d46e282" + "92346953-b45d-4fd3-b838-fdf357146fc3" ], "Cache-Control": [ "no-cache" @@ -54711,34 +55230,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12989" + "13872" ], "x-ms-correlation-request-id": [ - "1630814b-1e8d-4871-961a-c0a86447986f" + "1119e2df-4367-467d-8f11-55c743518fa0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:1630814b-1e8d-4871-961a-c0a86447986f" + "WESTUS:20150813T074750Z:1119e2df-4367-467d-8f11-55c743518fa0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.RecoveryServices/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLlJlY292ZXJ5U2VydmljZXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.03.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.03.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "1311" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54753,7 +55272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73fa6685-4910-4e21-8a2a-1f5343e9a80b" + "5e8c79fc-bbb8-453b-afc5-e32efb61b2a9" ], "Cache-Control": [ "no-cache" @@ -54763,34 +55282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12988" + "13871" ], "x-ms-correlation-request-id": [ - "c0c3a456-ec33-43b7-8430-ef844fe19151" + "b8e9dfd6-cf08-429e-a10b-50d62fdd3cff" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:c0c3a456-ec33-43b7-8430-ef844fe19151" + "WESTUS:20150813T074750Z:b8e9dfd6-cf08-429e-a10b-50d62fdd3cff" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.03.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNTA3LjAzLjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Security/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLlNlY3VyaXR5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.03.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.03.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "431" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54805,7 +55324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6d54802-bcac-4cdd-b9a2-e8e7b7dcbcd5" + "55442e05-d7b6-4de5-b02c-043b17d2baad" ], "Cache-Control": [ "no-cache" @@ -54815,34 +55334,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12987" + "13870" ], "x-ms-correlation-request-id": [ - "0731bdce-fe26-4e83-8ad6-dd849077133f" + "b124c258-8a17-4a84-b7c6-d8c8f6207a8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:0731bdce-fe26-4e83-8ad6-dd849077133f" + "WESTUS:20150813T074750Z:b124c258-8a17-4a84-b7c6-d8c8f6207a8a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.04.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNTA3LjA0LjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.Security.Internal/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLlNlY3VyaXR5LkludGVybmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "431" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54857,7 +55376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab06dd13-7134-4b6d-8803-18b00de934cc" + "5125a571-825f-4d8a-85cc-a365654812c8" ], "Cache-Control": [ "no-cache" @@ -54867,34 +55386,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12986" + "13869" ], "x-ms-correlation-request-id": [ - "97c2b5e5-c32e-4023-8766-82a5493d4879" + "b4ca681e-e2fa-499a-bb86-ad12f4e7a3be" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212613Z:97c2b5e5-c32e-4023-8766-82a5493d4879" + "WESTUS:20150813T074750Z:b4ca681e-e2fa-499a-bb86-ad12f4e7a3be" ], "Date": [ - "Wed, 05 Aug 2015 21:26:13 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.05.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNTA3LjA1LjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Azure.WindowsFabric.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlLldpbmRvd3NGYWJyaWMuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "431" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54909,7 +55428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c6b83f6-4cca-409a-8a76-5bf08bae6f99" + "16060c47-fce0-4320-8106-3f69e82f8183" ], "Cache-Control": [ "no-cache" @@ -54919,34 +55438,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12985" + "13868" ], "x-ms-correlation-request-id": [ - "a06dd1aa-0d97-4ba3-b31b-ca812d3d5eec" + "7e0b9e8e-3c44-4db1-a920-4aa0af8ef292" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:a06dd1aa-0d97-4ba3-b31b-ca812d3d5eec" + "WESTUS:20150813T074750Z:7e0b9e8e-3c44-4db1-a920-4aa0af8ef292" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.06.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNTA3LjA2LjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlQ0FULkF6dXJlRW5oYW5jZWRNb25pdG9yaW5nL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "431" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54961,7 +55480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f55712d5-cea7-4c90-866b-69894bb329f0" + "65a37370-8716-49f1-b560-1f48d938b453" ], "Cache-Control": [ "no-cache" @@ -54971,34 +55490,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12984" + "13867" ], "x-ms-correlation-request-id": [ - "a7e8ad5c-9a32-4806-b64a-65727a871113" + "7c4f445c-a0b6-48a4-aa13-513de87a33ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:a7e8ad5c-9a32-4806-b64a-65727a871113" + "WESTUS:20150813T074750Z:7c4f445c-a0b6-48a4-aa13-513de87a33ca" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkF6dXJlQ0FULkF6dXJlRW5oYW5jZWRNb25pdG9yaW5nVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "318" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55013,7 +55532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "539ecfe7-2c49-4327-b502-b1253114369c" + "60750641-2dfd-4f7d-a969-3998559ce12e" ], "Cache-Control": [ "no-cache" @@ -55023,34 +55542,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12983" + "13866" ], "x-ms-correlation-request-id": [ - "088e15a5-03a0-4e64-9544-396a3205a20b" + "7ca1eea0-0a4a-4bda-bb0c-97154ab5668d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:088e15a5-03a0-4e64-9544-396a3205a20b" + "WESTUS:20150813T074750Z:7ca1eea0-0a4a-4bda-bb0c-97154ab5668d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Compute/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.03.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.03.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "1295" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55065,7 +55584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7bb5543b-2f23-4f46-a29c-5756c38cb462" + "3a8c5e26-2a8d-4646-8825-d1d61ab8b4e0" ], "Cache-Control": [ "no-cache" @@ -55075,34 +55594,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12982" + "13865" ], "x-ms-correlation-request-id": [ - "a5c64abe-267b-4db6-8313-293e9e701460" + "cfbb757a-5e44-4f27-a6cb-8dfc0524bb86" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:a5c64abe-267b-4db6-8313-293e9e701460" + "WESTUS:20150813T074750Z:cfbb757a-5e44-4f27-a6cb-8dfc0524bb86" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.03.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy8yMDE1MDcuMDMuMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.EnterpriseCloud.Monitoring/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkVudGVycHJpc2VDbG91ZC5Nb25pdG9yaW5nL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.03.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.03.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "427" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55117,7 +55636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ae0710a-0aa0-4de3-9586-4dc9b40d9f0d" + "28777728-2627-4135-9fd9-551330314638" ], "Cache-Control": [ "no-cache" @@ -55127,34 +55646,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12981" + "13864" ], "x-ms-correlation-request-id": [ - "30e4a3eb-b1e2-406c-b404-50e91c0e664e" + "6c971105-5948-47af-9fe2-27897c9abbd4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:30e4a3eb-b1e2-406c-b404-50e91c0e664e" + "WESTUS:20150813T074750Z:6c971105-5948-47af-9fe2-27897c9abbd4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.04.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy8yMDE1MDcuMDQuMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.EnterpriseCloud.Monitoring.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkVudGVycHJpc2VDbG91ZC5Nb25pdG9yaW5nLlRlc3QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "427" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55169,7 +55688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3ac431d-c61e-4be3-856b-990f0ed19a2f" + "e2b7ce56-7258-4b1e-96d8-4c8441ec5683" ], "Cache-Control": [ "no-cache" @@ -55179,34 +55698,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12980" + "13863" ], "x-ms-correlation-request-id": [ - "d60b41a9-1b12-45d1-a85c-d4a5cacf517a" + "08681397-9760-4d6e-8f32-ef2636c746db" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:d60b41a9-1b12-45d1-a85c-d4a5cacf517a" + "WESTUS:20150813T074750Z:08681397-9760-4d6e-8f32-ef2636c746db" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.05.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy8yMDE1MDcuMDUuMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.HpcCompute/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkhwY0NvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "427" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55221,7 +55740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad951465-79ec-4d7f-a893-72ca32e0ea19" + "531783ce-2e1f-4e5a-a468-eb1d9ea18ee2" ], "Cache-Control": [ "no-cache" @@ -55231,34 +55750,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12979" + "13862" ], "x-ms-correlation-request-id": [ - "c4b64440-16be-4fa0-921e-063e4fbde5fb" + "b7d21e38-9189-4d5e-bc6b-c4efab2bd776" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:c4b64440-16be-4fa0-921e-063e4fbde5fb" + "WESTUS:20150813T074751Z:b7d21e38-9189-4d5e-bc6b-c4efab2bd776" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.06.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy8yMDE1MDcuMDYuMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.HpcPack/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LkhwY1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "427" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55273,7 +55792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f033bd82-dac2-4017-9ef3-6738574edf39" + "3cd09097-17db-4129-8871-bc9371d678c4" ], "Cache-Control": [ "no-cache" @@ -55283,34 +55802,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12978" + "13861" ], "x-ms-correlation-request-id": [ - "78131f58-b0f6-4b61-8894-af3bc8eba46e" + "779b2203-16c3-478e-bbdb-71d82f538f23" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:78131f58-b0f6-4b61-8894-af3bc8eba46e" + "WESTUS:20150813T074751Z:779b2203-16c3-478e-bbdb-71d82f538f23" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Lk9TVENFeHRlbnNpb25zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "314" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55325,7 +55844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b08fc68-1457-4589-b3a7-873e0659f631" + "4dd13f52-1751-4cf7-a51e-8d8b37d7ab92" ], "Cache-Control": [ "no-cache" @@ -55335,34 +55854,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12977" + "13860" ], "x-ms-correlation-request-id": [ - "e8ea2420-f6ca-400b-b961-6c51a15e4aa6" + "4d947e5a-2d0b-4f2b-9cbd-ab009759869f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212614Z:e8ea2420-f6ca-400b-b961-6c51a15e4aa6" + "WESTUS:20150813T074751Z:4d947e5a-2d0b-4f2b-9cbd-ab009759869f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:14 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "1909" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55377,7 +55896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f90c4aaa-cd3b-4ed9-ab56-c2b2065be95c" + "45c6498b-220d-45d5-add1-836b36da8035" ], "Cache-Control": [ "no-cache" @@ -55387,34 +55906,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12976" + "13859" ], "x-ms-correlation-request-id": [ - "49f90d81-119a-4b77-8fbf-909b807a8b7d" + "dc63b4a9-229f-448f-bfbe-a3fe05b70073" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:49f90d81-119a-4b77-8fbf-909b807a8b7d" + "WESTUS:20150813T074751Z:dc63b4a9-229f-448f-bfbe-a3fe05b70073" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.06?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell.Install/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwuSW5zdGFsbC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "461" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55429,7 +55948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac1a7cfd-d55e-413a-a744-2365ce8e99a7" + "ac9fa3cf-0e73-43f0-be7a-3c2b8302d504" ], "Cache-Control": [ "no-cache" @@ -55439,34 +55958,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12975" + "13858" ], "x-ms-correlation-request-id": [ - "13a6ee72-f37f-4bb1-85c3-41b4fc011d53" + "52f3c22a-a753-453f-b296-922d0c68a848" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:13a6ee72-f37f-4bb1-85c3-41b4fc011d53" + "WESTUS:20150813T074751Z:52f3c22a-a753-453f-b296-922d0c68a848" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.08?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell.Internal/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwuSW50ZXJuYWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "461" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55481,7 +56000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64a1ea69-7121-45d9-b3b5-cec3977a71cd" + "30c0f098-9ec5-4f1d-ad6b-d5f2b0c8a624" ], "Cache-Control": [ "no-cache" @@ -55491,34 +56010,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12974" + "13857" ], "x-ms-correlation-request-id": [ - "52c0ad3a-9b9d-4f0a-a844-689c066c2058" + "d142a58c-5127-4878-96b7-d728c3bce19f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:52c0ad3a-9b9d-4f0a-a844-689c066c2058" + "WESTUS:20150813T074751Z:d142a58c-5127-4878-96b7-d728c3bce19f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/201507.02.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wMi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell.Internal.Telemetry/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwuSW50ZXJuYWwuVGVsZW1ldHJ5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "465" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55533,7 +56052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fe2367b-8045-4cc6-9bc6-3454e4e0a5f2" + "b1fd51ef-5edd-4a39-b90d-338ee8b08007" ], "Cache-Control": [ "no-cache" @@ -55543,34 +56062,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12973" + "13856" ], "x-ms-correlation-request-id": [ - "5f884332-aa5b-4773-abfe-c2b879a228a1" + "6055937a-57e3-4153-a9b0-b48d205c3a32" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:5f884332-aa5b-4773-abfe-c2b879a228a1" + "WESTUS:20150813T074751Z:6055937a-57e3-4153-a9b0-b48d205c3a32" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/201507.04.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNC4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "465" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55585,7 +56104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22371f2d-f0da-44e3-a79f-9caf6297836d" + "db913861-ddb2-4657-b525-543354a3ab29" ], "Cache-Control": [ "no-cache" @@ -55595,34 +56114,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12972" + "13855" ], "x-ms-correlation-request-id": [ - "e250d126-0078-4199-97cc-86f17862f834" + "44f8750f-48fb-4564-bb9f-8b0c5bc9e964" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:e250d126-0078-4199-97cc-86f17862f834" + "WESTUS:20150813T074751Z:44f8750f-48fb-4564-bb9f-8b0c5bc9e964" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/201507.05.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNS4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Powershell.Wmf/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlBvd2Vyc2hlbGwuV21mL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "465" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55637,7 +56156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1b7aea0-11cd-4b94-ab6e-05282c79a19e" + "c8dccd95-67c2-47f3-89d5-e0a237ef1f11" ], "Cache-Control": [ "no-cache" @@ -55647,34 +56166,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12971" + "13854" ], "x-ms-correlation-request-id": [ - "cd527a41-7618-42cd-9a67-531e4f9ab07d" + "b79bcf6b-dca3-4baa-abf6-528aa6ac4aec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:cd527a41-7618-42cd-9a67-531e4f9ab07d" + "WESTUS:20150813T074751Z:b79bcf6b-dca3-4baa-abf6-528aa6ac4aec" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/201507.06.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.SqlServer.Managability.IaaS.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlNxbFNlcnZlci5NYW5hZ2FiaWxpdHkuSWFhUy5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "465" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55689,7 +56208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a43fad13-f13a-42cd-968b-73f342eea834" + "4366a1a5-f626-47fe-abb1-4c08a431a733" ], "Cache-Control": [ "no-cache" @@ -55699,34 +56218,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12970" + "13853" ], "x-ms-correlation-request-id": [ - "f5622d5e-6952-4560-9356-78e3d8d2402a" + "7ff9fcf0-dc54-4405-9091-144bbc309939" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:f5622d5e-6952-4560-9356-78e3d8d2402a" + "WESTUS:20150813T074752Z:7ff9fcf0-dc54-4405-9091-144bbc309939" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.SqlServer.Management/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlNxbFNlcnZlci5NYW5hZ2VtZW50L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "308" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55741,7 +56260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b613443-5a02-4b3d-9397-745cb1b16969" + "40e91060-fb92-466e-8a8a-e5b0f728e733" ], "Cache-Control": [ "no-cache" @@ -55751,34 +56270,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12969" + "13852" ], "x-ms-correlation-request-id": [ - "d8d2b76e-c921-45a9-b451-0c495e042c99" + "b631ff86-ccfd-484c-9116-df0bc65b820f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:d8d2b76e-c921-45a9-b451-0c495e042c99" + "WESTUS:20150813T074752Z:b631ff86-ccfd-484c-9116-df0bc65b820f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.SystemCenter/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlN5c3RlbUNlbnRlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "1873" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55793,7 +56312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f6524aa-f160-44cf-956d-20814b1c515f" + "e3fe41bd-f6d8-485f-ab3d-46933212d28f" ], "Cache-Control": [ "no-cache" @@ -55803,34 +56322,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12968" + "13851" ], "x-ms-correlation-request-id": [ - "70bd9f39-30cb-478b-93d7-1f38344d0215" + "66e935e0-51b5-4bca-bc3b-1f52e07210e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:70bd9f39-30cb-478b-93d7-1f38344d0215" + "WESTUS:20150813T074752Z:66e935e0-51b5-4bca-bc3b-1f52e07210e7" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.06?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.VisualStudio.Azure.RemoteDebug/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlZpc3VhbFN0dWRpby5BenVyZS5SZW1vdGVEZWJ1Zy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "455" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55845,7 +56364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5b0679d-20df-4a89-9af4-ae2853e1a014" + "2eaa5fef-4431-49ec-beb7-9ac85800ceea" ], "Cache-Control": [ "no-cache" @@ -55855,34 +56374,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12967" + "13850" ], "x-ms-correlation-request-id": [ - "fcb815f7-bbb0-4476-95f9-f04d857b17b3" + "7484b94e-7a52-4576-bff5-ce72049f236f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:fcb815f7-bbb0-4476-95f9-f04d857b17b3" + "WESTUS:20150813T074752Z:7484b94e-7a52-4576-bff5-ce72049f236f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.08?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LlZpc3VhbFN0dWRpby5BenVyZS5SZW1vdGVEZWJ1Zy5Kc29uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "455" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55897,7 +56416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59a84949-25ef-4637-956f-4b5d8f2076a6" + "3c1f5d40-98f2-4aef-a7e4-e00bfd777717" ], "Cache-Control": [ "no-cache" @@ -55907,34 +56426,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12966" + "13849" ], "x-ms-correlation-request-id": [ - "f9f1d1a2-1065-4f35-b2fb-10bab1060397" + "290308af-9b84-4bb1-986e-7ffefe13b71a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212615Z:f9f1d1a2-1065-4f35-b2fb-10bab1060397" + "WESTUS:20150813T074752Z:290308af-9b84-4bb1-986e-7ffefe13b71a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:15 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/201507.02.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wMi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows.AzureRemoteApp.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuQXp1cmVSZW1vdGVBcHAuVGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "459" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -55949,7 +56468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0beaf13d-32ac-4cdf-84ad-e2fba1f0528f" + "61265ee0-955f-4f0e-b837-bc5648309e1f" ], "Cache-Control": [ "no-cache" @@ -55959,34 +56478,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12965" + "13848" ], "x-ms-correlation-request-id": [ - "42738378-464b-42cc-826a-cfae1bfa75de" + "4ee3fc9b-1d31-4f57-aa9b-93052d960494" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:42738378-464b-42cc-826a-cfae1bfa75de" + "WESTUS:20150813T074752Z:4ee3fc9b-1d31-4f57-aa9b-93052d960494" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/201507.04.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNC4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.Windows.RemoteDesktop/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3MuUmVtb3RlRGVza3RvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "459" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56001,7 +56520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7d4e510-2313-4d8d-a42e-edac8ca5666b" + "871288d8-9c0f-459a-b746-917a9b629763" ], "Cache-Control": [ "no-cache" @@ -56011,34 +56530,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12964" + "13847" ], "x-ms-correlation-request-id": [ - "b4d8252e-1c73-41a6-9fb6-b65d518c451a" + "208f9305-7d4f-4015-b6b8-e7934d211216" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:b4d8252e-1c73-41a6-9fb6-b65d518c451a" + "WESTUS:20150813T074752Z:208f9305-7d4f-4015-b6b8-e7934d211216" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/201507.05.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNS4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Microsoft.WindowsAzure.Compute/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0LldpbmRvd3NBenVyZS5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "459" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56053,7 +56572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1fc7e3ee-8ed2-4a48-b7ee-c75f6bc38310" + "6f321073-d2d1-489c-8f3e-a80a10b5d9de" ], "Cache-Control": [ "no-cache" @@ -56063,34 +56582,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12963" + "13846" ], "x-ms-correlation-request-id": [ - "f1a22775-ce1f-43c2-a696-027c3e0989f7" + "d42ddc6d-8bd0-4a29-ad2f-eb240f10d6a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:f1a22775-ce1f-43c2-a696-027c3e0989f7" + "WESTUS:20150813T074752Z:d42ddc6d-8bd0-4a29-ad2f-eb240f10d6a9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/201507.06.00?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Configuration-Server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Configuration-Server-Non-VPN\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Configuration-Server-VPN\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Master-Target-Server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Process-Server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "459" + "1380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56105,7 +56624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "453d4357-6bae-4d02-89bc-54b1e0541c62" + "1bdaaab3-17a8-45d5-96fc-d65780c7cf62" ], "Cache-Control": [ "no-cache" @@ -56115,34 +56634,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12962" + "13845" ], "x-ms-correlation-request-id": [ - "6160f0b3-7a14-4c2b-9485-ddb26a9f63f2" + "d2e87e3a-fa5a-4782-bd0c-d61f6d2e7d08" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:6160f0b3-7a14-4c2b-9485-ddb26a9f63f2" + "WESTUS:20150813T074753Z:d2e87e3a-fa5a-4782-bd0c-d61f6d2e7d08" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"BizTalk-Server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "260" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56157,7 +56676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49e6fb96-8b6a-4209-9710-9d7d2e61f4d9" + "af14ccf7-145c-4fe4-a6ca-075b345341cc" ], "Cache-Control": [ "no-cache" @@ -56167,34 +56686,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12961" + "13844" ], "x-ms-correlation-request-id": [ - "3c82ad66-6e2f-4011-addb-4a8ffe19c950" + "74f6f4d7-720a-410e-b72f-1c477006b4e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:3c82ad66-6e2f-4011-addb-4a8ffe19c950" + "WESTUS:20150813T074753Z:74f6f4d7-720a-410e-b72f-1c477006b4e9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Developer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-R2-Developer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-R2-Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-R2-Standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Standard\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1683" + "952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56209,7 +56728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3ff2e63-fa20-4eec-8928-c01e22fd52de" + "661d74e2-0afa-40df-a1d6-4275c351ff27" ], "Cache-Control": [ "no-cache" @@ -56219,34 +56738,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12960" + "13843" ], "x-ms-correlation-request-id": [ - "029f831d-03f8-493f-bed4-932408e8fb8d" + "252551fd-4c3c-46d7-8e01-43c1b74a4abf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:029f831d-03f8-493f-bed4-932408e8fb8d" + "WESTUS:20150813T074753Z:252551fd-4c3c-46d7-8e01-43c1b74a4abf" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Developer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.06?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Developer/Versions/1.0.201405\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "296" + "419" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56261,7 +56780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5b4dd3d-ba53-473f-8694-6ce4c555b6a7" + "ade8e7a5-ac11-44f9-a9e2-f123a1fc944e" ], "Cache-Control": [ "no-cache" @@ -56271,34 +56790,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12959" + "13842" ], "x-ms-correlation-request-id": [ - "30c9932e-fbf2-426e-8521-d1759871fbb1" + "af767afa-ca90-4acc-a8a5-6745fcee765b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:30c9932e-fbf2-426e-8521-d1759871fbb1" + "WESTUS:20150813T074753Z:af767afa-ca90-4acc-a8a5-6745fcee765b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Developer/versions/1.0.201405?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1EZXZlbG9wZXIvdmVyc2lvbnMvMS4wLjIwMTQwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.08?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Developer/Versions/1.0.201405\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "397" + "419" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56313,7 +56832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73ea0168-1d29-4696-a93d-1b11fd328a91" + "405004c7-e013-40ac-b429-07ab4a5ca12a" ], "Cache-Control": [ "no-cache" @@ -56323,34 +56842,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12958" + "13841" ], "x-ms-correlation-request-id": [ - "81d7a623-8a5b-4e12-b28e-47e76532629c" + "b5d652c5-8beb-4d68-bf20-0b91e7a6d8b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:81d7a623-8a5b-4e12-b28e-47e76532629c" + "WESTUS:20150813T074753Z:b5d652c5-8beb-4d68-bf20-0b91e7a6d8b6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server/skus/Windows-2012-R2-Datacenter/versions/201507.02.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wMi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Enterprise/Versions/1.0.201405\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "297" + "423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56365,7 +56884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1d3af2c-f530-496a-b64a-c4aa40191143" + "3eb45438-d630-4eac-aeb1-10b8e4fe6f25" ], "Cache-Control": [ "no-cache" @@ -56375,34 +56894,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12957" + "13840" ], "x-ms-correlation-request-id": [ - "d180e3c0-1415-4be7-9630-1f57f00d814c" + "00e36fcc-2d64-44ee-b876-df80968cc2f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212616Z:d180e3c0-1415-4be7-9630-1f57f00d814c" + "WESTUS:20150813T074753Z:00e36fcc-2d64-44ee-b876-df80968cc2f5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:16 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Enterprise/versions/1.0.201405?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1FbnRlcnByaXNlL3ZlcnNpb25zLzEuMC4yMDE0MDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Enterprise/Versions/1.0.201405\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "398" + "322" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56417,7 +56936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1606dda7-2801-41e7-b1c4-d332179aa0b1" + "d8580db0-9ce0-4596-ba79-c6d8a66cb807" ], "Cache-Control": [ "no-cache" @@ -56427,34 +56946,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12956" + "13839" ], "x-ms-correlation-request-id": [ - "644bcc39-c5eb-432a-8b66-98e7dee0e954" + "01404f27-47ce-42ab-bef2-a6a65c783286" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212617Z:644bcc39-c5eb-432a-8b66-98e7dee0e954" + "WESTUS:20150813T074753Z:01404f27-47ce-42ab-bef2-a6a65c783286" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Developer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer/Versions/2.0.201504\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201507\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer/Versions/2.0.201507\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.03.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.03.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "595" + "1311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56469,7 +56988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb9b7568-6b1a-41a7-ba16-45c09e4f313b" + "c98f89ce-9aab-4d35-aee7-83a6b7476a0e" ], "Cache-Control": [ "no-cache" @@ -56479,34 +56998,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12955" + "13838" ], "x-ms-correlation-request-id": [ - "50fbf304-ee2b-4c91-b329-c52f408b0847" + "70cf1652-4bf7-4e94-b753-2d04cd9abf26" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212617Z:50fbf304-ee2b-4c91-b329-c52f408b0847" + "WESTUS:20150813T074753Z:70cf1652-4bf7-4e94-b753-2d04cd9abf26" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Developer/versions/2.0.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnMvMi4wLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.03.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNTA3LjAzLjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer/Versions/2.0.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.03.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.03.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "431" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56521,7 +57040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "344a0318-bbd8-4cb5-883a-f1f22f783267" + "d4bb6d38-90dc-4793-ab01-a5243a17cef2" ], "Cache-Control": [ "no-cache" @@ -56531,34 +57050,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12954" + "13837" ], "x-ms-correlation-request-id": [ - "69da2722-9567-4244-af4a-92344b29203e" + "6c8b826e-617d-4621-9900-f99e3dee2e3d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212617Z:69da2722-9567-4244-af4a-92344b29203e" + "WESTUS:20150813T074753Z:6c8b826e-617d-4621-9900-f99e3dee2e3d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Developer/versions/2.0.201507?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnMvMi4wLjIwMTUwNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.04.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNTA3LjA0LjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201507\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer/Versions/2.0.201507\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "431" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56573,7 +57092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9146d4cc-9e19-48e3-b58c-bbac1743b294" + "5ad61c7b-bd00-4188-9b69-579c93a16622" ], "Cache-Control": [ "no-cache" @@ -56583,34 +57102,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12953" + "13836" ], "x-ms-correlation-request-id": [ - "5bd4773e-d784-4c4c-bc8e-ebda589abfac" + "60493406-430d-4517-a6b3-b00a969f1dd0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212617Z:5bd4773e-d784-4c4c-bc8e-ebda589abfac" + "WESTUS:20150813T074753Z:60493406-430d-4517-a6b3-b00a969f1dd0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.05.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNTA3LjA1LjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201411\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Enterprise/Versions/2.0.201411\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "300" + "431" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56625,7 +57144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39dd6ebe-5853-4830-8db1-ef165a0e8aa9" + "461c3467-ee7c-4d48-944d-9ad806ed6642" ], "Cache-Control": [ "no-cache" @@ -56635,34 +57154,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12952" + "13835" ], "x-ms-correlation-request-id": [ - "9cde8cbd-2bd9-4cb8-b5ca-794d703ab89e" + "dcd05345-8c8f-4f02-a113-4f73731dfbea" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212617Z:9cde8cbd-2bd9-4cb8-b5ca-794d703ab89e" + "WESTUS:20150813T074753Z:dcd05345-8c8f-4f02-a113-4f73731dfbea" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Enterprise/versions/2.0.201411?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1FbnRlcnByaXNlL3ZlcnNpb25zLzIuMC4yMDE0MTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-Non-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.06.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1Ob24tVlBOL3NrdXMvV2luZG93cy0yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMjAxNTA3LjA2LjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201411\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Enterprise/Versions/2.0.201411\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-Non-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "401" + "431" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56677,7 +57196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c08e88f-2893-43c7-902a-ab81ef147fb8" + "e8a6c67e-9a87-4ad4-835e-daa404c36f4a" ], "Cache-Control": [ "no-cache" @@ -56687,34 +57206,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12951" + "13834" ], "x-ms-correlation-request-id": [ - "1b9563dc-78b0-4003-98c3-5672900baae3" + "e0de973e-a845-4268-bd37-55a842ebcb8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212617Z:1b9563dc-78b0-4003-98c3-5672900baae3" + "WESTUS:20150813T074754Z:e0de973e-a845-4268-bd37-55a842ebcb8f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1TdGFuZGFyZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201411\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Standard/Versions/2.0.201411\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "298" + "318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56729,7 +57248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "216a4c4e-0648-4a76-9ec9-dbaeb4dd909e" + "bfdbf305-d1f8-42e1-9a3e-2ec2232510b5" ], "Cache-Control": [ "no-cache" @@ -56739,34 +57258,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12950" + "13833" ], "x-ms-correlation-request-id": [ - "10f4bd33-174a-4651-acc4-fc728b9b6b7d" + "17ae9525-f9cd-48b3-887d-3ccfe8f15082" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212617Z:10f4bd33-174a-4651-acc4-fc728b9b6b7d" + "WESTUS:20150813T074754Z:17ae9525-f9cd-48b3-887d-3ccfe8f15082" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Standard/versions/2.0.201411?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1TdGFuZGFyZC92ZXJzaW9ucy8yLjAuMjAxNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201411\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Standard/Versions/2.0.201411\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.03.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.03.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "399" + "1295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56781,7 +57300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "867d2d0f-b3e0-4220-ae33-bcad3502cc0b" + "6ed5bec6-268b-4218-8180-dc962774435a" ], "Cache-Control": [ "no-cache" @@ -56791,34 +57310,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12949" + "13832" ], "x-ms-correlation-request-id": [ - "60c45eae-fb2e-44b2-9ff6-32484a545517" + "b1cf042c-39c3-4a32-819f-2b1888f5dbf2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212617Z:60c45eae-fb2e-44b2-9ff6-32484a545517" + "WESTUS:20150813T074754Z:b1cf042c-39c3-4a32-819f-2b1888f5dbf2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1TdGFuZGFyZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.03.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy8yMDE1MDcuMDMuMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Standard/Versions/1.0.201405\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.03.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.03.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "295" + "427" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56833,7 +57352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f1290eb6-6f93-478e-b5c4-fbed185557a6" + "e0d30388-77da-4480-8e9d-328a8a8bff07" ], "Cache-Control": [ "no-cache" @@ -56843,34 +57362,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12948" + "13831" ], "x-ms-correlation-request-id": [ - "ad2ae7df-9f59-4257-9b57-aa876de4d6a4" + "ebe330c5-c35a-4bae-9168-37dcb3c5419a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:ad2ae7df-9f59-4257-9b57-aa876de4d6a4" + "WESTUS:20150813T074754Z:ebe330c5-c35a-4bae-9168-37dcb3c5419a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:17 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Standard/versions/1.0.201405?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1TdGFuZGFyZC92ZXJzaW9ucy8xLjAuMjAxNDA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.04.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy8yMDE1MDcuMDQuMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Standard/Versions/1.0.201405\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "396" + "427" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56885,7 +57404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0be5d4c0-f80a-4f60-9047-11e3d1d766ab" + "cce1e0d2-dc02-4566-af16-737e65e3f0aa" ], "Cache-Control": [ "no-cache" @@ -56895,34 +57414,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12947" + "13830" ], "x-ms-correlation-request-id": [ - "6b025b00-9b5f-41e4-892f-a01dd6d5b266" + "d59f656a-b65d-4f74-be2a-7cffc8659977" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:6b025b00-9b5f-41e4-892f-a01dd6d5b266" + "WESTUS:20150813T074754Z:d59f656a-b65d-4f74-be2a-7cffc8659977" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.05.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy8yMDE1MDcuMDUuMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Dynamics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"DynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "491" + "427" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56937,7 +57456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb6328d9-8c7d-422f-b938-399b4463399d" + "11c8f337-26ab-47c1-aa6c-18f5ca4b7e15" ], "Cache-Control": [ "no-cache" @@ -56947,34 +57466,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12946" + "13829" ], "x-ms-correlation-request-id": [ - "3511eacb-6251-4207-8485-29dfe58d08b1" + "cdcd6797-3890-45e5-aff9-15cedf5d60c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:3511eacb-6251-4207-8485-29dfe58d08b1" + "WESTUS:20150813T074754Z:cdcd6797-3890-45e5-aff9-15cedf5d60c0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Configuration-Server-VPN/skus/Windows-2012-R2-Datacenter/versions/201507.06.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Db25maWd1cmF0aW9uLVNlcnZlci1WUE4vc2t1cy9XaW5kb3dzLTIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy8yMDE1MDcuMDYuMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-AX7-AOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-AOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-AX7-BI\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-BI\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-AX7-OneBox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Configuration-Server-VPN/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "817" + "427" ], "Content-Type": [ "application/json; charset=utf-8" @@ -56989,7 +57508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "191bc831-7b13-4999-9de5-20997a218483" + "83824acd-4819-4274-a9d5-7409dd260e06" ], "Cache-Control": [ "no-cache" @@ -56999,34 +57518,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12945" + "13828" ], "x-ms-correlation-request-id": [ - "8ea10914-067b-4bf1-9f47-cfe89d834d05" + "4438aca2-cfc0-4409-903f-ee431a336571" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:8ea10914-067b-4bf1-9f47-cfe89d834d05" + "WESTUS:20150813T074754Z:4438aca2-cfc0-4409-903f-ee431a336571" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-AOS/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctQU9TL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-AOS/Versions/7.0.20150728\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "292" + "314" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57041,7 +57560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cee35e2d-366c-4d74-9e7f-cc7688c56f27" + "5069b774-3475-4ee9-bcff-d792391d4bfe" ], "Cache-Control": [ "no-cache" @@ -57051,34 +57570,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12944" + "13827" ], "x-ms-correlation-request-id": [ - "f85a95de-bb90-4bbf-82fa-e7e380c39be1" + "84819992-898e-4946-874b-4ba6eb696c6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:f85a95de-bb90-4bbf-82fa-e7e380c39be1" + "WESTUS:20150813T074754Z:84819992-898e-4946-874b-4ba6eb696c6e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-AOS/versions/7.0.20150728?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctQU9TL3ZlcnNpb25zLzcuMC4yMDE1MDcyOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-AOS/Versions/7.0.20150728\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "393" + "1909" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57093,7 +57612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf7cb308-0de0-472b-9183-108f7863fecf" + "e5955d3e-51be-4471-aa02-3ad020bf9330" ], "Cache-Control": [ "no-cache" @@ -57103,34 +57622,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12943" + "13826" ], "x-ms-correlation-request-id": [ - "250bf5c3-207a-4ba5-aceb-0bde1402ebe8" + "1c592fdf-299b-4518-9ee5-37aba1a85f2a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:250bf5c3-207a-4ba5-aceb-0bde1402ebe8" + "WESTUS:20150813T074754Z:1c592fdf-299b-4518-9ee5-37aba1a85f2a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-BI/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctQkkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.06?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-BI/Versions/7.0.20150728\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "291" + "461" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57145,7 +57664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56634e17-789d-4c50-9962-e4080b3d1009" + "5c40b396-08ff-43b5-8939-09382e857809" ], "Cache-Control": [ "no-cache" @@ -57155,34 +57674,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12942" + "13825" ], "x-ms-correlation-request-id": [ - "77d0e126-bb08-4888-b28e-fe67afe1116d" + "0ad9e326-613c-4b51-b54d-2d8dcf837acc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:77d0e126-bb08-4888-b28e-fe67afe1116d" + "WESTUS:20150813T074754Z:0ad9e326-613c-4b51-b54d-2d8dcf837acc" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-BI/versions/7.0.20150728?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctQkkvdmVyc2lvbnMvNy4wLjIwMTUwNzI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.08?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-BI/Versions/7.0.20150728\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "392" + "461" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57197,7 +57716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c38866bd-960f-4857-b214-3da290f56d5f" + "a1f57388-e527-4d36-93fa-fbca3ad15221" ], "Cache-Control": [ "no-cache" @@ -57207,34 +57726,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12941" + "13824" ], "x-ms-correlation-request-id": [ - "9a22ff6d-bd92-4ff3-8e14-2e51c74a0f79" + "8fefb150-1ff5-4b15-94cd-0baff59fdf1d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:9a22ff6d-bd92-4ff3-8e14-2e51c74a0f79" + "WESTUS:20150813T074755Z:8fefb150-1ff5-4b15-94cd-0baff59fdf1d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-OneBox/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctT25lQm94L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/201507.02.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wMi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201507\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.201507\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.20150726\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.20150728\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "875" + "465" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57249,7 +57768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4333e39-da31-4526-b66c-043e78a896fc" + "4d9e7cdb-3c4e-442c-9a86-e04b1fe7cdd9" ], "Cache-Control": [ "no-cache" @@ -57259,34 +57778,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12940" + "13823" ], "x-ms-correlation-request-id": [ - "c08006d3-e4b0-4070-9efa-6badf2cb08e1" + "21e5a020-13a3-4f9a-a263-07d46db1a060" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:c08006d3-e4b0-4070-9efa-6badf2cb08e1" + "WESTUS:20150813T074755Z:21e5a020-13a3-4f9a-a263-07d46db1a060" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-OneBox/versions/7.0.201507?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctT25lQm94L3ZlcnNpb25zLzcuMC4yMDE1MDc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/201507.04.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNC4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201507\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.201507\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "392" + "465" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57301,7 +57820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7453999c-54d3-403b-8816-a09b51f11ca3" + "62070a1d-0a3f-49ee-910f-23330d9c8812" ], "Cache-Control": [ "no-cache" @@ -57311,34 +57830,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12939" + "13822" ], "x-ms-correlation-request-id": [ - "f3f578f4-ca47-4131-a72a-0b0592678698" + "f9066843-14ba-4f78-bc30-dd1f3dc44891" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:f3f578f4-ca47-4131-a72a-0b0592678698" + "WESTUS:20150813T074755Z:f9066843-14ba-4f78-bc30-dd1f3dc44891" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-OneBox/versions/7.0.20150726?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctT25lQm94L3ZlcnNpb25zLzcuMC4yMDE1MDcyNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/201507.05.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNS4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.20150726\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "396" + "465" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57353,7 +57872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdd27444-033e-4bbc-abe8-ddb8a22db85c" + "e1ad3860-dfcc-4545-a15f-292302b09599" ], "Cache-Control": [ "no-cache" @@ -57363,34 +57882,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12938" + "13821" ], "x-ms-correlation-request-id": [ - "10068553-1713-480d-8cd3-f649a8edf4dc" + "7c6508fc-df6d-433c-9699-dcd0fb31e13f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212618Z:10068553-1713-480d-8cd3-f649a8edf4dc" + "WESTUS:20150813T074755Z:7c6508fc-df6d-433c-9699-dcd0fb31e13f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-OneBox/versions/7.0.20150728?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctT25lQm94L3ZlcnNpb25zLzcuMC4yMDE1MDcyOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Master-Target-Server/skus/Windows-2012-R2-Datacenter/versions/201507.06.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9NYXN0ZXItVGFyZ2V0LVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.20150728\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Master-Target-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "396" + "465" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57405,7 +57924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d8165d7-c9eb-4235-af09-77437e692cbe" + "0b2fcdae-999a-4955-8005-18ac35eaf7aa" ], "Cache-Control": [ "no-cache" @@ -57415,34 +57934,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12937" + "13820" ], "x-ms-correlation-request-id": [ - "42284fab-1a86-4c29-be02-55a77005e31a" + "7e3d55d2-6909-471f-b32a-3ad2053fd60b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:42284fab-1a86-4c29-be02-55a77005e31a" + "WESTUS:20150813T074755Z:7e3d55d2-6909-471f-b32a-3ad2053fd60b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:18 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-AOS-Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-AXOneBox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AXOneBox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-Client-Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-DatabaseServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-EnterprisePortal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-RetailE-Commerce\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailE-Commerce\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-RetailEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailEssentials\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2099" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57457,7 +57976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f256c7fd-f951-4191-95be-096a3795f4af" + "09d2498e-8533-4291-a8fc-8278649de667" ], "Cache-Control": [ "no-cache" @@ -57467,34 +57986,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12936" + "13819" ], "x-ms-correlation-request-id": [ - "ed289ac7-a460-4c5c-b21b-dd57621a74ca" + "4b3f65a6-73ea-41b1-a121-9f7647c4dad9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:ed289ac7-a460-4c5c-b21b-dd57621a74ca" + "WESTUS:20150813T074755Z:4b3f65a6-73ea-41b1-a121-9f7647c4dad9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AOS-Test/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQU9TLVRlc3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test/Versions/6.3.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test/Versions/6.3.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "595" + "1873" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57509,7 +58028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45a066bd-0ec0-4f0f-b9b2-084722ed903b" + "eb7404a4-0456-431b-bcb7-589646b53b51" ], "Cache-Control": [ "no-cache" @@ -57519,34 +58038,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12935" + "13818" ], "x-ms-correlation-request-id": [ - "9b99daac-220e-43d0-8e34-025a2c285c87" + "db9e0028-2627-4adc-bd46-6ae95a862530" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:9b99daac-220e-43d0-8e34-025a2c285c87" + "WESTUS:20150813T074755Z:db9e0028-2627-4adc-bd46-6ae95a862530" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AOS-Test/versions/6.3.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQU9TLVRlc3QvdmVyc2lvbnMvNi4zLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.06?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test/Versions/6.3.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.06\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.06\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57561,7 +58080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76b6692a-5b7e-4eec-af79-1d8671a9a916" + "8b31f6a4-2539-4633-b2fd-df162df1264d" ], "Cache-Control": [ "no-cache" @@ -57571,34 +58090,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12934" + "13817" ], "x-ms-correlation-request-id": [ - "ccf9c12d-27cf-4568-97b0-1b24fe5f05f8" + "93e7a974-3bbc-429d-b964-db096f2d2074" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:ccf9c12d-27cf-4568-97b0-1b24fe5f05f8" + "WESTUS:20150813T074755Z:93e7a974-3bbc-429d-b964-db096f2d2074" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AOS-Test/versions/6.3.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQU9TLVRlc3QvdmVyc2lvbnMvNi4zLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/2015.03.08?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUuMDMuMDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test/Versions/6.3.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/2015.03.08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57613,7 +58132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d6f024f-bfd5-47f2-866e-c2a3c6f573f3" + "16fd65fd-ed2b-4cd3-9133-1f55c85a03c3" ], "Cache-Control": [ "no-cache" @@ -57623,34 +58142,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12933" + "13816" ], "x-ms-correlation-request-id": [ - "d3db4596-5e2b-47b2-8054-0cf840f67f8c" + "573f4b24-3531-47fa-9d30-10a4c6a979db" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:d3db4596-5e2b-47b2-8054-0cf840f67f8c" + "WESTUS:20150813T074755Z:573f4b24-3531-47fa-9d30-10a4c6a979db" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AXOneBox/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQVhPbmVCb3gvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/201507.02.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wMi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AXOneBox/Versions/6.3.201504\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.02.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.02.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "299" + "459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57665,7 +58184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6a2f58f-0ec6-416a-8366-5b9f04f7d12c" + "ae62fb83-c569-4085-a21d-02f5c40ad22f" ], "Cache-Control": [ "no-cache" @@ -57675,34 +58194,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12932" + "13815" ], "x-ms-correlation-request-id": [ - "2ec62245-245c-4ad8-928f-a3d703e2db78" + "4c667d19-e55f-4da2-a6c0-ccd110cfc4b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:2ec62245-245c-4ad8-928f-a3d703e2db78" + "WESTUS:20150813T074756Z:4c667d19-e55f-4da2-a6c0-ccd110cfc4b3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AXOneBox/versions/6.3.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQVhPbmVCb3gvdmVyc2lvbnMvNi4zLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/201507.04.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNC4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AXOneBox/Versions/6.3.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.04.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.04.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57717,7 +58236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30626228-bb32-4a42-b9cc-ea7b3fe51254" + "1c2eea6e-3c5e-4ebe-b71e-72f9c6e821c2" ], "Cache-Control": [ "no-cache" @@ -57727,34 +58246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12931" + "13814" ], "x-ms-correlation-request-id": [ - "f6c52121-d432-43ea-a5be-bba85849fcad" + "0b653b37-9019-44c3-b885-cbf7a5d6c338" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:f6c52121-d432-43ea-a5be-bba85849fcad" + "WESTUS:20150813T074756Z:0b653b37-9019-44c3-b885-cbf7a5d6c338" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-Client-Test/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQ2xpZW50LVRlc3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/201507.05.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNS4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test/Versions/6.3.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test/Versions/6.3.201504\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.05.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.05.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "601" + "459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57769,7 +58288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8375a3a6-3490-4c20-bdc8-4a6f32ae13a5" + "f2d9d395-1949-40df-a687-978292fe1040" ], "Cache-Control": [ "no-cache" @@ -57779,34 +58298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12930" + "13813" ], "x-ms-correlation-request-id": [ - "63666b6e-cce5-42a2-b313-fa4e161e6900" + "3717cc94-8793-44a2-833d-cd5ff902e2d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:63666b6e-cce5-42a2-b313-fa4e161e6900" + "WESTUS:20150813T074756Z:3717cc94-8793-44a2-833d-cd5ff902e2d8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-Client-Test/versions/6.3.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQ2xpZW50LVRlc3QvdmVyc2lvbnMvNi4zLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftAzureSiteRecovery/artifacttypes/vmimage/offers/Process-Server/skus/Windows-2012-R2-Datacenter/versions/201507.06.00?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0QXp1cmVTaXRlUmVjb3ZlcnkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9Qcm9jZXNzLVNlcnZlci9za3VzL1dpbmRvd3MtMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zLzIwMTUwNy4wNi4wMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test/Versions/6.3.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"201507.06.00\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery/ArtifactTypes/VMImage/Offers/Process-Server/Skus/Windows-2012-R2-Datacenter/Versions/201507.06.00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "403" + "459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57821,7 +58340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "647ab1c2-8ecd-4bcf-9f42-bf4d100ce58e" + "4d8d353c-deea-4d8a-8cbe-e59895384cab" ], "Cache-Control": [ "no-cache" @@ -57831,34 +58350,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12929" + "13812" ], "x-ms-correlation-request-id": [ - "6c1952a4-6ac6-4f39-9d0d-64bea2c7293c" + "1b9fc3a6-1ddb-42d4-89f2-97f2155ebc53" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:6c1952a4-6ac6-4f39-9d0d-64bea2c7293c" + "WESTUS:20150813T074756Z:1b9fc3a6-1ddb-42d4-89f2-97f2155ebc53" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-Client-Test/versions/6.3.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQ2xpZW50LVRlc3QvdmVyc2lvbnMvNi4zLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test/Versions/6.3.201504\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"BizTalk-Server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "403" + "260" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57873,7 +58392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "807d2a45-58d7-4ac8-859f-696c8fe083e7" + "55871a11-eefe-44f9-b718-7eeb05c99fc9" ], "Cache-Control": [ "no-cache" @@ -57883,34 +58402,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12928" + "13811" ], "x-ms-correlation-request-id": [ - "3b5ef9a8-5410-49de-9da0-ba84d5245700" + "4b0f3f9a-7a18-4dc6-86ec-a2fee4128505" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212619Z:3b5ef9a8-5410-49de-9da0-ba84d5245700" + "WESTUS:20150813T074756Z:4b0f3f9a-7a18-4dc6-86ec-a2fee4128505" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-DatabaseServer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRGF0YWJhc2VTZXJ2ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer/Versions/6.3.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer/Versions/6.3.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Developer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-R2-Developer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-R2-Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-R2-Standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Standard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "607" + "1683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57925,7 +58444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "934c4f23-35c1-4eff-93c5-4ad050d179c5" + "356cde88-4183-449d-b36b-3356fd6b70c6" ], "Cache-Control": [ "no-cache" @@ -57935,34 +58454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12927" + "13810" ], "x-ms-correlation-request-id": [ - "ebe1f13f-5e7f-43a6-bf8c-de42a5acee0f" + "3e4cf27e-2cbb-41e3-9453-938fd9785079" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:ebe1f13f-5e7f-43a6-bf8c-de42a5acee0f" + "WESTUS:20150813T074756Z:3e4cf27e-2cbb-41e3-9453-938fd9785079" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-DatabaseServer/versions/6.3.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRGF0YWJhc2VTZXJ2ZXIvdmVyc2lvbnMvNi4zLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Developer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer/Versions/6.3.201503\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Developer/Versions/1.0.201405\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "406" + "296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57977,7 +58496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5896464e-17a6-4bf2-8e25-691a672ed40d" + "2f7ea1ef-4c9e-4f63-ab8b-6374d9c77489" ], "Cache-Control": [ "no-cache" @@ -57987,34 +58506,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12926" + "13809" ], "x-ms-correlation-request-id": [ - "a52cdb1d-1294-40ea-9f0a-db89ad76aef8" + "ba15274c-0e21-4e85-ac2d-4767abd147e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:a52cdb1d-1294-40ea-9f0a-db89ad76aef8" + "WESTUS:20150813T074756Z:ba15274c-0e21-4e85-ac2d-4767abd147e9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:19 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-DatabaseServer/versions/6.3.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRGF0YWJhc2VTZXJ2ZXIvdmVyc2lvbnMvNi4zLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Developer/versions/1.0.201405?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1EZXZlbG9wZXIvdmVyc2lvbnMvMS4wLjIwMTQwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer/Versions/6.3.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Developer/Versions/1.0.201405\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "406" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58029,7 +58548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c13dc7f1-85f2-43b5-8be7-ff857655d393" + "d0c451f8-098b-4ec8-a4d9-0b95cc7be624" ], "Cache-Control": [ "no-cache" @@ -58039,34 +58558,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12925" + "13808" ], "x-ms-correlation-request-id": [ - "e0b4ba23-526f-48e5-a50a-871ddfcdd244" + "ff217d4f-fc60-4f68-81f3-bbad4002348d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:e0b4ba23-526f-48e5-a50a-871ddfcdd244" + "WESTUS:20150813T074756Z:ff217d4f-fc60-4f68-81f3-bbad4002348d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-EnterprisePortal/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRW50ZXJwcmlzZVBvcnRhbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal/Versions/6.3.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal/Versions/6.3.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Enterprise/Versions/1.0.201405\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "611" + "297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58081,7 +58600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44a2f544-1441-41f0-9e62-e2750e7cf9bd" + "faf50cee-8808-4595-8956-d84705c7c2a7" ], "Cache-Control": [ "no-cache" @@ -58091,34 +58610,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12924" + "13807" ], "x-ms-correlation-request-id": [ - "d345cb74-0e4e-4060-a535-a7d0081ba316" + "3081e180-dee5-4194-aaa3-62ce03639e5c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:d345cb74-0e4e-4060-a535-a7d0081ba316" + "WESTUS:20150813T074756Z:3081e180-dee5-4194-aaa3-62ce03639e5c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-EnterprisePortal/versions/6.3.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRW50ZXJwcmlzZVBvcnRhbC92ZXJzaW9ucy82LjMuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Enterprise/versions/1.0.201405?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1FbnRlcnByaXNlL3ZlcnNpb25zLzEuMC4yMDE0MDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal/Versions/6.3.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Enterprise/Versions/1.0.201405\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "408" + "398" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58133,7 +58652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8c638d3-3e0b-4dfd-9877-f5ce99ace2d5" + "17be8f1c-fdd6-4e57-97fb-c1fac33f3b55" ], "Cache-Control": [ "no-cache" @@ -58143,34 +58662,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12923" + "13806" ], "x-ms-correlation-request-id": [ - "0e014de9-6db7-4bfa-a4a4-47daa867db72" + "638fa3e6-8558-40f1-b4e0-61c22daa4df3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:0e014de9-6db7-4bfa-a4a4-47daa867db72" + "WESTUS:20150813T074756Z:638fa3e6-8558-40f1-b4e0-61c22daa4df3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-EnterprisePortal/versions/6.3.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRW50ZXJwcmlzZVBvcnRhbC92ZXJzaW9ucy82LjMuMjAxNTA0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Developer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal/Versions/6.3.201504\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer/Versions/2.0.201504\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201507\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer/Versions/2.0.201507\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "408" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58185,7 +58704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72d801dc-f6e8-4447-b6de-247c70039d35" + "61d259db-92e4-4a8b-b3f2-26f0b35a2e5e" ], "Cache-Control": [ "no-cache" @@ -58195,34 +58714,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12922" + "13805" ], "x-ms-correlation-request-id": [ - "053f328b-bf68-4f48-b96c-9ced802af0ed" + "5e115342-3b45-4b72-bae9-be8431951f03" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:053f328b-bf68-4f48-b96c-9ced802af0ed" + "WESTUS:20150813T074756Z:5e115342-3b45-4b72-bae9-be8431951f03" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-RetailE-Commerce/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtUmV0YWlsRS1Db21tZXJjZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Developer/versions/2.0.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnMvMi4wLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailE-Commerce/Versions/6.3.201504\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer/Versions/2.0.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "307" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58237,7 +58756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57a821e9-bcf6-4d5d-be7e-56b219b7acb7" + "981c65ca-acfc-4dd9-b15e-1617d2daaad8" ], "Cache-Control": [ "no-cache" @@ -58247,34 +58766,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12921" + "13804" ], "x-ms-correlation-request-id": [ - "3a015963-c131-427d-8378-a56fb70e7282" + "d9278160-e5df-4208-891d-4a10ec61d6f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:3a015963-c131-427d-8378-a56fb70e7282" + "WESTUS:20150813T074757Z:d9278160-e5df-4208-891d-4a10ec61d6f6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-RetailE-Commerce/versions/6.3.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtUmV0YWlsRS1Db21tZXJjZS92ZXJzaW9ucy82LjMuMjAxNTA0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Developer/versions/2.0.201507?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnMvMi4wLjIwMTUwNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailE-Commerce/Versions/6.3.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201507\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Developer/Versions/2.0.201507\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "408" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58289,7 +58808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76f43dd6-bdc9-425e-a22e-1830d68d56da" + "aaa239f0-56c6-46c8-bf73-e6cb732024ff" ], "Cache-Control": [ "no-cache" @@ -58299,34 +58818,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12920" + "13803" ], "x-ms-correlation-request-id": [ - "2b8ae599-88af-4c30-b85c-ed9216b4d456" + "7f734479-e290-459c-a70a-51efe065b5c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:2b8ae599-88af-4c30-b85c-ed9216b4d456" + "WESTUS:20150813T074757Z:7f734479-e290-459c-a70a-51efe065b5c2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-RetailEssentials/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtUmV0YWlsRXNzZW50aWFscy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailEssentials/Versions/6.3.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201411\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Enterprise/Versions/2.0.201411\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "307" + "300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58341,7 +58860,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed7d9895-cc41-4adc-8bda-b7310117c28e" + "2fc742c9-ea1d-4f78-86c5-fdb7ad305f89" ], "Cache-Control": [ "no-cache" @@ -58351,34 +58870,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12919" + "13802" ], "x-ms-correlation-request-id": [ - "6d28c8b2-1a6c-4a6b-a538-ccf5624af437" + "f2d71bd3-9103-4bbb-9eec-5ef577cfc7d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:6d28c8b2-1a6c-4a6b-a538-ccf5624af437" + "WESTUS:20150813T074757Z:f2d71bd3-9103-4bbb-9eec-5ef577cfc7d0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-RetailEssentials/versions/6.3.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtUmV0YWlsRXNzZW50aWFscy92ZXJzaW9ucy82LjMuMjAxNTA0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Enterprise/versions/2.0.201411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1FbnRlcnByaXNlL3ZlcnNpb25zLzIuMC4yMDE0MTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailEssentials/Versions/6.3.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201411\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Enterprise/Versions/2.0.201411\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "408" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58393,7 +58912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3830037-b89a-444d-b83e-5e127a5c3c8d" + "e02ed468-9fe6-4c87-ad62-ba41f4624325" ], "Cache-Control": [ "no-cache" @@ -58403,34 +58922,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12918" + "13801" ], "x-ms-correlation-request-id": [ - "d5406f5c-7d27-4c8d-9a6f-b5ea817d11ad" + "804530f5-4dc6-4c98-a55f-58d03900e8f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212620Z:d5406f5c-7d27-4c8d-9a6f-b5ea817d11ad" + "WESTUS:20150813T074757Z:804530f5-4dc6-4c98-a55f-58d03900e8f6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1TdGFuZGFyZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Dynamics-GP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201411\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Standard/Versions/2.0.201411\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "251" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58445,7 +58964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fb213d1-060d-4f49-8053-a7ebd17429f3" + "ecf44cb3-aa3e-498e-91b4-17996e5bda1d" ], "Cache-Control": [ "no-cache" @@ -58455,34 +58974,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12917" + "13800" ], "x-ms-correlation-request-id": [ - "2e91674d-231b-416d-bbd0-f959dc1feea4" + "c98f72ec-b8e8-4c57-bf41-b10efc46a9d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:2e91674d-231b-416d-bbd0-f959dc1feea4" + "WESTUS:20150813T074757Z:c98f72ec-b8e8-4c57-bf41-b10efc46a9d1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-R2-Standard/versions/2.0.201411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1SMi1TdGFuZGFyZC92ZXJzaW9ucy8yLjAuMjAxNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Developer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-Developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-R2-Developer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-R2-Developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Developer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2015-Developer\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201411\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-R2-Standard/Versions/2.0.201411\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "822" + "399" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58497,7 +59016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9f1999c-9145-461f-a68f-9b63328781cc" + "942d0db3-e279-495f-b8cc-96c86bfdb8d7" ], "Cache-Control": [ "no-cache" @@ -58507,34 +59026,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12916" + "13799" ], "x-ms-correlation-request-id": [ - "e8031385-f042-491d-b805-429041985f9c" + "a8d2f86a-3a92-4972-ab92-8a0fc0e891c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:e8031385-f042-491d-b805-429041985f9c" + "WESTUS:20150813T074757Z:a8d2f86a-3a92-4972-ab92-8a0fc0e891c2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:20 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2013-Developer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxMy1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1TdGFuZGFyZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201403\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-Developer/Versions/1.0.201403\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Standard/Versions/1.0.201405\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "290" + "295" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58549,7 +59068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdcdcb8d-e623-49f8-85ea-4235dee5dd14" + "68490f2b-a7d4-4e5a-91c4-b2c76bbdb803" ], "Cache-Control": [ "no-cache" @@ -58559,34 +59078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12915" + "13798" ], "x-ms-correlation-request-id": [ - "6016c9af-2880-41e1-b9bb-59c90a6375fc" + "da3fc0ee-ec76-4912-84ae-150b6716cc95" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:6016c9af-2880-41e1-b9bb-59c90a6375fc" + "WESTUS:20150813T074757Z:da3fc0ee-ec76-4912-84ae-150b6716cc95" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2013-Developer/versions/1.0.201403?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxMy1EZXZlbG9wZXIvdmVyc2lvbnMvMS4wLjIwMTQwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftBizTalkServer/artifacttypes/vmimage/offers/BizTalk-Server/skus/2013-Standard/versions/1.0.201405?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0Qml6VGFsa1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0JpelRhbGstU2VydmVyL3NrdXMvMjAxMy1TdGFuZGFyZC92ZXJzaW9ucy8xLjAuMjAxNDA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201403\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-Developer/Versions/1.0.201403\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201405\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer/ArtifactTypes/VMImage/Offers/BizTalk-Server/Skus/2013-Standard/Versions/1.0.201405\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "391" + "396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58601,7 +59120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bae5681a-bae0-4bb2-9158-2b7f1f56e931" + "cadfb836-3f95-49a8-916e-9f1ef7be6cf1" ], "Cache-Control": [ "no-cache" @@ -58611,34 +59130,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12914" + "13797" ], "x-ms-correlation-request-id": [ - "fb1810e8-0b7c-4726-9229-e44e9724f8f8" + "89a66bde-ac8b-40d0-bcab-fc97b96062be" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:fb1810e8-0b7c-4726-9229-e44e9724f8f8" + "WESTUS:20150813T074757Z:89a66bde-ac8b-40d0-bcab-fc97b96062be" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2013-R2-Developer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201408\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-R2-Developer/Versions/2.0.201408\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Dynamics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"DynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "293" + "491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58653,7 +59172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bea3c604-b3a4-472b-97fa-a94d76727071" + "d85a59f9-cb82-4ba9-b17c-f9fc7948eccf" ], "Cache-Control": [ "no-cache" @@ -58663,34 +59182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12913" + "13796" ], "x-ms-correlation-request-id": [ - "56f184df-ac15-4efe-b1e6-8bfd4e723442" + "ef7298a4-bd35-4f1b-876b-84c8678b7bea" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:56f184df-ac15-4efe-b1e6-8bfd4e723442" + "WESTUS:20150813T074757Z:ef7298a4-bd35-4f1b-876b-84c8678b7bea" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2013-R2-Developer/versions/2.0.201408?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnMvMi4wLjIwMTQwOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201408\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-R2-Developer/Versions/2.0.201408\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-AX7-AOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-AOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-AX7-BI\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-BI\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-AX7-OneBox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "394" + "817" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58705,7 +59224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6660aa18-2869-49c4-8bf2-f26eaec60123" + "9e072834-d2d2-4c64-bd03-1df0a44bba9f" ], "Cache-Control": [ "no-cache" @@ -58715,34 +59234,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12912" + "13795" ], "x-ms-correlation-request-id": [ - "4d469453-5975-4f2d-b6c5-8fd60ba8398e" + "9fa9af1a-f9fb-4479-9ff6-3fa794222062" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:4d469453-5975-4f2d-b6c5-8fd60ba8398e" + "WESTUS:20150813T074757Z:9fa9af1a-f9fb-4479-9ff6-3fa794222062" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2015-Developer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxNS1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-AOS/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctQU9TL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2015-Developer/Versions/3.0.201501\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-AOS/Versions/7.0.20150728\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "290" + "292" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58757,7 +59276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eac4b279-55fb-42a9-9b5f-70d8e0cc9446" + "38fefbfe-4064-4091-8baf-18b6df34d23e" ], "Cache-Control": [ "no-cache" @@ -58767,34 +59286,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12911" + "13794" ], "x-ms-correlation-request-id": [ - "5e8bb9a9-7d79-4d47-90a6-88a5eb1c6fb3" + "a88fa9ca-a33b-417d-b138-7ae40a3939be" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:5e8bb9a9-7d79-4d47-90a6-88a5eb1c6fb3" + "WESTUS:20150813T074758Z:a88fa9ca-a33b-417d-b138-7ae40a3939be" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2015-Developer/versions/3.0.201501?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxNS1EZXZlbG9wZXIvdmVyc2lvbnMvMy4wLjIwMTUwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-AOS/versions/7.0.20150728?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctQU9TL3ZlcnNpb25zLzcuMC4yMDE1MDcyOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2015-Developer/Versions/3.0.201501\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-AOS/Versions/7.0.20150728\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "391" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58809,7 +59328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75f206ec-f0b3-456a-bde4-1586516e1c31" + "0b752f3e-5133-441c-84a7-e7f80993804b" ], "Cache-Control": [ "no-cache" @@ -58819,34 +59338,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12910" + "13793" ], "x-ms-correlation-request-id": [ - "56c8025e-be88-492e-8bc2-c10003962b4f" + "aff08eee-4212-4edb-a582-e4cff1644bcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:56c8025e-be88-492e-8bc2-c10003962b4f" + "WESTUS:20150813T074758Z:aff08eee-4212-4edb-a582-e4cff1644bcb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-BI/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctQkkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"DynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-BI/Versions/7.0.20150728\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "252" + "291" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58861,7 +59380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7c587e6-ab33-4bfc-ab74-f21919408bbe" + "15efeed1-01ef-4888-a773-08ddb9245deb" ], "Cache-Control": [ "no-cache" @@ -58871,34 +59390,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12909" + "13792" ], "x-ms-correlation-request-id": [ - "7c4c094e-4fb4-42ba-a843-1aabb590d231" + "3837c45b-026c-4f32-adc5-1be153ea2104" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:7c4c094e-4fb4-42ba-a843-1aabb590d231" + "WESTUS:20150813T074758Z:3837c45b-026c-4f32-adc5-1be153ea2104" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-BI/versions/7.0.20150728?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctQkkvdmVyc2lvbnMvNy4wLjIwMTUwNzI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-BI/Versions/7.0.20150728\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "255" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58913,7 +59432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbdb875c-df64-4021-9d17-ddf2dfe76beb" + "72044e3e-fb4c-4d5d-8b2a-c38262fbf0a8" ], "Cache-Control": [ "no-cache" @@ -58923,34 +59442,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12908" + "13791" ], "x-ms-correlation-request-id": [ - "b7c98450-1efd-408e-8936-5ed781194591" + "574f0a0c-c055-4b1e-90da-a5d6ddfedeff" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212621Z:b7c98450-1efd-408e-8936-5ed781194591" + "WESTUS:20150813T074758Z:574f0a0c-c055-4b1e-90da-a5d6ddfedeff" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-OneBox/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctT25lQm94L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.39663\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.39663\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40262\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40262\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40459\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40459\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40938\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40938\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.41370\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.41370\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201507\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.201507\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.20150726\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.20150728\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1383" + "875" ], "Content-Type": [ "application/json; charset=utf-8" @@ -58965,7 +59484,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f602e313-7a7b-44f5-937e-293cddc97e9a" + "2e455fb4-5bc1-446f-b781-95b9bb5341fc" ], "Cache-Control": [ "no-cache" @@ -58975,34 +59494,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12907" + "13790" ], "x-ms-correlation-request-id": [ - "182a56b7-22c5-4437-9c50-1a2e74252a40" + "1691d094-3aaa-4d5c-b3f8-3c5993d63001" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:182a56b7-22c5-4437-9c50-1a2e74252a40" + "WESTUS:20150813T074758Z:1691d094-3aaa-4d5c-b3f8-3c5993d63001" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.39663?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjM5NjYzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-OneBox/versions/7.0.201507?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctT25lQm94L3ZlcnNpb25zLzcuMC4yMDE1MDc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.39663\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.39663\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201507\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.201507\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "380" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59017,7 +59536,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9452b53a-9427-4ece-a9f1-7d0aaa0778ea" + "26bc877a-1d94-41a2-9524-faa3df697c26" ], "Cache-Control": [ "no-cache" @@ -59027,34 +59546,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12906" + "13789" ], "x-ms-correlation-request-id": [ - "f56b1294-5504-456a-aef0-f713e4f47d18" + "14cc000e-8777-45c2-8fa4-89da2bd67d0c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:f56b1294-5504-456a-aef0-f713e4f47d18" + "WESTUS:20150813T074758Z:14cc000e-8777-45c2-8fa4-89da2bd67d0c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:21 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.40262?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjQwMjYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-OneBox/versions/7.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctT25lQm94L3ZlcnNpb25zLzcuMC4yMDE1MDcyNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40262\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40262\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "380" + "396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59069,7 +59588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc817f5b-0b09-4b96-94ae-991f6777f133" + "a2a03d1f-cc49-4713-ac41-e1494344d976" ], "Cache-Control": [ "no-cache" @@ -59079,34 +59598,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12905" + "13788" ], "x-ms-correlation-request-id": [ - "477c3456-1797-42cb-95bd-9c85a641688a" + "e00a5ae6-cea3-48cb-bd57-9eb9e2d35bd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:477c3456-1797-42cb-95bd-9c85a641688a" + "WESTUS:20150813T074758Z:e00a5ae6-cea3-48cb-bd57-9eb9e2d35bd3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.40459?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjQwNDU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/Dynamics/skus/Pre-Req-AX7-OneBox/versions/7.0.20150728?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzL3NrdXMvUHJlLVJlcS1BWDctT25lQm94L3ZlcnNpb25zLzcuMC4yMDE1MDcyOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40459\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40459\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.20150728\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/Dynamics/Skus/Pre-Req-AX7-OneBox/Versions/7.0.20150728\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "380" + "396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59121,7 +59640,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "beeb3ad7-bc62-45d8-84dc-dfb4987913f9" + "f3c88ffd-2772-43e0-8cb5-ec73da6232b4" ], "Cache-Control": [ "no-cache" @@ -59131,34 +59650,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12904" + "13787" ], "x-ms-correlation-request-id": [ - "36ff94de-c52a-46d1-977d-c0d365e1ae3e" + "c7ccbd5d-d68f-4341-9046-a909b972c3b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:36ff94de-c52a-46d1-977d-c0d365e1ae3e" + "WESTUS:20150813T074758Z:c7ccbd5d-d68f-4341-9046-a909b972c3b5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.40938?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjQwOTM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40938\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40938\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-AOS-Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-AXOneBox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AXOneBox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-Client-Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-DatabaseServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-EnterprisePortal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-RetailE-Commerce\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailE-Commerce\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Pre-Req-2012-R3-RetailEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "380" + "2099" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59173,7 +59692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f40e8c2-ea5f-4a69-8941-d799901149e4" + "b27b0436-04ac-4d39-87d5-efb08b0f527a" ], "Cache-Control": [ "no-cache" @@ -59183,34 +59702,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12903" + "13786" ], "x-ms-correlation-request-id": [ - "62b63004-0595-4ff6-84bd-e3aaa5084b37" + "b84add59-aee5-423e-93e4-305b20bccbd2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:62b63004-0595-4ff6-84bd-e3aaa5084b37" + "WESTUS:20150813T074758Z:b84add59-aee5-423e-93e4-305b20bccbd2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.41370?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjQxMzcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AOS-Test/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQU9TLVRlc3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.41370\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.41370\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test/Versions/6.3.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test/Versions/6.3.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "380" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59225,7 +59744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bccbdd65-5c74-4ce2-9177-375b46e4a3ae" + "8a50e3ed-ac62-4047-8cba-fa3add621f4f" ], "Cache-Control": [ "no-cache" @@ -59235,34 +59754,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12902" + "13785" ], "x-ms-correlation-request-id": [ - "713f7c09-50a2-4d9c-a3ea-aaf162cdfb29" + "16ef5eba-6c91-4e3b-85ad-a0de80db4dd5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:713f7c09-50a2-4d9c-a3ea-aaf162cdfb29" + "WESTUS:20150813T074758Z:16ef5eba-6c91-4e3b-85ad-a0de80db4dd5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AOS-Test/versions/6.3.201503?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQU9TLVRlc3QvdmVyc2lvbnMvNi4zLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"StorSimple\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test/Versions/6.3.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "257" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59277,7 +59796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ebb586e4-ab18-4fb4-9d9b-0d33ae17c413" + "02b75889-1002-4e37-a72b-8f6b8f113acf" ], "Cache-Control": [ "no-cache" @@ -59287,190 +59806,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12901" - ], - "x-ms-correlation-request-id": [ - "4650c945-3cec-4c7d-8a09-964bfb75669b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:4650c945-3cec-4c7d-8a09-964bfb75669b" - ], - "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"StorSimple-8000-Series-Release\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Release\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"StorSimple-8000-Series-Update-0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Update-0.3\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0bd0d18d-3d4e-491e-925b-a667d780ee7a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12900" - ], - "x-ms-correlation-request-id": [ - "a8370657-7ff9-4b77-9d4a-7695fb4f96ca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:a8370657-7ff9-4b77-9d4a-7695fb4f96ca" - ], - "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus/StorSimple-8000-Series-Release/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtUmVsZWFzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9600.17312.20140710\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Release/Versions/9600.17312.20140710\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "331" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "9ee89a48-7b49-4978-bc6c-054ae37ef798" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12899" - ], - "x-ms-correlation-request-id": [ - "6bf09596-5986-42a4-b424-f0b69f5a7fb7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150805T212622Z:6bf09596-5986-42a4-b424-f0b69f5a7fb7" - ], - "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus/StorSimple-8000-Series-Release/versions/9600.17312.20140710?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtUmVsZWFzZS92ZXJzaW9ucy85NjAwLjE3MzEyLjIwMTQwNzEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9600.17312.20140710\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Release/Versions/9600.17312.20140710\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a3dfa43c-bc34-4490-b5cf-a5be96e80416" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12898" + "13784" ], "x-ms-correlation-request-id": [ - "a5bc3b94-68a8-4531-9c71-db3c3ef1ff49" + "0859d88d-141d-4046-8b46-cceba35475c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:a5bc3b94-68a8-4531-9c71-db3c3ef1ff49" + "WESTUS:20150813T074759Z:0859d88d-141d-4046-8b46-cceba35475c5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus/StorSimple-8000-Series-Update-0.3/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtVXBkYXRlLTAuMy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AOS-Test/versions/6.3.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQU9TLVRlc3QvdmVyc2lvbnMvNi4zLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9600.17361.141206\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Update-0.3/Versions/9600.17361.141206\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AOS-Test/Versions/6.3.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "330" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59485,7 +59848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43a7bfd7-20ca-41dc-81df-ce902012d907" + "697bd5a6-e2f5-4c87-96a3-19e86a71a32c" ], "Cache-Control": [ "no-cache" @@ -59495,34 +59858,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12897" + "13783" ], "x-ms-correlation-request-id": [ - "b2845621-325a-4ea9-9089-db730feff4ec" + "56358702-b47a-41d4-be73-d743bb469ed6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:b2845621-325a-4ea9-9089-db730feff4ec" + "WESTUS:20150813T074759Z:56358702-b47a-41d4-be73-d743bb469ed6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:22 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus/StorSimple-8000-Series-Update-0.3/versions/9600.17361.141206?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtVXBkYXRlLTAuMy92ZXJzaW9ucy85NjAwLjE3MzYxLjE0MTIwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AXOneBox/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQVhPbmVCb3gvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9600.17361.141206\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Update-0.3/Versions/9600.17361.141206\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AXOneBox/Versions/6.3.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "431" + "299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59537,7 +59900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a229b0a4-e64e-4440-8ff2-04fa4ae3a0c0" + "3817d47f-03c0-4241-8a86-f634839a7683" ], "Cache-Control": [ "no-cache" @@ -59547,34 +59910,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12896" + "13782" ], "x-ms-correlation-request-id": [ - "da099074-5219-4a2b-a0fd-d163f32417cd" + "c6e0cdfc-82ce-4143-9f04-0aea5e5c228d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:da099074-5219-4a2b-a0fd-d163f32417cd" + "WESTUS:20150813T074759Z:c6e0cdfc-82ce-4143-9f04-0aea5e5c228d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSharePoint/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U2hhcmVQb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-AXOneBox/versions/6.3.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQVhPbmVCb3gvdmVyc2lvbnMvNi4zLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePointServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint/ArtifactTypes/VMImage/Offers/MicrosoftSharePointServer\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-AXOneBox/Versions/6.3.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "279" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59589,7 +59952,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b83697c-01c1-4e3e-ad3f-b3851ac7c54e" + "1db0e96a-8d67-45a0-bfb9-60c1c1088cfc" ], "Cache-Control": [ "no-cache" @@ -59599,34 +59962,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12895" + "13781" ], "x-ms-correlation-request-id": [ - "6675684e-2f8a-4d86-93c0-d6559fdab615" + "311d6ccb-0e2a-4ddb-9bdf-a9e214751a11" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:6675684e-2f8a-4d86-93c0-d6559fdab615" + "WESTUS:20150813T074759Z:311d6ccb-0e2a-4ddb-9bdf-a9e214751a11" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSharePoint/artifacttypes/vmimage/offers/MicrosoftSharePointServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U2hhcmVQb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL01pY3Jvc29mdFNoYXJlUG9pbnRTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-Client-Test/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQ2xpZW50LVRlc3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint/ArtifactTypes/VMImage/Offers/MicrosoftSharePointServer/Skus/2013\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test/Versions/6.3.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test/Versions/6.3.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "268" + "601" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59641,7 +60004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81ebec11-a3a9-4fe5-ab89-c624988f2df0" + "2bdc9f07-7629-444b-9f98-31e3257d22f0" ], "Cache-Control": [ "no-cache" @@ -59651,34 +60014,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12894" + "13780" ], "x-ms-correlation-request-id": [ - "1f7565de-5e43-4a42-96e0-c25df67590b6" + "2d55c966-d753-47b9-80f4-c1d6ac02fb17" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:1f7565de-5e43-4a42-96e0-c25df67590b6" + "WESTUS:20150813T074759Z:2d55c966-d753-47b9-80f4-c1d6ac02fb17" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSharePoint/artifacttypes/vmimage/offers/MicrosoftSharePointServer/skus/2013/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U2hhcmVQb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL01pY3Jvc29mdFNoYXJlUG9pbnRTZXJ2ZXIvc2t1cy8yMDEzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-Client-Test/versions/6.3.201503?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQ2xpZW50LVRlc3QvdmVyc2lvbnMvNi4zLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint/ArtifactTypes/VMImage/Offers/MicrosoftSharePointServer/Skus/2013/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test/Versions/6.3.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "284" + "403" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59693,7 +60056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b77ef29-c6e1-48d7-bd8b-31c6a73f75a1" + "8fc5b94a-e46d-4093-8e54-1961039dad91" ], "Cache-Control": [ "no-cache" @@ -59703,34 +60066,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12893" + "13779" ], "x-ms-correlation-request-id": [ - "c1e80c47-7e48-4ea1-8893-eaf50dd4d4da" + "2050543c-8fe6-4fea-ac34-d792c2289c0c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:c1e80c47-7e48-4ea1-8893-eaf50dd4d4da" + "WESTUS:20150813T074759Z:2050543c-8fe6-4fea-ac34-d792c2289c0c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSharePoint/artifacttypes/vmimage/offers/MicrosoftSharePointServer/skus/2013/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U2hhcmVQb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL01pY3Jvc29mdFNoYXJlUG9pbnRTZXJ2ZXIvc2t1cy8yMDEzL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-Client-Test/versions/6.3.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtQ2xpZW50LVRlc3QvdmVyc2lvbnMvNi4zLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint/ArtifactTypes/VMImage/Offers/MicrosoftSharePointServer/Skus/2013/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-Client-Test/Versions/6.3.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "403" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59745,7 +60108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e886c52a-d761-4e3f-8e7b-6abc71a68c4e" + "ca177645-73f9-4490-858f-dd6ed81cd0dc" ], "Cache-Control": [ "no-cache" @@ -59755,34 +60118,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12892" + "13778" ], "x-ms-correlation-request-id": [ - "4756bc18-e2cc-441c-a4c5-02ee4d40312a" + "dbaa2fc3-57d6-4ccf-a0cd-bd43b4afb010" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:4756bc18-e2cc-441c-a4c5-02ee4d40312a" + "WESTUS:20150813T074759Z:dbaa2fc3-57d6-4ccf-a0cd-bd43b4afb010" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-DatabaseServer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRGF0YWJhc2VTZXJ2ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2008R2SP3-WS2008R2SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2012SP2-WS2012\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2012SP2-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2014-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2014SP1-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2016CTP2-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2016CTP2-WS2012R2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer/Versions/6.3.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer/Versions/6.3.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1583" + "607" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59797,7 +60160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "733c1fcf-8e1d-4eaf-a692-607dada0bf1d" + "1a6db8f9-d9f5-442e-8cd9-a969afca1651" ], "Cache-Control": [ "no-cache" @@ -59807,34 +60170,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12891" + "13777" ], "x-ms-correlation-request-id": [ - "a202ea7d-8c60-4732-9477-5e1877d82ad5" + "63d6de1e-41a0-4580-978d-51707cd816a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:a202ea7d-8c60-4732-9477-5e1877d82ad5" + "WESTUS:20150813T074759Z:63d6de1e-41a0-4580-978d-51707cd816a4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-DatabaseServer/versions/6.3.201503?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRGF0YWJhc2VTZXJ2ZXIvdmVyc2lvbnMvNi4zLjIwMTUwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer/Versions/6.3.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "810" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59849,7 +60212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bb5999e-754f-4311-a92d-33b018665b88" + "13a6f416-fd53-461b-a16a-c34376745546" ], "Cache-Control": [ "no-cache" @@ -59859,34 +60222,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12890" + "13776" ], "x-ms-correlation-request-id": [ - "cba6bbc3-6d8f-4a51-bf28-d55b51cdcd46" + "c401cbe6-c153-4fa3-ae7a-b7ca582bfc88" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212623Z:cba6bbc3-6d8f-4a51-bf28-d55b51cdcd46" + "WESTUS:20150813T074759Z:c401cbe6-c153-4fa3-ae7a-b7ca582bfc88" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvRW50ZXJwcmlzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-DatabaseServer/versions/6.3.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRGF0YWJhc2VTZXJ2ZXIvdmVyc2lvbnMvNi4zLjIwMTUwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.4021\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.4319\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.6000\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-DatabaseServer/Versions/6.3.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "888" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59901,7 +60264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f1eab92-7bd8-4cd0-b1b2-f86662506b3e" + "74d51418-a184-4daa-ae99-cf35f1ec3dcf" ], "Cache-Control": [ "no-cache" @@ -59911,34 +60274,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12889" + "13775" ], "x-ms-correlation-request-id": [ - "68fec837-8dad-4674-a958-033ddfdf564f" + "8a1d848f-5f85-480b-80f1-63bab4b51562" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:68fec837-8dad-4674-a958-033ddfdf564f" + "WESTUS:20150813T074759Z:8a1d848f-5f85-480b-80f1-63bab4b51562" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Enterprise/versions/10.50.4021?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvRW50ZXJwcmlzZS92ZXJzaW9ucy8xMC41MC40MDIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-EnterprisePortal/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRW50ZXJwcmlzZVBvcnRhbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.4021\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal/Versions/6.3.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal/Versions/6.3.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "399" + "611" ], "Content-Type": [ "application/json; charset=utf-8" @@ -59953,7 +60316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cae0a363-b505-4af1-a4e8-e0bade2c91a6" + "1dc24c10-cadc-4064-a9af-d8a9d9fb8062" ], "Cache-Control": [ "no-cache" @@ -59963,34 +60326,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12888" + "13774" ], "x-ms-correlation-request-id": [ - "eaaf8092-12d4-4f71-8b4f-401457632d3e" + "b1f90053-3a7f-456b-bc2c-459543fa8752" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:eaaf8092-12d4-4f71-8b4f-401457632d3e" + "WESTUS:20150813T074759Z:b1f90053-3a7f-456b-bc2c-459543fa8752" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Enterprise/versions/10.50.4319?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvRW50ZXJwcmlzZS92ZXJzaW9ucy8xMC41MC40MzE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-EnterprisePortal/versions/6.3.201503?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRW50ZXJwcmlzZVBvcnRhbC92ZXJzaW9ucy82LjMuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.4319\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal/Versions/6.3.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "399" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60005,7 +60368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d81ef21d-2b4d-4bfb-8323-52438ee23108" + "f3459e02-4bfe-4072-a310-f1b6f0e7a537" ], "Cache-Control": [ "no-cache" @@ -60015,34 +60378,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12887" + "13773" ], "x-ms-correlation-request-id": [ - "96a395d9-72ec-4c52-a2da-5f734ef8e826" + "74610c0b-eab3-4670-b285-bcc6b024081e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:96a395d9-72ec-4c52-a2da-5f734ef8e826" + "WESTUS:20150813T074800Z:74610c0b-eab3-4670-b285-bcc6b024081e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:23 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Enterprise/versions/10.50.6000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvRW50ZXJwcmlzZS92ZXJzaW9ucy8xMC41MC42MDAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-EnterprisePortal/versions/6.3.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtRW50ZXJwcmlzZVBvcnRhbC92ZXJzaW9ucy82LjMuMjAxNTA0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.6000\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-EnterprisePortal/Versions/6.3.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "399" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60057,7 +60420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eee52375-d9dc-42fa-a3bb-715d8260a69b" + "bf91314a-8c6e-415f-9af6-beea117a17fd" ], "Cache-Control": [ "no-cache" @@ -60067,34 +60430,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12886" + "13772" ], "x-ms-correlation-request-id": [ - "9839cb8b-269f-4a7e-8a09-0e84ac9fd440" + "8e20f46e-6b04-4f72-890e-692574d36a44" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:9839cb8b-269f-4a7e-8a09-0e84ac9fd440" + "WESTUS:20150813T074800Z:8e20f46e-6b04-4f72-890e-692574d36a44" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvU3RhbmRhcmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-RetailE-Commerce/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtUmV0YWlsRS1Db21tZXJjZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.4021\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.4319\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.6000\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailE-Commerce/Versions/6.3.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "882" + "307" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60109,7 +60472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a003aee-3ed9-46b0-856b-d1aac6df589c" + "17cd5795-6c97-4360-ba02-86784ff40480" ], "Cache-Control": [ "no-cache" @@ -60119,34 +60482,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12885" + "13771" ], "x-ms-correlation-request-id": [ - "eb97b4bc-bb9c-4da8-80b9-583c7cb5daa3" + "988568ef-2fde-49cb-bbb8-6bbf7a22f509" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:eb97b4bc-bb9c-4da8-80b9-583c7cb5daa3" + "WESTUS:20150813T074800Z:988568ef-2fde-49cb-bbb8-6bbf7a22f509" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Standard/versions/10.50.4021?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvU3RhbmRhcmQvdmVyc2lvbnMvMTAuNTAuNDAyMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-RetailE-Commerce/versions/6.3.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtUmV0YWlsRS1Db21tZXJjZS92ZXJzaW9ucy82LjMuMjAxNTA0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.4021\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailE-Commerce/Versions/6.3.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "397" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60161,7 +60524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b735dab-d98e-4ea6-a6e8-f1cd729b0106" + "dfc7d2f3-47d7-49d7-ad45-6fb6fd84eb5a" ], "Cache-Control": [ "no-cache" @@ -60171,34 +60534,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12884" + "13770" ], "x-ms-correlation-request-id": [ - "e651e3e6-79d1-4a60-a910-d8fa24888214" + "004fb1ba-e8c9-49ed-a6f6-42414d202dfe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:e651e3e6-79d1-4a60-a910-d8fa24888214" + "WESTUS:20150813T074800Z:004fb1ba-e8c9-49ed-a6f6-42414d202dfe" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:47:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Standard/versions/10.50.4319?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvU3RhbmRhcmQvdmVyc2lvbnMvMTAuNTAuNDMxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-RetailEssentials/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtUmV0YWlsRXNzZW50aWFscy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.4319\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailEssentials/Versions/6.3.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "397" + "307" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60213,7 +60576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a0874c3-6b82-4916-b18b-8873bd6c27e3" + "4ecc5509-05b1-4d9c-824f-c048e19a16bc" ], "Cache-Control": [ "no-cache" @@ -60223,34 +60586,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12883" + "13769" ], "x-ms-correlation-request-id": [ - "082b5404-8ed7-4703-b993-74f7daabb900" + "25e46f8b-b614-4608-9965-589b84247647" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:082b5404-8ed7-4703-b993-74f7daabb900" + "WESTUS:20150813T074800Z:25e46f8b-b614-4608-9965-589b84247647" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Standard/versions/10.50.6000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvU3RhbmRhcmQvdmVyc2lvbnMvMTAuNTAuNjAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsAX/artifacttypes/vmimage/offers/DynamicsAX/skus/Pre-Req-2012-R3-RetailEssentials/versions/6.3.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NBWC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzQVgvc2t1cy9QcmUtUmVxLTIwMTItUjMtUmV0YWlsRXNzZW50aWFscy92ZXJzaW9ucy82LjMuMjAxNTA0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.6000\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX/ArtifactTypes/VMImage/Offers/DynamicsAX/Skus/Pre-Req-2012-R3-RetailEssentials/Versions/6.3.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "397" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60265,7 +60628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "700529d2-d536-4f0d-9522-0900d212f82f" + "c29aba8d-ed8e-428f-858d-394533a66492" ], "Cache-Control": [ "no-cache" @@ -60275,34 +60638,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12882" + "13768" ], "x-ms-correlation-request-id": [ - "62601f89-dbde-45d8-a001-458d4cbdfa7d" + "10f0cba4-4bed-48fb-adfa-850d48c01200" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:62601f89-dbde-45d8-a001-458d4cbdfa7d" + "WESTUS:20150813T074800Z:10f0cba4-4bed-48fb-adfa-850d48c01200" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Web/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvV2ViL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.4021\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.4319\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.6000\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Dynamics-GP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "867" + "251" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60317,7 +60680,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2645111e-d683-4ba7-a6d6-c088a3b19631" + "93744dc5-84a1-4b82-93b2-7dd8e7dafa2a" ], "Cache-Control": [ "no-cache" @@ -60327,34 +60690,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12881" + "13767" ], "x-ms-correlation-request-id": [ - "097536da-251d-4c90-add8-a08a85e80266" + "0a1e36af-7e68-49c3-9f66-09f0e2b831ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:097536da-251d-4c90-add8-a08a85e80266" + "WESTUS:20150813T074800Z:0a1e36af-7e68-49c3-9f66-09f0e2b831ae" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Web/versions/10.50.4021?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvV2ViL3ZlcnNpb25zLzEwLjUwLjQwMjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.4021\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Developer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-Developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-R2-Developer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-R2-Developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Developer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2015-Developer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "392" + "822" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60369,7 +60732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8178d01e-a5d7-42d9-91c3-78b4ab217c82" + "aa99987b-c57f-4651-84e0-99f79df9849a" ], "Cache-Control": [ "no-cache" @@ -60379,34 +60742,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12880" + "13766" ], "x-ms-correlation-request-id": [ - "3c0a9b6b-8196-4367-9790-8f46ca5cb414" + "97bcff15-b6f0-4da5-a621-54a34586e718" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:3c0a9b6b-8196-4367-9790-8f46ca5cb414" + "WESTUS:20150813T074800Z:97bcff15-b6f0-4da5-a621-54a34586e718" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Web/versions/10.50.4319?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvV2ViL3ZlcnNpb25zLzEwLjUwLjQzMTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2013-Developer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxMy1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.4319\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201403\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-Developer/Versions/1.0.201403\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "392" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60421,7 +60784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06a2f4dd-73c6-4c5a-9e4f-8992bdd1e5e4" + "e88747fb-1182-468b-a4be-3be44c74a2f2" ], "Cache-Control": [ "no-cache" @@ -60431,34 +60794,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12879" + "13765" ], "x-ms-correlation-request-id": [ - "35717d26-e72f-4686-8aa0-6141f8389654" + "71c8dcfa-deb9-4cc1-aed2-fe3b98c32d16" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212624Z:35717d26-e72f-4686-8aa0-6141f8389654" + "WESTUS:20150813T074800Z:71c8dcfa-deb9-4cc1-aed2-fe3b98c32d16" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Web/versions/10.50.6000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvV2ViL3ZlcnNpb25zLzEwLjUwLjYwMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2013-Developer/versions/1.0.201403?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxMy1EZXZlbG9wZXIvdmVyc2lvbnMvMS4wLjIwMTQwMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.6000\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201403\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-Developer/Versions/1.0.201403\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "392" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60473,7 +60836,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97713d6a-1a80-48a5-a7da-e9c7c5a516c1" + "e388d2f2-0209-4955-aac3-0f8d976b46ae" ], "Cache-Control": [ "no-cache" @@ -60483,34 +60846,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12878" + "13764" ], "x-ms-correlation-request-id": [ - "06ed0432-3a68-4945-9ea9-64aacc814fe0" + "d4058877-0634-4b6a-aed5-5b5612ba28ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:06ed0432-3a68-4945-9ea9-64aacc814fe0" + "WESTUS:20150813T074800Z:d4058877-0634-4b6a-aed5-5b5612ba28ab" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2013-R2-Developer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-DW\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-OLTP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201408\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-R2-Developer/Versions/2.0.201408\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1397" + "293" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60525,7 +60888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1e5437c-9f9c-4ad3-ba42-062daaa635be" + "5048bdb2-136c-44f9-a6a5-f73175ee34de" ], "Cache-Control": [ "no-cache" @@ -60535,34 +60898,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12877" + "13763" ], "x-ms-correlation-request-id": [ - "4d7657f6-0a45-4a41-b9fb-e9f6bc89a829" + "43c77746-8fdc-4e93-bc56-f1433269859c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:4d7657f6-0a45-4a41-b9fb-e9f6bc89a829" + "WESTUS:20150813T074801Z:43c77746-8fdc-4e93-bc56-f1433269859c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:24 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2013-R2-Developer/versions/2.0.201408?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxMy1SMi1EZXZlbG9wZXIvdmVyc2lvbnMvMi4wLjIwMTQwOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201408\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2013-R2-Developer/Versions/2.0.201408\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "575" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60577,7 +60940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03dcda7d-42c9-4594-b1b5-6101c7db3aff" + "bc219444-4706-41d7-8a4d-857b57acd630" ], "Cache-Control": [ "no-cache" @@ -60587,34 +60950,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12876" + "13762" ], "x-ms-correlation-request-id": [ - "303eca26-0259-4cbc-ab70-17a2711b72e4" + "f6dbae1f-1934-4f6d-bb5e-df2551f49485" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:303eca26-0259-4cbc-ab70-17a2711b72e4" + "WESTUS:20150813T074801Z:f6dbae1f-1934-4f6d-bb5e-df2551f49485" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise/versions/11.0.5537?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zLzExLjAuNTUzNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2015-Developer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxNS1EZXZlbG9wZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise/Versions/11.0.5537\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2015-Developer/Versions/3.0.201501\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "390" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60629,7 +60992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a565133a-5707-4f87-b692-50ce1b525fa2" + "4337c81c-1a18-4863-922a-229740afbca2" ], "Cache-Control": [ "no-cache" @@ -60639,34 +61002,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12875" + "13761" ], "x-ms-correlation-request-id": [ - "cada1460-a3cb-4e01-87e5-ae4877431806" + "e1a9f7e7-c939-4a24-a710-eb768ee5969a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:cada1460-a3cb-4e01-87e5-ae4877431806" + "WESTUS:20150813T074801Z:e1a9f7e7-c939-4a24-a710-eb768ee5969a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zLzExLjAuNTU2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsGP/artifacttypes/vmimage/offers/Dynamics-GP/skus/2015-Developer/versions/3.0.201501?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NHUC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL0R5bmFtaWNzLUdQL3NrdXMvMjAxNS1EZXZlbG9wZXIvdmVyc2lvbnMvMy4wLjIwMTUwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise/Versions/11.0.5569\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP/ArtifactTypes/VMImage/Offers/Dynamics-GP/Skus/2015-Developer/Versions/3.0.201501\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "390" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60681,7 +61044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da1f4c52-b489-47b0-a871-023753f6bc64" + "24968a3c-56fd-46f4-92f1-3cbd37b643cc" ], "Cache-Control": [ "no-cache" @@ -60691,34 +61054,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12874" + "13760" ], "x-ms-correlation-request-id": [ - "08f49b1c-1bb5-4d84-920a-aa4039753e33" + "b9178274-ca48-47d9-8bac-535b715cc363" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:08f49b1c-1bb5-4d84-920a-aa4039753e33" + "WESTUS:20150813T074801Z:b9178274-ca48-47d9-8bac-535b715cc363" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-DW/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItRFcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"DynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "609" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60733,7 +61096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f3bd2ed-b992-45cd-86d3-2ff671310575" + "1e15831a-27c9-432d-8095-decbfcfba6b5" ], "Cache-Control": [ "no-cache" @@ -60743,34 +61106,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12873" + "13759" ], "x-ms-correlation-request-id": [ - "c869bbd1-6d77-4e43-80f5-96fb2c783f82" + "8a226194-4061-4574-a270-b2367ad915b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:c869bbd1-6d77-4e43-80f5-96fb2c783f82" + "WESTUS:20150813T074801Z:8a226194-4061-4574-a270-b2367ad915b8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-DW/versions/11.0.5537?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItRFcvdmVyc2lvbnMvMTEuMC41NTM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5537\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "972" + "255" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60785,7 +61148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2dc5f4df-6f09-4443-bb4e-b41334dd7edd" + "d171d175-8183-46c5-9418-3001e97a3083" ], "Cache-Control": [ "no-cache" @@ -60795,34 +61158,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12872" + "13758" ], "x-ms-correlation-request-id": [ - "d430c57a-130b-43d1-8492-8c9418ac7a6a" + "10af868e-13fc-4a17-9605-282cd901b4bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:d430c57a-130b-43d1-8492-8c9418ac7a6a" + "WESTUS:20150813T074801Z:10af868e-13fc-4a17-9605-282cd901b4bd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-DW/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItRFcvdmVyc2lvbnMvMTEuMC41NTY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5569\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.39663\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.39663\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40262\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40262\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40459\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40459\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40938\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40938\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.41370\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.41370\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "972" + "1383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60837,7 +61200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afc2c663-ea04-45ea-9411-478726584f5d" + "b9b6c508-2c5a-4c1f-88f3-6563af9b7ca0" ], "Cache-Control": [ "no-cache" @@ -60847,34 +61210,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12871" + "13757" ], "x-ms-correlation-request-id": [ - "d14dc7b4-6a86-4a2f-929c-26aff0cecee0" + "7c157a09-ba67-4aba-8dd8-56fb9a416d02" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:d14dc7b4-6a86-4a2f-929c-26aff0cecee0" + "WESTUS:20150813T074801Z:7c157a09-ba67-4aba-8dd8-56fb9a416d02" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-OLTP/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItT0xUUC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.39663?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjM5NjYzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.39663\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.39663\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "613" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60889,7 +61252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ac33c4f-cd7c-4272-975a-5283045eeee4" + "9682478d-6b62-41fd-b40d-55ed71ae855c" ], "Cache-Control": [ "no-cache" @@ -60899,34 +61262,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12870" + "13756" ], "x-ms-correlation-request-id": [ - "ff21e039-3642-4ef0-af17-85ff3fead898" + "e9635e38-f5dd-4a2d-a643-dfe2220509bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:ff21e039-3642-4ef0-af17-85ff3fead898" + "WESTUS:20150813T074801Z:e9635e38-f5dd-4a2d-a643-dfe2220509bd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-OLTP/versions/11.0.5537?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItT0xUUC92ZXJzaW9ucy8xMS4wLjU1Mzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.40262?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjQwMjYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5537\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40262\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40262\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "974" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60941,7 +61304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "347d8f47-947d-4f8b-a5c8-3f5018a8971b" + "b573962e-701e-4799-9e2f-9a28e613addb" ], "Cache-Control": [ "no-cache" @@ -60951,34 +61314,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12869" + "13755" ], "x-ms-correlation-request-id": [ - "4cff831b-c213-4ba5-aea7-5eb563b70bc3" + "a753a0f2-5bc4-4428-8d43-9036ff388d64" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212625Z:4cff831b-c213-4ba5-aea7-5eb563b70bc3" + "WESTUS:20150813T074802Z:a753a0f2-5bc4-4428-8d43-9036ff388d64" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-OLTP/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItT0xUUC92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.40459?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjQwNDU5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5569\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40459\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40459\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "974" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60993,7 +61356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fb1c4b8-83bb-4b61-af26-642d67738721" + "715bb517-c4f1-4a61-99f1-2368a00569be" ], "Cache-Control": [ "no-cache" @@ -61003,34 +61366,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12868" + "13754" ], "x-ms-correlation-request-id": [ - "bf39c85d-25a0-44ed-b70a-1f86a3525dd0" + "43519413-9958-4e4b-86c0-4f717de8fbb8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:bf39c85d-25a0-44ed-b70a-1f86a3525dd0" + "WESTUS:20150813T074802Z:43519413-9958-4e4b-86c0-4f717de8fbb8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9TdGFuZGFyZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.40938?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjQwOTM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.40938\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.40938\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "571" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61045,7 +61408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1de31440-a7aa-443b-9c9f-9c64affb01e4" + "889cf688-c30f-4fa7-92fb-e5a948095d35" ], "Cache-Control": [ "no-cache" @@ -61055,34 +61418,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12867" + "13753" ], "x-ms-correlation-request-id": [ - "2cb22082-fe5f-47e7-b476-8c102f596e4c" + "9a5c62cc-93ec-4bc8-8014-5cf86e6d5218" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:2cb22082-fe5f-47e7-b476-8c102f596e4c" + "WESTUS:20150813T074802Z:9a5c62cc-93ec-4bc8-8014-5cf86e6d5218" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Standard/versions/11.0.5537?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9TdGFuZGFyZC92ZXJzaW9ucy8xMS4wLjU1Mzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftDynamicsNAV/artifacttypes/vmimage/offers/DynamicsNAV/skus/2015/versions/8.0.41370?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0RHluYW1pY3NOQVYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9EeW5hbWljc05BVi9za3VzLzIwMTUvdmVyc2lvbnMvOC4wLjQxMzcwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard/Versions/11.0.5537\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.41370\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV/ArtifactTypes/VMImage/Offers/DynamicsNAV/Skus/2015/Versions/8.0.41370\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "388" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61097,7 +61460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b2263e4-729a-4286-9072-475e2ce1777a" + "4e928178-39a3-412e-ad9a-d637bc3e7f26" ], "Cache-Control": [ "no-cache" @@ -61107,34 +61470,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12866" + "13752" ], "x-ms-correlation-request-id": [ - "37a3444e-4dac-4933-b0f8-a0b0dfbfd62c" + "36d7b653-2d64-45db-843c-ff7124faf325" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:37a3444e-4dac-4933-b0f8-a0b0dfbfd62c" + "WESTUS:20150813T074802Z:36d7b653-2d64-45db-843c-ff7124faf325" ], "Date": [ - "Wed, 05 Aug 2015 21:26:25 GMT" + "Thu, 13 Aug 2015 07:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Standard/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9TdGFuZGFyZC92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard/Versions/11.0.5569\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"StorSimple\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "388" + "257" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61149,7 +61512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "237ee610-1a86-43a6-995f-420eaf531ec1" + "a688cd4d-9451-493c-a201-367c6fc64684" ], "Cache-Control": [ "no-cache" @@ -61159,34 +61522,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12865" + "13751" ], "x-ms-correlation-request-id": [ - "55cd932d-7727-40ea-a8a1-232cfd7a7c39" + "94c00aad-c3f4-4934-91df-8343851948ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:55cd932d-7727-40ea-a8a1-232cfd7a7c39" + "WESTUS:20150813T074802Z:94c00aad-c3f4-4934-91df-8343851948ad" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Web/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"StorSimple-8000-Series-Release\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Release\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"StorSimple-8000-Series-Update-0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Update-0.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "561" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61201,7 +61564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1150761e-b0ec-4259-b566-2f7fb74e029c" + "69810cb2-1abd-47dc-af32-070547c7faf8" ], "Cache-Control": [ "no-cache" @@ -61211,34 +61574,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12864" + "13750" ], "x-ms-correlation-request-id": [ - "50acbbf9-12b2-4917-a247-08fa65de4e9a" + "0cc9a39e-322b-4226-8510-e103d16dda1b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:50acbbf9-12b2-4917-a247-08fa65de4e9a" + "WESTUS:20150813T074802Z:0cc9a39e-322b-4226-8510-e103d16dda1b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Web/versions/11.0.5537?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnMvMTEuMC41NTM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus/StorSimple-8000-Series-Release/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtUmVsZWFzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web/Versions/11.0.5537\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9600.17312.20140710\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Release/Versions/9600.17312.20140710\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "383" + "331" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61253,7 +61616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fefdea60-5028-4ed6-869b-b43d06be5b63" + "c1d9ea97-d81d-4e29-a25a-3382f76c6618" ], "Cache-Control": [ "no-cache" @@ -61263,34 +61626,658 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12863" + "13749" + ], + "x-ms-correlation-request-id": [ + "1cb3440b-1693-4260-8b68-e1b3eac024db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074802Z:1cb3440b-1693-4260-8b68-e1b3eac024db" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus/StorSimple-8000-Series-Release/versions/9600.17312.20140710?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtUmVsZWFzZS92ZXJzaW9ucy85NjAwLjE3MzEyLjIwMTQwNzEwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9600.17312.20140710\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Release/Versions/9600.17312.20140710\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "432" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae89c16b-2e60-415f-8c98-71156672cc82" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13748" + ], + "x-ms-correlation-request-id": [ + "aaea3fe1-6798-4a23-8d09-83ab805b953c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074802Z:aaea3fe1-6798-4a23-8d09-83ab805b953c" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus/StorSimple-8000-Series-Update-0.3/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtVXBkYXRlLTAuMy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9600.17361.141206\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Update-0.3/Versions/9600.17361.141206\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "330" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "685a4d52-ac61-4b37-ac97-9b3e8486caa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13747" + ], + "x-ms-correlation-request-id": [ + "78ffba50-5a11-4b12-b5d4-5a7be1d40aad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074802Z:78ffba50-5a11-4b12-b5d4-5a7be1d40aad" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftHybridCloudStorage/artifacttypes/vmimage/offers/StorSimple/skus/StorSimple-8000-Series-Update-0.3/versions/9600.17361.141206?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtVXBkYXRlLTAuMy92ZXJzaW9ucy85NjAwLjE3MzYxLjE0MTIwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9600.17361.141206\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage/ArtifactTypes/VMImage/Offers/StorSimple/Skus/StorSimple-8000-Series-Update-0.3/Versions/9600.17361.141206\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b07e17f6-9079-47c1-b7b2-c6f6e67eafff" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13746" + ], + "x-ms-correlation-request-id": [ + "fe9dfc2e-5fe3-485d-b88e-41b39c5bc8af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074802Z:fe9dfc2e-5fe3-485d-b88e-41b39c5bc8af" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSharePoint/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U2hhcmVQb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePointServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint/ArtifactTypes/VMImage/Offers/MicrosoftSharePointServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30ab4d2a-04e0-41dc-bd1b-1ed9eb0478b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13745" + ], + "x-ms-correlation-request-id": [ + "02cc52ea-8653-449c-b07c-be865f32d31a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074803Z:02cc52ea-8653-449c-b07c-be865f32d31a" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSharePoint/artifacttypes/vmimage/offers/MicrosoftSharePointServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U2hhcmVQb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL01pY3Jvc29mdFNoYXJlUG9pbnRTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint/ArtifactTypes/VMImage/Offers/MicrosoftSharePointServer/Skus/2013\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "268" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d8d23a83-095c-45cc-9d00-a4267f6d8632" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13744" + ], + "x-ms-correlation-request-id": [ + "1fbb3bbd-8f67-4a65-b2af-d40b0e1d6568" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074803Z:1fbb3bbd-8f67-4a65-b2af-d40b0e1d6568" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSharePoint/artifacttypes/vmimage/offers/MicrosoftSharePointServer/skus/2013/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U2hhcmVQb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL01pY3Jvc29mdFNoYXJlUG9pbnRTZXJ2ZXIvc2t1cy8yMDEzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint/ArtifactTypes/VMImage/Offers/MicrosoftSharePointServer/Skus/2013/Versions/1.0.1\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "284" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c69177a-5d4c-4821-8e5e-885f8e0cab7f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13743" + ], + "x-ms-correlation-request-id": [ + "ad58ca02-ce8c-4f7c-81b3-08616a33c649" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074803Z:ad58ca02-ce8c-4f7c-81b3-08616a33c649" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSharePoint/artifacttypes/vmimage/offers/MicrosoftSharePointServer/skus/2013/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U2hhcmVQb2ludC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL01pY3Jvc29mdFNoYXJlUG9pbnRTZXJ2ZXIvc2t1cy8yMDEzL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint/ArtifactTypes/VMImage/Offers/MicrosoftSharePointServer/Skus/2013/Versions/1.0.1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "258aec50-147a-45a0-aab8-1a7d8677f339" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13742" + ], + "x-ms-correlation-request-id": [ + "771a6204-d477-41d1-8116-6c33690bae4c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074803Z:771a6204-d477-41d1-8116-6c33690bae4c" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2008R2SP3-WS2008R2SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2012SP2-WS2012\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2012SP2-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2014-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2014SP1-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SQL2016CTP2-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2016CTP2-WS2012R2\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94fd328d-d82c-4569-b3f7-ff36ea9120f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13741" + ], + "x-ms-correlation-request-id": [ + "619d5a48-c7e8-4ae4-8418-2c7570745343" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074803Z:619d5a48-c7e8-4ae4-8418-2c7570745343" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "810" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "564116ef-f52e-48fa-937a-180f2496cbe6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13740" + ], + "x-ms-correlation-request-id": [ + "d2c83229-2f07-4c73-8847-9d5ec477077f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074803Z:d2c83229-2f07-4c73-8847-9d5ec477077f" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvRW50ZXJwcmlzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.4021\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.4319\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.6000\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "888" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca8cee3f-574a-4e49-9277-fd3d28f6a531" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13739" + ], + "x-ms-correlation-request-id": [ + "4a2ae583-4fc5-49db-9a06-7d1f73d4ae47" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074803Z:4a2ae583-4fc5-49db-9a06-7d1f73d4ae47" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Enterprise/versions/10.50.4021?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvRW50ZXJwcmlzZS92ZXJzaW9ucy8xMC41MC40MDIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.4021\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fffe119a-3a3a-44b7-af52-9811e7f09279" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13738" + ], + "x-ms-correlation-request-id": [ + "48f48b77-73de-4b63-a3e4-b43734d689d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074803Z:48f48b77-73de-4b63-a3e4-b43734d689d8" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Enterprise/versions/10.50.4319?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvRW50ZXJwcmlzZS92ZXJzaW9ucy8xMC41MC40MzE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.4319\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae3fcf60-fb28-427d-8446-78a562fd239b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13737" ], "x-ms-correlation-request-id": [ - "acb1ba22-7198-4219-b4b8-2d8ffb8fc821" + "3a9f5a54-f5aa-4832-a2b9-987c43227b58" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:acb1ba22-7198-4219-b4b8-2d8ffb8fc821" + "WESTUS:20150813T074803Z:3a9f5a54-f5aa-4832-a2b9-987c43227b58" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Web/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnMvMTEuMC41NTY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Enterprise/versions/10.50.6000?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvRW50ZXJwcmlzZS92ZXJzaW9ucy8xMC41MC42MDAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web/Versions/11.0.5569\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Enterprise/Versions/10.50.6000\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "399" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61305,7 +62292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6109a668-9324-46ff-acb9-aff66ebb50a1" + "8bf12a57-d78b-4aff-90d5-ddd9d72273ad" ], "Cache-Control": [ "no-cache" @@ -61315,34 +62302,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12862" + "13736" ], "x-ms-correlation-request-id": [ - "a04bcd81-1cc9-4bbf-b9e2-c56a83a6ca26" + "9e95fc52-f330-4d46-af12-1d7eeddce06b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:a04bcd81-1cc9-4bbf-b9e2-c56a83a6ca26" + "WESTUS:20150813T074803Z:9e95fc52-f330-4d46-af12-1d7eeddce06b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvU3RhbmRhcmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-DW\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-OLTP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.4021\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.4319\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.6000\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1407" + "882" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61357,7 +62344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a92b0c62-208e-43af-bb3a-83707fa49744" + "334caef4-b1a6-416d-8979-81bd77660b68" ], "Cache-Control": [ "no-cache" @@ -61367,34 +62354,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12861" + "13735" ], "x-ms-correlation-request-id": [ - "fc3d36d9-153c-404f-80fd-5f956b4b80a5" + "b09c4405-06af-4f93-a4e4-f52b49028cba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:fc3d36d9-153c-404f-80fd-5f956b4b80a5" + "WESTUS:20150813T074804Z:b09c4405-06af-4f93-a4e4-f52b49028cba" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Standard/versions/10.50.4021?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvU3RhbmRhcmQvdmVyc2lvbnMvMTAuNTAuNDAyMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.4021\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "579" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61409,7 +62396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e826e080-1a29-44ba-a183-2db2676f8de0" + "be3fb040-2acf-4257-9893-133bc7187a7c" ], "Cache-Control": [ "no-cache" @@ -61419,31 +62406,187 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12860" + "13734" + ], + "x-ms-correlation-request-id": [ + "cc9e3fb7-d329-4600-8ef4-896229cca1bd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074804Z:cc9e3fb7-d329-4600-8ef4-896229cca1bd" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Standard/versions/10.50.4319?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvU3RhbmRhcmQvdmVyc2lvbnMvMTAuNTAuNDMxOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.4319\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b3942b52-a144-4ad4-86cd-8789ac2428bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13733" + ], + "x-ms-correlation-request-id": [ + "d6d0d81a-b1a4-40e6-bc55-60ee391e5dbf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074804Z:d6d0d81a-b1a4-40e6-bc55-60ee391e5dbf" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Standard/versions/10.50.6000?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvU3RhbmRhcmQvdmVyc2lvbnMvMTAuNTAuNjAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Standard/Versions/10.50.6000\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0064a018-f4f7-48ce-92e0-f538ae3f5fa4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13732" + ], + "x-ms-correlation-request-id": [ + "4995e6bb-e5b2-41eb-8b84-a8de59df69e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074804Z:4995e6bb-e5b2-41eb-8b84-a8de59df69e9" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Web/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvV2ViL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.4021\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.4319\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.6000\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "867" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0ccd3cc-b149-47a2-bbe6-032bb16f8302" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13731" ], "x-ms-correlation-request-id": [ - "27018a74-4d1c-4c53-89a9-95d9e7cc16d9" + "476261cb-5777-4440-bc7e-93419bd22280" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:27018a74-4d1c-4c53-89a9-95d9e7cc16d9" + "WESTUS:20150813T074804Z:476261cb-5777-4440-bc7e-93419bd22280" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise/versions/11.0.5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTEuMC41NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Web/versions/10.50.4021?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvV2ViL3ZlcnNpb25zLzEwLjUwLjQwMjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise/Versions/11.0.5548\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4021\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.4021\"\r\n}", "ResponseHeaders": { "Content-Length": [ "392" @@ -61461,7 +62604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "254c9f20-1d44-41af-8a84-3ffa97c44caa" + "0b3faafb-e888-4f81-ac3c-923c98c476bd" ], "Cache-Control": [ "no-cache" @@ -61471,31 +62614,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12859" + "13730" ], "x-ms-correlation-request-id": [ - "a2ba17dc-925b-430f-bf64-8012d93af1a4" + "79a357aa-63f2-42ab-9c16-3c5541baf44a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:a2ba17dc-925b-430f-bf64-8012d93af1a4" + "WESTUS:20150813T074804Z:79a357aa-63f2-42ab-9c16-3c5541baf44a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTEuMC41NTY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Web/versions/10.50.4319?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvV2ViL3ZlcnNpb25zLzEwLjUwLjQzMTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise/Versions/11.0.5569\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.4319\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.4319\"\r\n}", "ResponseHeaders": { "Content-Length": [ "392" @@ -61513,7 +62656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b3367c7-6e6f-456c-82e3-f32ceeb191bc" + "10b5b146-a109-46fd-9a3e-811dc4d524d1" ], "Cache-Control": [ "no-cache" @@ -61523,31 +62666,447 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12858" + "13729" + ], + "x-ms-correlation-request-id": [ + "9e15de77-4065-4ae6-b8ff-7f4c8c697a3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074804Z:9e15de77-4065-4ae6-b8ff-7f4c8c697a3e" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2008R2SP3-WS2008R2SP1/skus/Web/versions/10.50.6000?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAwOFIyU1AzLVdTMjAwOFIyU1AxL3NrdXMvV2ViL3ZlcnNpb25zLzEwLjUwLjYwMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.50.6000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2008R2SP3-WS2008R2SP1/Skus/Web/Versions/10.50.6000\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b65c738f-072c-40b4-ba1b-167b93ae9441" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13728" + ], + "x-ms-correlation-request-id": [ + "589a06dc-0b87-4b7a-a6ea-7762f262a655" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074804Z:589a06dc-0b87-4b7a-a6ea-7762f262a655" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-DW\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-OLTP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14032a62-5e3f-49f2-9294-04341e576b5c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13727" + ], + "x-ms-correlation-request-id": [ + "8c69ec17-3d52-409e-aa6f-06caff6b34c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074804Z:8c69ec17-3d52-409e-aa6f-06caff6b34c1" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "575" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9b6c706-0ba3-4576-bdcd-5841f89756ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13726" + ], + "x-ms-correlation-request-id": [ + "dc557cbf-40b6-427a-b49d-1893164dd50d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074804Z:dc557cbf-40b6-427a-b49d-1893164dd50d" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise/versions/11.0.5537?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zLzExLjAuNTUzNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise/Versions/11.0.5537\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6e36e2c1-16bb-4327-bf97-e738eb1be7c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13725" + ], + "x-ms-correlation-request-id": [ + "0f0b9816-0823-42b8-9980-a3352480b413" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074805Z:0f0b9816-0823-42b8-9980-a3352480b413" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zLzExLjAuNTU2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise/Versions/11.0.5569\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7816ab5-0594-48f7-8a7c-24443e1aa130" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13724" + ], + "x-ms-correlation-request-id": [ + "73b7ae78-d635-48a5-8632-908eff570bb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074805Z:73b7ae78-d635-48a5-8632-908eff570bb5" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-DW/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItRFcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c62d2e16-9ab6-4252-8209-5d33adf4ac73" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13723" + ], + "x-ms-correlation-request-id": [ + "00c2fb9e-8380-4c58-bba8-88e38e676a8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074805Z:00c2fb9e-8380-4c58-bba8-88e38e676a8d" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-DW/versions/11.0.5537?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItRFcvdmVyc2lvbnMvMTEuMC41NTM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5537\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "972" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c301e10e-dd9b-486f-9cee-b750791b86bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13722" + ], + "x-ms-correlation-request-id": [ + "1c3e5d7e-d101-4f51-aad7-84a70bfbd32b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074805Z:1c3e5d7e-d101-4f51-aad7-84a70bfbd32b" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-DW/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItRFcvdmVyc2lvbnMvMTEuMC41NTY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5569\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "972" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3204330f-e9ba-433c-8e44-a66213b8bc6f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13721" ], "x-ms-correlation-request-id": [ - "70fd41dc-4228-4dcc-9458-452ac1845f8f" + "766e3d83-aa04-4f37-93e0-1116ee477547" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212626Z:70fd41dc-4228-4dcc-9458-452ac1845f8f" + "WESTUS:20150813T074805Z:766e3d83-aa04-4f37-93e0-1116ee477547" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-DW/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-OLTP/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItT0xUUC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5569\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "613" @@ -61565,7 +63124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abc11f62-ceff-49be-874e-67eca320b7f6" + "e14bdbb4-012d-49a0-b873-ba090052b2c6" ], "Cache-Control": [ "no-cache" @@ -61575,31 +63134,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12857" + "13720" ], "x-ms-correlation-request-id": [ - "a67e9db3-b3b6-4cbb-acf3-2a36ffaa9507" + "ac001556-edee-44f8-9065-b409b1f5fc84" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:a67e9db3-b3b6-4cbb-acf3-2a36ffaa9507" + "WESTUS:20150813T074805Z:ac001556-edee-44f8-9065-b409b1f5fc84" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/11.0.5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMS4wLjU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-OLTP/versions/11.0.5537?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItT0xUUC92ZXJzaW9ucy8xMS4wLjU1Mzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5548\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5537\"\r\n}", "ResponseHeaders": { "Content-Length": [ "974" @@ -61617,7 +63176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01c0c595-5079-4f75-aa50-8d39c3f82191" + "2f31f1c7-b802-4f2e-998f-2d41aa6465b7" ], "Cache-Control": [ "no-cache" @@ -61627,31 +63186,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12856" + "13719" ], "x-ms-correlation-request-id": [ - "c19479af-0b0b-40fa-9f6a-38b2088b609f" + "111895e6-a2d3-4944-9468-0b2c8413abc7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:c19479af-0b0b-40fa-9f6a-38b2088b609f" + "WESTUS:20150813T074805Z:111895e6-a2d3-4944-9468-0b2c8413abc7" ], "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" + "Thu, 13 Aug 2015 07:48:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Enterprise-Optimized-for-OLTP/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9FbnRlcnByaXNlLU9wdGltaXplZC1mb3ItT0xUUC92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5569\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5569\"\r\n}", "ResponseHeaders": { "Content-Length": [ "974" @@ -61669,7 +63228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08fce6d3-168d-4b73-94d8-221032269417" + "500bf3fc-ba6a-4d8e-96df-c815d954f3a5" ], "Cache-Control": [ "no-cache" @@ -61679,86 +63238,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12855" - ], - "x-ms-correlation-request-id": [ - "15ec9b46-4eba-4954-add8-693e80ec01be" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:15ec9b46-4eba-4954-add8-693e80ec01be" - ], - "Date": [ - "Wed, 05 Aug 2015 21:26:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5569\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "617" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "eabfc499-8637-40ab-874a-d4b9fb6db201" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "12854" + "13718" ], "x-ms-correlation-request-id": [ - "eb64bde2-3e26-4350-bbd5-575623ca06fa" + "90c234a5-36c9-497d-8d74-a86794957838" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:eb64bde2-3e26-4350-bbd5-575623ca06fa" + "WESTUS:20150813T074805Z:90c234a5-36c9-497d-8d74-a86794957838" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/11.0.5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzExLjAuNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9TdGFuZGFyZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5548\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard/Versions/11.0.5569\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "976" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61773,7 +63280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1fb3f4d-69a1-4b95-a882-d1ef97f48455" + "6c448858-cbbc-4beb-a4af-e54c1f906409" ], "Cache-Control": [ "no-cache" @@ -61783,34 +63290,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12853" + "13717" ], "x-ms-correlation-request-id": [ - "04fa349e-259f-4d9b-8345-abdf89ea4dd2" + "1b2fee9e-f9f1-4ada-a55d-bd5ac387ae29" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:04fa349e-259f-4d9b-8345-abdf89ea4dd2" + "WESTUS:20150813T074805Z:1b2fee9e-f9f1-4ada-a55d-bd5ac387ae29" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzExLjAuNTU2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Standard/versions/11.0.5537?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9TdGFuZGFyZC92ZXJzaW9ucy8xMS4wLjU1Mzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5569\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard/Versions/11.0.5537\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "976" + "388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61825,7 +63332,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f1576d82-fa08-4215-b890-f132fb15d41b" + "7b9dfb63-c04d-4d57-998f-b113913be322" ], "Cache-Control": [ "no-cache" @@ -61835,34 +63342,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12852" + "13716" ], "x-ms-correlation-request-id": [ - "47d7ee29-8c61-4476-9b88-eb20731b696a" + "31833e22-d0ba-43f3-8acc-7d979b7909c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:47d7ee29-8c61-4476-9b88-eb20731b696a" + "WESTUS:20150813T074805Z:31833e22-d0ba-43f3-8acc-7d979b7909c2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Standard/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9TdGFuZGFyZC92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Standard/Versions/11.0.5569\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "575" + "388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61877,7 +63384,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "987f3570-369a-479d-bf21-9d7129d0e8aa" + "6ffd465f-7d4c-4be2-b1d9-22d299bea421" ], "Cache-Control": [ "no-cache" @@ -61887,34 +63394,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12851" + "13715" ], "x-ms-correlation-request-id": [ - "fd07e8ac-9055-4980-b737-8aac0a86e703" + "45586b7e-3ae6-4cb0-8419-c4bbf61e00f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:fd07e8ac-9055-4980-b737-8aac0a86e703" + "WESTUS:20150813T074805Z:45586b7e-3ae6-4cb0-8419-c4bbf61e00f6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Standard/versions/11.0.5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzExLjAuNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Web/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard/Versions/11.0.5548\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web/Versions/11.0.5537\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web/Versions/11.0.5569\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "390" + "561" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61929,7 +63436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "596a1053-4694-4e4e-9981-a0825c597c25" + "78ecb813-2bfd-455b-abd8-64381e531c4c" ], "Cache-Control": [ "no-cache" @@ -61939,34 +63446,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12850" + "13714" ], "x-ms-correlation-request-id": [ - "cc732e52-855b-494c-b300-4c0e94ee3d51" + "b512714f-1b77-4251-be1c-0ed3e06e1f53" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:cc732e52-855b-494c-b300-4c0e94ee3d51" + "WESTUS:20150813T074806Z:b512714f-1b77-4251-be1c-0ed3e06e1f53" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Standard/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzExLjAuNTU2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Web/versions/11.0.5537?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnMvMTEuMC41NTM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard/Versions/11.0.5569\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5537\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web/Versions/11.0.5537\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "390" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61981,7 +63488,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54a4215e-c8d9-4a67-97f2-883e906053ae" + "af116313-f16c-4d5b-aa3e-8eaca1199022" ], "Cache-Control": [ "no-cache" @@ -61991,34 +63498,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12849" + "13713" ], "x-ms-correlation-request-id": [ - "bf0c85df-7e5c-4aec-a9a2-78d50cff3463" + "d4c5d894-6957-4f7a-948b-f0bc1fc0fa02" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:bf0c85df-7e5c-4aec-a9a2-78d50cff3463" + "WESTUS:20150813T074806Z:d4c5d894-6957-4f7a-948b-f0bc1fc0fa02" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Web/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012/skus/Web/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnMvMTEuMC41NTY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web/Versions/11.0.5569\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012/Skus/Web/Versions/11.0.5569\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "565" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62033,7 +63540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "450e471f-46e1-41ab-bae3-9269b553726e" + "c10d51a9-b89f-4e31-b581-5785ce3db273" ], "Cache-Control": [ "no-cache" @@ -62043,34 +63550,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12848" + "13712" ], "x-ms-correlation-request-id": [ - "b74e18ec-e073-4860-8b1b-d18cbd2dd5c5" + "da2f4e6f-9cce-4341-a516-439a3228d25e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212627Z:b74e18ec-e073-4860-8b1b-d18cbd2dd5c5" + "WESTUS:20150813T074806Z:da2f4e6f-9cce-4341-a516-439a3228d25e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Web/versions/11.0.5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMS4wLjU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web/Versions/11.0.5548\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-DW\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-OLTP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "385" + "1407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62085,7 +63592,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1741370a-e0d3-4ff2-afeb-a917aaf86010" + "835ccd09-75a2-4426-b2eb-2d16826d85bb" ], "Cache-Control": [ "no-cache" @@ -62095,34 +63602,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12847" + "13711" ], "x-ms-correlation-request-id": [ - "5904e892-8f47-4fff-b32c-6d20dbc041f6" + "e29bc49c-9da0-45d1-81f6-5d7aee4ca469" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:5904e892-8f47-4fff-b32c-6d20dbc041f6" + "WESTUS:20150813T074806Z:e29bc49c-9da0-45d1-81f6-5d7aee4ca469" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Web/versions/11.0.5569?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web/Versions/11.0.5569\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise/Versions/11.0.5569\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "385" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62137,7 +63644,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97876ecd-2742-4f06-8d66-271d1f969ba0" + "a3253e8e-cfbf-46f7-9f81-0c1bc218a170" ], "Cache-Control": [ "no-cache" @@ -62147,34 +63654,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12846" + "13710" ], "x-ms-correlation-request-id": [ - "d2a2d22e-1038-4a8b-b0ca-1e636c677e3a" + "f89f4dee-afe0-4a01-9d62-d43c7a3fbecb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:d2a2d22e-1038-4a8b-b0ca-1e636c677e3a" + "WESTUS:20150813T074806Z:f89f4dee-afe0-4a01-9d62-d43c7a3fbecb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise/versions/11.0.5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTEuMC41NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-DW\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-OLTP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise/Versions/11.0.5548\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1679" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62189,7 +63696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "295634fa-fa13-455b-825f-4043eaf5c5c9" + "77bd7ec0-c030-4bcd-90e8-79e9ba4df7d4" ], "Cache-Control": [ "no-cache" @@ -62199,34 +63706,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12845" + "13709" ], "x-ms-correlation-request-id": [ - "9a850823-7bde-4e74-accb-37255bde42a4" + "743461fd-28c4-49b8-a5bb-0099f892dc9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:9a850823-7bde-4e74-accb-37255bde42a4" + "WESTUS:20150813T074806Z:743461fd-28c4-49b8-a5bb-0099f892dc9f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTEuMC41NTY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2000\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2430\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise/Versions/11.0.5569\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1143" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62241,7 +63748,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "116c0b19-da3b-44b4-b8e6-1eec4dabcc47" + "d6240b1b-2b20-49d7-8860-dce810875772" ], "Cache-Control": [ "no-cache" @@ -62251,34 +63758,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12844" + "13708" ], "x-ms-correlation-request-id": [ - "8d66ae46-bb4e-4e84-ad36-eaf07e14ca72" + "0827250e-50e5-4da4-abfa-f8083f36ecc1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:8d66ae46-bb4e-4e84-ad36-eaf07e14ca72" + "WESTUS:20150813T074806Z:0827250e-50e5-4da4-abfa-f8083f36ecc1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:27 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions/12.0.2000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC4yMDAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-DW/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2000\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5569\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "389" + "613" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62293,7 +63800,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4421c391-9768-4164-89d9-0385b2b1cfa2" + "221b9212-88c4-4ea8-8bed-d9e3f6889872" ], "Cache-Control": [ "no-cache" @@ -62303,34 +63810,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12843" + "13707" ], "x-ms-correlation-request-id": [ - "9199b47e-c250-4d81-aa24-d9e9f60d1724" + "4f769c92-f53a-49d6-b2ea-13dac792125d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:9199b47e-c250-4d81-aa24-d9e9f60d1724" + "WESTUS:20150813T074806Z:4f769c92-f53a-49d6-b2ea-13dac792125d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions/12.0.2048?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC4yMDQ4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/11.0.5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMS4wLjU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2048\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5548\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "389" + "974" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62345,7 +63852,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62553473-0d31-4d2e-88df-c3dbd1158357" + "3b37ef81-418f-4429-a7bc-271f96a8c08f" ], "Cache-Control": [ "no-cache" @@ -62355,34 +63862,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12842" + "13706" ], "x-ms-correlation-request-id": [ - "ec547d1c-0d52-486d-b57c-04cc58a67d59" + "fb7e4838-80b7-4ae4-86ad-b253eace5704" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:ec547d1c-0d52-486d-b57c-04cc58a67d59" + "WESTUS:20150813T074806Z:fb7e4838-80b7-4ae4-86ad-b253eace5704" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions/12.0.2361?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC4yMzYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2361\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/11.0.5569\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "389" + "974" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62397,7 +63904,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fed53f1-a970-4a45-9f2c-7cbdadf237bd" + "0ce6d388-62ff-403f-bf44-8acc5f585929" ], "Cache-Control": [ "no-cache" @@ -62407,34 +63914,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12841" + "13705" ], "x-ms-correlation-request-id": [ - "fd2b7721-68e2-438e-8a08-9f79198f027c" + "64afccaf-197e-4e0f-b4d7-f3c567b0e9f9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:fd2b7721-68e2-438e-8a08-9f79198f027c" + "WESTUS:20150813T074806Z:64afccaf-197e-4e0f-b4d7-f3c567b0e9f9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions/12.0.2430?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC4yNDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2430\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5569\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "389" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62449,7 +63956,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31b1b5af-bccc-430d-9b7f-1bafced89654" + "1dc5bc8d-c222-422f-a233-f5b724e2e410" ], "Cache-Control": [ "no-cache" @@ -62459,34 +63966,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12840" + "13704" ], "x-ms-correlation-request-id": [ - "b3646449-f36e-4907-a431-9d72ed4ec4b0" + "a7a284bb-eca8-41f8-b7bf-3100a04d7616" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:b3646449-f36e-4907-a431-9d72ed4ec4b0" + "WESTUS:20150813T074806Z:a7a284bb-eca8-41f8-b7bf-3100a04d7616" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/11.0.5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzExLjAuNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized/Versions/12.0.2000\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5548\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "298" + "976" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62501,7 +64008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8aad91d0-0764-48fe-91f5-af825e5989d0" + "b098d83f-aa7d-4763-bd2b-e166f9e57c8c" ], "Cache-Control": [ "no-cache" @@ -62511,34 +64018,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12839" + "13703" ], "x-ms-correlation-request-id": [ - "a5a2e094-cb54-4d39-a0b3-5ca0e529e2a2" + "8b121239-8f46-43fe-bbd2-e88ce97d0236" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:a5a2e094-cb54-4d39-a0b3-5ca0e529e2a2" + "WESTUS:20150813T074807Z:8b121239-8f46-43fe-bbd2-e88ce97d0236" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized/versions/12.0.2000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkL3ZlcnNpb25zLzEyLjAuMjAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzExLjAuNTU2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized/Versions/12.0.2000\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/11.0.5569\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "399" + "976" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62553,7 +64060,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16e78521-539f-412b-a909-3fa9f8e9e06f" + "d298c6db-5c69-4b51-823e-b22d684758a0" ], "Cache-Control": [ "no-cache" @@ -62563,34 +64070,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12838" + "13702" ], "x-ms-correlation-request-id": [ - "e14994ab-c9b1-4d55-916e-8afcbda27948" + "d127a570-e5ba-4419-b77e-bd3da318f005" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:e14994ab-c9b1-4d55-916e-8afcbda27948" + "WESTUS:20150813T074807Z:d127a570-e5ba-4419-b77e-bd3da318f005" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-DW/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2430\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard/Versions/11.0.5569\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "909" + "575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62605,7 +64112,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24dc0376-27d4-4d6c-895c-466056e58411" + "76be3a59-d55e-4bf2-8588-15eb08140b15" ], "Cache-Control": [ "no-cache" @@ -62615,34 +64122,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12837" + "13701" ], "x-ms-correlation-request-id": [ - "fd1d7879-40d7-4563-a21e-0db8954ea44a" + "e80927dd-bba4-43fe-ad15-8b5dc69b955d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212628Z:fd1d7879-40d7-4563-a21e-0db8954ea44a" + "WESTUS:20150813T074807Z:e80927dd-bba4-43fe-ad15-8b5dc69b955d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/12.0.2048?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMi4wLjIwNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Standard/versions/11.0.5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzExLjAuNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2048\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard/Versions/11.0.5548\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "971" + "390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62657,7 +64164,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0eb8e936-7543-479c-83e8-dd5675e68a90" + "d4090463-fedb-4ca2-a9fc-4f25d7a67127" ], "Cache-Control": [ "no-cache" @@ -62667,34 +64174,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12836" + "13700" ], "x-ms-correlation-request-id": [ - "31f7b4de-aded-48ff-8592-54f5a2907274" + "97640116-129f-48b7-b3bc-3337e2980943" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:31f7b4de-aded-48ff-8592-54f5a2907274" + "WESTUS:20150813T074807Z:97640116-129f-48b7-b3bc-3337e2980943" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/12.0.2361?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMi4wLjIzNjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Standard/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzExLjAuNTU2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2361\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Standard/Versions/11.0.5569\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "971" + "390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62709,7 +64216,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98519324-02bc-4140-b256-3975812a40b7" + "321480a1-e7be-4c38-9a4b-502f04228735" ], "Cache-Control": [ "no-cache" @@ -62719,34 +64226,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12835" + "13699" ], "x-ms-correlation-request-id": [ - "7011b8cb-adaa-48c1-9841-8575e035c6ea" + "da0a7f4a-f36a-4e8f-987b-473b20fc7b3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:7011b8cb-adaa-48c1-9841-8575e035c6ea" + "WESTUS:20150813T074807Z:da0a7f4a-f36a-4e8f-987b-473b20fc7b3f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/12.0.2430?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMi4wLjI0MzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Web/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2430\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web/Versions/11.0.5548\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web/Versions/11.0.5569\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "971" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62761,7 +64268,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7fb5364-04c8-4f4e-9e3c-41ded8681ce5" + "aa71a72c-b019-4e2c-bdda-a8bcf81468b4" ], "Cache-Control": [ "no-cache" @@ -62771,34 +64278,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12834" + "13698" ], "x-ms-correlation-request-id": [ - "2c627237-3ea5-432e-bf20-abcfbc5c983a" + "2d72827b-a774-4c27-824b-c8dc475cb9b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:2c627237-3ea5-432e-bf20-abcfbc5c983a" + "WESTUS:20150813T074807Z:2d72827b-a774-4c27-824b-c8dc475cb9b6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Web/versions/11.0.5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMS4wLjU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2430\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5548\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web/Versions/11.0.5548\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "915" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62813,7 +64320,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0afd40bf-aecd-4684-ae53-66a5e843a463" + "8e03683a-a77b-498f-a355-bdbb7eaf76dd" ], "Cache-Control": [ "no-cache" @@ -62823,34 +64330,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12833" + "13697" ], "x-ms-correlation-request-id": [ - "8d4c2a2f-d895-4bc8-9d1a-f20364b2a9b0" + "c05631e2-10d6-4584-8818-ab185de2a493" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:8d4c2a2f-d895-4bc8-9d1a-f20364b2a9b0" + "WESTUS:20150813T074807Z:c05631e2-10d6-4584-8818-ab185de2a493" ], "Date": [ - "Wed, 05 Aug 2015 21:26:28 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/12.0.2048?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzEyLjAuMjA0OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2012SP2-WS2012R2/skus/Web/versions/11.0.5569?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2048\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"11.0.5569\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2012SP2-WS2012R2/Skus/Web/Versions/11.0.5569\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "973" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62865,7 +64372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44820439-5b2f-4a0c-a764-75e0d8725287" + "5cc5be8a-5455-471d-8acc-fe68e97906ac" ], "Cache-Control": [ "no-cache" @@ -62875,34 +64382,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12832" + "13696" ], "x-ms-correlation-request-id": [ - "19a595e0-c28d-4276-911c-80e353703e26" + "f0bf8213-26ef-4727-a314-0da1de365efd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:19a595e0-c28d-4276-911c-80e353703e26" + "WESTUS:20150813T074807Z:f0bf8213-26ef-4727-a314-0da1de365efd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/12.0.2361?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzEyLjAuMjM2MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2361\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-DW\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-OLTP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "973" + "1679" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62917,7 +64424,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "132cb54c-cf70-4f5d-8bae-cfe6c241196c" + "c501cac4-0c28-48e3-9a3b-3aaaa749b214" ], "Cache-Control": [ "no-cache" @@ -62927,34 +64434,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12831" + "13695" ], "x-ms-correlation-request-id": [ - "ffaebe32-7007-43e6-9ec2-1b0612543159" + "41a06fd0-d71a-428b-97ff-444e068b2022" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:ffaebe32-7007-43e6-9ec2-1b0612543159" + "WESTUS:20150813T074807Z:41a06fd0-d71a-428b-97ff-444e068b2022" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/12.0.2430?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzEyLjAuMjQzMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2430\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2000\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2430\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "973" + "1143" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62969,7 +64476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "308d8afd-d566-4289-a293-719ea5371508" + "7e127d9f-231a-4ec4-bf2a-ee27cd2f9bf2" ], "Cache-Control": [ "no-cache" @@ -62979,34 +64486,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12830" + "13694" ], "x-ms-correlation-request-id": [ - "ec6372ec-d7d5-42ba-9271-1760f7935b1b" + "4c9cfc29-1da3-4744-85c4-ee3b3243c635" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:ec6372ec-d7d5-42ba-9271-1760f7935b1b" + "WESTUS:20150813T074807Z:4c9cfc29-1da3-4744-85c4-ee3b3243c635" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions/12.0.2000?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC4yMDAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2000\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2430\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2000\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1135" + "389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63021,7 +64528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66b10997-3e7c-4711-ab2f-84f6608a9a9e" + "971b151a-e927-4da9-b17f-4aafdb811584" ], "Cache-Control": [ "no-cache" @@ -63031,34 +64538,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12829" + "13693" ], "x-ms-correlation-request-id": [ - "809a7805-8d39-4361-a927-91e1ca23842a" + "adc6e196-ed54-4648-8b75-9c2507dafdc3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:809a7805-8d39-4361-a927-91e1ca23842a" + "WESTUS:20150813T074807Z:adc6e196-ed54-4648-8b75-9c2507dafdc3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions/12.0.2000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuMjAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions/12.0.2048?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC4yMDQ4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2000\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2048\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63073,7 +64580,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99665a96-7152-4605-b2ba-1f09dc1a4c17" + "942a5b3f-01e1-488b-a9a5-7a4e20bdbb9b" ], "Cache-Control": [ "no-cache" @@ -63083,34 +64590,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12828" + "13692" ], "x-ms-correlation-request-id": [ - "4c15afec-5639-4c2e-bf03-fdc1b09f3bc8" + "23608f79-04aa-4096-a822-7f458e7a6b7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:4c15afec-5639-4c2e-bf03-fdc1b09f3bc8" + "WESTUS:20150813T074808Z:23608f79-04aa-4096-a822-7f458e7a6b7c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions/12.0.2048?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuMjA0OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions/12.0.2361?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC4yMzYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2048\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2361\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63125,7 +64632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37d54c43-acce-42b6-b613-a07c1aa5259b" + "e3658ad6-468d-4e31-8882-967166967f8b" ], "Cache-Control": [ "no-cache" @@ -63135,34 +64642,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12827" + "13691" ], "x-ms-correlation-request-id": [ - "f3557bb7-966e-4a0c-83ee-f67e0ef49aec" + "f1c1e927-7a3e-45ce-9383-0a2de0a36ab0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:f3557bb7-966e-4a0c-83ee-f67e0ef49aec" + "WESTUS:20150813T074808Z:f1c1e927-7a3e-45ce-9383-0a2de0a36ab0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions/12.0.2361?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuMjM2MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise/versions/12.0.2430?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC4yNDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2361\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise/Versions/12.0.2430\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63177,7 +64684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "416540f6-8ebf-4def-a09e-53b42a9ce565" + "a4784fd8-285a-4efb-a6da-0a7c022ba550" ], "Cache-Control": [ "no-cache" @@ -63187,34 +64694,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12826" + "13690" ], "x-ms-correlation-request-id": [ - "27bcb022-0ca8-4668-914f-7bd8d6f4e572" + "15d3aba9-880f-4248-bf38-130d119b821f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212629Z:27bcb022-0ca8-4668-914f-7bd8d6f4e572" + "WESTUS:20150813T074808Z:15d3aba9-880f-4248-bf38-130d119b821f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions/12.0.2430?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuMjQzMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2430\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized/Versions/12.0.2000\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "387" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63229,7 +64736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b6e2309-42e6-41ad-9c18-332d13e95dab" + "0776aac0-5729-4951-af6b-c216433c8bd2" ], "Cache-Control": [ "no-cache" @@ -63239,34 +64746,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12825" + "13689" ], "x-ms-correlation-request-id": [ - "4dd47bfb-9b88-41d3-b2fd-843bed4c854c" + "4c213fed-e66f-4638-9f26-11f18c3a29bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:4dd47bfb-9b88-41d3-b2fd-843bed4c854c" + "WESTUS:20150813T074808Z:4c213fed-e66f-4638-9f26-11f18c3a29bd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized/versions/12.0.2000?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkL3ZlcnNpb25zLzEyLjAuMjAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2000\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2430\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized/Versions/12.0.2000\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1115" + "399" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63281,7 +64788,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69c59b7f-7b9e-4f23-828c-6a8414bb5feb" + "f1abe9bc-67b4-4c90-88fd-1fea87db4718" ], "Cache-Control": [ "no-cache" @@ -63291,34 +64798,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12824" + "13688" ], "x-ms-correlation-request-id": [ - "d7c7abe7-426d-46b0-97dd-915ff175c581" + "f316d62d-68be-4ff6-9537-8922c0471f44" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:d7c7abe7-426d-46b0-97dd-915ff175c581" + "WESTUS:20150813T074808Z:f316d62d-68be-4ff6-9537-8922c0471f44" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions/12.0.2000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjIwMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-DW/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2000\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2430\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "382" + "909" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63333,7 +64840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29749b27-0ad9-468e-b244-4a0ce849580e" + "8f1d0104-f40b-4d4a-9b3d-7bd094187dae" ], "Cache-Control": [ "no-cache" @@ -63343,34 +64850,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12823" + "13687" ], "x-ms-correlation-request-id": [ - "77b61e6d-f77d-4025-b74f-7bc3f91e1d3e" + "dbc6b147-3c59-4c9b-982c-06776bb68d7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:77b61e6d-f77d-4025-b74f-7bc3f91e1d3e" + "WESTUS:20150813T074808Z:dbc6b147-3c59-4c9b-982c-06776bb68d7c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions/12.0.2048?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjIwNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/12.0.2048?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMi4wLjIwNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2048\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2048\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "382" + "971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63385,7 +64892,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5318f8d-fcb3-4bd3-8d81-d077ec411516" + "bd1839ac-03bd-48ad-b38d-d0606a8bb8d8" ], "Cache-Control": [ "no-cache" @@ -63395,34 +64902,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12822" + "13686" ], "x-ms-correlation-request-id": [ - "5346a1c2-d654-4b99-9b05-b1c3d2ec53b6" + "d6711cf6-08e6-487f-860b-ce6ca875a6c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:5346a1c2-d654-4b99-9b05-b1c3d2ec53b6" + "WESTUS:20150813T074808Z:d6711cf6-08e6-487f-860b-ce6ca875a6c1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:29 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions/12.0.2361?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjIzNjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/12.0.2361?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMi4wLjIzNjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2361\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2361\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "382" + "971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63437,7 +64944,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5e2ecae-2063-45ba-b827-242ba6d5e5db" + "cbf3ac74-8ba9-4545-925b-a45f278f75c5" ], "Cache-Control": [ "no-cache" @@ -63447,34 +64954,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12821" + "13685" ], "x-ms-correlation-request-id": [ - "f7da52d1-b892-4175-82d1-4cbc8c6d9ca2" + "82733217-01fb-4e1a-ba06-27c521c03598" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:f7da52d1-b892-4175-82d1-4cbc8c6d9ca2" + "WESTUS:20150813T074808Z:82733217-01fb-4e1a-ba06-27c521c03598" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions/12.0.2430?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjI0MzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/12.0.2430?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMi4wLjI0MzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2430\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.2430\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "382" + "971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63489,7 +64996,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b1a2545-cbaa-424e-b147-ea52d38357cd" + "469f4820-1dca-4b26-adde-2a43953f8d36" ], "Cache-Control": [ "no-cache" @@ -63499,34 +65006,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12820" + "13684" ], "x-ms-correlation-request-id": [ - "cb011d3f-a143-4709-bed2-ddcf6319b3a2" + "c685ed2f-7311-4749-9b03-fef1dcb149a8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:cb011d3f-a143-4709-bed2-ddcf6319b3a2" + "WESTUS:20150813T074808Z:c685ed2f-7311-4749-9b03-fef1dcb149a8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-DW\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-DW\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-OLTP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-OLTP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Web\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2430\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1407" + "915" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63541,7 +65048,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "326e5f48-b3d8-4a26-8795-355a56c98f98" + "a854f20a-dbf2-4b1a-9230-2d6261711e5b" ], "Cache-Control": [ "no-cache" @@ -63551,34 +65058,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12819" + "13683" ], "x-ms-correlation-request-id": [ - "743105a9-be60-4249-80f1-1c25a79714b5" + "a94dca36-4c1d-43c1-8ebf-75421aa93ea6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:743105a9-be60-4249-80f1-1c25a79714b5" + "WESTUS:20150813T074808Z:a94dca36-4c1d-43c1-8ebf-75421aa93ea6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/12.0.2048?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzEyLjAuMjA0OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise/Versions/12.0.4100\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2048\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "291" + "973" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63593,7 +65100,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99f275e9-0372-4f1d-b259-6b6236db39a5" + "08401727-27ad-4505-a303-67f294736936" ], "Cache-Control": [ "no-cache" @@ -63603,34 +65110,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12818" + "13682" ], "x-ms-correlation-request-id": [ - "b9880537-6d59-41a3-8192-3b5bcdf3c658" + "9d92d932-49ff-4691-90b2-4071d8424fc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:b9880537-6d59-41a3-8192-3b5bcdf3c658" + "WESTUS:20150813T074808Z:9d92d932-49ff-4691-90b2-4071d8424fc9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise/versions/12.0.4100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC40MTAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/12.0.2361?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzEyLjAuMjM2MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise/Versions/12.0.4100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2361\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "392" + "973" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63645,7 +65152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53b29e67-af9f-4e4e-8ffd-b41184e2b8f0" + "0993a2c6-9f09-473b-bb99-6fbf26781470" ], "Cache-Control": [ "no-cache" @@ -63655,34 +65162,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12817" + "13681" ], "x-ms-correlation-request-id": [ - "ecfb237c-47d0-42aa-b24c-073059f668e6" + "e7d0bcd8-c174-4bc9-b11e-3c2074e934c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212630Z:ecfb237c-47d0-42aa-b24c-073059f668e6" + "WESTUS:20150813T074809Z:e7d0bcd8-c174-4bc9-b11e-3c2074e934c1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise-Optimized-for-DW/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/12.0.2430?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzEyLjAuMjQzMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.4100\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.2430\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "308" + "973" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63697,7 +65204,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd53f3a0-78c1-42a0-965a-5a541965ee68" + "092ee381-9658-4624-8388-2b57464cc5d0" ], "Cache-Control": [ "no-cache" @@ -63707,34 +65214,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12816" + "13680" ], "x-ms-correlation-request-id": [ - "7cacb55a-46e5-4d57-9e04-34894b55fcc7" + "a8be1673-84c7-4e86-9c5d-650ccfc0ca71" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:7cacb55a-46e5-4d57-9e04-34894b55fcc7" + "WESTUS:20150813T074809Z:a8be1673-84c7-4e86-9c5d-650ccfc0ca71" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/12.0.4100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMi4wLjQxMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.4100\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2000\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2430\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "974" + "1135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63749,7 +65256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02a6be61-d9e2-4153-9c06-396f1032e2fe" + "57366399-e151-4fbb-9eb1-0dca5dcd5a9e" ], "Cache-Control": [ "no-cache" @@ -63759,34 +65266,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12815" + "13679" ], "x-ms-correlation-request-id": [ - "9617b711-f6a7-4d8e-9bb8-56bba271dd74" + "c92a1306-3c10-451b-a31d-85e5a9d3b161" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:9617b711-f6a7-4d8e-9bb8-56bba271dd74" + "WESTUS:20150813T074809Z:c92a1306-3c10-451b-a31d-85e5a9d3b161" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions/12.0.2000?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuMjAwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.4100\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2000\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "310" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63801,7 +65308,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4b16341-e971-4a73-8fda-4bb27a23d396" + "1e553bb8-2982-42c1-abb9-a20685ef867d" ], "Cache-Control": [ "no-cache" @@ -63811,34 +65318,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12814" + "13678" ], "x-ms-correlation-request-id": [ - "3a3a1213-551c-4c4b-944d-10319f90ca02" + "425f784e-9c99-4885-8f8e-59e3fdde4916" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:3a3a1213-551c-4c4b-944d-10319f90ca02" + "WESTUS:20150813T074809Z:425f784e-9c99-4885-8f8e-59e3fdde4916" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/12.0.4100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzEyLjAuNDEwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions/12.0.2048?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuMjA0OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.4100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2048\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "976" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63853,7 +65360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0720946-90d0-4d51-a7c6-0cd39560547d" + "f47558e1-0b7a-4c1e-8218-d6b88f840092" ], "Cache-Control": [ "no-cache" @@ -63863,34 +65370,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12813" + "13677" ], "x-ms-correlation-request-id": [ - "61ee486a-5b02-43d0-9a6f-64c099aa8f24" + "e34474a2-c465-4b93-bb38-a59ef5ff7cbe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:61ee486a-5b02-43d0-9a6f-64c099aa8f24" + "WESTUS:20150813T074809Z:e34474a2-c465-4b93-bb38-a59ef5ff7cbe" ], "Date": [ - "Wed, 05 Aug 2015 21:26:30 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions/12.0.2361?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuMjM2MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Standard/Versions/12.0.4100\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2361\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "289" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63905,7 +65412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0edc1ec-b2da-496c-8cd9-784598d9509b" + "60d3d40a-1d2a-4498-91b8-c95686ac3960" ], "Cache-Control": [ "no-cache" @@ -63915,34 +65422,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12812" + "13676" ], "x-ms-correlation-request-id": [ - "b2aef951-4df5-44ae-b12c-32cbde36b2ce" + "c9dfc8ba-1395-460e-8072-df19883a4ef8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:b2aef951-4df5-44ae-b12c-32cbde36b2ce" + "WESTUS:20150813T074809Z:c9dfc8ba-1395-460e-8072-df19883a4ef8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Standard/versions/12.0.4100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuNDEwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Standard/versions/12.0.2430?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuMjQzMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Standard/Versions/12.0.4100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Standard/Versions/12.0.2430\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "390" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63957,7 +65464,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06c91cff-1f93-4f35-9466-272a8b4558e3" + "ace654a5-678b-4d0f-8717-21fcf05b872f" ], "Cache-Control": [ "no-cache" @@ -63967,34 +65474,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12811" + "13675" ], "x-ms-correlation-request-id": [ - "2700bea2-8742-4e6d-b17e-eecce5a643b0" + "64b1d958-7565-4e8b-851f-8fa1cd2dd688" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:2700bea2-8742-4e6d-b17e-eecce5a643b0" + "WESTUS:20150813T074809Z:64b1d958-7565-4e8b-851f-8fa1cd2dd688" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Web/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Web/Versions/12.0.4100\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2000\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2048\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2361\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2430\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "284" + "1115" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64009,7 +65516,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5589122-79f8-446a-a784-368e961eaaea" + "b4cc7e78-d7cb-4929-a96a-9acaf36f566c" ], "Cache-Control": [ "no-cache" @@ -64019,34 +65526,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12810" + "13674" ], "x-ms-correlation-request-id": [ - "e7ee7309-618d-4e2d-9313-3111d4ca5bee" + "83eea09d-608b-4753-b878-75c03a8b4858" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:e7ee7309-618d-4e2d-9313-3111d4ca5bee" + "WESTUS:20150813T074809Z:83eea09d-608b-4753-b878-75c03a8b4858" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Web/versions/12.0.4100?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjQxMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions/12.0.2000?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjIwMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Web/Versions/12.0.4100\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2000\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64061,7 +65568,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7e9f592-3112-4798-b7a6-d4c08becf249" + "243386c3-3a56-42c4-9b8c-30f73574c199" ], "Cache-Control": [ "no-cache" @@ -64071,34 +65578,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12809" + "13673" ], "x-ms-correlation-request-id": [ - "3399ff82-079c-4aa7-832b-9e3bfc4118cd" + "5cc100f7-3ae1-4f05-8138-cf8633e94a07" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:3399ff82-079c-4aa7-832b-9e3bfc4118cd" + "WESTUS:20150813T074809Z:5cc100f7-3ae1-4f05-8138-cf8633e94a07" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2016CTP2-WS2012R2/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNkNUUDItV1MyMDEyUjIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions/12.0.2048?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjIwNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2016CTP2-WS2012R2/Skus/Enterprise\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2048\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2048\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "274" + "382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64113,7 +65620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9ba647e-3f78-4877-98b9-db10fdf1132b" + "d2a10e5d-fa5c-4ef3-bab7-9db3c4c25d9b" ], "Cache-Control": [ "no-cache" @@ -64123,34 +65630,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12808" + "13672" ], "x-ms-correlation-request-id": [ - "1d30e925-bc25-4b67-89e4-cb0074f3c331" + "98d539e0-a115-40eb-b6b6-1b449d365062" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:1d30e925-bc25-4b67-89e4-cb0074f3c331" + "WESTUS:20150813T074809Z:98d539e0-a115-40eb-b6b6-1b449d365062" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2016CTP2-WS2012R2/skus/Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNkNUUDItV1MyMDEyUjIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions/12.0.2361?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjIzNjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.0.200\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2016CTP2-WS2012R2/Skus/Enterprise/Versions/13.0.200\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2361\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2361\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64165,7 +65672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30879b94-c614-49fa-82f4-cd32cc976259" + "4e98bc57-f5c7-4ecf-b22e-8efd447f08c1" ], "Cache-Control": [ "no-cache" @@ -64175,34 +65682,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12807" + "13671" ], "x-ms-correlation-request-id": [ - "5b996b5a-d90f-4ecd-907c-482739d54efc" + "fc775f78-7b3b-483f-9f0c-20e748b2455b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212631Z:5b996b5a-d90f-4ecd-907c-482739d54efc" + "WESTUS:20150813T074810Z:fc775f78-7b3b-483f-9f0c-20e748b2455b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2016CTP2-WS2012R2/skus/Enterprise/versions/13.0.200?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNkNUUDItV1MyMDEyUjIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zLzEzLjAuMjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014-WS2012R2/skus/Web/versions/12.0.2430?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNC1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjI0MzA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.0.200\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2016CTP2-WS2012R2/Skus/Enterprise/Versions/13.0.200\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.2430\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014-WS2012R2/Skus/Web/Versions/12.0.2430\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "391" + "382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64217,7 +65724,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9e727b8-16c3-4cce-b5ba-643f9476ec44" + "8f7aa93e-2c0f-4aa4-a1b9-78d350798a12" ], "Cache-Control": [ "no-cache" @@ -64227,34 +65734,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12806" + "13670" ], "x-ms-correlation-request-id": [ - "93fc5499-1fcb-489f-985e-3b45cc9183ed" + "7be213a3-30fe-4f5c-be3e-d60a18e4399a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:93fc5499-1fcb-489f-985e-3b45cc9183ed" + "WESTUS:20150813T074810Z:7be213a3-30fe-4f5c-be3e-d60a18e4399a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TeamFoundationServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-DW\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-DW\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise-Optimized-for-OLTP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-OLTP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Web\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Web\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "765" + "1407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64269,7 +65776,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ee11970-ae3f-4b35-8dab-d77de378d62b" + "a51bb4e8-0edd-4293-89e5-edacc746f187" ], "Cache-Control": [ "no-cache" @@ -64279,34 +65786,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12805" + "13669" ], "x-ms-correlation-request-id": [ - "f53700af-d48a-4304-9867-d63d383bb994" + "d01963f7-4cbd-4715-b81a-e83d5d557aaf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:f53700af-d48a-4304-9867-d63d383bb994" + "WESTUS:20150813T074810Z:d01963f7-4cbd-4715-b81a-e83d5d557aaf" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Update4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise/Versions/12.0.4100\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "281" + "291" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64321,7 +65828,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da1e368d-378e-47d3-aab3-c4dff6045edb" + "0fbf78c0-9927-46e5-beb0-9576f1f318f9" ], "Cache-Control": [ "no-cache" @@ -64331,34 +65838,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12804" + "13668" ], "x-ms-correlation-request-id": [ - "97904b66-2605-44fa-84be-59eb296aef32" + "3b8e2062-0a5d-480e-b82d-7babc38bb1e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:97904b66-2605-44fa-84be-59eb296aef32" + "WESTUS:20150813T074810Z:3b8e2062-0a5d-480e-b82d-7babc38bb1e7" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus/2013-Update4/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cy8yMDEzLVVwZGF0ZTQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise/versions/12.0.4100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTIuMC40MTAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201411\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.201411\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20150320\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.20150320\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20150327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.20150327\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise/Versions/12.0.4100\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "899" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64373,7 +65880,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee3b80e9-1ce3-446d-8ac4-0d0f47deaf47" + "ed73dd12-aaf6-4219-aa19-a85630c89dac" ], "Cache-Control": [ "no-cache" @@ -64383,34 +65890,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12803" + "13667" ], "x-ms-correlation-request-id": [ - "f45b8089-f73a-4e3c-921b-e42442600a6a" + "8f7648d8-3000-4bad-acab-35d771900f8b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:f45b8089-f73a-4e3c-921b-e42442600a6a" + "WESTUS:20150813T074810Z:8f7648d8-3000-4bad-acab-35d771900f8b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:31 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus/2013-Update4/versions/1.0.201411?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cy8yMDEzLVVwZGF0ZTQvdmVyc2lvbnMvMS4wLjIwMTQxMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise-Optimized-for-DW/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201411\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.201411\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.4100\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "400" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64425,7 +65932,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f42383f0-f139-4e10-90b2-038c93711bec" + "2c7ed4e2-aa18-4666-babe-a988a105ca1a" ], "Cache-Control": [ "no-cache" @@ -64435,34 +65942,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12802" + "13666" ], "x-ms-correlation-request-id": [ - "2526c95c-47b0-4a9e-99f4-1f750db77e9c" + "ec893507-7dda-4f85-a189-acb944d424b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:2526c95c-47b0-4a9e-99f4-1f750db77e9c" + "WESTUS:20150813T074810Z:ec893507-7dda-4f85-a189-acb944d424b1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus/2013-Update4/versions/1.0.20150320?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cy8yMDEzLVVwZGF0ZTQvdmVyc2lvbnMvMS4wLjIwMTUwMzIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise-Optimized-for-DW/versions/12.0.4100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMi4wLjQxMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20150320\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.20150320\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-DW/Versions/12.0.4100\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "404" + "974" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64477,7 +65984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72c8957a-2a1f-4437-afba-ef64d021974f" + "9c263e04-f944-4722-8342-b81d1123c7bf" ], "Cache-Control": [ "no-cache" @@ -64487,34 +65994,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12801" + "13665" ], "x-ms-correlation-request-id": [ - "5b27304f-7f0f-4a3e-afdd-5aa6394a9e1d" + "64708415-58a8-4b17-89be-9dbb8aba653a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:5b27304f-7f0f-4a3e-afdd-5aa6394a9e1d" + "WESTUS:20150813T074810Z:64708415-58a8-4b17-89be-9dbb8aba653a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus/2013-Update4/versions/1.0.20150327?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cy8yMDEzLVVwZGF0ZTQvdmVyc2lvbnMvMS4wLjIwMTUwMzI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20150327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.20150327\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.4100\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "404" + "310" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64529,7 +66036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2ac2635-a8cf-4e4d-b465-b34710d5d485" + "f033ae11-f2e8-48e5-af09-3833a81a95d9" ], "Cache-Control": [ "no-cache" @@ -64539,34 +66046,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12800" + "13664" ], "x-ms-correlation-request-id": [ - "d08a9fd4-d717-4417-993a-ab9329d3b385" + "3cdc7c0e-046e-413f-ba1a-e66f5a91fe49" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:d08a9fd4-d717-4417-993a-ab9329d3b385" + "WESTUS:20150813T074810Z:3cdc7c0e-046e-413f-ba1a-e66f5a91fe49" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Enterprise-Optimized-for-OLTP/versions/12.0.4100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1PTFRQL3ZlcnNpb25zLzEyLjAuNDEwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Community-Update-4-ws2012-az25-ntvs10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az25-ntvs10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Community-Update-4-ws2012-az26\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Community-Update-4-ws2012-az26-cor31\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26-cor31\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Premium-Update-4-win81\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-win81\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Premium-Update-4-win81n-az26\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-win81n-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Premium-Update-4-ws2012-az26\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-ws2012-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Professional-Update-4-ws2012-az26\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Professional-Update-4-ws2012-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Ultimate-Update-4-win81\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-win81\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Ultimate-Update-4-win81n-az26\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-win81n-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Ultimate-Update-4-ws2012-az26\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-ws2012-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Community-RC\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Community-RC\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Enterprise-RC\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-RC\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Enterprise-Win10Tools\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-Win10Tools\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Professional-RC\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Professional-RC\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreCLR\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/CoreCLR\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Community-AzureSDK-2.7-W10T-Win10-N\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Community-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Enterprise-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Enterprise-Optimized-for-OLTP/Versions/12.0.4100\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "9959" + "976" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64581,7 +66088,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ba38816-0b9c-4aaf-b910-8a2330ea803d" + "0461ecdd-3a6a-4626-81d0-48681afec4ee" ], "Cache-Control": [ "no-cache" @@ -64591,34 +66098,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12799" + "13663" ], "x-ms-correlation-request-id": [ - "4bbf8c05-9936-4b84-8621-6af9274ff846" + "6896631e-0554-4ffa-8c21-afbd504e222a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:4bbf8c05-9936-4b84-8621-6af9274ff846" + "WESTUS:20150813T074810Z:6896631e-0554-4ffa-8c21-afbd504e222a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az25-ntvs10/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjUtbnR2czEwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az25-ntvs10/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Standard/Versions/12.0.4100\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "321" + "289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64633,7 +66140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b5ec8e6-95df-46c3-a3eb-78d5486532aa" + "c8643465-af37-4963-add6-18fe061a8c18" ], "Cache-Control": [ "no-cache" @@ -64643,34 +66150,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12798" + "13662" ], "x-ms-correlation-request-id": [ - "1fb5145f-d1a4-4687-9f0b-aa286d0f5967" + "066e6f37-8962-49f0-9427-4013e481c76b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:1fb5145f-d1a4-4687-9f0b-aa286d0f5967" + "WESTUS:20150813T074810Z:066e6f37-8962-49f0-9427-4013e481c76b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az25-ntvs10/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjUtbnR2czEwL3ZlcnNpb25zLzEyLjAuMzExMDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Standard/versions/12.0.4100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL1N0YW5kYXJkL3ZlcnNpb25zLzEyLjAuNDEwMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az25-ntvs10/Versions/12.0.31101\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Standard/Versions/12.0.4100\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "422" + "390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64685,7 +66192,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6974169-f592-4f28-8c03-714fb8995a52" + "0a40643f-a281-4b83-96a4-ca55d00f9407" ], "Cache-Control": [ "no-cache" @@ -64695,34 +66202,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12797" + "13661" ], "x-ms-correlation-request-id": [ - "5a974df5-f507-4178-9d5e-f7db1de93357" + "4ff153a4-ec0d-42ff-9c28-620b028fdc12" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212632Z:5a974df5-f507-4178-9d5e-f7db1de93357" + "WESTUS:20150813T074810Z:4ff153a4-ec0d-42ff-9c28-620b028fdc12" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az26/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Web/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Web/Versions/12.0.4100\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "314" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64737,7 +66244,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6b76f04-e82d-4970-b538-f0f29c11997f" + "090b1c34-f086-4cb3-bb61-3543c4ddf66d" ], "Cache-Control": [ "no-cache" @@ -64747,34 +66254,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12796" + "13660" ], "x-ms-correlation-request-id": [ - "2984f471-53cb-4756-bc52-77eeb7934319" + "8e47f68f-3dfc-49ac-bfb6-16fdb038d5a8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:2984f471-53cb-4756-bc52-77eeb7934319" + "WESTUS:20150813T074811Z:8e47f68f-3dfc-49ac-bfb6-16fdb038d5a8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az26/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjYvdmVyc2lvbnMvMTIuMC4zMTEwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2014SP1-WS2012R2/skus/Web/versions/12.0.4100?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNFNQMS1XUzIwMTJSMi9za3VzL1dlYi92ZXJzaW9ucy8xMi4wLjQxMDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26/Versions/12.0.31101\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.4100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2014SP1-WS2012R2/Skus/Web/Versions/12.0.4100\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "415" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64789,7 +66296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "075e2316-f261-4616-802b-256b7dfe0842" + "455f0d6f-08e0-4bcb-812a-dfd3ced97f9b" ], "Cache-Control": [ "no-cache" @@ -64799,34 +66306,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12795" + "13659" ], "x-ms-correlation-request-id": [ - "8b6f176b-041c-41d9-ad64-931a08ebb823" + "56ab61cb-88dd-4a1d-a15c-d2fcf8ad921f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:8b6f176b-041c-41d9-ad64-931a08ebb823" + "WESTUS:20150813T074811Z:56ab61cb-88dd-4a1d-a15c-d2fcf8ad921f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az26-cor31/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjYtY29yMzEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2016CTP2-WS2012R2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNkNUUDItV1MyMDEyUjIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26-cor31/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2016CTP2-WS2012R2/Skus/Enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "320" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64841,7 +66348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9cc1beb-d9b5-4ced-b96b-9218e1f19213" + "8b0ce521-e23b-48f4-ae58-51d1bf6cbafe" ], "Cache-Control": [ "no-cache" @@ -64851,34 +66358,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12794" + "13658" ], "x-ms-correlation-request-id": [ - "3b7ff06d-ebb0-4db6-bfca-3111df824eeb" + "294ee4db-2396-4be3-b87f-26b1dfced587" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:3b7ff06d-ebb0-4db6-bfca-3111df824eeb" + "WESTUS:20150813T074811Z:294ee4db-2396-4be3-b87f-26b1dfced587" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az26-cor31/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjYtY29yMzEvdmVyc2lvbnMvMTIuMC4zMTEwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2016CTP2-WS2012R2/skus/Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNkNUUDItV1MyMDEyUjIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26-cor31/Versions/12.0.31101\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.0.200\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2016CTP2-WS2012R2/Skus/Enterprise/Versions/13.0.200\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "421" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64893,7 +66400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b043004-bd6a-42f4-90be-59c48016edfb" + "c5607b08-0ba4-4b2b-81a5-4a89e069aaa2" ], "Cache-Control": [ "no-cache" @@ -64903,34 +66410,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12793" + "13657" ], "x-ms-correlation-request-id": [ - "1d212eec-b837-4fa5-959d-4c92ae9f4aac" + "ca4c0920-7920-463c-b71f-439773ee8e8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:1d212eec-b837-4fa5-959d-4c92ae9f4aac" + "WESTUS:20150813T074811Z:ca4c0920-7920-463c-b71f-439773ee8e8f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-win81/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdpbjgxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftSQLServer/artifacttypes/vmimage/offers/SQL2016CTP2-WS2012R2/skus/Enterprise/versions/13.0.200?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxNkNUUDItV1MyMDEyUjIvc2t1cy9FbnRlcnByaXNlL3ZlcnNpb25zLzEzLjAuMjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-win81/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.0.200\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer/ArtifactTypes/VMImage/Offers/SQL2016CTP2-WS2012R2/Skus/Enterprise/Versions/13.0.200\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "306" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64945,7 +66452,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11809b5e-a060-4e1b-82b0-eb9cc1e702a6" + "0a878cc0-cd0d-4bb4-90a7-5caee27cb398" ], "Cache-Control": [ "no-cache" @@ -64955,34 +66462,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12792" + "13656" ], "x-ms-correlation-request-id": [ - "910c6c59-19ad-4f57-b9d9-09294c52b803" + "a41ef883-2e81-4e5c-8bf4-b5c5d7abb9e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:910c6c59-19ad-4f57-b9d9-09294c52b803" + "WESTUS:20150813T074811Z:a41ef883-2e81-4e5c-8bf4-b5c5d7abb9e5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:32 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-win81/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdpbjgxL3ZlcnNpb25zLzEyLjAuMzExMDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-win81/Versions/12.0.31101\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TeamFoundationServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "407" + "765" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64997,7 +66504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9e275c1-3a73-4b69-87dd-2f0070e92a85" + "9bae472d-d4b9-4151-8ef1-c52fd191f5f5" ], "Cache-Control": [ "no-cache" @@ -65007,34 +66514,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12791" + "13655" ], "x-ms-correlation-request-id": [ - "394592a2-f39a-4fc9-aa6d-8c04eeb0e872" + "0f070ebb-1df5-4be0-8927-efad2eeb76e4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:394592a2-f39a-4fc9-aa6d-8c04eeb0e872" + "WESTUS:20150813T074811Z:0f070ebb-1df5-4be0-8927-efad2eeb76e4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:33 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-win81n-az26/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdpbjgxbi1hejI2L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-win81n-az26/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Update4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "312" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65049,7 +66556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3dea83db-2ff7-409a-8e8a-2a2b33f72709" + "ed48530f-90ee-4623-bada-1b38551762a8" ], "Cache-Control": [ "no-cache" @@ -65059,34 +66566,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12790" + "13654" ], "x-ms-correlation-request-id": [ - "d7569915-88e9-4f16-907b-595dfdbbfcda" + "ca3c1d59-48e3-440c-ac16-7576ae4dbd01" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:d7569915-88e9-4f16-907b-595dfdbbfcda" + "WESTUS:20150813T074811Z:ca3c1d59-48e3-440c-ac16-7576ae4dbd01" ], "Date": [ - "Wed, 05 Aug 2015 21:26:33 GMT" + "Thu, 13 Aug 2015 07:48:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-win81n-az26/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdpbjgxbi1hejI2L3ZlcnNpb25zLzEyLjAuMzExMDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus/2013-Update4/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cy8yMDEzLVVwZGF0ZTQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-win81n-az26/Versions/12.0.31101\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201411\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.201411\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20150320\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.20150320\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20150327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.20150327\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "413" + "899" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65101,7 +66608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01403bc9-c77b-4fe4-ba21-07de5703020e" + "1152db77-7e56-4c84-b643-6c8faec0ea70" ], "Cache-Control": [ "no-cache" @@ -65111,34 +66618,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12789" + "13653" ], "x-ms-correlation-request-id": [ - "6665da87-96dc-43a3-b723-28734a4ca72a" + "a334d788-a06f-4351-985c-1f3dd8e81501" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:6665da87-96dc-43a3-b723-28734a4ca72a" + "WESTUS:20150813T074811Z:a334d788-a06f-4351-985c-1f3dd8e81501" ], "Date": [ - "Wed, 05 Aug 2015 21:26:33 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-ws2012-az26/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdzMjAxMi1hejI2L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus/2013-Update4/versions/1.0.201411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cy8yMDEzLVVwZGF0ZTQvdmVyc2lvbnMvMS4wLjIwMTQxMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-ws2012-az26/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.201411\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.201411\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "312" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65153,7 +66660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42abbcce-559f-4653-9fa5-d07cefaad1d7" + "a040c024-544c-4200-ba32-31f0caee5dfa" ], "Cache-Control": [ "no-cache" @@ -65163,34 +66670,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12788" + "13652" ], "x-ms-correlation-request-id": [ - "7fed91c2-dc4e-4b79-b7ec-0e4701ca40c4" + "17d0679d-a15b-481a-8f07-8b2bd0997fe8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:7fed91c2-dc4e-4b79-b7ec-0e4701ca40c4" + "WESTUS:20150813T074811Z:17d0679d-a15b-481a-8f07-8b2bd0997fe8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:33 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-ws2012-az26/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdzMjAxMi1hejI2L3ZlcnNpb25zLzEyLjAuMzExMDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus/2013-Update4/versions/1.0.20150320?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cy8yMDEzLVVwZGF0ZTQvdmVyc2lvbnMvMS4wLjIwMTUwMzIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-ws2012-az26/Versions/12.0.31101\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20150320\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.20150320\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65205,7 +66712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c0d8ef0-2f0d-4e9d-8d49-b55b7b5464b2" + "bd4e1c5c-7c27-4064-8807-f7d22f79d0a2" ], "Cache-Control": [ "no-cache" @@ -65215,34 +66722,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12787" + "13651" ], "x-ms-correlation-request-id": [ - "6fe70daf-0d87-4cc6-9067-6df7c9e28c5e" + "e75ea823-4ebf-4a6a-9e0f-95869da635e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212633Z:6fe70daf-0d87-4cc6-9067-6df7c9e28c5e" + "WESTUS:20150813T074812Z:e75ea823-4ebf-4a6a-9e0f-95869da635e2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:33 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Professional-Update-4-ws2012-az26/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Qcm9mZXNzaW9uYWwtVXBkYXRlLTQtd3MyMDEyLWF6MjYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/TeamFoundationServer/skus/2013-Update4/versions/1.0.20150327?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVGVhbUZvdW5kYXRpb25TZXJ2ZXIvc2t1cy8yMDEzLVVwZGF0ZTQvdmVyc2lvbnMvMS4wLjIwMTUwMzI3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Professional-Update-4-ws2012-az26/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20150327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/TeamFoundationServer/Skus/2013-Update4/Versions/1.0.20150327\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "317" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65257,7 +66764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd5e3a45-2993-4bda-aaed-2c7c55c3e531" + "1a2c281c-bbad-4704-9b67-032092d95fd5" ], "Cache-Control": [ "no-cache" @@ -65267,34 +66774,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12786" + "13650" ], "x-ms-correlation-request-id": [ - "2a3dfeeb-d60a-4641-ab32-51db88e8f02b" + "159758e1-c97c-4c68-85ed-b11f3f324376" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212634Z:2a3dfeeb-d60a-4641-ab32-51db88e8f02b" + "WESTUS:20150813T074812Z:159758e1-c97c-4c68-85ed-b11f3f324376" ], "Date": [ - "Wed, 05 Aug 2015 21:26:33 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Professional-Update-4-ws2012-az26/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Qcm9mZXNzaW9uYWwtVXBkYXRlLTQtd3MyMDEyLWF6MjYvdmVyc2lvbnMvMTIuMC4zMTEwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Professional-Update-4-ws2012-az26/Versions/12.0.31101\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Community-Update-4-ws2012-az25-ntvs10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az25-ntvs10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Community-Update-4-ws2012-az26\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Community-Update-4-ws2012-az26-cor31\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26-cor31\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Premium-Update-4-win81\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-win81\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Premium-Update-4-win81n-az26\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-win81n-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Premium-Update-4-ws2012-az26\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Premium-Update-4-ws2012-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Professional-Update-4-ws2012-az26\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Professional-Update-4-ws2012-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Ultimate-Update-4-win81\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-win81\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Ultimate-Update-4-win81n-az26\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-win81n-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2013-Ultimate-Update-4-ws2012-az26\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-ws2012-az26\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Community-RC\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Community-RC\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Enterprise-RC\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-RC\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Enterprise-Win10Tools\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-Win10Tools\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015-Professional-RC\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Professional-RC\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreCLR\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/CoreCLR\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Community-VSU5-Cordova-CTP3.2-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-Cordova-CTP3.2-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Community-AzureSDK-2.7-W10T-Win10-N\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Community-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Enterprise-AzureSDK-2.7-WS2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "418" + "10323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65309,7 +66816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4abb6b90-93bc-4a38-b2ad-b70afd539077" + "79480076-6ee3-4877-96b1-4086662918f2" ], "Cache-Control": [ "no-cache" @@ -65319,34 +66826,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12785" + "13649" ], "x-ms-correlation-request-id": [ - "79c61c06-eef6-4837-8e80-e4f6a1824487" + "54857a30-19a8-43a0-b6fd-104094cd0372" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212634Z:79c61c06-eef6-4837-8e80-e4f6a1824487" + "WESTUS:20150813T074812Z:54857a30-19a8-43a0-b6fd-104094cd0372" ], "Date": [ - "Wed, 05 Aug 2015 21:26:33 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-win81/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13aW44MS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az25-ntvs10/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjUtbnR2czEwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-win81/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az25-ntvs10/Versions/12.0.31101\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "307" + "321" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65361,7 +66868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32f55ebf-6b98-4904-b125-afe1cc894555" + "93eafe1b-694e-420b-9bf2-4860059e49b9" ], "Cache-Control": [ "no-cache" @@ -65371,34 +66878,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12784" + "13648" ], "x-ms-correlation-request-id": [ - "98309f03-b46f-43c0-a484-1db0257cec69" + "48c4e099-0238-431e-bdce-6369e2bfef0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212634Z:98309f03-b46f-43c0-a484-1db0257cec69" + "WESTUS:20150813T074812Z:48c4e099-0238-431e-bdce-6369e2bfef0f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-win81/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13aW44MS92ZXJzaW9ucy8xMi4wLjMxMTAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az25-ntvs10/versions/12.0.31101?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjUtbnR2czEwL3ZlcnNpb25zLzEyLjAuMzExMDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-win81/Versions/12.0.31101\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az25-ntvs10/Versions/12.0.31101\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "408" + "422" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65413,7 +66920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c492854a-f5a9-4d43-b843-9156fdecd563" + "000aa7f2-a0ff-40ed-b955-26e43d24e903" ], "Cache-Control": [ "no-cache" @@ -65423,34 +66930,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12783" + "13647" ], "x-ms-correlation-request-id": [ - "bb276aa6-335c-4c6d-b42b-914ee99e719c" + "8c75c8cf-20f8-4b3c-aba6-6841297e547a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212634Z:bb276aa6-335c-4c6d-b42b-914ee99e719c" + "WESTUS:20150813T074812Z:8c75c8cf-20f8-4b3c-aba6-6841297e547a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-win81n-az26/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13aW44MW4tYXoyNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az26/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-win81n-az26/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "313" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65465,7 +66972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d60df99-1e7c-4589-919b-7584184ce4cf" + "721976d3-df39-4be5-a0b2-e699ca0ebbb7" ], "Cache-Control": [ "no-cache" @@ -65475,34 +66982,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12782" + "13646" ], "x-ms-correlation-request-id": [ - "56126d10-5080-4d69-a557-3cf562eefb24" + "eb64ee8c-0d10-4979-aeee-5ae498f2e7c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212634Z:56126d10-5080-4d69-a557-3cf562eefb24" + "WESTUS:20150813T074812Z:eb64ee8c-0d10-4979-aeee-5ae498f2e7c6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-win81n-az26/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13aW44MW4tYXoyNi92ZXJzaW9ucy8xMi4wLjMxMTAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az26-cor31/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjYtY29yMzEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-win81n-az26/Versions/12.0.31101\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26-cor31/Versions/12.0.31101\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "414" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65517,7 +67024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "455c4d62-ffaa-48ec-9c36-bfc363cc9217" + "0204fff5-cd41-4bcf-9dd0-cb55ce0e9e27" ], "Cache-Control": [ "no-cache" @@ -65527,34 +67034,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12781" + "13645" ], "x-ms-correlation-request-id": [ - "f5689da3-afa2-4ded-86ff-064338254006" + "12d02fb8-24b3-4d1f-b976-d8c49ed277e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212634Z:f5689da3-afa2-4ded-86ff-064338254006" + "WESTUS:20150813T074812Z:12d02fb8-24b3-4d1f-b976-d8c49ed277e6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-ws2012-az26/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13czIwMTItYXoyNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Community-Update-4-ws2012-az26-cor31/versions/12.0.31101?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Db21tdW5pdHktVXBkYXRlLTQtd3MyMDEyLWF6MjYtY29yMzEvdmVyc2lvbnMvMTIuMC4zMTEwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-ws2012-az26/Versions/12.0.31101\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Community-Update-4-ws2012-az26-cor31/Versions/12.0.31101\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "313" + "421" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65569,7 +67076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a7dff72-1b19-431f-aabf-c50f5b6ba305" + "39344551-9b2d-4781-b226-62726e3e16d2" ], "Cache-Control": [ "no-cache" @@ -65579,34 +67086,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12780" + "13644" ], "x-ms-correlation-request-id": [ - "bb578500-11cf-4c54-986f-9a8f2e3e9e56" + "deb8fda6-a41a-4ed7-865c-083ffef2e56e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212634Z:bb578500-11cf-4c54-986f-9a8f2e3e9e56" + "WESTUS:20150813T074812Z:deb8fda6-a41a-4ed7-865c-083ffef2e56e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-ws2012-az26/versions/12.0.31101?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13czIwMTItYXoyNi92ZXJzaW9ucy8xMi4wLjMxMTAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-win81/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdpbjgxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.31101\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2013-Ultimate-Update-4-ws2012-az26/Versions/12.0.31101\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "414" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65621,7 +67128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd19a0da-8418-4acd-9038-4d54533c4f45" + "1c22dd8e-6f53-45f9-8b52-ca1d068f1422" ], "Cache-Control": [ "no-cache" @@ -65631,34 +67138,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12779" + "13643" ], "x-ms-correlation-request-id": [ - "3584cfdb-76aa-456f-a255-0f417e620aa1" + "e1d086f5-a383-415a-9fbc-9256ef27268e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:3584cfdb-76aa-456f-a255-0f417e620aa1" + "WESTUS:20150813T074812Z:e1d086f5-a383-415a-9fbc-9256ef27268e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Community-RC/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1Db21tdW5pdHktUkMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-win81n-az26/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdpbjgxbi1hejI2L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Community-RC/Versions/14.0.22823\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "296" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65673,7 +67180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a169ad2e-9448-441c-989c-d08e3d52a9ba" + "d20fd8c6-2c82-4dd6-b1cd-b4c31c6b6c3f" ], "Cache-Control": [ "no-cache" @@ -65683,34 +67190,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12778" + "13642" ], "x-ms-correlation-request-id": [ - "d107f189-7bc3-4b38-917a-a6c1aa87f95f" + "13f97d38-2eb7-4868-9447-c711fd08a3eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:d107f189-7bc3-4b38-917a-a6c1aa87f95f" + "WESTUS:20150813T074812Z:13f97d38-2eb7-4868-9447-c711fd08a3eb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Community-RC/versions/14.0.22823?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1Db21tdW5pdHktUkMvdmVyc2lvbnMvMTQuMC4yMjgyMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Premium-Update-4-ws2012-az26/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1QcmVtaXVtLVVwZGF0ZS00LXdzMjAxMi1hejI2L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Community-RC/Versions/14.0.22823\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "397" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65725,7 +67232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a3cdff8-d653-4766-834c-6f17d1938ec1" + "168255c5-ce80-4570-9860-62f892a91b51" ], "Cache-Control": [ "no-cache" @@ -65735,34 +67242,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12777" + "13641" ], "x-ms-correlation-request-id": [ - "442cac8b-5252-4f6e-a745-edd0fa05af3c" + "f4261d3c-a9ad-44be-b6fb-43592a5f4c8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:442cac8b-5252-4f6e-a745-edd0fa05af3c" + "WESTUS:20150813T074813Z:f4261d3c-a9ad-44be-b6fb-43592a5f4c8a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Enterprise-RC/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1FbnRlcnByaXNlLVJDL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Professional-Update-4-ws2012-az26/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1Qcm9mZXNzaW9uYWwtVXBkYXRlLTQtd3MyMDEyLWF6MjYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-RC/Versions/14.0.22823\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "297" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65777,7 +67284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cac0e71-b117-40d1-a867-a3fd2ec190e4" + "706eb4c3-5e32-4c9f-909a-898c07ef58b8" ], "Cache-Control": [ "no-cache" @@ -65787,34 +67294,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12776" + "13640" ], "x-ms-correlation-request-id": [ - "08a33b70-a7a1-4231-82a0-d1b69fd85026" + "66e5172a-a94b-4674-928c-e9df584f5ce8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:08a33b70-a7a1-4231-82a0-d1b69fd85026" + "WESTUS:20150813T074813Z:66e5172a-a94b-4674-928c-e9df584f5ce8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Enterprise-RC/versions/14.0.22823?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1FbnRlcnByaXNlLVJDL3ZlcnNpb25zLzE0LjAuMjI4MjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-win81/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13aW44MS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-RC/Versions/14.0.22823\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "398" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65829,7 +67336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8c9c9fa-3d72-42a8-b177-104bc7c95811" + "140bf94c-2b30-41b7-807f-513bd1df2193" ], "Cache-Control": [ "no-cache" @@ -65839,34 +67346,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12775" + "13639" ], "x-ms-correlation-request-id": [ - "3346363f-da31-4d36-8acd-1c518b6a0c7f" + "9caf80ac-08a8-42b1-9219-3c2c03665fb3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:3346363f-da31-4d36-8acd-1c518b6a0c7f" + "WESTUS:20150813T074813Z:9caf80ac-08a8-42b1-9219-3c2c03665fb3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:34 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Enterprise-Win10Tools/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1FbnRlcnByaXNlLVdpbjEwVG9vbHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-win81n-az26/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13aW44MW4tYXoyNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-Win10Tools/Versions/14.0.22823\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "305" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65881,7 +67388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de94c2e6-dd84-454f-a0b7-c6e7ca9c51a0" + "83aa32a3-1b94-403d-84d4-6e9bbf4705f8" ], "Cache-Control": [ "no-cache" @@ -65891,34 +67398,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12774" + "13638" ], "x-ms-correlation-request-id": [ - "eb7cd471-4f58-4b3b-bb57-780e29769b07" + "ecad3b93-ccba-4f0d-a528-a1a3f42e3d26" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:eb7cd471-4f58-4b3b-bb57-780e29769b07" + "WESTUS:20150813T074813Z:ecad3b93-ccba-4f0d-a528-a1a3f42e3d26" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Enterprise-Win10Tools/versions/14.0.22823?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1FbnRlcnByaXNlLVdpbjEwVG9vbHMvdmVyc2lvbnMvMTQuMC4yMjgyMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2013-Ultimate-Update-4-ws2012-az26/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxMy1VbHRpbWF0ZS1VcGRhdGUtNC13czIwMTItYXoyNi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-Win10Tools/Versions/14.0.22823\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "406" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65933,7 +67440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46ee4360-defe-4ccb-aca7-68d01e6cd293" + "c78f0e29-0b43-4f73-aef1-e4d47f208bed" ], "Cache-Control": [ "no-cache" @@ -65943,34 +67450,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12773" + "13637" ], "x-ms-correlation-request-id": [ - "26c24aa5-fd20-4586-983d-d5358c32a9de" + "0b9f6a12-bfca-4a52-a086-a6e1d261ba5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:26c24aa5-fd20-4586-983d-d5358c32a9de" + "WESTUS:20150813T074813Z:0b9f6a12-bfca-4a52-a086-a6e1d261ba5b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Professional-RC/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1Qcm9mZXNzaW9uYWwtUkMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Community-RC/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1Db21tdW5pdHktUkMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Professional-RC/Versions/14.0.22823\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "299" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -65985,7 +67492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "230a0456-1f92-4192-b0dd-77ef134a1719" + "96546ac0-d839-4337-9573-6c3e18f01144" ], "Cache-Control": [ "no-cache" @@ -65995,34 +67502,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12772" + "13636" ], "x-ms-correlation-request-id": [ - "04a88a4d-c0bf-4325-b82c-bc9c96677fc5" + "65d6f58e-654d-4387-a175-e88715fb02c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:04a88a4d-c0bf-4325-b82c-bc9c96677fc5" + "WESTUS:20150813T074813Z:65d6f58e-654d-4387-a175-e88715fb02c2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Professional-RC/versions/14.0.22823?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1Qcm9mZXNzaW9uYWwtUkMvdmVyc2lvbnMvMTQuMC4yMjgyMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Enterprise-RC/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1FbnRlcnByaXNlLVJDL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Professional-RC/Versions/14.0.22823\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "400" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66037,7 +67544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b7a5fd83-2928-4f09-9a4b-db221f72c352" + "6ae4c017-775f-4bc2-8c7c-c7625997caa8" ], "Cache-Control": [ "no-cache" @@ -66047,34 +67554,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12771" + "13635" ], "x-ms-correlation-request-id": [ - "1c48b163-1a3e-412d-971a-777554138966" + "67bb678f-4c76-474c-aec8-5da39a3cce80" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212635Z:1c48b163-1a3e-412d-971a-777554138966" + "WESTUS:20150813T074813Z:67bb678f-4c76-474c-aec8-5da39a3cce80" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/CoreCLR/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvQ29yZUNMUi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Enterprise-Win10Tools/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1FbnRlcnByaXNlLVdpbjEwVG9vbHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.11624\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/CoreCLR/Versions/1.0.11624\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-Win10Tools/Versions/14.0.22823\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "284" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66089,7 +67596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62e1768d-88ce-464b-9a87-8ef2ed09f2a7" + "76b9f4c8-3fb4-4d39-9087-b1586b844ecc" ], "Cache-Control": [ "no-cache" @@ -66099,34 +67606,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12770" + "13634" ], "x-ms-correlation-request-id": [ - "8edac291-3b3f-4408-a77c-e0f6e9a86b45" + "de8233ae-aa2a-4893-a947-eefc3ddb9275" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:8edac291-3b3f-4408-a77c-e0f6e9a86b45" + "WESTUS:20150813T074813Z:de8233ae-aa2a-4893-a947-eefc3ddb9275" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/CoreCLR/versions/1.0.11624?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvQ29yZUNMUi92ZXJzaW9ucy8xLjAuMTE2MjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Enterprise-Win10Tools/versions/14.0.22823?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1FbnRlcnByaXNlLVdpbjEwVG9vbHMvdmVyc2lvbnMvMTQuMC4yMjgyMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.11624\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/CoreCLR/Versions/1.0.11624\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.22823\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/2015-Enterprise-Win10Tools/Versions/14.0.22823\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66141,7 +67648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b232cb7-aca4-4a1a-8988-d13a03bf7348" + "23ed74a4-4c50-4693-ade9-f22b951ad2e6" ], "Cache-Control": [ "no-cache" @@ -66151,34 +67658,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12769" + "13633" ], "x-ms-correlation-request-id": [ - "5fb0284d-e41c-49bf-a128-a4fb66cbd265" + "0aef564f-162d-4620-bae6-8275964701c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:5fb0284d-e41c-49bf-a128-a4fb66cbd265" + "WESTUS:20150813T074813Z:0aef564f-162d-4620-bae6-8275964701c5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1BenVyZVNESy0yLjctV2luOC4xLU4teDY0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/2015-Professional-RC/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvMjAxNS1Qcm9mZXNzaW9uYWwtUkMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "327" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66193,7 +67700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "105ae87c-5d25-464f-8500-7cebc8488c3a" + "2505577d-0e0c-4da5-9559-9d258265a8c7" ], "Cache-Control": [ "no-cache" @@ -66203,34 +67710,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12768" + "13632" ], "x-ms-correlation-request-id": [ - "4f4e44c5-496c-4923-bdee-23268749d058" + "0a319677-bdab-4d16-b8a5-cda0f3c4c3b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:4f4e44c5-496c-4923-bdee-23268749d058" + "WESTUS:20150813T074813Z:0a319677-bdab-4d16-b8a5-cda0f3c4c3b0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions/12.0.40629?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1BenVyZVNESy0yLjctV2luOC4xLU4teDY0L3ZlcnNpb25zLzEyLjAuNDA2Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/CoreCLR/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvQ29yZUNMUi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.11624\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/CoreCLR/Versions/1.0.11624\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "428" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66245,7 +67752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "215c6c41-e2fa-4ec5-97b8-bac18c423955" + "8b6cee8e-7c7e-402f-b3e2-e453925822c3" ], "Cache-Control": [ "no-cache" @@ -66255,34 +67762,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12767" + "13631" ], "x-ms-correlation-request-id": [ - "ed8fe5c4-368a-40b8-8aa2-ac3dfa7338be" + "fbcbe2c3-dddd-44b1-b33e-4cf5f52c3650" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:ed8fe5c4-368a-40b8-8aa2-ac3dfa7338be" + "WESTUS:20150813T074814Z:fbcbe2c3-dddd-44b1-b33e-4cf5f52c3650" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1BenVyZVNESy0yLjctV1MyMDEyUjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/CoreCLR/versions/1.0.11624?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvQ29yZUNMUi92ZXJzaW9ucy8xLjAuMTE2MjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.11624\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/CoreCLR/Versions/1.0.11624\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "323" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66297,7 +67804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c3fe9d1-934e-4f4d-a25e-8be2c235ea5f" + "d5f6b4e8-2a17-413d-804f-047f76ebb8e2" ], "Cache-Control": [ "no-cache" @@ -66307,34 +67814,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12766" + "13630" ], "x-ms-correlation-request-id": [ - "e8ca8d5e-b3b4-43cd-9459-df139898b6cb" + "dd9592ec-b9e3-4128-a5a4-2a65b0644f14" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:e8ca8d5e-b3b4-43cd-9459-df139898b6cb" + "WESTUS:20150813T074814Z:dd9592ec-b9e3-4128-a5a4-2a65b0644f14" ], "Date": [ - "Wed, 05 Aug 2015 21:26:35 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2/versions/12.0.40629?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1BenVyZVNESy0yLjctV1MyMDEyUjIvdmVyc2lvbnMvMTIuMC40MDYyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1BenVyZVNESy0yLjctV2luOC4xLU4teDY0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "424" + "327" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66349,7 +67856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3c752cd-985a-407a-8b6f-713efe61d4a9" + "56bc43ca-4c0f-41df-a313-c7bb177bb56c" ], "Cache-Control": [ "no-cache" @@ -66359,34 +67866,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12765" + "13629" ], "x-ms-correlation-request-id": [ - "37a6cf75-7e53-4116-81a5-a2ed1771d705" + "cafac39f-2c8b-4f5b-9a42-93f50b47c44e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:37a6cf75-7e53-4116-81a5-a2ed1771d705" + "WESTUS:20150813T074814Z:cafac39f-2c8b-4f5b-9a42-93f50b47c44e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVNRTC1XUzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions/12.0.40629?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1BenVyZVNESy0yLjctV2luOC4xLU4teDY0L3ZlcnNpb25zLzEyLjAuNDA2Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "325" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66401,7 +67908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2409d0b5-df1c-4fbc-abfc-7afb62e75d02" + "2e66b34d-d2bd-44bc-bd88-3f80cbe975c8" ], "Cache-Control": [ "no-cache" @@ -66411,34 +67918,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12764" + "13628" ], "x-ms-correlation-request-id": [ - "bcad2e2a-5079-4e9c-8072-1c3386f2142e" + "079b03a6-8642-4a96-9c0a-af61e36aa833" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:bcad2e2a-5079-4e9c-8072-1c3386f2142e" + "WESTUS:20150813T074814Z:079b03a6-8642-4a96-9c0a-af61e36aa833" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2/versions/12.0.40629?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVNRTC1XUzIwMTJSMi92ZXJzaW9ucy8xMi4wLjQwNjI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1BenVyZVNESy0yLjctV1MyMDEyUjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2/Versions/12.0.40629\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "426" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66453,7 +67960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0f81320-f4e2-4d6b-a955-2ba6fcf1a545" + "267d95b4-eedb-4519-bc00-692f997bb211" ], "Cache-Control": [ "no-cache" @@ -66463,34 +67970,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12763" + "13627" ], "x-ms-correlation-request-id": [ - "a50baa96-3e30-4a8d-bf32-48c778e8be05" + "57b85f00-653c-4c0d-a01e-ca156ea85122" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:a50baa96-3e30-4a8d-bf32-48c778e8be05" + "WESTUS:20150813T074814Z:57b85f00-653c-4c0d-a01e-ca156ea85122" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVdpbjguMS1OLXg2NC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2/versions/12.0.40629?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1BenVyZVNESy0yLjctV1MyMDEyUjIvdmVyc2lvbnMvMTIuMC40MDYyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "325" + "424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66505,7 +68012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d79d8016-0adc-4d0f-85cc-cebe181ccdf5" + "fc48c066-9720-4395-ba34-5cd6fb77f106" ], "Cache-Control": [ "no-cache" @@ -66515,34 +68022,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12762" + "13626" ], "x-ms-correlation-request-id": [ - "2081d0aa-3a95-4777-864b-8be00ff28e13" + "069bae69-2926-4b85-a3c8-5b7a773745ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:2081d0aa-3a95-4777-864b-8be00ff28e13" + "WESTUS:20150813T074814Z:069bae69-2926-4b85-a3c8-5b7a773745ec" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions/12.0.40629?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVdpbjguMS1OLXg2NC92ZXJzaW9ucy8xMi4wLjQwNjI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Community-VSU5-Cordova-CTP3.2-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1Db21tdW5pdHktVlNVNS1Db3Jkb3ZhLUNUUDMuMi1BenVyZVNESy0yLjctV1MyMDEyUjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "426" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66557,7 +68064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "068567f6-8deb-44f6-8b03-0f4275c3635e" + "52d11db7-54b7-4953-860e-5e687c911c1e" ], "Cache-Control": [ "no-cache" @@ -66567,34 +68074,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12761" + "13625" ], "x-ms-correlation-request-id": [ - "6fc3ce21-2e65-4507-a5cc-9b7b4d5c706f" + "8c6f64bd-e338-4df2-9e0b-2531f613dcb0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:6fc3ce21-2e65-4507-a5cc-9b7b4d5c706f" + "WESTUS:20150813T074814Z:8c6f64bd-e338-4df2-9e0b-2531f613dcb0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVdTMjAxMlIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVNRTC1XUzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "321" + "325" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66609,7 +68116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "363928ca-8c69-4859-a9fc-79bebc1c6594" + "299ddcf0-c3b0-4520-8bc5-898d54a2d82a" ], "Cache-Control": [ "no-cache" @@ -66619,34 +68126,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12760" + "13624" ], "x-ms-correlation-request-id": [ - "b6adb1a7-6729-47d5-abfc-5fc1a10a1225" + "25828195-c28f-4778-be1c-6403150e32c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212636Z:b6adb1a7-6729-47d5-abfc-5fc1a10a1225" + "WESTUS:20150813T074814Z:25828195-c28f-4778-be1c-6403150e32c2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2/versions/12.0.40629?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVdTMjAxMlIyL3ZlcnNpb25zLzEyLjAuNDA2Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2/versions/12.0.40629?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVNRTC1XUzIwMTJSMi92ZXJzaW9ucy8xMi4wLjQwNjI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-SQL-WS2012R2/Versions/12.0.40629\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "422" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66661,7 +68168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ed480e6-1d41-4f6b-a031-e28bff4c52cc" + "8b5e9325-ed9b-42ac-b6c4-985fff313828" ], "Cache-Control": [ "no-cache" @@ -66671,34 +68178,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12759" + "13623" ], "x-ms-correlation-request-id": [ - "b0c5a861-b713-4be4-b73d-a6975a202fd0" + "57539a6f-c950-4ad8-84e3-c7a98c5a1b9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:b0c5a861-b713-4be4-b73d-a6975a202fd0" + "WESTUS:20150813T074814Z:57539a6f-c950-4ad8-84e3-c7a98c5a1b9f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1TUUwtV1MyMDEyUjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVdpbjguMS1OLXg2NC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "326" + "325" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66713,7 +68220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5973291-1b95-40eb-85bb-a0f015cbea3b" + "64809dff-579e-4d4a-8ed4-54f5d1c44ba5" ], "Cache-Control": [ "no-cache" @@ -66723,34 +68230,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12758" + "13622" ], "x-ms-correlation-request-id": [ - "e3dbfd9c-b509-4d0e-a9f8-7d4688277801" + "aae54a3b-58c7-47e9-903a-f5ae7644fb67" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:e3dbfd9c-b509-4d0e-a9f8-7d4688277801" + "WESTUS:20150813T074814Z:aae54a3b-58c7-47e9-903a-f5ae7644fb67" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2/versions/12.0.40629?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1TUUwtV1MyMDEyUjIvdmVyc2lvbnMvMTIuMC40MDYyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions/12.0.40629?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVdpbjguMS1OLXg2NC92ZXJzaW9ucy8xMi4wLjQwNjI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2/Versions/12.0.40629\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "427" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66765,7 +68272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "256c1912-ffda-4fef-8793-794195556c7c" + "ee351712-1a55-441f-a364-53789b4dfdae" ], "Cache-Control": [ "no-cache" @@ -66775,34 +68282,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12757" + "13621" ], "x-ms-correlation-request-id": [ - "6ad09bc8-5dce-4675-8310-3c304bc1c913" + "fbf75ea9-8427-4964-8588-8a5f38407f7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:6ad09bc8-5dce-4675-8310-3c304bc1c913" + "WESTUS:20150813T074814Z:fbf75ea9-8427-4964-8588-8a5f38407f7d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1XaW44LjEtTi14NjQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVdTMjAxMlIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "326" + "321" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66817,7 +68324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44ac885b-93c9-4bb1-8918-caa22a718d90" + "d13289ac-667b-41b4-89b3-7b690e7b650a" ], "Cache-Control": [ "no-cache" @@ -66827,34 +68334,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12756" + "13620" ], "x-ms-correlation-request-id": [ - "0bd3ec95-909b-40d1-ac1e-f97901419c4e" + "1c048a8b-9b40-4b85-a8a5-322e810bfa29" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:0bd3ec95-909b-40d1-ac1e-f97901419c4e" + "WESTUS:20150813T074815Z:1c048a8b-9b40-4b85-a8a5-322e810bfa29" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions/12.0.40629?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1XaW44LjEtTi14NjQvdmVyc2lvbnMvMTIuMC40MDYyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2/versions/12.0.40629?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1QcmVtaXVtLVZTVTUtQXp1cmVTREstMi43LVdTMjAxMlIyL3ZlcnNpb25zLzEyLjAuNDA2Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Premium-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "427" + "422" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66869,7 +68376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "587835ab-dfe1-4ab9-ae39-bf98498a9773" + "ac003d75-084c-4de1-94b8-998ecf7c6fb4" ], "Cache-Control": [ "no-cache" @@ -66879,34 +68386,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12755" + "13619" ], "x-ms-correlation-request-id": [ - "8ea864db-dfa5-4bc1-a709-4d181a109260" + "b34b4639-2c7b-44ef-a3ce-7165a96e075f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:8ea864db-dfa5-4bc1-a709-4d181a109260" + "WESTUS:20150813T074815Z:b34b4639-2c7b-44ef-a3ce-7165a96e075f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:36 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1XUzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1TUUwtV1MyMDEyUjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "322" + "326" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66921,7 +68428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb7bef9c-061e-4be5-b733-d55686848cac" + "f9e9f26e-9457-4aa5-8caa-c50501fa7377" ], "Cache-Control": [ "no-cache" @@ -66931,34 +68438,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12754" + "13618" ], "x-ms-correlation-request-id": [ - "9a4ef705-c8c7-4b30-8792-6d4ec4d6b084" + "c82fe427-eee7-4d52-ab5d-52b3bc54d885" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:9a4ef705-c8c7-4b30-8792-6d4ec4d6b084" + "WESTUS:20150813T074815Z:c82fe427-eee7-4d52-ab5d-52b3bc54d885" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2/versions/12.0.40629?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1XUzIwMTJSMi92ZXJzaW9ucy8xMi4wLjQwNjI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2/versions/12.0.40629?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1TUUwtV1MyMDEyUjIvdmVyc2lvbnMvMTIuMC40MDYyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-SQL-WS2012R2/Versions/12.0.40629\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "423" + "427" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66973,7 +68480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69a00d7b-0c7d-470f-8884-a34e849edd96" + "e2738219-e620-48ba-91d1-f8d9a3956447" ], "Cache-Control": [ "no-cache" @@ -66983,34 +68490,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12753" + "13617" ], "x-ms-correlation-request-id": [ - "01df2880-d391-4f3a-b9df-df00f73dc6bf" + "6d3ff796-d06b-4aea-be85-605eb4b9b318" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:01df2880-d391-4f3a-b9df-df00f73dc6bf" + "WESTUS:20150813T074815Z:6d3ff796-d06b-4aea-be85-605eb4b9b318" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LUNvcmRvdmEtV2luOC4xLU4teDY0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1XaW44LjEtTi14NjQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "330" + "326" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67025,7 +68532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90fabbe3-cccd-4190-863b-b658c4b5e5de" + "16827915-5c82-4a51-bfc9-0bf0b00c5ba7" ], "Cache-Control": [ "no-cache" @@ -67035,34 +68542,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12752" + "13616" ], "x-ms-correlation-request-id": [ - "fff8e548-1724-4cc0-b3ef-75f39abd1ba8" + "54d6d042-4d57-47e3-bb5b-bbccf17039d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:fff8e548-1724-4cc0-b3ef-75f39abd1ba8" + "WESTUS:20150813T074815Z:54d6d042-4d57-47e3-bb5b-bbccf17039d4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions/14.0.23107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LUNvcmRvdmEtV2luOC4xLU4teDY0L3ZlcnNpb25zLzE0LjAuMjMxMDc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64/versions/12.0.40629?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1XaW44LjEtTi14NjQvdmVyc2lvbnMvMTIuMC40MDYyOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-Win8.1-N-x64/Versions/12.0.40629\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "431" + "427" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67077,7 +68584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e67b403d-5849-4e83-8f1a-304379bfe24a" + "78cc05a6-f39b-4a24-b4e2-35d450955d1e" ], "Cache-Control": [ "no-cache" @@ -67087,31 +68594,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12751" + "13615" ], "x-ms-correlation-request-id": [ - "2c8ced1a-518f-4b24-95f6-5435fe79d9da" + "167ab418-0672-4fd3-98de-187e8079affb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:2c8ced1a-518f-4b24-95f6-5435fe79d9da" + "WESTUS:20150813T074815Z:167ab418-0672-4fd3-98de-187e8079affb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LVcxMFQtV2luMTAtTi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1XUzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "322" @@ -67129,7 +68636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89d11a07-dd7a-45b2-bdb1-ab4e826106a6" + "27d03277-9c00-4ad2-b77e-c307e5bab748" ], "Cache-Control": [ "no-cache" @@ -67139,31 +68646,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12750" + "13614" ], "x-ms-correlation-request-id": [ - "ea8286b9-43da-49d5-9370-6b057c59db54" + "ee39c398-0e18-4089-9ec4-6dd0bd87d4c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212637Z:ea8286b9-43da-49d5-9370-6b057c59db54" + "WESTUS:20150813T074815Z:ee39c398-0e18-4089-9ec4-6dd0bd87d4c5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N/versions/14.0.23107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LVcxMFQtV2luMTAtTi92ZXJzaW9ucy8xNC4wLjIzMTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2/versions/12.0.40629?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxMy1VbHRpbWF0ZS1WU1U1LUF6dXJlU0RLLTIuNy1XUzIwMTJSMi92ZXJzaW9ucy8xMi4wLjQwNjI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.0.40629\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2013-Ultimate-VSU5-AzureSDK-2.7-WS2012R2/Versions/12.0.40629\"\r\n}", "ResponseHeaders": { "Content-Length": [ "423" @@ -67181,7 +68688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e11ef54-138d-4965-beb3-2818dd9f582e" + "f88ab17b-5a5c-4128-8c9d-246c9442c3b7" ], "Cache-Control": [ "no-cache" @@ -67191,34 +68698,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12749" + "13613" ], "x-ms-correlation-request-id": [ - "6129d400-11ab-4b9f-9caf-a5faaadad309" + "23e5bf16-cbae-47d9-b82e-75450ee29f37" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:6129d400-11ab-4b9f-9caf-a5faaadad309" + "WESTUS:20150813T074815Z:23e5bf16-cbae-47d9-b82e-75450ee29f37" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LVdTMjAxMlIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LUNvcmRvdmEtV2luOC4xLU4teDY0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-WS2012R2/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "318" + "330" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67233,7 +68740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73d90d2e-3ac8-4e70-b67e-2be70d47328f" + "91b8b249-2c71-4fde-a4b6-0fcfa6f85514" ], "Cache-Control": [ "no-cache" @@ -67243,34 +68750,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12748" + "13612" ], "x-ms-correlation-request-id": [ - "0e03b73b-5c13-45f2-b494-a12a36230193" + "9034ec49-2847-405b-860d-72504b549268" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:0e03b73b-5c13-45f2-b494-a12a36230193" + "WESTUS:20150813T074815Z:9034ec49-2847-405b-860d-72504b549268" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-WS2012R2/versions/14.0.23107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LVdTMjAxMlIyL3ZlcnNpb25zLzE0LjAuMjMxMDc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions/14.0.23107?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LUNvcmRvdmEtV2luOC4xLU4teDY0L3ZlcnNpb25zLzE0LjAuMjMxMDc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-WS2012R2/Versions/14.0.23107\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "431" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67285,7 +68792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9cae46a9-4751-491d-be26-36b3df8a020c" + "4eb92bb1-e817-4b25-ab71-3a7d3483ba3d" ], "Cache-Control": [ "no-cache" @@ -67295,34 +68802,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12747" + "13611" ], "x-ms-correlation-request-id": [ - "897e5dd2-0da3-42f5-98ff-2ee9aea38445" + "3a0d1603-36c7-481a-a297-614681602a81" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:897e5dd2-0da3-42f5-98ff-2ee9aea38445" + "WESTUS:20150813T074815Z:3a0d1603-36c7-481a-a297-614681602a81" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1Db3Jkb3ZhLVdpbjguMS1OLXg2NC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LVcxMFQtV2luMTAtTi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "331" + "322" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67337,7 +68844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf5e685a-39a5-4512-9981-6381eb3ea676" + "269e4ca1-195e-4371-86ff-85477e48a810" ], "Cache-Control": [ "no-cache" @@ -67347,34 +68854,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12746" + "13610" ], "x-ms-correlation-request-id": [ - "4dda89ed-0522-4d45-9c68-e40572222f5a" + "470c2dd5-1a1b-4be3-b27e-2580d1369111" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:4dda89ed-0522-4d45-9c68-e40572222f5a" + "WESTUS:20150813T074816Z:470c2dd5-1a1b-4be3-b27e-2580d1369111" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions/14.0.23107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1Db3Jkb3ZhLVdpbjguMS1OLXg2NC92ZXJzaW9ucy8xNC4wLjIzMTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N/versions/14.0.23107?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LVcxMFQtV2luMTAtTi92ZXJzaW9ucy8xNC4wLjIzMTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "432" + "423" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67389,7 +68896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9277936-a4ae-4c20-b95e-22927b3d9cbf" + "03065f5f-10f0-4492-9d48-757ef2863532" ], "Cache-Control": [ "no-cache" @@ -67399,34 +68906,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12745" + "13609" ], "x-ms-correlation-request-id": [ - "2a386755-bbac-4b1b-b896-dc49789b43f6" + "5ae99f43-c869-41ff-83f1-fa5cb41ca50f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:2a386755-bbac-4b1b-b896-dc49789b43f6" + "WESTUS:20150813T074816Z:5ae99f43-c869-41ff-83f1-fa5cb41ca50f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1XMTBULVdpbjEwLU4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LVdTMjAxMlIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-WS2012R2/Versions/14.0.23107\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "323" + "318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67441,7 +68948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3187d6d2-87cf-4379-ba49-cc572274cc11" + "d04aa930-ace1-40f2-885e-10001379ae6e" ], "Cache-Control": [ "no-cache" @@ -67451,34 +68958,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12744" + "13608" ], "x-ms-correlation-request-id": [ - "f18f3356-9fb4-4ae8-a125-67133a228cf1" + "690d221f-9599-4bf6-b9ad-c03ccc6b9cdf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:f18f3356-9fb4-4ae8-a125-67133a228cf1" + "WESTUS:20150813T074816Z:690d221f-9599-4bf6-b9ad-c03ccc6b9cdf" ], "Date": [ - "Wed, 05 Aug 2015 21:26:37 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N/versions/14.0.23107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1XMTBULVdpbjEwLU4vdmVyc2lvbnMvMTQuMC4yMzEwNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Community-AzureSDK-2.7-WS2012R2/versions/14.0.23107?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Db21tdW5pdHktQXp1cmVTREstMi43LVdTMjAxMlIyL3ZlcnNpb25zLzE0LjAuMjMxMDc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Community-AzureSDK-2.7-WS2012R2/Versions/14.0.23107\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "424" + "419" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67493,7 +69000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37815fe8-d180-4b19-84e4-19a6500627b2" + "60705ce7-6cbf-4a3f-9902-6c5325518bae" ], "Cache-Control": [ "no-cache" @@ -67503,34 +69010,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12743" + "13607" ], "x-ms-correlation-request-id": [ - "66c57dc1-11c9-4094-ab87-89429147e90a" + "07d68ce0-cdd4-4371-8e32-87844e30a219" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:66c57dc1-11c9-4094-ab87-89429147e90a" + "WESTUS:20150813T074816Z:07d68ce0-cdd4-4371-8e32-87844e30a219" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1XUzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1Db3Jkb3ZhLVdpbjguMS1OLXg2NC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "319" + "331" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67545,7 +69052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "257d14fa-b912-4024-bc24-d8b368503d62" + "eb29b981-ec6a-4cda-955b-90c2533cc83e" ], "Cache-Control": [ "no-cache" @@ -67555,34 +69062,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12742" + "13606" ], "x-ms-correlation-request-id": [ - "b31b27e5-41a0-45e9-a24d-1d520f8aa0e6" + "5db2db55-179a-4383-a351-c7cdef38a4a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:b31b27e5-41a0-45e9-a24d-1d520f8aa0e6" + "WESTUS:20150813T074816Z:5db2db55-179a-4383-a351-c7cdef38a4a0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2/versions/14.0.23107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1XUzIwMTJSMi92ZXJzaW9ucy8xNC4wLjIzMTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions/14.0.23107?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1Db3Jkb3ZhLVdpbjguMS1OLXg2NC92ZXJzaW9ucy8xNC4wLjIzMTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2/Versions/14.0.23107\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "432" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67597,7 +69104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a225277-df7b-4e32-bc69-b125fce18766" + "7de66f71-9dd0-409a-88be-2e18e66064fb" ], "Cache-Control": [ "no-cache" @@ -67607,34 +69114,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12741" + "13605" ], "x-ms-correlation-request-id": [ - "fad3c140-d10f-4bcc-9767-616c409ab4e3" + "bf579fd0-1c96-4106-8a6c-4d1aa052a974" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:fad3c140-d10f-4bcc-9767-616c409ab4e3" + "WESTUS:20150813T074816Z:bf579fd0-1c96-4106-8a6c-4d1aa052a974" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Qcm9mZXNzaW9uYWwtQXp1cmVTREstMi43LUNvcmRvdmEtV2luOC4xLU4teDY0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1XMTBULVdpbjEwLU4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "333" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67649,7 +69156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5171adf2-d693-47ec-bc7d-8e63a02adeff" + "364c0640-281e-4404-ad7f-128e315aea51" ], "Cache-Control": [ "no-cache" @@ -67659,34 +69166,86 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12740" + "13604" ], "x-ms-correlation-request-id": [ - "9b9edce7-ef93-4573-8b08-f1e7b1395afb" + "e11c90fb-0f5d-4d89-ac96-5424fbfd5946" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212638Z:9b9edce7-ef93-4573-8b08-f1e7b1395afb" + "WESTUS:20150813T074816Z:e11c90fb-0f5d-4d89-ac96-5424fbfd5946" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions/14.0.23107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Qcm9mZXNzaW9uYWwtQXp1cmVTREstMi43LUNvcmRvdmEtV2luOC4xLU4teDY0L3ZlcnNpb25zLzE0LjAuMjMxMDc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N/versions/14.0.23107?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1XMTBULVdpbjEwLU4vdmVyc2lvbnMvMTQuMC4yMzEwNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "434" + "424" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "923e21c9-a56f-4aca-a1ed-e1b2af0836db" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13603" + ], + "x-ms-correlation-request-id": [ + "aa9036a5-2346-473a-8af0-22f0c4ed7975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074816Z:aa9036a5-2346-473a-8af0-22f0c4ed7975" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1XUzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67701,7 +69260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dab5726a-cca1-4976-8c4d-24a685f8b1a3" + "8a236605-24be-4e1f-9fdf-3a624edf5add" ], "Cache-Control": [ "no-cache" @@ -67711,34 +69270,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12739" + "13602" ], "x-ms-correlation-request-id": [ - "55c2ca46-95f1-4d28-9576-37c846df5b16" + "32d4a8eb-22d5-4020-a63c-16e627d01495" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:55c2ca46-95f1-4d28-9576-37c846df5b16" + "WESTUS:20150813T074816Z:32d4a8eb-22d5-4020-a63c-16e627d01495" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Qcm9mZXNzaW9uYWwtQXp1cmVTREstMi43LVcxMFQtV2luMTAtTi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2/versions/14.0.23107?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1FbnRlcnByaXNlLUF6dXJlU0RLLTIuNy1XUzIwMTJSMi92ZXJzaW9ucy8xNC4wLjIzMTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Enterprise-AzureSDK-2.7-WS2012R2/Versions/14.0.23107\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "325" + "420" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67753,7 +69312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0d87d80-1bc3-4d86-89f4-f3dbe08c4ca8" + "cb5da72a-428c-43af-910d-0477d322983f" ], "Cache-Control": [ "no-cache" @@ -67763,34 +69322,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12738" + "13601" ], "x-ms-correlation-request-id": [ - "b4324f2a-5901-4af4-9050-b822657d8208" + "d61fbddf-3b96-4a39-b7ed-1e26f7fee98e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:b4324f2a-5901-4af4-9050-b822657d8208" + "WESTUS:20150813T074816Z:d61fbddf-3b96-4a39-b7ed-1e26f7fee98e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N/versions/14.0.23107?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Qcm9mZXNzaW9uYWwtQXp1cmVTREstMi43LVcxMFQtV2luMTAtTi92ZXJzaW9ucy8xNC4wLjIzMTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Qcm9mZXNzaW9uYWwtQXp1cmVTREstMi43LUNvcmRvdmEtV2luOC4xLU4teDY0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "426" + "333" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67805,7 +69364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dad5d70f-d078-402b-a90b-1bae50f59b26" + "0ab96b87-9e96-4332-b89a-0e351f9d0f60" ], "Cache-Control": [ "no-cache" @@ -67815,34 +69374,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12737" + "13600" ], "x-ms-correlation-request-id": [ - "d0ad9f3a-6bf1-47cd-80b7-547f2634a7a0" + "c223b82c-0c48-47d0-a706-1e263a05c466" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:d0ad9f3a-6bf1-47cd-80b7-547f2634a7a0" + "WESTUS:20150813T074816Z:c223b82c-0c48-47d0-a706-1e263a05c466" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64/versions/14.0.23107?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Qcm9mZXNzaW9uYWwtQXp1cmVTREstMi43LUNvcmRvdmEtV2luOC4xLU4teDY0L3ZlcnNpb25zLzE0LjAuMjMxMDc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10-Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10-Enterprise-N\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0-Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0-Enterprise-N\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise-N\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.1-Enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.1-Enterprise-N\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise-N\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-Cordova-Win8.1-N-x64/Versions/14.0.23107\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1625" + "434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67857,7 +69416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4aaf1d7-75cf-4d4c-9fb9-f14408cd6b20" + "ee36c57a-1a86-45f4-b22e-be8b32aa3dd8" ], "Cache-Control": [ "no-cache" @@ -67867,34 +69426,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12736" + "13599" ], "x-ms-correlation-request-id": [ - "14586a35-7c90-4605-8bcc-582a410360d1" + "7d68d220-dd55-4858-9f8a-c8ef7d852a34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:14586a35-7c90-4605-8bcc-582a410360d1" + "WESTUS:20150813T074817Z:7d68d220-dd55-4858-9f8a-c8ef7d852a34" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Qcm9mZXNzaW9uYWwtQXp1cmVTREstMi43LVcxMFQtV2luMTAtTi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10074\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10074\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10242\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10242\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "855" + "325" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67909,7 +69468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc115bfe-c34d-48b3-8dbe-cf7cdd0b1053" + "ea94d664-d8cd-4795-96b4-4f5b6a9a2605" ], "Cache-Control": [ "no-cache" @@ -67919,34 +69478,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12735" + "13598" ], "x-ms-correlation-request-id": [ - "0e74cf73-b630-4462-aed1-3bff53fe8519" + "34b88ea1-aaa7-4839-9347-283a83390c56" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:0e74cf73-b630-4462-aed1-3bff53fe8519" + "WESTUS:20150813T074817Z:34b88ea1-aaa7-4839-9347-283a83390c56" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise/versions/10.0.10074?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UvdmVyc2lvbnMvMTAuMC4xMDA3ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/VisualStudio/skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N/versions/14.0.23107?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvVmlzdWFsU3R1ZGlvL3NrdXMvVlMtMjAxNS1Qcm9mZXNzaW9uYWwtQXp1cmVTREstMi43LVcxMFQtV2luMTAtTi92ZXJzaW9ucy8xNC4wLjIzMTA3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10074\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10074\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.23107\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/VisualStudio/Skus/VS-2015-Professional-AzureSDK-2.7-W10T-Win10-N/Versions/14.0.23107\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "388" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -67961,7 +69520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "446cefae-8af5-4480-8266-2bd606e3e83e" + "4e46704a-02fe-4648-8b9b-c95808d97d31" ], "Cache-Control": [ "no-cache" @@ -67971,34 +69530,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12734" + "13597" ], "x-ms-correlation-request-id": [ - "6247d6df-16cb-4313-aec4-c950aa1091e0" + "82a9b644-3784-4b7e-95f7-205824aa95e4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:6247d6df-16cb-4313-aec4-c950aa1091e0" + "WESTUS:20150813T074817Z:82a9b644-3784-4b7e-95f7-205824aa95e4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:38 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise/versions/10.0.10240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UvdmVyc2lvbnMvMTAuMC4xMDI0MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10240\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10-Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10-Enterprise-N\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0-Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0-Enterprise-N\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise-N\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.1-Enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.1-Enterprise-N\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise-N\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "388" + "1625" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68013,7 +69572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6f394c17-74d8-45fa-a4cb-7d25421de691" + "0a961ba0-942f-4a7e-8b36-49dea052f247" ], "Cache-Control": [ "no-cache" @@ -68023,34 +69582,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12733" + "13596" ], "x-ms-correlation-request-id": [ - "b266d1c0-b9c7-4ca8-a02d-6505fac9d1c6" + "d6ab5f58-2ad0-42e1-b4ea-71dda4ef216d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:b266d1c0-b9c7-4ca8-a02d-6505fac9d1c6" + "WESTUS:20150813T074817Z:d6ab5f58-2ad0-42e1-b4ea-71dda4ef216d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise/versions/10.0.10242?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UvdmVyc2lvbnMvMTAuMC4xMDI0Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10242\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10242\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10074\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10074\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10242\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10242\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "388" + "855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68065,7 +69624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "366e5505-d1c3-4ac3-8af1-d5be920f04ce" + "bdb55a6c-9880-4826-a8b1-d019d762ca50" ], "Cache-Control": [ "no-cache" @@ -68075,34 +69634,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12732" + "13595" ], "x-ms-correlation-request-id": [ - "e161622f-d366-47df-938f-17dc9ab939ff" + "c74d8636-6e1c-4de0-a660-807a8544225f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:e161622f-d366-47df-938f-17dc9ab939ff" + "WESTUS:20150813T074817Z:c74d8636-6e1c-4de0-a660-807a8544225f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise-N/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UtTi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise/versions/10.0.10074?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UvdmVyc2lvbnMvMTAuMC4xMDA3ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N/Versions/10.0.10240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10242\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N/Versions/10.0.10242\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10074\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10074\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "575" + "388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68117,7 +69676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53197638-b0d6-4ba4-b7fb-f3153c1bfe79" + "32b8344f-36d5-461b-bf02-069720d48d11" ], "Cache-Control": [ "no-cache" @@ -68127,34 +69686,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12731" + "13594" ], "x-ms-correlation-request-id": [ - "d899bd53-edeb-4b3c-a581-99fe08255b1d" + "f23c703a-7f5e-4349-a39f-5e0021ff8397" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:d899bd53-edeb-4b3c-a581-99fe08255b1d" + "WESTUS:20150813T074817Z:f23c703a-7f5e-4349-a39f-5e0021ff8397" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise-N/versions/10.0.10240?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UtTi92ZXJzaW9ucy8xMC4wLjEwMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise/versions/10.0.10240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UvdmVyc2lvbnMvMTAuMC4xMDI0MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10240\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N/Versions/10.0.10240\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10240\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "390" + "388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68169,7 +69728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1357687-d68c-4fca-ba12-e524c1e1602d" + "9807831e-9d09-475e-84dd-7fe115eb8ece" ], "Cache-Control": [ "no-cache" @@ -68179,34 +69738,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12730" + "13593" ], "x-ms-correlation-request-id": [ - "b44c7ad9-5895-431a-98fa-ad8aea07112e" + "bc037a83-4bdd-4eb5-813b-933938eff559" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:b44c7ad9-5895-431a-98fa-ad8aea07112e" + "WESTUS:20150813T074817Z:bc037a83-4bdd-4eb5-813b-933938eff559" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise-N/versions/10.0.10242?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UtTi92ZXJzaW9ucy8xMC4wLjEwMjQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise/versions/10.0.10242?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UvdmVyc2lvbnMvMTAuMC4xMDI0Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10242\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N/Versions/10.0.10242\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10242\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise/Versions/10.0.10242\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "390" + "388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68221,7 +69780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7191959c-29c8-4dfa-8dc5-ce390e2fd8bb" + "7aa51e6a-4754-41aa-bd5e-bbb205a2d4a2" ], "Cache-Control": [ "no-cache" @@ -68231,34 +69790,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12729" + "13592" ], "x-ms-correlation-request-id": [ - "6877b1fe-d717-4009-b93f-b5b22621b4c9" + "d61e9b7d-f121-445e-88ac-490e5cebb721" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212639Z:6877b1fe-d717-4009-b93f-b5b22621b4c9" + "WESTUS:20150813T074817Z:d61e9b7d-f121-445e-88ac-490e5cebb721" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/7.0-Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzcuMC1FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise-N/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UtTi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.7601\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise/Versions/6.1.7601\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N/Versions/10.0.10240\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10242\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N/Versions/10.0.10242\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "284" + "575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68273,7 +69832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4561470-be98-41a9-bec1-7e1c7626369d" + "9c160630-8f53-4037-a718-142614b6087a" ], "Cache-Control": [ "no-cache" @@ -68283,34 +69842,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12728" + "13591" ], "x-ms-correlation-request-id": [ - "9514c2ba-c2fd-403d-ac69-69df5568f7da" + "8dc911cd-14fb-4b39-baa0-ee6fa943a226" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:9514c2ba-c2fd-403d-ac69-69df5568f7da" + "WESTUS:20150813T074817Z:8dc911cd-14fb-4b39-baa0-ee6fa943a226" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/7.0-Enterprise/versions/6.1.7601?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzcuMC1FbnRlcnByaXNlL3ZlcnNpb25zLzYuMS43NjAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise-N/versions/10.0.10240?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UtTi92ZXJzaW9ucy8xMC4wLjEwMjQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.7601\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise/Versions/6.1.7601\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10240\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N/Versions/10.0.10240\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68325,7 +69884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c29a952-654e-419f-a5e7-d33048ca70f9" + "94f2c420-86e1-476c-87e5-a48056a24f17" ], "Cache-Control": [ "no-cache" @@ -68335,34 +69894,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12727" + "13590" ], "x-ms-correlation-request-id": [ - "7d2ba649-0a10-48a3-aac6-3379b6e1c67f" + "8bfe6b8a-1444-45db-a984-c817987cbfb2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:7d2ba649-0a10-48a3-aac6-3379b6e1c67f" + "WESTUS:20150813T074817Z:8bfe6b8a-1444-45db-a984-c817987cbfb2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/7.0-Enterprise-N/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzcuMC1FbnRlcnByaXNlLU4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/10-Enterprise-N/versions/10.0.10242?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzEwLUVudGVycHJpc2UtTi92ZXJzaW9ucy8xMC4wLjEwMjQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.7601\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise-N/Versions/6.1.7601\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.76010720\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise-N/Versions/6.1.76010720\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.10242\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/10-Enterprise-N/Versions/10.0.10242\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "577" + "390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68377,7 +69936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae835758-a9b5-4c85-ae41-bd405f7761fc" + "c8df1976-bf60-4ddb-a041-8cf5d2c7bb34" ], "Cache-Control": [ "no-cache" @@ -68387,34 +69946,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12726" + "13589" ], "x-ms-correlation-request-id": [ - "5b8a6674-50e4-4234-8ef1-3d50e3402da2" + "2f1eb104-64ad-4c8b-84f6-e6f0f1ba070a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:5b8a6674-50e4-4234-8ef1-3d50e3402da2" + "WESTUS:20150813T074817Z:2f1eb104-64ad-4c8b-84f6-e6f0f1ba070a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/7.0-Enterprise-N/versions/6.1.7601?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzcuMC1FbnRlcnByaXNlLU4vdmVyc2lvbnMvNi4xLjc2MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/7.0-Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzcuMC1FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.7601\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise-N/Versions/6.1.7601\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "387" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68429,7 +69988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3b8f6f5-81e8-458a-aaa1-db16435a5bc2" + "9f40306d-8900-4f22-800e-bf714cc66fe1" ], "Cache-Control": [ "no-cache" @@ -68439,34 +69998,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12725" + "13588" ], "x-ms-correlation-request-id": [ - "432faebd-d0b6-4133-b739-778616ba0820" + "58f87f16-8415-4fe4-93f1-c22a34295cf0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:432faebd-d0b6-4133-b739-778616ba0820" + "WESTUS:20150813T074818Z:58f87f16-8415-4fe4-93f1-c22a34295cf0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/7.0-Enterprise-N/versions/6.1.76010720?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzcuMC1FbnRlcnByaXNlLU4vdmVyc2lvbnMvNi4xLjc2MDEwNzIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/7.0-Enterprise-N/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzcuMC1FbnRlcnByaXNlLU4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.76010720\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise-N/Versions/6.1.76010720\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.76010720\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise-N/Versions/6.1.76010720\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "395" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68481,7 +70040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4a9313a-78c8-448b-867d-65b61f328466" + "95fc8ab5-8d24-45c9-8145-4c346ba0d4d5" ], "Cache-Control": [ "no-cache" @@ -68491,34 +70050,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12724" + "13587" ], "x-ms-correlation-request-id": [ - "4bebab6e-3142-4fa7-82bb-ef787a9f1710" + "94fadc3a-1746-4790-9135-6d89f1212b91" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:4bebab6e-3142-4fa7-82bb-ef787a9f1710" + "WESTUS:20150813T074818Z:94fadc3a-1746-4790-9135-6d89f1212b91" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/8.1-Enterprise/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzguMS1FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/7.0-Enterprise-N/versions/6.1.76010720?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzcuMC1FbnRlcnByaXNlLU4vdmVyc2lvbnMvNi4xLjc2MDEwNzIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.9600\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise/Versions/6.3.9600\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.1.76010720\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/7.0-Enterprise-N/Versions/6.1.76010720\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "284" + "395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68533,7 +70092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ed44794-c5d2-4f30-9bb2-c9a79a490086" + "b097ceb6-5c05-4000-9184-059845078c4c" ], "Cache-Control": [ "no-cache" @@ -68543,34 +70102,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12723" + "13586" ], "x-ms-correlation-request-id": [ - "9e7b2b46-5aa9-4c57-bfe2-6ffb09836ade" + "f7453505-a3c1-452a-92f8-9625634fff80" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:9e7b2b46-5aa9-4c57-bfe2-6ffb09836ade" + "WESTUS:20150813T074818Z:f7453505-a3c1-452a-92f8-9625634fff80" ], "Date": [ - "Wed, 05 Aug 2015 21:26:39 GMT" + "Thu, 13 Aug 2015 07:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/8.1-Enterprise/versions/6.3.9600?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzguMS1FbnRlcnByaXNlL3ZlcnNpb25zLzYuMy45NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/8.1-Enterprise/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzguMS1FbnRlcnByaXNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.9600\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise/Versions/6.3.9600\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "385" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68585,7 +70144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6818a940-cbce-49aa-9d54-3619c586579d" + "fbe05195-9a8c-4916-bc9e-774ff6d66a35" ], "Cache-Control": [ "no-cache" @@ -68595,34 +70154,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12722" + "13585" ], "x-ms-correlation-request-id": [ - "7b673f7d-419d-4def-8699-6d1a5eeb7bfe" + "83eb77ff-44ca-494e-b04f-23ab6b640634" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:7b673f7d-419d-4def-8699-6d1a5eeb7bfe" + "WESTUS:20150813T074818Z:83eb77ff-44ca-494e-b04f-23ab6b640634" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/8.1-Enterprise-N/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzguMS1FbnRlcnByaXNlLU4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/8.1-Enterprise-N/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzguMS1FbnRlcnByaXNlLU4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.9600\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise-N/Versions/6.3.9600\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.96000720\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise-N/Versions/6.3.96000720\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.96000720\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise-N/Versions/6.3.96000720\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "577" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68637,7 +70196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fadb45f5-7d15-442e-bec3-2abd1091a164" + "7d004334-5cdb-4fe3-b012-9107dafd417e" ], "Cache-Control": [ "no-cache" @@ -68647,34 +70206,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12721" + "13584" ], "x-ms-correlation-request-id": [ - "cb86bbbc-ce96-4a33-9144-96bfff7ab904" + "88d40787-d1d4-499a-83ad-3f2b906ca790" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:cb86bbbc-ce96-4a33-9144-96bfff7ab904" + "WESTUS:20150813T074818Z:88d40787-d1d4-499a-83ad-3f2b906ca790" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/8.1-Enterprise-N/versions/6.3.9600?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzguMS1FbnRlcnByaXNlLU4vdmVyc2lvbnMvNi4zLjk2MDA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/8.1-Enterprise-N/versions/6.3.96000720?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzguMS1FbnRlcnByaXNlLU4vdmVyc2lvbnMvNi4zLjk2MDAwNzIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.9600\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise-N/Versions/6.3.9600\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.96000720\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise-N/Versions/6.3.96000720\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68689,7 +70248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67c20b88-b8f1-43a7-ba19-832c76599c2a" + "66057a59-3351-403d-a54c-078eb24e117a" ], "Cache-Control": [ "no-cache" @@ -68699,34 +70258,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12720" + "13583" ], "x-ms-correlation-request-id": [ - "b5001f3f-1018-4a89-920c-caa838354119" + "6417ba09-c01e-4e4e-9620-abe26af1e8c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:b5001f3f-1018-4a89-920c-caa838354119" + "WESTUS:20150813T074818Z:6417ba09-c01e-4e4e-9620-abe26af1e8c5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftVisualStudio/artifacttypes/vmimage/offers/Windows/skus/8.1-Enterprise-N/versions/6.3.96000720?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0VmlzdWFsU3R1ZGlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93cy9za3VzLzguMS1FbnRlcnByaXNlLU4vdmVyc2lvbnMvNi4zLjk2MDAwNzIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.3.96000720\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio/ArtifactTypes/VMImage/Offers/Windows/Skus/8.1-Enterprise-N/Versions/6.3.96000720\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "395" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68741,7 +70300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe6ff787-e4aa-477f-9f2a-eaad811ae11c" + "c6cd8120-aeb4-43c3-b3a4-da6a14090ad0" ], "Cache-Control": [ "no-cache" @@ -68751,34 +70310,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12719" + "13582" ], "x-ms-correlation-request-id": [ - "e3e6ad36-59a6-454f-bbf2-fd81f69d0426" + "98683014-c10e-4c8a-bfef-cbb018adc157" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212640Z:e3e6ad36-59a6-454f-bbf2-fd81f69d0426" + "WESTUS:20150813T074818Z:98683014-c10e-4c8a-bfef-cbb018adc157" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "258" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68793,7 +70352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a3660d3-5b29-4ca7-94c8-45fa90ad83c2" + "b3df111f-9115-4e08-ba8f-515ee301caf9" ], "Cache-Control": [ "no-cache" @@ -68803,34 +70362,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12718" + "13581" ], "x-ms-correlation-request-id": [ - "9e134cec-71ed-462f-bf62-958e06237630" + "6cb4c728-7c40-4896-8b94-83978e5696b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:9e134cec-71ed-462f-bf62-958e06237630" + "WESTUS:20150813T074819Z:6cb4c728-7c40-4896-8b94-83978e5696b1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68845,7 +70404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72cf35be-ebbd-4026-8090-589aa76d5ed7" + "3ac068f5-be88-402d-81a4-6b495be8adf5" ], "Cache-Control": [ "no-cache" @@ -68855,34 +70414,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12717" + "13580" ], "x-ms-correlation-request-id": [ - "51fe4c5d-82ff-4bc0-abda-152bae5926b2" + "973f6a23-23d7-4eea-97a3-0809160769b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:51fe4c5d-82ff-4bc0-abda-152bae5926b2" + "WESTUS:20150813T074819Z:973f6a23-23d7-4eea-97a3-0809160769b4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "874" + "393" ], "Content-Type": [ "application/json; charset=utf-8" @@ -68897,7 +70456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e7b4d6d-642e-48cd-8877-8b0adb8de18e" + "776545f9-2455-432a-8e01-6b067e17682a" ], "Cache-Control": [ "no-cache" @@ -68907,31 +70466,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12716" + "13579" ], "x-ms-correlation-request-id": [ - "b48295ec-2a4b-47e7-be65-318e965d5bd9" + "f554fc9a-3613-4d76-8bc2-6c36edcbc0cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:b48295ec-2a4b-47e7-be65-318e965d5bd9" + "WESTUS:20150813T074819Z:f554fc9a-3613-4d76-8bc2-6c36edcbc0cd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -68949,7 +70508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc6f69e5-e6fa-4ec7-a885-4f112f271ada" + "5b03cc8c-60b5-402a-8797-ba92946c4463" ], "Cache-Control": [ "no-cache" @@ -68959,34 +70518,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12715" + "13578" ], "x-ms-correlation-request-id": [ - "feb039a2-1804-478f-8709-8b454d325ccd" + "87452179-a933-4796-b6b0-e574cf17bf05" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:feb039a2-1804-478f-8709-8b454d325ccd" + "WESTUS:20150813T074819Z:87452179-a933-4796-b6b0-e574cf17bf05" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201506?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA3MjY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "393" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69001,7 +70560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfd1f04d-a6f0-4ef3-8320-7ab3b34b368d" + "f3ab7ae2-5e97-4efa-a432-124fb36466f2" ], "Cache-Control": [ "no-cache" @@ -69011,34 +70570,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12714" + "13577" ], "x-ms-correlation-request-id": [ - "1d1b37a4-236f-4409-97f6-8c3e719d39f3" + "9e352c50-0660-44db-8222-7168046c1c7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:1d1b37a4-236f-4409-97f6-8c3e719d39f3" + "WESTUS:20150813T074819Z:9e352c50-0660-44db-8222-7168046c1c7e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.20150726?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA3MjY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "397" + "886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69053,7 +70612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12604b41-5989-41d2-b04c-85065531dcef" + "6e3ea91c-1f51-448f-98ba-76d275e89a45" ], "Cache-Control": [ "no-cache" @@ -69063,34 +70622,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12713" + "13576" ], "x-ms-correlation-request-id": [ - "73676a98-8f40-475d-8510-009ea58d2554" + "a69cef21-dc6a-4d13-b60e-900ee9154542" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:73676a98-8f40-475d-8510-009ea58d2554" + "WESTUS:20150813T074819Z:a69cef21-dc6a-4d13-b60e-900ee9154542" ], "Date": [ - "Wed, 05 Aug 2015 21:26:40 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "886" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69105,7 +70664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b0e7ec8-76e0-4472-bbc7-847f1687e82c" + "fc59bd74-6738-4842-a604-9ee018ac56c3" ], "Cache-Control": [ "no-cache" @@ -69115,31 +70674,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12712" + "13575" ], "x-ms-correlation-request-id": [ - "930fa7c0-b3c8-49ab-b7f3-bbdc621046c8" + "5ec8fbb1-c7d9-47e4-ba2c-a134710b33f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:930fa7c0-b3c8-49ab-b7f3-bbdc621046c8" + "WESTUS:20150813T074819Z:5ec8fbb1-c7d9-47e4-ba2c-a134710b33f1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201505?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201505\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ "397" @@ -69157,7 +70716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b347568e-4e8d-40a3-a0fb-32c2e021770f" + "846b7b44-ba2c-4d18-b9ab-35faa6fdd3fc" ], "Cache-Control": [ "no-cache" @@ -69167,34 +70726,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12711" + "13574" ], "x-ms-correlation-request-id": [ - "67793654-abc5-4113-a263-3830f281f359" + "286a1516-8d2b-4455-89b9-7623bed8ba79" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:67793654-abc5-4113-a263-3830f281f359" + "WESTUS:20150813T074819Z:286a1516-8d2b-4455-89b9-7623bed8ba79" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201506?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201506\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "397" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69209,7 +70768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81f1097d-68fc-429d-9817-db250e49f1c1" + "17b23a47-45fe-4b4a-b782-e14bd6da5938" ], "Cache-Control": [ "no-cache" @@ -69219,34 +70778,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12710" + "13573" ], "x-ms-correlation-request-id": [ - "98a304fe-05cd-407c-92b3-b5a2a78661a8" + "03ae6ade-02e8-45bd-a29d-449c4cf63fc6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:98a304fe-05cd-407c-92b3-b5a2a78661a8" + "WESTUS:20150813T074819Z:03ae6ade-02e8-45bd-a29d-449c4cf63fc6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.20150726?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMy4wLjIwMTUwNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.20150726\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "401" + "895" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69261,7 +70820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3faafe4b-d275-462a-920c-0d7ae0422283" + "dcc10b6c-f8ee-4bce-9cfd-40d39b7d4149" ], "Cache-Control": [ "no-cache" @@ -69271,34 +70830,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12709" + "13572" ], "x-ms-correlation-request-id": [ - "5d95d014-cde7-4a17-a6ef-28d837d1589e" + "451bca61-7b23-476b-9a2b-0deb03ecfb02" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212641Z:5d95d014-cde7-4a17-a6ef-28d837d1589e" + "WESTUS:20150813T074819Z:451bca61-7b23-476b-9a2b-0deb03ecfb02" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "895" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69313,7 +70872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df8de651-46a6-4527-933b-feece4353f3e" + "233d5482-7431-4fac-8936-0d84d798e2da" ], "Cache-Control": [ "no-cache" @@ -69323,31 +70882,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12708" + "13571" ], "x-ms-correlation-request-id": [ - "089dc088-cffb-4065-9181-6ff9f3ce26f0" + "417ef898-7b3d-4164-bc6c-c71e7a2177bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:089dc088-cffb-4065-9181-6ff9f3ce26f0" + "WESTUS:20150813T074820Z:417ef898-7b3d-4164-bc6c-c71e7a2177bb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201505?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ "400" @@ -69365,7 +70924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c445ff6-e6d4-4610-b932-e52d5c407b8b" + "4772cfe3-4122-4d2b-b6e7-946d1bda096a" ], "Cache-Control": [ "no-cache" @@ -69375,34 +70934,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12707" + "13570" ], "x-ms-correlation-request-id": [ - "c38300ed-9e78-40a8-b6dd-ae7c7a868dc5" + "ea471d99-be0d-4853-b10f-47a629238587" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:c38300ed-9e78-40a8-b6dd-ae7c7a868dc5" + "WESTUS:20150813T074820Z:ea471d99-be0d-4853-b10f-47a629238587" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201506?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150726?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "400" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69417,7 +70976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f4432ac-16f7-4744-a906-ea6b6845226c" + "490579f7-c343-4cc7-8997-3e236afea84c" ], "Cache-Control": [ "no-cache" @@ -69427,34 +70986,86 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12706" + "13569" ], "x-ms-correlation-request-id": [ - "9974b61e-b474-4e19-a547-d833a9ba7b17" + "6224166d-a6e6-41e3-9d3c-3741e45114fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:9974b61e-b474-4e19-a547-d833a9ba7b17" + "WESTUS:20150813T074820Z:6224166d-a6e6-41e3-9d3c-3741e45114fb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150726?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvNC4wLjIwMTUwNzI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-3-with-Containers/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LTMtd2l0aC1Db250YWluZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "404" + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "899f5b30-d285-44c5-b90a-70c1bf746d5c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13568" + ], + "x-ms-correlation-request-id": [ + "9f1381eb-4958-4d6f-a362-7be38974cbeb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074820Z:9f1381eb-4958-4d6f-a362-7be38974cbeb" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-with-Containers/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LXdpdGgtQ29udGFpbmVycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69469,7 +71080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bdafc09e-b401-48c6-9df1-2ef89b04f50f" + "2d0d2542-6090-4680-bd5f-f6af2c6bc368" ], "Cache-Control": [ "no-cache" @@ -69479,31 +71090,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12705" + "13567" ], "x-ms-correlation-request-id": [ - "840e0e4c-34ef-4652-90ea-dd6e1202eea6" + "4bb72e3e-d6d6-41a5-b8ae-d207d650c755" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:840e0e4c-34ef-4652-90ea-dd6e1202eea6" + "WESTUS:20150813T074820Z:4bb72e3e-d6d6-41a5-b8ae-d207d650c755" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -69521,7 +71132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1516b8f-25e7-41f2-8689-c7248688b220" + "9c5c2220-06e5-42b8-ac2c-ddee45d14f12" ], "Cache-Control": [ "no-cache" @@ -69531,31 +71142,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12704" + "13566" ], "x-ms-correlation-request-id": [ - "8bc6f138-03af-422f-9f0b-e350f388cf40" + "75b9fb99-d39f-436a-9c6a-e7b7b90e093a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:8bc6f138-03af-422f-9f0b-e350f388cf40" + "WESTUS:20150813T074820Z:75b9fb99-d39f-436a-9c6a-e7b7b90e093a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions/5.0.201505?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucy81LjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions/5.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy9XaW5kb3dzLVNlcnZlci1UZWNobmljYWwtUHJldmlldy92ZXJzaW9ucy81LjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "414" @@ -69573,7 +71184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9040d95e-0b35-40b0-8124-c3a88a3bdc48" + "0f44a600-04fe-41a5-be76-c870b6c02bf3" ], "Cache-Control": [ "no-cache" @@ -69583,31 +71194,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12703" + "13565" ], "x-ms-correlation-request-id": [ - "16b5c6bd-6c8e-41e5-9a61-3f59fe512d57" + "b6cae18c-babf-4779-a32b-36f9274b4b7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:16b5c6bd-6c8e-41e5-9a61-3f59fe512d57" + "WESTUS:20150813T074820Z:b6cae18c-babf-4779-a32b-36f9274b4b7e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "288" @@ -69625,7 +71236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be389b0a-10bd-4ec2-a75a-6654eea3e4fe" + "125e3b3f-60ca-4866-9c40-2f115c65cf76" ], "Cache-Control": [ "no-cache" @@ -69635,31 +71246,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12702" + "13564" ], "x-ms-correlation-request-id": [ - "4721501d-e2bd-4bad-b40e-0d6f373e5245" + "e493661e-099e-4876-ae5b-af05b66f9cd0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:4721501d-e2bd-4bad-b40e-0d6f373e5245" + "WESTUS:20150813T074820Z:e493661e-099e-4876-ae5b-af05b66f9cd0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:41 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "317" @@ -69677,7 +71288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3310f53f-9ca8-484e-b6d2-ec157acbb682" + "d6056f0b-4594-4bdd-bfe9-00b9963d0b5a" ], "Cache-Control": [ "no-cache" @@ -69687,31 +71298,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12701" + "13563" ], "x-ms-correlation-request-id": [ - "e1027dd7-de11-4a91-93be-faff726ecfa5" + "e8a9b45c-3f99-43e2-aa1f-8f9b026056b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:e1027dd7-de11-4a91-93be-faff726ecfa5" + "WESTUS:20150813T074820Z:e8a9b45c-3f99-43e2-aa1f-8f9b026056b5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:42 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "2928" @@ -69729,7 +71340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aea57dca-e36b-4e07-97b2-642771fe5f87" + "56a53f0e-1060-4b6b-bfdb-bb711675457b" ], "Cache-Control": [ "no-cache" @@ -69739,31 +71350,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12700" + "13562" ], "x-ms-correlation-request-id": [ - "178646ea-d2c4-49c0-bc8f-e9ab2fec7007" + "1b7bbaf9-94ad-496e-a0c1-618c89795aa8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:178646ea-d2c4-49c0-bc8f-e9ab2fec7007" + "WESTUS:20150813T074821Z:1b7bbaf9-94ad-496e-a0c1-618c89795aa8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:42 GMT" + "Thu, 13 Aug 2015 07:48:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131018?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTAxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131018?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTAxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131018\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131018\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -69781,7 +71392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "880c4f5f-3aba-4cd5-bc89-13e23e58b1d9" + "b9cf3d6e-d564-41cc-bd78-fd93f4b19c0d" ], "Cache-Control": [ "no-cache" @@ -69791,31 +71402,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12699" + "13561" ], "x-ms-correlation-request-id": [ - "64165b36-99da-4047-876c-c87f8ef4736f" + "7d05a141-669a-41ac-b5f9-f9621bc29d00" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212642Z:64165b36-99da-4047-876c-c87f8ef4736f" + "WESTUS:20150813T074821Z:7d05a141-669a-41ac-b5f9-f9621bc29d00" ], "Date": [ - "Wed, 05 Aug 2015 21:26:42 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131127?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTEyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131127?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTEyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131127\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -69833,7 +71444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95367e75-0128-4562-9a74-e4ba162c0506" + "da5c6502-aaa1-44ec-a4c5-ef1055eb3e16" ], "Cache-Control": [ "no-cache" @@ -69843,31 +71454,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12698" + "13560" ], "x-ms-correlation-request-id": [ - "ae4934ea-8374-4c47-97dc-8e1f0067e5ec" + "80c3ef8b-4057-47c0-9f9b-8a803640b076" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212643Z:ae4934ea-8374-4c47-97dc-8e1f0067e5ec" + "WESTUS:20150813T074821Z:80c3ef8b-4057-47c0-9f9b-8a803640b076" ], "Date": [ - "Wed, 05 Aug 2015 21:26:42 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131217?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTIxNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20131217?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDEzMTIxNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20131217\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20131217\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -69885,7 +71496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "649f868f-d7c6-4461-98c9-57c884c58300" + "7de17b72-bb3d-4cbd-ab3a-0fb40b927f09" ], "Cache-Control": [ "no-cache" @@ -69895,31 +71506,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12697" + "13559" ], "x-ms-correlation-request-id": [ - "aa0b47aa-d67f-49c2-b9ec-20e9bbaea4ca" + "5f259758-b4d5-4139-85af-1dd892010a5d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212643Z:aa0b47aa-d67f-49c2-b9ec-20e9bbaea4ca" + "WESTUS:20150813T074821Z:5f259758-b4d5-4139-85af-1dd892010a5d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:42 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140213?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDIxMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140213?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDIxMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140213\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140213\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -69937,7 +71548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69362802-5dc5-4958-aba1-b85793ad779c" + "c86a45ba-2395-49fa-8067-4ef31e61e18f" ], "Cache-Control": [ "no-cache" @@ -69947,31 +71558,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12696" + "13558" ], "x-ms-correlation-request-id": [ - "d0306a50-c6b2-4076-aa7d-188cb8705804" + "27ce319c-8777-4942-8d40-657f9e3aff80" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212643Z:d0306a50-c6b2-4076-aa7d-188cb8705804" + "WESTUS:20150813T074821Z:27ce319c-8777-4942-8d40-657f9e3aff80" ], "Date": [ - "Wed, 05 Aug 2015 21:26:42 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140306?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDMwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140306?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDMwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140306\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140306\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -69989,7 +71600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4699ab8-dbba-4527-8632-87b4a47d3f43" + "74e2dd59-578d-4662-91e3-0ca1174197a2" ], "Cache-Control": [ "no-cache" @@ -69999,31 +71610,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12695" + "13557" ], "x-ms-correlation-request-id": [ - "4babf962-8f25-4632-91d4-a3ba312f103d" + "52beeeed-48d5-459c-8fc9-de3b335382fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212643Z:4babf962-8f25-4632-91d4-a3ba312f103d" + "WESTUS:20150813T074821Z:52beeeed-48d5-459c-8fc9-de3b335382fe" ], "Date": [ - "Wed, 05 Aug 2015 21:26:42 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140327?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDMyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140327?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDMyNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140327\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140327\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -70041,7 +71652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ed1fcb7-3b40-4ae5-985d-4179596d4be5" + "e52a5e06-cf27-492d-8265-e4a2d9571e12" ], "Cache-Control": [ "no-cache" @@ -70051,31 +71662,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12694" + "13556" ], "x-ms-correlation-request-id": [ - "23334c34-fc86-4ce4-81c0-2b4d4368966d" + "5d348527-967b-4394-9b08-25ff45d5ee30" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212643Z:23334c34-fc86-4ce4-81c0-2b4d4368966d" + "WESTUS:20150813T074821Z:5d348527-967b-4394-9b08-25ff45d5ee30" ], "Date": [ - "Wed, 05 Aug 2015 21:26:42 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140618?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDYxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140618?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDYxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140618\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140618\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -70093,7 +71704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "febd7170-0ac7-435e-9f3e-cca7b3218f4c" + "5fb8085b-06c4-48c1-985b-5feaab9f985b" ], "Cache-Control": [ "no-cache" @@ -70103,31 +71714,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12693" + "13555" ], "x-ms-correlation-request-id": [ - "39918f75-ad91-472f-a99f-f627263b865c" + "d4c47af4-cb76-410c-b526-008fecd87cac" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212643Z:39918f75-ad91-472f-a99f-f627263b865c" + "WESTUS:20150813T074821Z:d4c47af4-cb76-410c-b526-008fecd87cac" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140715?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDcxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20140715?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MDcxNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20140715\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20140715\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -70145,7 +71756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ef45eb7-a571-48c7-82e7-d83cb6bff5de" + "522541c4-253c-4e46-aaaf-16caa8642c0c" ], "Cache-Control": [ "no-cache" @@ -70155,31 +71766,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12692" + "13554" ], "x-ms-correlation-request-id": [ - "e45b76ce-6da4-4213-85a9-550a5c35932b" + "f0b0098e-0756-4b14-90f9-8e6426783a57" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212643Z:e45b76ce-6da4-4213-85a9-550a5c35932b" + "WESTUS:20150813T074821Z:f0b0098e-0756-4b14-90f9-8e6426783a57" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20141204?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MTIwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.20141204?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckVzc2VudGlhbHMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyRXNzZW50aWFscy9za3VzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3ZlcnNpb25zLzEuMC4yMDE0MTIwND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.20141204\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.20141204\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -70197,7 +71808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2630e0f7-eae6-45ca-9d70-58bfa6956673" + "76c7169d-b5c8-4f28-95b0-0b1804904f6f" ], "Cache-Control": [ "no-cache" @@ -70207,31 +71818,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12691" + "13553" ], "x-ms-correlation-request-id": [ - "5e797a24-e1b0-4275-bfe4-cdffb8484f4e" + "3aac710f-26bb-4d72-b613-b696b5070e26" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:5e797a24-e1b0-4275-bfe4-cdffb8484f4e" + "WESTUS:20150813T074821Z:3aac710f-26bb-4d72-b613-b696b5070e26" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -70249,7 +71860,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10efb290-b54c-41b3-8f7f-df7afb7704dc" + "4980fc75-9539-4473-bdcb-fb2fd6460e78" ], "Cache-Control": [ "no-cache" @@ -70259,31 +71870,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12690" + "13552" ], "x-ms-correlation-request-id": [ - "d26c132e-cf56-4cb4-9608-8d8af33f011e" + "aa6c9129-c018-40dc-9b18-232d0dd4a160" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:d26c132e-cf56-4cb4-9608-8d8af33f011e" + "WESTUS:20150813T074821Z:aa6c9129-c018-40dc-9b18-232d0dd4a160" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2CN\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2CNExcel\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TechnicalPreview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2CN\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012R2CNExcel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TechnicalPreview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1137" @@ -70301,7 +71912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54918a87-e2b3-4bb3-b381-699d58cf5858" + "9473beb3-2ee5-4c76-a108-6badb21531cb" ], "Cache-Control": [ "no-cache" @@ -70311,31 +71922,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12689" + "13551" ], "x-ms-correlation-request-id": [ - "e1586bb3-4805-40aa-8126-446d55cac727" + "e756e3f5-00ae-451d-abf7-c96163a6afed" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:e1586bb3-4805-40aa-8126-446d55cac727" + "WESTUS:20150813T074822Z:e756e3f5-00ae-451d-abf7-c96163a6afed" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.4.4864\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.4.4864\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1767" @@ -70353,7 +71964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55d623ff-8079-441b-85aa-d47a60442d08" + "3307c98a-c9cf-468c-982f-fdfd679eec34" ], "Cache-Control": [ "no-cache" @@ -70363,31 +71974,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12688" + "13550" ], "x-ms-correlation-request-id": [ - "8e9a1a22-690b-44ba-b511-c85ae9628d51" + "6466d3cd-4142-48c0-972a-708ca4a3f939" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:8e9a1a22-690b-44ba-b511-c85ae9628d51" + "WESTUS:20150813T074822Z:6466d3cd-4142-48c0-972a-708ca4a3f939" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4596?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDU5Nj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4596?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDU5Nj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n}", "ResponseHeaders": { "Content-Length": [ "398" @@ -70405,7 +72016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5444185b-815f-45ed-b9d7-fe0dde1cb3b1" + "29c4f545-6783-4f8b-a14e-e6d30db0cdfd" ], "Cache-Control": [ "no-cache" @@ -70415,31 +72026,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12687" + "13549" ], "x-ms-correlation-request-id": [ - "8f819acf-e27f-4b86-a99c-002683ea137c" + "7e8ab104-38f3-403c-b013-87edad6e12f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:8f819acf-e27f-4b86-a99c-002683ea137c" + "WESTUS:20150813T074822Z:7e8ab104-38f3-403c-b013-87edad6e12f8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4650?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4650?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY1MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n}", "ResponseHeaders": { "Content-Length": [ "398" @@ -70457,7 +72068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6243258-9124-4bf6-b0fd-f78521d8e3b9" + "8b07b4d7-d43d-47f6-84ac-4d47cec687d0" ], "Cache-Control": [ "no-cache" @@ -70467,31 +72078,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12686" + "13548" ], "x-ms-correlation-request-id": [ - "104ce376-45bc-4417-9236-d942b0627813" + "7b76e43a-292a-4aaf-b7e4-19bc1c9cf807" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:104ce376-45bc-4417-9236-d942b0627813" + "WESTUS:20150813T074822Z:7b76e43a-292a-4aaf-b7e4-19bc1c9cf807" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4652?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4652?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY1Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n}", "ResponseHeaders": { "Content-Length": [ "398" @@ -70509,7 +72120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d9b0ffb-e939-443b-a7f7-d98527646ad0" + "6d63f9b4-0b49-4fae-a7aa-ab1279e0ab88" ], "Cache-Control": [ "no-cache" @@ -70519,31 +72130,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12685" + "13547" ], "x-ms-correlation-request-id": [ - "05b6d061-2857-4fb8-83ba-3482507f1549" + "71fac048-d1bc-4dbd-8c42-8a9f865f4137" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:05b6d061-2857-4fb8-83ba-3482507f1549" + "WESTUS:20150813T074822Z:71fac048-d1bc-4dbd-8c42-8a9f865f4137" ], "Date": [ - "Wed, 05 Aug 2015 21:26:43 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4660?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY2MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4660?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY2MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n}", "ResponseHeaders": { "Content-Length": [ "398" @@ -70561,7 +72172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "915fc317-fb64-4f33-ba7d-da5cb7c375df" + "f9a65e12-fe45-4059-bab6-58edfa4a0743" ], "Cache-Control": [ "no-cache" @@ -70571,31 +72182,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12684" + "13546" ], "x-ms-correlation-request-id": [ - "342e73c0-f228-4543-9fd7-0463be547de4" + "4ff179fe-b36c-4658-9333-380938cde762" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:342e73c0-f228-4543-9fd7-0463be547de4" + "WESTUS:20150813T074822Z:4ff179fe-b36c-4658-9333-380938cde762" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4665?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY2NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.3.4665?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjMuNDY2NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n}", "ResponseHeaders": { "Content-Length": [ "398" @@ -70613,7 +72224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "201188a8-7d69-41ab-ad23-6a04e48d6073" + "ed5fc426-9be6-4c4b-a3d0-53935d9cf6f7" ], "Cache-Control": [ "no-cache" @@ -70623,31 +72234,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12683" + "13545" ], "x-ms-correlation-request-id": [ - "904d90c9-8be0-4194-9e16-969fb1589977" + "bfdf77c6-54fa-4f41-9abb-0ec817a52a57" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:904d90c9-8be0-4194-9e16-969fb1589977" + "WESTUS:20150813T074822Z:bfdf77c6-54fa-4f41-9abb-0ec817a52a57" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.4.4864?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjQuNDg2ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2/versions/4.4.4864?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMi92ZXJzaW9ucy80LjQuNDg2ND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.4.4864\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.4.4864\"\r\n}", "ResponseHeaders": { "Content-Length": [ "398" @@ -70665,7 +72276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47b4f318-6b7c-406f-b44a-d7c2b8b215a2" + "ee06cdc8-2be6-443f-af4c-5c6d05f65be5" ], "Cache-Control": [ "no-cache" @@ -70675,31 +72286,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12682" + "13544" ], "x-ms-correlation-request-id": [ - "b6985bec-0210-4d4b-834c-eddce389d6f9" + "35cf6252-1ed5-423a-8ac7-0aedeeae948a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212644Z:b6985bec-0210-4d4b-834c-eddce389d6f9" + "WESTUS:20150813T074822Z:35cf6252-1ed5-423a-8ac7-0aedeeae948a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.4.4864\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.4.4864\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "299" @@ -70717,7 +72328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79ad03da-f4dc-4903-a5ff-893152806b82" + "2ed4470a-6fe5-44fa-82fc-1ff25c1fd606" ], "Cache-Control": [ "no-cache" @@ -70727,31 +72338,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12681" + "13543" ], "x-ms-correlation-request-id": [ - "4d52e297-8ff2-4931-82e0-9be7a94489e0" + "362afc8f-248e-4be8-ab8e-ae69d89fc019" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:4d52e297-8ff2-4931-82e0-9be7a94489e0" + "WESTUS:20150813T074822Z:362afc8f-248e-4be8-ab8e-ae69d89fc019" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.4.4864?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNC40ODY0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CN/versions/4.4.4864?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNOL3ZlcnNpb25zLzQuNC40ODY0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.4.4864\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CN/Versions/4.4.4864\"\r\n}", "ResponseHeaders": { "Content-Length": [ "400" @@ -70769,7 +72380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31ed8f22-6500-4f80-af6a-87c778ed2800" + "d9657be5-60c6-45b5-a5f6-9e0411c371ff" ], "Cache-Control": [ "no-cache" @@ -70779,31 +72390,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12680" + "13542" ], "x-ms-correlation-request-id": [ - "c00a8c6c-c87e-4482-9d82-b6ede332a29e" + "75096171-c4a3-463f-902f-b00ceeb92e3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:c00a8c6c-c87e-4482-9d82-b6ede332a29e" + "WESTUS:20150813T074822Z:75096171-c4a3-463f-902f-b00ceeb92e3f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.4.4864\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.4.4864\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "304" @@ -70821,7 +72432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17eb6a88-2f8d-479d-a319-643cd4da7ca9" + "f81df544-314b-4325-8680-3c10f10aa3d7" ], "Cache-Control": [ "no-cache" @@ -70831,31 +72442,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12679" + "13541" ], "x-ms-correlation-request-id": [ - "b584f390-0390-4813-8a9e-62996a1336fa" + "b0612ea7-261e-442e-8ae5-10f779ec64ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:b584f390-0390-4813-8a9e-62996a1336fa" + "WESTUS:20150813T074822Z:b0612ea7-261e-442e-8ae5-10f779ec64ec" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.4.4864?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC40LjQ4NjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/2012R2CNExcel/versions/4.4.4864?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzLzIwMTJSMkNORXhjZWwvdmVyc2lvbnMvNC40LjQ4NjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.4.4864\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4864\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2CNExcel/Versions/4.4.4864\"\r\n}", "ResponseHeaders": { "Content-Length": [ "405" @@ -70873,7 +72484,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "717978a0-61a8-4251-b319-61cc3d6153a1" + "09d95e71-023b-4334-bf1e-5b33b2c5f7a3" ], "Cache-Control": [ "no-cache" @@ -70883,31 +72494,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12678" + "13540" ], "x-ms-correlation-request-id": [ - "47e7f4ea-0ee9-43cc-816c-799123b0c30e" + "a0024e3e-b82b-416d-b6ad-ac31d8b03359" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:47e7f4ea-0ee9-43cc-816c-799123b0c30e" + "WESTUS:20150813T074823Z:a0024e3e-b82b-416d-b6ad-ac31d8b03359" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4835\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4835\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4858\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4858\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4835\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4835\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4858\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4858\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "915" @@ -70925,7 +72536,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e59850c8-8a38-4a6e-8143-9be4d4ce40e4" + "39f1006a-2bb1-4c01-ac4b-34435a28cd08" ], "Cache-Control": [ "no-cache" @@ -70935,31 +72546,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12677" + "13539" ], "x-ms-correlation-request-id": [ - "6263440e-175c-4213-a4be-8f85b9996460" + "3dda418c-0242-40fe-9ea6-a4a6e4342059" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:6263440e-175c-4213-a4be-8f85b9996460" + "WESTUS:20150813T074823Z:3dda418c-0242-40fe-9ea6-a4a6e4342059" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4806?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4806?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n}", "ResponseHeaders": { "Content-Length": [ "408" @@ -70977,7 +72588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55172e10-0f91-43e9-ad64-02dc0dc0c490" + "ba2bfbd8-7e6c-4081-8c12-c2ca92ce5829" ], "Cache-Control": [ "no-cache" @@ -70987,31 +72598,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12676" + "13538" ], "x-ms-correlation-request-id": [ - "79732af2-5664-4374-ae28-2c0ec0829d0c" + "beacffe3-1b95-4448-820d-06d33a6ecab9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:79732af2-5664-4374-ae28-2c0ec0829d0c" + "WESTUS:20150813T074823Z:beacffe3-1b95-4448-820d-06d33a6ecab9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4835?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4MzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4835?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4MzU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4835\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4835\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4835\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4835\"\r\n}", "ResponseHeaders": { "Content-Length": [ "408" @@ -71029,7 +72640,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19164ad8-a3d3-456c-b607-880323a2544b" + "98b77c68-9069-4475-bde1-437acdfda725" ], "Cache-Control": [ "no-cache" @@ -71039,31 +72650,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12675" + "13537" ], "x-ms-correlation-request-id": [ - "34acc762-8b2a-4a16-83d8-dc1de8e40993" + "fea7554d-8d7d-4ceb-971e-e8727f4962ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:34acc762-8b2a-4a16-83d8-dc1de8e40993" + "WESTUS:20150813T074823Z:fea7554d-8d7d-4ceb-971e-e8727f4962ab" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4858?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4NTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers/WindowsServerHPCPack/skus/TechnicalPreview/versions/4.4.4858?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlckhQQ1BhY2svYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVySFBDUGFjay9za3VzL1RlY2huaWNhbFByZXZpZXcvdmVyc2lvbnMvNC40LjQ4NTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4858\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4858\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.4.4858\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4858\"\r\n}", "ResponseHeaders": { "Content-Length": [ "408" @@ -71081,7 +72692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c81cf819-4477-448b-9692-afe8974c7582" + "c0c1b5f2-5106-4346-81a1-ca3f9d769828" ], "Cache-Control": [ "no-cache" @@ -71091,31 +72702,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12674" + "13536" ], "x-ms-correlation-request-id": [ - "94ba0d4c-aa1b-45f3-9273-9a1858a212e5" + "61b0b789-40de-418d-8ab8-e93b1a765b7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:94ba0d4c-aa1b-45f3-9273-9a1858a212e5" + "WESTUS:20150813T074823Z:61b0b789-40de-418d-8ab8-e93b1a765b7b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:44 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "537" @@ -71133,7 +72744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4793a00-cc45-4ca8-b44c-e6ec4e5d1aa8" + "ec45cd9c-bd3c-4b92-9ee7-3f0abaf8c86e" ], "Cache-Control": [ "no-cache" @@ -71143,31 +72754,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12673" + "13535" ], "x-ms-correlation-request-id": [ - "61805d18-4722-4051-b30e-a890fdf691c4" + "f26ac43a-b0a7-4243-b9d1-3814af655996" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:61805d18-4722-4051-b30e-a890fdf691c4" + "WESTUS:20150813T074823Z:f26ac43a-b0a7-4243-b9d1-3814af655996" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office13P\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office365P\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Remote-Desktop-Session-Host\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office13P\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office365P\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Remote-Desktop-Session-Host\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "895" @@ -71185,7 +72796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50084525-830d-4c0e-8dc2-7fa1a7c8229d" + "f1d17d2f-e69e-49cf-8abd-dfe143fb4b26" ], "Cache-Control": [ "no-cache" @@ -71195,31 +72806,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12672" + "13534" ], "x-ms-correlation-request-id": [ - "2fe85028-3551-46bc-b51a-d6d981e61931" + "73624208-6902-48c5-ae5f-016ada8e9d8e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212645Z:2fe85028-3551-46bc-b51a-d6d981e61931" + "WESTUS:20150813T074823Z:73624208-6902-48c5-ae5f-016ada8e9d8e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20141111\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150127\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20141111\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150127\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150309\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "927" @@ -71237,7 +72848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea213bf0-9b98-48f4-8f0a-894ee4a0c01c" + "225e5e13-c84a-4447-a7fd-348fa0e16d48" ], "Cache-Control": [ "no-cache" @@ -71247,31 +72858,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12671" + "13533" ], "x-ms-correlation-request-id": [ - "3385bed5-9873-493f-aa07-9eee227bfe02" + "2d577c17-2074-40f9-9d78-9614551b1a09" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:3385bed5-9873-493f-aa07-9eee227bfe02" + "WESTUS:20150813T074823Z:2d577c17-2074-40f9-9d78-9614551b1a09" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20141111?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNDExMTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20141111?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNDExMTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20141111\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20141111\"\r\n}", "ResponseHeaders": { "Content-Length": [ "412" @@ -71289,7 +72900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f22d7b1b-7e56-4a7d-9e88-ded595a2eb22" + "e2e4f32f-c640-4030-a962-a3f4c45df164" ], "Cache-Control": [ "no-cache" @@ -71299,31 +72910,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12670" + "13532" ], "x-ms-correlation-request-id": [ - "46472098-58e6-4340-bdf1-23f95b74de07" + "00e551b9-72e2-4eb2-98ea-ec7798fd958f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:46472098-58e6-4340-bdf1-23f95b74de07" + "WESTUS:20150813T074823Z:00e551b9-72e2-4eb2-98ea-ec7798fd958f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20150127?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNTAxMjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20150127?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNTAxMjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150127\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150127\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150127\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150127\"\r\n}", "ResponseHeaders": { "Content-Length": [ "412" @@ -71341,7 +72952,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e9c19b0-3834-4ecc-b99c-ae64f34ff9dc" + "3a04d66b-d68a-48d2-a656-2e1df56f4f8d" ], "Cache-Control": [ "no-cache" @@ -71351,31 +72962,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12669" + "13531" ], "x-ms-correlation-request-id": [ - "dfbf051a-4dc5-4503-b253-2d934a3da2f0" + "05fcec2f-c6eb-44e6-9762-240ca3aa96a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:dfbf051a-4dc5-4503-b253-2d934a3da2f0" + "WESTUS:20150813T074823Z:05fcec2f-c6eb-44e6-9762-240ca3aa96a4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20150309?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNTAzMDk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office13P/versions/4.0.20150309?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTEzUC92ZXJzaW9ucy80LjAuMjAxNTAzMDk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150309\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office13P/Versions/4.0.20150309\"\r\n}", "ResponseHeaders": { "Content-Length": [ "412" @@ -71393,7 +73004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4afe84b-8d8d-4219-ac98-5f1b5c87468f" + "7a8b028e-f6cf-4420-b00a-3cb1bc27d8b6" ], "Cache-Control": [ "no-cache" @@ -71403,31 +73014,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12668" + "13530" ], "x-ms-correlation-request-id": [ - "c651230f-bac4-47ae-9089-5b8e0bd6d322" + "4a159771-36da-42ab-a970-81bdd4083828" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:c651230f-bac4-47ae-9089-5b8e0bd6d322" + "WESTUS:20150813T074824Z:4a159771-36da-42ab-a970-81bdd4083828" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141121\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141121\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141126\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141126\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141121\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141121\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141126\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141126\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150309\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1239" @@ -71445,7 +73056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ab4a746-9caf-4f2e-a4b0-57181bbf3d0a" + "138df942-5783-43e8-b833-0d0d160346cb" ], "Cache-Control": [ "no-cache" @@ -71455,31 +73066,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12667" + "13529" ], "x-ms-correlation-request-id": [ - "c7ff35fb-fed1-4715-b892-0826aa51428e" + "eb7a735f-3a2b-4e3c-b3b6-ec6bab34a4a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:c7ff35fb-fed1-4715-b892-0826aa51428e" + "WESTUS:20150813T074824Z:eb7a735f-3a2b-4e3c-b3b6-ec6bab34a4a7" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20141121?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTQxMTIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20141121?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTQxMTIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141121\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141121\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141121\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141121\"\r\n}", "ResponseHeaders": { "Content-Length": [ "413" @@ -71497,7 +73108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb6d0362-d231-42d9-b653-3b327cc7357d" + "cadda6a1-a19e-4a8a-9b7d-abe5c00e2992" ], "Cache-Control": [ "no-cache" @@ -71507,31 +73118,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12666" + "13528" ], "x-ms-correlation-request-id": [ - "9a7ee752-8200-4ab1-85c5-3a03afc511ee" + "027e5953-d97d-42d3-a2e5-6c4d6009ea91" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:9a7ee752-8200-4ab1-85c5-3a03afc511ee" + "WESTUS:20150813T074824Z:027e5953-d97d-42d3-a2e5-6c4d6009ea91" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20141126?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTQxMTI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20141126?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTQxMTI2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141126\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141126\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141126\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20141126\"\r\n}", "ResponseHeaders": { "Content-Length": [ "413" @@ -71549,7 +73160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef57fe19-97ba-4214-be6a-e3baebb8665a" + "4dbcf4f2-e013-4d28-9cd8-e648a156af33" ], "Cache-Control": [ "no-cache" @@ -71559,31 +73170,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12665" + "13527" ], "x-ms-correlation-request-id": [ - "92c30f60-12bd-4dbb-95ea-957e34135808" + "d2b8bbd3-2180-475a-99f8-d11db4921c03" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:92c30f60-12bd-4dbb-95ea-957e34135808" + "WESTUS:20150813T074824Z:d2b8bbd3-2180-475a-99f8-d11db4921c03" ], "Date": [ - "Wed, 05 Aug 2015 21:26:45 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20150128?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTUwMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20150128?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTUwMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150128\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150128\"\r\n}", "ResponseHeaders": { "Content-Length": [ "413" @@ -71601,7 +73212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc7994dc-7710-4dc8-8be9-9193396b58e4" + "2013da95-e705-4c5a-b160-581b78066f48" ], "Cache-Control": [ "no-cache" @@ -71611,31 +73222,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12664" + "13526" ], "x-ms-correlation-request-id": [ - "d29f1426-79b2-41b2-8f1b-02defd9d916a" + "7a95b06f-b3a1-4242-b425-49ed5b715b94" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:d29f1426-79b2-41b2-8f1b-02defd9d916a" + "WESTUS:20150813T074824Z:7a95b06f-b3a1-4242-b425-49ed5b715b94" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20150309?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTUwMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/RDSH-Office365P/versions/4.0.20150309?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SRFNILU9mZmljZTM2NVAvdmVyc2lvbnMvNC4wLjIwMTUwMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150309\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/RDSH-Office365P/Versions/4.0.20150309\"\r\n}", "ResponseHeaders": { "Content-Length": [ "413" @@ -71653,7 +73264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2b0c6e3-6c0c-4926-9407-ce94e85b1d27" + "da83729d-d9f4-45d4-83a7-1fd93df619ad" ], "Cache-Control": [ "no-cache" @@ -71663,31 +73274,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12663" + "13525" ], "x-ms-correlation-request-id": [ - "cb7eb70e-9455-4d07-a3b2-83bf83f835a7" + "9d70e61d-036f-4377-9f38-d814c55e5598" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:cb7eb70e-9455-4d07-a3b2-83bf83f835a7" + "WESTUS:20150813T074824Z:9d70e61d-036f-4377-9f38-d814c55e5598" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20141111\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150309\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20141111\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150128\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150309\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "966" @@ -71705,7 +73316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b53bd0b3-8539-48dd-9b20-8c70ee97d95e" + "102ad9cc-2354-4967-8160-9d6f884db114" ], "Cache-Control": [ "no-cache" @@ -71715,31 +73326,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12662" + "13524" ], "x-ms-correlation-request-id": [ - "93e6fb38-2513-46bf-b2ac-1b7b6213b8aa" + "b4421d2c-52db-4bab-aa36-ee252d764e61" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212646Z:93e6fb38-2513-46bf-b2ac-1b7b6213b8aa" + "WESTUS:20150813T074824Z:b4421d2c-52db-4bab-aa36-ee252d764e61" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20141111?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTQxMTExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20141111?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTQxMTExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20141111\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20141111\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20141111\"\r\n}", "ResponseHeaders": { "Content-Length": [ "425" @@ -71757,7 +73368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc717707-0fa3-4d2d-9d52-295ce89aae88" + "69587869-f2e4-4830-9837-ee05bab93d15" ], "Cache-Control": [ "no-cache" @@ -71767,31 +73378,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12661" + "13523" ], "x-ms-correlation-request-id": [ - "88bfbc1b-b60c-49ad-b86c-96bafb5af525" + "25fa37c1-2ae5-4cbd-9593-30349109de40" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:88bfbc1b-b60c-49ad-b86c-96bafb5af525" + "WESTUS:20150813T074824Z:25fa37c1-2ae5-4cbd-9593-30349109de40" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150128?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTUwMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150128?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTUwMTI4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150128\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150128\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150128\"\r\n}", "ResponseHeaders": { "Content-Length": [ "425" @@ -71809,7 +73420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e442e6a-47d4-45b3-9c6c-06ed64c67247" + "49bb6c15-1e35-41a1-be23-01dc7a7466ad" ], "Cache-Control": [ "no-cache" @@ -71819,31 +73430,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12660" + "13522" ], "x-ms-correlation-request-id": [ - "664deb97-fdba-4f79-9622-a645a392ab83" + "b373dbcb-0869-4bdd-8f62-c92a62a590dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:664deb97-fdba-4f79-9622-a645a392ab83" + "WESTUS:20150813T074824Z:b373dbcb-0869-4bdd-8f62-c92a62a590dd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150309?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTUwMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150309?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dTZXJ2ZXIvc2t1cy9SZW1vdGUtRGVza3RvcC1TZXNzaW9uLUhvc3QvdmVyc2lvbnMvNC4wLjIwMTUwMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150309\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150309\"\r\n}", "ResponseHeaders": { "Content-Length": [ "425" @@ -71861,7 +73472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d676c93-c8fd-4010-9273-4f3075ab573d" + "a2f7a66d-b22b-4e88-b5af-09b9691a6a7a" ], "Cache-Control": [ "no-cache" @@ -71871,31 +73482,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12659" + "13521" ], "x-ms-correlation-request-id": [ - "fc9cb189-a333-42cc-8da3-33c1c8f5300b" + "7a9cecf2-53d2-4815-9ff8-2554e6aa1a77" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:fc9cb189-a333-42cc-8da3-33c1c8f5300b" + "WESTUS:20150813T074825Z:7a9cecf2-53d2-4815-9ff8-2554e6aa1a77" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office13P\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office365P\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Remote-Desktop-Session-Host\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office13P\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RDSH-Office365P\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Remote-Desktop-Session-Host\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "898" @@ -71913,7 +73524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fb94f541-ad77-4943-a2ff-099ea09d57ab" + "55e6f879-6925-4fa0-b1c5-a3343d1d6ef6" ], "Cache-Control": [ "no-cache" @@ -71923,31 +73534,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12658" + "13520" ], "x-ms-correlation-request-id": [ - "1e1516aa-2c07-4a4e-8305-b7f2ad9e09e9" + "532bc8bf-b020-402e-acba-fb4ed6826e4c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:1e1516aa-2c07-4a4e-8305-b7f2ad9e09e9" + "WESTUS:20150813T074825Z:532bc8bf-b020-402e-acba-fb4ed6826e4c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office13P/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UxM1AvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office13P/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UxM1AvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150514\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P/Versions/4.0.20150514\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150514\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P/Versions/4.0.20150514\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "312" @@ -71965,7 +73576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "05af8a05-2901-43a5-9eb3-a59fc2fb1417" + "e5938f4d-9e5c-4b97-b51d-a2c39f1b9a34" ], "Cache-Control": [ "no-cache" @@ -71975,31 +73586,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12657" + "13519" ], "x-ms-correlation-request-id": [ - "e27899e6-58f8-4eb8-9805-bfaa3a499240" + "1322caa0-5d59-40df-8983-980df46a4d2c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:e27899e6-58f8-4eb8-9805-bfaa3a499240" + "WESTUS:20150813T074825Z:1322caa0-5d59-40df-8983-980df46a4d2c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office13P/versions/4.0.20150514?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UxM1AvdmVyc2lvbnMvNC4wLjIwMTUwNTE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office13P/versions/4.0.20150514?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UxM1AvdmVyc2lvbnMvNC4wLjIwMTUwNTE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150514\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P/Versions/4.0.20150514\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150514\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office13P/Versions/4.0.20150514\"\r\n}", "ResponseHeaders": { "Content-Length": [ "413" @@ -72017,7 +73628,111 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0a9c0b6-fbcb-4fe6-a78f-729a2a46fada" + "fac3c3ae-1bea-4022-9f3c-58afe8bd5eb0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13518" + ], + "x-ms-correlation-request-id": [ + "76aaf6e8-cef3-4367-b922-d79f3fc7eebc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074825Z:76aaf6e8-cef3-4367-b922-d79f3fc7eebc" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office365P/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UzNjVQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150610\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P/Versions/4.0.20150610\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "313" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2ab2cf8c-5c6d-4ad7-8851-3829aa88dfee" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13517" + ], + "x-ms-correlation-request-id": [ + "4ce18906-156f-41d9-88ec-8f17b52b5d06" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074825Z:4ce18906-156f-41d9-88ec-8f17b52b5d06" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office365P/versions/4.0.20150610?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UzNjVQL3ZlcnNpb25zLzQuMC4yMDE1MDYxMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150610\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P/Versions/4.0.20150610\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "414" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aa711ec8-12cf-4d3f-8671-f41108d30299" ], "Cache-Control": [ "no-cache" @@ -72027,34 +73742,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12656" + "13516" ], "x-ms-correlation-request-id": [ - "58ac7a69-ce80-4b4c-8b5e-537d275bb125" + "38c90d39-455f-4577-8170-6274fb4c6c25" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:58ac7a69-ce80-4b4c-8b5e-537d275bb125" + "WESTUS:20150813T074825Z:38c90d39-455f-4577-8170-6274fb4c6c25" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office365P/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UzNjVQL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/Remote-Desktop-Session-Host/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUmVtb3RlLURlc2t0b3AtU2Vzc2lvbi1Ib3N0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150610\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P/Versions/4.0.20150610\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150513\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150513\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "313" + "325" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72069,7 +73784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83ebf6e3-c8af-4aac-b250-6af86c34f6ae" + "a5a10cb8-78e9-4cfc-9160-4e0c21db1f0e" ], "Cache-Control": [ "no-cache" @@ -72079,34 +73794,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12655" + "13515" ], "x-ms-correlation-request-id": [ - "9deef623-2b93-4361-9693-79424cee1f43" + "1623ec60-1564-4b8b-b931-8ba340823abf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:9deef623-2b93-4361-9693-79424cee1f43" + "WESTUS:20150813T074825Z:1623ec60-1564-4b8b-b931-8ba340823abf" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/RDSH-Office365P/versions/4.0.20150610?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUkRTSC1PZmZpY2UzNjVQL3ZlcnNpb25zLzQuMC4yMDE1MDYxMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150513?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUmVtb3RlLURlc2t0b3AtU2Vzc2lvbi1Ib3N0L3ZlcnNpb25zLzQuMC4yMDE1MDUxMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150610\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/RDSH-Office365P/Versions/4.0.20150610\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150513\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150513\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "414" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72121,7 +73836,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "224aaa26-81f1-486b-9724-5a3a769cc48e" + "322b27f8-f665-4353-a3bb-5e1696538b8a" ], "Cache-Control": [ "no-cache" @@ -72131,34 +73846,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12654" + "13514" ], "x-ms-correlation-request-id": [ - "936b44a7-1d79-4822-ac94-7679f739d6e0" + "6da188b9-0807-4bf5-9a6d-df62bd9edcbb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:936b44a7-1d79-4822-ac94-7679f739d6e0" + "WESTUS:20150813T074825Z:6da188b9-0807-4bf5-9a6d-df62bd9edcbb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:46 GMT" + "Thu, 13 Aug 2015 07:48:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/Remote-Desktop-Session-Host/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUmVtb3RlLURlc2t0b3AtU2Vzc2lvbi1Ib3N0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150513\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150513\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websphere-application-server-be\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websphere-application-server-lp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websphere-application-server-nde\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "325" + "839" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72173,7 +73888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e07a606-d251-4a0c-a236-9b132dfa9682" + "3e37d4d2-7430-4374-93c5-0a9008ed0240" ], "Cache-Control": [ "no-cache" @@ -72183,34 +73898,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12653" + "13513" ], "x-ms-correlation-request-id": [ - "e7aa3d75-47a3-4adb-9940-b23f755e056f" + "79546bd9-c87e-4f65-b899-0d34c050997d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:e7aa3d75-47a3-4adb-9940-b23f755e056f" + "WESTUS:20150813T074825Z:79546bd9-c87e-4f65-b899-0d34c050997d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServerRemoteDesktop/artifacttypes/vmimage/offers/WindowsServer/skus/Remote-Desktop-Session-Host/versions/4.0.20150513?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlclJlbW90ZURlc2t0b3AvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvUmVtb3RlLURlc2t0b3AtU2Vzc2lvbi1Ib3N0L3ZlcnNpb25zLzQuMC4yMDE1MDUxMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.20150513\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Remote-Desktop-Session-Host/Versions/4.0.20150513\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_base_edition-7_0_0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-7_0_0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_0_0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_0_0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_5_0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_5_5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "426" + "1303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72225,7 +73940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d8287d7-6a44-4f55-ba05-717aa41ea051" + "b4af830b-e29d-4d2f-9655-2e550d689cb7" ], "Cache-Control": [ "no-cache" @@ -72235,34 +73950,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12652" + "13512" ], "x-ms-correlation-request-id": [ - "30a449e5-d884-4485-937e-1b59c73d3fd6" + "c9cf7a16-eb0b-49f6-98b3-34838d15d972" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212647Z:30a449e5-d884-4485-937e-1b59c73d3fd6" + "WESTUS:20150813T074825Z:c9cf7a16-eb0b-49f6-98b3-34838d15d972" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-7_0_0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi03XzBfMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websphere-application-server-be\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websphere-application-server-lp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websphere-application-server-nde\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-7_0_0/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "839" + "312" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72277,7 +73992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35738288-0f61-4ed4-8e24-89af851bee23" + "c6aad2e0-b1c2-4988-87ff-d2882ece0153" ], "Cache-Control": [ "no-cache" @@ -72287,34 +74002,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12651" + "13511" ], "x-ms-correlation-request-id": [ - "1716108d-9a88-4ba1-8827-77686987892a" + "05f83c96-ffa0-4c12-b3c4-4800833f86b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:1716108d-9a88-4ba1-8827-77686987892a" + "WESTUS:20150813T074826Z:05f83c96-ffa0-4c12-b3c4-4800833f86b3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-7_0_0/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi03XzBfMC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_base_edition-7_0_0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-7_0_0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_0_0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_0_0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_5_0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_5_5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_5\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_base_edition-7_0_0\",\r\n \"product\": \"websphere-application-server-be\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-7_0_0/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1303" + "574" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72329,7 +74044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b29c444-4d7a-4653-92c6-a8abb01c36d7" + "e4594874-c19c-4ebb-b8b2-6a5d45a94612" ], "Cache-Control": [ "no-cache" @@ -72339,31 +74054,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12650" + "13510" ], "x-ms-correlation-request-id": [ - "0aa03173-f79d-415a-addf-1340d2b59edf" + "4911521f-d96e-4b55-be3e-266464fa4ff1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:0aa03173-f79d-415a-addf-1340d2b59edf" + "WESTUS:20150813T074826Z:4911521f-d96e-4b55-be3e-266464fa4ff1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-7_0_0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi03XzBfMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_0_0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzBfMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-7_0_0/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_0_0/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "312" @@ -72381,7 +74096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "860754ef-42f1-4c4b-838f-43484618716d" + "fb7af267-c3a6-4251-a082-62ecb7b28257" ], "Cache-Control": [ "no-cache" @@ -72391,31 +74106,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12649" + "13509" ], "x-ms-correlation-request-id": [ - "79b9297a-c6da-41dc-80c8-f221700837a7" + "96dc0145-5eec-4667-877e-656fd972a15e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:79b9297a-c6da-41dc-80c8-f221700837a7" + "WESTUS:20150813T074826Z:96dc0145-5eec-4667-877e-656fd972a15e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-7_0_0/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi03XzBfMC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_0_0/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzBfMC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_base_edition-7_0_0\",\r\n \"product\": \"websphere-application-server-be\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-7_0_0/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_0_0\",\r\n \"product\": \"websphere-application-server-be\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_0_0/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "574" @@ -72433,7 +74148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb5e7512-a7a5-4881-b733-3288b281fa99" + "1a6f2438-def5-4d84-9771-ec5bf1550cb7" ], "Cache-Control": [ "no-cache" @@ -72443,31 +74158,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12648" + "13508" ], "x-ms-correlation-request-id": [ - "65d615f3-7b1a-4251-aa53-e14f09713ea8" + "03ac8b84-1af5-4a64-ad17-c9fb1aed6a44" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:65d615f3-7b1a-4251-aa53-e14f09713ea8" + "WESTUS:20150813T074826Z:03ac8b84-1af5-4a64-ad17-c9fb1aed6a44" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_0_0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzBfMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_5_0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzVfMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_0_0/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_0/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "312" @@ -72485,7 +74200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9fcce121-cba8-41ec-bea9-e071eb03ee0e" + "6d76591c-fe94-4674-9158-6d20f7eb0925" ], "Cache-Control": [ "no-cache" @@ -72495,31 +74210,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12647" + "13507" ], "x-ms-correlation-request-id": [ - "f1b7ea82-3b06-4381-82b6-82902a35caac" + "36ebdb18-9b69-4f18-93e9-98346f960575" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:f1b7ea82-3b06-4381-82b6-82902a35caac" + "WESTUS:20150813T074826Z:36ebdb18-9b69-4f18-93e9-98346f960575" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_0_0/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzBfMC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_5_0/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzVfMC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_0_0\",\r\n \"product\": \"websphere-application-server-be\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_0_0/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_5_0\",\r\n \"product\": \"websphere-application-server-be\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_0/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "574" @@ -72537,7 +74252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e062a3b-35fa-4fdd-80f3-6f04cce827c5" + "9d71e6d0-c90f-48ea-aa69-94020e6af1b0" ], "Cache-Control": [ "no-cache" @@ -72547,31 +74262,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12646" + "13506" ], "x-ms-correlation-request-id": [ - "2e37e0ae-15a4-43b4-b909-b7b03ece2c20" + "424df6a1-67a2-404b-a8f2-8cc84aac248a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:2e37e0ae-15a4-43b4-b909-b7b03ece2c20" + "WESTUS:20150813T074826Z:424df6a1-67a2-404b-a8f2-8cc84aac248a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_5_0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzVfMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_5_5/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzVfNS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_0/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_5/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "312" @@ -72589,7 +74304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "335b0498-5cfa-4f36-9de0-15393301068e" + "46494ded-df6d-4886-849f-84ad0abafc0a" ], "Cache-Control": [ "no-cache" @@ -72599,31 +74314,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12645" + "13505" ], "x-ms-correlation-request-id": [ - "ddb2e18c-1f8c-47f4-925c-bfea5040f654" + "a1b3cf11-31c4-42fc-b593-e783395993b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:ddb2e18c-1f8c-47f4-925c-bfea5040f654" + "WESTUS:20150813T074826Z:a1b3cf11-31c4-42fc-b593-e783395993b4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_5_0/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzVfMC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_5_5/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzVfNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_5_0\",\r\n \"product\": \"websphere-application-server-be\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_0/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_5_5\",\r\n \"product\": \"websphere-application-server-be\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_5/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "574" @@ -72641,7 +74356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64a3770d-5b78-4173-aa80-9720e1e847a6" + "4e09193d-ef8f-48ab-8b7c-703c40021a37" ], "Cache-Control": [ "no-cache" @@ -72651,34 +74366,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12644" + "13504" ], "x-ms-correlation-request-id": [ - "b79cc161-4224-4762-825c-333ed8a0df79" + "3e49a67c-fc6b-49a5-a56e-006f581809a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:b79cc161-4224-4762-825c-333ed8a0df79" + "WESTUS:20150813T074826Z:3e49a67c-fc6b-49a5-a56e-006f581809a2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:47 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_5_5/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzVfNS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-lp/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1scC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_5/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_liberty_profile-8_5_5_1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_liberty_profile-8_5_5_6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_6\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "312" + "673" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72693,7 +74408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6db654fd-739d-404a-bdfe-2f7bed0308fd" + "dc27fa37-600b-43aa-9022-f27286b1de1c" ], "Cache-Control": [ "no-cache" @@ -72703,34 +74418,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12643" + "13503" ], "x-ms-correlation-request-id": [ - "df1aacca-00c5-4a26-a611-e55fd0b760ae" + "a6474ad0-ac43-42e0-b79e-158a59c7df41" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:df1aacca-00c5-4a26-a611-e55fd0b760ae" + "WESTUS:20150813T074826Z:a6474ad0-ac43-42e0-b79e-158a59c7df41" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-be/skus/midvision-ibm_was_base_edition-8_5_5/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1iZS9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2Jhc2VfZWRpdGlvbi04XzVfNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-lp/skus/midvision-ibm_was_liberty_profile-8_5_5_1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1scC9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2xpYmVydHlfcHJvZmlsZS04XzVfNV8xL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_base_edition-8_5_5\",\r\n \"product\": \"websphere-application-server-be\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-be/Skus/midvision-ibm_was_base_edition-8_5_5/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_1/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "574" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72745,7 +74460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d23ee09-76c1-4b78-a79f-250e763672c0" + "e555bc31-0078-4afc-b55d-ccf126b59b32" ], "Cache-Control": [ "no-cache" @@ -72755,34 +74470,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12642" + "13502" ], "x-ms-correlation-request-id": [ - "da4a9eeb-6181-4059-9b35-4f6bf274c69f" + "af901a3c-4df7-48d4-93e9-b0d39f4da6b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:da4a9eeb-6181-4059-9b35-4f6bf274c69f" + "WESTUS:20150813T074826Z:af901a3c-4df7-48d4-93e9-b0d39f4da6b7" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-lp/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1scC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-lp/skus/midvision-ibm_was_liberty_profile-8_5_5_1/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1scC9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2xpYmVydHlfcHJvZmlsZS04XzVfNV8xL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_liberty_profile-8_5_5_1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_liberty_profile-8_5_5_1\",\r\n \"product\": \"websphere-application-server-lp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_1/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "338" + "584" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72797,7 +74512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21dfe407-a26b-464d-ac83-6c89bb4d696f" + "72f80d95-27ed-4e03-951d-19678ff67914" ], "Cache-Control": [ "no-cache" @@ -72807,31 +74522,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12641" + "13501" ], "x-ms-correlation-request-id": [ - "418a2cc0-b0f0-4ce2-ac90-a4422f811d6d" + "2cbd6336-f742-4475-8f97-a93acc2eb5d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212648Z:418a2cc0-b0f0-4ce2-ac90-a4422f811d6d" + "WESTUS:20150813T074826Z:2cbd6336-f742-4475-8f97-a93acc2eb5d9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-lp/skus/midvision-ibm_was_liberty_profile-8_5_5_1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1scC9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2xpYmVydHlfcHJvZmlsZS04XzVfNV8xL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-lp/skus/midvision-ibm_was_liberty_profile-8_5_5_6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1scC9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2xpYmVydHlfcHJvZmlsZS04XzVfNV82L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_1/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_6/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "317" @@ -72849,7 +74564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f05dc122-ce7b-4f85-b594-61aac57f4a7e" + "3664265a-da49-45e2-97f1-c4450e39cf62" ], "Cache-Control": [ "no-cache" @@ -72859,31 +74574,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12640" + "13500" ], "x-ms-correlation-request-id": [ - "085f3ffa-4584-4cc1-a1a7-d0571a94c235" + "5af8918b-1252-473c-8d45-a52f69904be3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:085f3ffa-4584-4cc1-a1a7-d0571a94c235" + "WESTUS:20150813T074827Z:5af8918b-1252-473c-8d45-a52f69904be3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-lp/skus/midvision-ibm_was_liberty_profile-8_5_5_1/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1scC9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2xpYmVydHlfcHJvZmlsZS04XzVfNV8xL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-lp/skus/midvision-ibm_was_liberty_profile-8_5_5_6/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1scC9za3VzL21pZHZpc2lvbi1pYm1fd2FzX2xpYmVydHlfcHJvZmlsZS04XzVfNV82L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_liberty_profile-8_5_5_1\",\r\n \"product\": \"websphere-application-server-lp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_1/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_liberty_profile-8_5_5_6\",\r\n \"product\": \"websphere-application-server-lp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-lp/Skus/midvision-ibm_was_liberty_profile-8_5_5_6/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "584" @@ -72901,7 +74616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "746838c2-0d4a-419d-8311-5df926cd8820" + "af5f1ff9-0dcd-4fdb-9a0b-d9c1906cae4a" ], "Cache-Control": [ "no-cache" @@ -72911,31 +74626,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12639" + "13499" ], "x-ms-correlation-request-id": [ - "6db3b4a4-ac31-4d48-aabf-5c0ee9ff112c" + "725541d8-1316-40dc-9fbc-136217314398" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:6db3b4a4-ac31-4d48-aabf-5c0ee9ff112c" + "WESTUS:20150813T074827Z:725541d8-1316-40dc-9fbc-136217314398" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-7_0_0_29\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_29\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-7_0_0_37\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_37\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_0_0_10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_0_0_7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_0_2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_0_2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_5_1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_5_6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_6\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-7_0_0_29\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_29\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-7_0_0_37\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_37\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_0_0_10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_0_0_7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_0_2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_0_2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_5_1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_5_6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_6\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "2291" @@ -72953,7 +74668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bca6701-df12-4624-97a2-59278a5aa213" + "7d1bcff1-451a-471a-87e6-4ae45a7ab796" ], "Cache-Control": [ "no-cache" @@ -72963,31 +74678,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12638" + "13498" ], "x-ms-correlation-request-id": [ - "29d9e270-2a25-43d8-8c86-09d4e122f1ff" + "a0cbe6d2-472c-4f4a-bc2e-366d04f147f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:29d9e270-2a25-43d8-8c86-09d4e122f1ff" + "WESTUS:20150813T074827Z:a0cbe6d2-472c-4f4a-bc2e-366d04f147f6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-7_0_0_29/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLTdfMF8wXzI5L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-7_0_0_29/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLTdfMF8wXzI5L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_29/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_29/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "314" @@ -73005,7 +74720,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f6c5ffe-2810-4d8d-a13b-f67c3b150a3c" + "36197369-c052-4346-a8d7-6c8b8764b9b6" ], "Cache-Control": [ "no-cache" @@ -73015,31 +74730,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12637" + "13497" ], "x-ms-correlation-request-id": [ - "8ab369ac-67ae-426d-a09c-af01d668bfc9" + "378dc3f0-302d-4785-9d53-d0965b1fc6d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:8ab369ac-67ae-426d-a09c-af01d668bfc9" + "WESTUS:20150813T074827Z:378dc3f0-302d-4785-9d53-d0965b1fc6d0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-7_0_0_29/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLTdfMF8wXzI5L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-7_0_0_29/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLTdfMF8wXzI5L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-7_0_0_29\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_29/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-7_0_0_29\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_29/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "578" @@ -73057,7 +74772,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "897ccc62-720a-43c9-9561-ca07ad07ec39" + "446605dd-7074-4a34-a331-84d8ef2a13f6" ], "Cache-Control": [ "no-cache" @@ -73067,31 +74782,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12636" + "13496" ], "x-ms-correlation-request-id": [ - "46740cad-5c5c-444a-a5ad-d823f0372335" + "3eabd2d9-789c-424c-a67f-31d098bf4643" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:46740cad-5c5c-444a-a5ad-d823f0372335" + "WESTUS:20150813T074827Z:3eabd2d9-789c-424c-a67f-31d098bf4643" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-7_0_0_37/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLTdfMF8wXzM3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-7_0_0_37/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLTdfMF8wXzM3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_37/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_37/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "314" @@ -73109,7 +74824,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c442f42a-f600-4d04-afdf-aa1cb0d38fb3" + "e74964f5-c8ad-445e-a9b0-150fb46c3b79" ], "Cache-Control": [ "no-cache" @@ -73119,31 +74834,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12635" + "13495" ], "x-ms-correlation-request-id": [ - "64df02a0-8b6b-4445-ae2f-0786d441319d" + "e80db1c5-7528-4408-94fd-b4eaeccf8421" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:64df02a0-8b6b-4445-ae2f-0786d441319d" + "WESTUS:20150813T074827Z:e80db1c5-7528-4408-94fd-b4eaeccf8421" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-7_0_0_37/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLTdfMF8wXzM3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-7_0_0_37/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLTdfMF8wXzM3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-7_0_0_37\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_37/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-7_0_0_37\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-7_0_0_37/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "578" @@ -73161,7 +74876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa74dafb-7ba1-4c06-8394-a91125609349" + "2abce3a6-46f2-499d-97ba-0ba1966f4f92" ], "Cache-Control": [ "no-cache" @@ -73171,31 +74886,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12634" + "13494" ], "x-ms-correlation-request-id": [ - "d4d82fc6-bdc8-4af8-8c8c-b88e7a9407ab" + "2a2a2ed6-f3d4-445c-989d-f5ec282c5063" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:d4d82fc6-bdc8-4af8-8c8c-b88e7a9407ab" + "WESTUS:20150813T074827Z:2a2a2ed6-f3d4-445c-989d-f5ec282c5063" ], "Date": [ - "Wed, 05 Aug 2015 21:26:48 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_0_0_10/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfMF8wXzEwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_0_0_10/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfMF8wXzEwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_10/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_10/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "314" @@ -73213,7 +74928,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72febd9c-6770-456d-9e5f-62edd0eecfdb" + "7811fd09-c808-48df-a60f-58062f881594" ], "Cache-Control": [ "no-cache" @@ -73223,31 +74938,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12633" + "13493" ], "x-ms-correlation-request-id": [ - "cddde8bf-e131-4a45-985c-70e92a974b9c" + "26224744-2b97-448a-96aa-69c095088341" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:cddde8bf-e131-4a45-985c-70e92a974b9c" + "WESTUS:20150813T074827Z:26224744-2b97-448a-96aa-69c095088341" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_0_0_10/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfMF8wXzEwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_0_0_10/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfMF8wXzEwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_0_0_10\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_10/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_0_0_10\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_10/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "578" @@ -73265,7 +74980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b54bf233-e82f-49c2-b497-25179fa372d3" + "e6927c4c-b5d6-49e9-80e9-1a0898cbea5a" ], "Cache-Control": [ "no-cache" @@ -73275,31 +74990,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12632" + "13492" ], "x-ms-correlation-request-id": [ - "a18d8bf1-cd15-484c-83d0-b081283e53c4" + "472a311a-1d13-4841-ac3f-6e664c5f69db" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212649Z:a18d8bf1-cd15-484c-83d0-b081283e53c4" + "WESTUS:20150813T074827Z:472a311a-1d13-4841-ac3f-6e664c5f69db" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_0_0_7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfMF8wXzcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_0_0_7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfMF8wXzcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_7/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_7/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -73317,7 +75032,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3971597c-3cb2-4ca2-aa10-8186f38fa71a" + "dbc23872-8be0-4225-bd6f-1b4230a15b46" ], "Cache-Control": [ "no-cache" @@ -73327,31 +75042,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12631" + "13491" ], "x-ms-correlation-request-id": [ - "a1c3a525-ac60-4e46-bc19-c68ed3d726f8" + "c7849d9e-6dc1-4b5a-ac75-c821539d1422" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:a1c3a525-ac60-4e46-bc19-c68ed3d726f8" + "WESTUS:20150813T074827Z:c7849d9e-6dc1-4b5a-ac75-c821539d1422" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_0_0_7/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfMF8wXzcvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_0_0_7/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfMF8wXzcvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_0_0_7\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_7/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_0_0_7\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_0_0_7/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "576" @@ -73369,7 +75084,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c008247c-a44a-4a95-add8-9fc1a5934efd" + "b97f30ee-22a8-42f0-b1c7-91aff9080cca" ], "Cache-Control": [ "no-cache" @@ -73379,31 +75094,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12630" + "13490" ], "x-ms-correlation-request-id": [ - "60292fd7-91f8-44fb-b89e-3220286bddad" + "519930ad-f766-4aaa-bd45-562e0177559c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:60292fd7-91f8-44fb-b89e-3220286bddad" + "WESTUS:20150813T074828Z:519930ad-f766-4aaa-bd45-562e0177559c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_0_2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV8wXzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_0_2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV8wXzIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_0_2/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_0_2/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -73421,7 +75136,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5238f31f-40ea-45b7-96ec-8d009a2e8d3d" + "0ac3dfa5-6905-4356-9452-48732aedecb2" ], "Cache-Control": [ "no-cache" @@ -73431,31 +75146,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12629" + "13489" ], "x-ms-correlation-request-id": [ - "1292b801-fe6c-431f-85de-55d5845a8252" + "7183c26f-883f-478e-9c6f-1097040130f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:1292b801-fe6c-431f-85de-55d5845a8252" + "WESTUS:20150813T074828Z:7183c26f-883f-478e-9c6f-1097040130f0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_0_2/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV8wXzIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_0_2/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV8wXzIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_0_2\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_0_2/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_0_2\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_0_2/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "576" @@ -73473,7 +75188,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c168621-627a-48a7-b36c-7e401411a523" + "fc6f4616-cca8-4775-a95b-12a96426eba5" ], "Cache-Control": [ "no-cache" @@ -73483,31 +75198,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12628" + "13488" ], "x-ms-correlation-request-id": [ - "8d0a52e1-80a0-4a65-8a41-0238c62f7359" + "f13d00e3-3ec9-4880-8ba1-49b42c078961" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:8d0a52e1-80a0-4a65-8a41-0238c62f7359" + "WESTUS:20150813T074828Z:f13d00e3-3ec9-4880-8ba1-49b42c078961" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_5_1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV81XzEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_5_1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV81XzEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_1/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_1/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -73525,7 +75240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "244fe782-4e6e-4a21-92c0-1bf3a284725c" + "4992b4c2-f388-49b4-b124-58382f753a60" ], "Cache-Control": [ "no-cache" @@ -73535,31 +75250,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12627" + "13487" ], "x-ms-correlation-request-id": [ - "2dbdd595-3b56-4903-9b1a-51551ddc3d4f" + "e877a0a7-fa4b-416a-8139-2ccd8e2913bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:2dbdd595-3b56-4903-9b1a-51551ddc3d4f" + "WESTUS:20150813T074828Z:e877a0a7-fa4b-416a-8139-2ccd8e2913bb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_5_1/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV81XzEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_5_1/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV81XzEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_5_1\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_1/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_5_1\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_1/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "576" @@ -73577,7 +75292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bea9b466-ae50-46c6-9d6b-8fdd66661431" + "e9b62138-4208-489e-b7cb-b6b5def4dc90" ], "Cache-Control": [ "no-cache" @@ -73587,31 +75302,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12626" + "13486" ], "x-ms-correlation-request-id": [ - "1d0ad584-d641-4c8a-9287-888f5b4d3e50" + "42ae6a32-ac1b-4a76-bd21-51282771df96" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:1d0ad584-d641-4c8a-9287-888f5b4d3e50" + "WESTUS:20150813T074828Z:42ae6a32-ac1b-4a76-bd21-51282771df96" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_5_6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV81XzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_5_6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV81XzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_6/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_6/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "313" @@ -73629,7 +75344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eaa254b4-32ed-44e8-b3d5-00103e592f48" + "122c2317-5745-4092-a3cb-2fa6f68f6e45" ], "Cache-Control": [ "no-cache" @@ -73639,31 +75354,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12625" + "13485" ], "x-ms-correlation-request-id": [ - "71ae7599-a1d2-4b38-8699-242e0536359f" + "d6cf25ae-6bf7-472d-ba7d-71d910b3ab92" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:71ae7599-a1d2-4b38-8699-242e0536359f" + "WESTUS:20150813T074828Z:d6cf25ae-6bf7-472d-ba7d-71d910b3ab92" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_5_6/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV81XzYvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/midvision/artifacttypes/vmimage/offers/websphere-application-server-nde/skus/midvision-ibm_was_nd_edition-8_5_5_6/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbWlkdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvd2Vic3BoZXJlLWFwcGxpY2F0aW9uLXNlcnZlci1uZGUvc2t1cy9taWR2aXNpb24taWJtX3dhc19uZF9lZGl0aW9uLThfNV81XzYvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_5_6\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_6/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"midvision\",\r\n \"name\": \"midvision-ibm_was_nd_edition-8_5_5_6\",\r\n \"product\": \"websphere-application-server-nde\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision/ArtifactTypes/VMImage/Offers/websphere-application-server-nde/Skus/midvision-ibm_was_nd_edition-8_5_5_6/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "576" @@ -73681,7 +75396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b359b810-5445-4bd2-8814-8a8673dd6de9" + "4f05f89c-c9d4-4ddf-8f95-a2abf6499d7f" ], "Cache-Control": [ "no-cache" @@ -73691,31 +75406,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12624" + "13484" ], "x-ms-correlation-request-id": [ - "0ae1f035-59d7-4d2d-ba8a-eedcfdac06c4" + "3d33200a-5d6d-4a32-8efc-5bc3b07f93cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:0ae1f035-59d7-4d2d-ba8a-eedcfdac06c4" + "WESTUS:20150813T074828Z:3d33200a-5d6d-4a32-8efc-5bc3b07f93cb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:49 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mokxa-technologies/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW9reGEtdGVjaG5vbG9naWVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mokxa-technologies/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW9reGEtdGVjaG5vbG9naWVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"joget-enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies/ArtifactTypes/VMImage/Offers/joget-enterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"joget-enterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies/ArtifactTypes/VMImage/Offers/joget-enterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -73733,7 +75448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d033522-0f4a-44ec-a362-ef90a70450a8" + "7fcb663e-9329-45b2-bdd1-1d19923681bf" ], "Cache-Control": [ "no-cache" @@ -73743,31 +75458,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12623" + "13483" ], "x-ms-correlation-request-id": [ - "81bfd097-52ae-4109-9dfa-6001ef1c9228" + "9da7a69b-7107-4ec5-b6b4-6612db6dea07" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:81bfd097-52ae-4109-9dfa-6001ef1c9228" + "WESTUS:20150813T074828Z:9da7a69b-7107-4ec5-b6b4-6612db6dea07" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mokxa-technologies/artifacttypes/vmimage/offers/joget-enterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW9reGEtdGVjaG5vbG9naWVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvam9nZXQtZW50ZXJwcmlzZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mokxa-technologies/artifacttypes/vmimage/offers/joget-enterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW9reGEtdGVjaG5vbG9naWVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvam9nZXQtZW50ZXJwcmlzZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"joget-ee-v414\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies/ArtifactTypes/VMImage/Offers/joget-enterprise/Skus/joget-ee-v414\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"joget-ee-v414\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies/ArtifactTypes/VMImage/Offers/joget-enterprise/Skus/joget-ee-v414\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -73785,7 +75500,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "028961b2-24cd-4984-b2af-c6db45944f79" + "7d7d653a-ecf8-4993-b4cd-49ed8a56d82c" ], "Cache-Control": [ "no-cache" @@ -73795,31 +75510,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12622" + "13482" ], "x-ms-correlation-request-id": [ - "70d4b2d4-3e12-4b6b-96ee-dbe8f47f1b31" + "07e3fb35-1958-47e5-93f2-ecd1b56e78b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212650Z:70d4b2d4-3e12-4b6b-96ee-dbe8f47f1b31" + "WESTUS:20150813T074828Z:07e3fb35-1958-47e5-93f2-ecd1b56e78b6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mokxa-technologies/artifacttypes/vmimage/offers/joget-enterprise/skus/joget-ee-v414/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW9reGEtdGVjaG5vbG9naWVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvam9nZXQtZW50ZXJwcmlzZS9za3VzL2pvZ2V0LWVlLXY0MTQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mokxa-technologies/artifacttypes/vmimage/offers/joget-enterprise/skus/joget-ee-v414/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW9reGEtdGVjaG5vbG9naWVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvam9nZXQtZW50ZXJwcmlzZS9za3VzL2pvZ2V0LWVlLXY0MTQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies/ArtifactTypes/VMImage/Offers/joget-enterprise/Skus/joget-ee-v414/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies/ArtifactTypes/VMImage/Offers/joget-enterprise/Skus/joget-ee-v414/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "283" @@ -73837,7 +75552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b7e3eda-dbc3-46fc-8453-b50b7df1083f" + "ac750ce6-20b2-46ff-975f-03b67efaaa3a" ], "Cache-Control": [ "no-cache" @@ -73847,31 +75562,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12621" + "13481" ], "x-ms-correlation-request-id": [ - "fa9bad22-283c-48b8-a47f-16ef082d7e9f" + "93bb161c-862c-4748-a7c8-8bd538514a91" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:fa9bad22-283c-48b8-a47f-16ef082d7e9f" + "WESTUS:20150813T074828Z:93bb161c-862c-4748-a7c8-8bd538514a91" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mokxa-technologies/artifacttypes/vmimage/offers/joget-enterprise/skus/joget-ee-v414/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW9reGEtdGVjaG5vbG9naWVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvam9nZXQtZW50ZXJwcmlzZS9za3VzL2pvZ2V0LWVlLXY0MTQvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mokxa-technologies/artifacttypes/vmimage/offers/joget-enterprise/skus/joget-ee-v414/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW9reGEtdGVjaG5vbG9naWVzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvam9nZXQtZW50ZXJwcmlzZS9za3VzL2pvZ2V0LWVlLXY0MTQvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mokxa-technologies\",\r\n \"name\": \"joget-ee-v414\",\r\n \"product\": \"joget-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies/ArtifactTypes/VMImage/Offers/joget-enterprise/Skus/joget-ee-v414/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mokxa-technologies\",\r\n \"name\": \"joget-ee-v414\",\r\n \"product\": \"joget-enterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies/ArtifactTypes/VMImage/Offers/joget-enterprise/Skus/joget-ee-v414/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "518" @@ -73889,7 +75604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4ef6b76-7f2d-4aad-a66f-df7651006f9e" + "877dc6ac-649c-4791-a0da-c0e785a47a74" ], "Cache-Control": [ "no-cache" @@ -73899,31 +75614,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12620" + "13480" ], "x-ms-correlation-request-id": [ - "c4b30dd2-aab2-4f40-bbb5-9d65ed9911bb" + "38e507d7-8cbd-47b1-80ce-c88c5da9b1ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:c4b30dd2-aab2-4f40-bbb5-9d65ed9911bb" + "WESTUS:20150813T074829Z:38e507d7-8cbd-47b1-80ce-c88c5da9b1ee" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/moviemasher/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW92aWVtYXNoZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/moviemasher/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW92aWVtYXNoZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "243" @@ -73941,7 +75656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4d13a8d-ba11-4dc3-8507-35f3e551a573" + "65bd11d4-f9da-49ed-adff-0a8715e6d0db" ], "Cache-Control": [ "no-cache" @@ -73951,31 +75666,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12619" + "13479" ], "x-ms-correlation-request-id": [ - "711a0f74-b43c-4d16-ba0d-ba94835a3573" + "83eb6a4f-3701-4340-9ca4-1c0551945121" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:711a0f74-b43c-4d16-ba0d-ba94835a3573" + "WESTUS:20150813T074829Z:83eb6a4f-3701-4340-9ca4-1c0551945121" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/moviemasher/artifacttypes/vmimage/offers/moviemasher/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW92aWVtYXNoZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tb3ZpZW1hc2hlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/moviemasher/artifacttypes/vmimage/offers/moviemasher/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW92aWVtYXNoZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tb3ZpZW1hc2hlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher/Skus/moviemasher\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher/Skus/moviemasher\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -73993,7 +75708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e220471-9fbe-4732-93cf-83211a2146e4" + "34e8f6c0-2bce-4b0e-be7c-e0fb9fbdc43c" ], "Cache-Control": [ "no-cache" @@ -74003,31 +75718,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12618" + "13478" ], "x-ms-correlation-request-id": [ - "99654007-5e35-43b7-a8b5-7a8f0cc0f139" + "fb211ae3-6f60-4c14-b027-b35eb4de914e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:99654007-5e35-43b7-a8b5-7a8f0cc0f139" + "WESTUS:20150813T074829Z:fb211ae3-6f60-4c14-b027-b35eb4de914e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/moviemasher/artifacttypes/vmimage/offers/moviemasher/skus/moviemasher/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW92aWVtYXNoZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tb3ZpZW1hc2hlci9za3VzL21vdmllbWFzaGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/moviemasher/artifacttypes/vmimage/offers/moviemasher/skus/moviemasher/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW92aWVtYXNoZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tb3ZpZW1hc2hlci9za3VzL21vdmllbWFzaGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher/Skus/moviemasher/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher/Skus/moviemasher/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -74045,7 +75760,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07e4a840-6239-48be-b060-9454fe43daca" + "06618dcd-ed43-412d-8fdd-245d6ad506d4" ], "Cache-Control": [ "no-cache" @@ -74055,31 +75770,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12617" + "13477" ], "x-ms-correlation-request-id": [ - "4e24b233-7752-48cc-b687-2ea87072f38e" + "0ff4592a-6b12-4a12-a0ec-d59998f0798e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:4e24b233-7752-48cc-b687-2ea87072f38e" + "WESTUS:20150813T074829Z:0ff4592a-6b12-4a12-a0ec-d59998f0798e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/moviemasher/artifacttypes/vmimage/offers/moviemasher/skus/moviemasher/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW92aWVtYXNoZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tb3ZpZW1hc2hlci9za3VzL21vdmllbWFzaGVyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/moviemasher/artifacttypes/vmimage/offers/moviemasher/skus/moviemasher/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbW92aWVtYXNoZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tb3ZpZW1hc2hlci9za3VzL21vdmllbWFzaGVyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"moviemasher\",\r\n \"name\": \"moviemasher\",\r\n \"product\": \"moviemasher\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher/Skus/moviemasher/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"moviemasher\",\r\n \"name\": \"moviemasher\",\r\n \"product\": \"moviemasher\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher/Skus/moviemasher/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "488" @@ -74097,7 +75812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e26c2d7-2fc9-4ceb-819a-152e12c89c75" + "79620db6-ed46-474e-86f1-b892b4df9779" ], "Cache-Control": [ "no-cache" @@ -74107,31 +75822,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12616" + "13476" ], "x-ms-correlation-request-id": [ - "cc2f05c8-caa4-4d01-9b57-cee74c086fe6" + "47bf26c0-80b2-48bc-be3d-f384f43d61ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:cc2f05c8-caa4-4d01-9b57-cee74c086fe6" + "WESTUS:20150813T074829Z:47bf26c0-80b2-48bc-be3d-f384f43d61ca" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ibm-db2-10-5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/ibm-db2-10-5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mq-v8-0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/mq-v8-0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oracle-db-11g\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oracle-db-12c\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"was-8-5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/was-8-5\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ibm-db2-10-5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/ibm-db2-10-5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mq-v8-0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/mq-v8-0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oracle-db-11g\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"oracle-db-12c\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"was-8-5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/was-8-5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1192" @@ -74149,7 +75864,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7636162b-47a7-4d94-a123-9dd0f28d2fdb" + "9a932d08-a367-4ae4-9eed-262d7722bf02" ], "Cache-Control": [ "no-cache" @@ -74159,31 +75874,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12615" + "13475" ], "x-ms-correlation-request-id": [ - "75520238-e455-4655-b5e7-8327cba26747" + "f68c1e47-39e2-439b-93c0-0156f2591e06" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:75520238-e455-4655-b5e7-8327cba26747" + "WESTUS:20150813T074829Z:f68c1e47-39e2-439b-93c0-0156f2591e06" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/ibm-db2-10-5/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2libS1kYjItMTAtNS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/ibm-db2-10-5/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2libS1kYjItMTAtNS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db2-10-5-0-4-aws\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/ibm-db2-10-5/Skus/db2-10-5-0-4-aws\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db2-10-5-0-4-aws\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/ibm-db2-10-5/Skus/db2-10-5-0-4-aws\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "270" @@ -74201,7 +75916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d555c0f1-a114-480e-8e7d-b37a7755c55b" + "3223ef2d-ef69-40d2-a0b3-8fe8054dbdfb" ], "Cache-Control": [ "no-cache" @@ -74211,31 +75926,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12614" + "13474" ], "x-ms-correlation-request-id": [ - "fa085fe5-ca9d-44c4-bef5-6ca9ae991724" + "df67f9f6-2d39-49cc-a1d0-d128fdf352e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:fa085fe5-ca9d-44c4-bef5-6ca9ae991724" + "WESTUS:20150813T074829Z:df67f9f6-2d39-49cc-a1d0-d128fdf352e6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/ibm-db2-10-5/skus/db2-10-5-0-4-aws/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2libS1kYjItMTAtNS9za3VzL2RiMi0xMC01LTAtNC1hd3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/ibm-db2-10-5/skus/db2-10-5-0-4-aws/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2libS1kYjItMTAtNS9za3VzL2RiMi0xMC01LTAtNC1hd3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/ibm-db2-10-5/Skus/db2-10-5-0-4-aws/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/ibm-db2-10-5/Skus/db2-10-5-0-4-aws/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "274" @@ -74253,7 +75968,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "803ba45d-29c6-4ca2-9515-916b2a76a6b1" + "ccf684a5-ccfb-4bf2-834d-2d46cf319469" ], "Cache-Control": [ "no-cache" @@ -74263,31 +75978,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12613" + "13473" ], "x-ms-correlation-request-id": [ - "7bf4d5dd-aaf0-4702-96eb-fd13dae0f3bf" + "5a56d070-a71d-448c-a0ac-34a98b0982f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:7bf4d5dd-aaf0-4702-96eb-fd13dae0f3bf" + "WESTUS:20150813T074830Z:5a56d070-a71d-448c-a0ac-34a98b0982f6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:50 GMT" + "Thu, 13 Aug 2015 07:48:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/ibm-db2-10-5/skus/db2-10-5-0-4-aws/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2libS1kYjItMTAtNS9za3VzL2RiMi0xMC01LTAtNC1hd3MvdmVyc2lvbnMvMS4wLjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/ibm-db2-10-5/skus/db2-10-5-0-4-aws/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2libS1kYjItMTAtNS9za3VzL2RiMi0xMC01LTAtNC1hd3MvdmVyc2lvbnMvMS4wLjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db2-10-5-0-4-aws\",\r\n \"product\": \"ibm-db2-10-5\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/ibm-db2-10-5/Skus/db2-10-5-0-4-aws/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db2-10-5-0-4-aws\",\r\n \"product\": \"ibm-db2-10-5\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/ibm-db2-10-5/Skus/db2-10-5-0-4-aws/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "500" @@ -74305,7 +76020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5386534f-5fee-4e93-9643-f3b41dae4461" + "42bd9647-154e-4910-ad45-870df878b71f" ], "Cache-Control": [ "no-cache" @@ -74315,31 +76030,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12612" + "13472" ], "x-ms-correlation-request-id": [ - "dd207a7e-8340-4b34-bc28-b397642081c0" + "0f24f09c-2b7d-4858-83f9-f2558d8377b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212651Z:dd207a7e-8340-4b34-bc28-b397642081c0" + "WESTUS:20150813T074830Z:0f24f09c-2b7d-4858-83f9-f2558d8377b4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/mq-v8-0/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21xLXY4LTAvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/mq-v8-0/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21xLXY4LTAvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mq-v8-0-0-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/mq-v8-0/Skus/mq-v8-0-0-1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mq-v8-0-0-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/mq-v8-0/Skus/mq-v8-0-0-1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "255" @@ -74357,7 +76072,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f21efbb-49e4-48fb-a6a9-c10821769382" + "04ee07cd-7b93-4ac8-b9cb-4e32d3adc2a4" ], "Cache-Control": [ "no-cache" @@ -74367,31 +76082,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12611" + "13471" ], "x-ms-correlation-request-id": [ - "6ee4f806-af1b-4fc3-be16-9f44a37643ae" + "0dfa85be-ce36-4b02-80cd-f13a61e9756d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:6ee4f806-af1b-4fc3-be16-9f44a37643ae" + "WESTUS:20150813T074830Z:0dfa85be-ce36-4b02-80cd-f13a61e9756d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/mq-v8-0/skus/mq-v8-0-0-1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21xLXY4LTAvc2t1cy9tcS12OC0wLTAtMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/mq-v8-0/skus/mq-v8-0-0-1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21xLXY4LTAvc2t1cy9tcS12OC0wLTAtMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/mq-v8-0/Skus/mq-v8-0-0-1/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/mq-v8-0/Skus/mq-v8-0-0-1/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -74409,7 +76124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c648780-b4ef-4cb0-a969-1c47ea5fe86b" + "6c7e63b5-3d0d-4027-b2b6-a711f3af0fc5" ], "Cache-Control": [ "no-cache" @@ -74419,31 +76134,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12610" + "13470" ], "x-ms-correlation-request-id": [ - "fcfdfe84-b129-4c4b-91f1-bd4c86e176d3" + "601b6cdb-c281-407d-b9f6-829eaef1685a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:fcfdfe84-b129-4c4b-91f1-bd4c86e176d3" + "WESTUS:20150813T074830Z:601b6cdb-c281-407d-b9f6-829eaef1685a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/mq-v8-0/skus/mq-v8-0-0-1/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21xLXY4LTAvc2t1cy9tcS12OC0wLTAtMS92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/mq-v8-0/skus/mq-v8-0-0-1/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL21xLXY4LTAvc2t1cy9tcS12OC0wLTAtMS92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"mq-v8-0-0-1\",\r\n \"product\": \"mq-v8-0\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/mq-v8-0/Skus/mq-v8-0-0-1/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"mq-v8-0-0-1\",\r\n \"product\": \"mq-v8-0\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/mq-v8-0/Skus/mq-v8-0-0-1/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "480" @@ -74461,7 +76176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0da8311b-4420-4610-b8a7-7a35ccd608f5" + "2cfbe4f3-7e48-4238-9ade-ed09b265d868" ], "Cache-Control": [ "no-cache" @@ -74471,31 +76186,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12609" + "13469" ], "x-ms-correlation-request-id": [ - "3f7c73e1-4496-472b-a868-08c15334f88c" + "45680910-0b93-4994-82a4-3004ce3cc6d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:3f7c73e1-4496-472b-a868-08c15334f88c" + "WESTUS:20150813T074830Z:45680910-0b93-4994-82a4-3004ce3cc6d4" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db-11g-ee-all\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-all\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db-11g-ee-popular\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-popular\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db-11g-ee-all\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-all\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db-11g-ee-popular\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-popular\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "535" @@ -74513,7 +76228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99d13b89-a258-41da-8e38-14faa2002914" + "834a626b-d760-470c-9c97-8f3d2422eb86" ], "Cache-Control": [ "no-cache" @@ -74523,31 +76238,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12608" + "13468" ], "x-ms-correlation-request-id": [ - "c7b539d8-5056-48ff-a5ea-28de130d0577" + "100bca8b-140b-4f0f-9891-3117b3eb7b9c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:c7b539d8-5056-48ff-a5ea-28de130d0577" + "WESTUS:20150813T074830Z:100bca8b-140b-4f0f-9891-3117b3eb7b9c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus/db-11g-ee-all/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cy9kYi0xMWctZWUtYWxsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus/db-11g-ee-all/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cy9kYi0xMWctZWUtYWxsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-all/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-all/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -74565,7 +76280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93fe38a6-09ba-49b8-af33-ab4d8ef8c6ee" + "4c49e5cb-f0ee-4e44-8933-9e84a418bb9b" ], "Cache-Control": [ "no-cache" @@ -74575,31 +76290,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12607" + "13467" ], "x-ms-correlation-request-id": [ - "a9e0e10f-a99a-4cd1-a4b8-c9b79b0f08e0" + "bf266af6-9519-4439-92fa-02cfef72a668" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:a9e0e10f-a99a-4cd1-a4b8-c9b79b0f08e0" + "WESTUS:20150813T074830Z:bf266af6-9519-4439-92fa-02cfef72a668" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus/db-11g-ee-all/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cy9kYi0xMWctZWUtYWxsL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus/db-11g-ee-all/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cy9kYi0xMWctZWUtYWxsL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db-11g-ee-all\",\r\n \"product\": \"oracle-db-11g\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-all/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db-11g-ee-all\",\r\n \"product\": \"oracle-db-11g\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-all/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "496" @@ -74617,7 +76332,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99c849bb-e43a-4bbf-861e-505ac33942e3" + "9e3f5049-9733-4b74-81f3-a47108a1a8e1" ], "Cache-Control": [ "no-cache" @@ -74627,31 +76342,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12606" + "13466" ], "x-ms-correlation-request-id": [ - "17bf31a3-c4ac-46f2-8f90-312ace886c0d" + "72c53397-09bb-4df2-9eee-71a638c56fb6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:17bf31a3-c4ac-46f2-8f90-312ace886c0d" + "WESTUS:20150813T074830Z:72c53397-09bb-4df2-9eee-71a638c56fb6" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus/db-11g-ee-popular/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cy9kYi0xMWctZWUtcG9wdWxhci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus/db-11g-ee-popular/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cy9kYi0xMWctZWUtcG9wdWxhci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-popular/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-popular/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -74669,7 +76384,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "153819bd-3f10-41cb-b4ca-f4f4b035b0d4" + "087aa885-dbb7-4089-9c86-c8ca5f3152b6" ], "Cache-Control": [ "no-cache" @@ -74679,31 +76394,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12605" + "13465" ], "x-ms-correlation-request-id": [ - "cf60492e-888d-43ec-91c6-1559a9accfb7" + "5777d381-ec5a-4d95-b1c5-0587f5ce9e04" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:cf60492e-888d-43ec-91c6-1559a9accfb7" + "WESTUS:20150813T074831Z:5777d381-ec5a-4d95-b1c5-0587f5ce9e04" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus/db-11g-ee-popular/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cy9kYi0xMWctZWUtcG9wdWxhci92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-11g/skus/db-11g-ee-popular/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMWcvc2t1cy9kYi0xMWctZWUtcG9wdWxhci92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db-11g-ee-popular\",\r\n \"product\": \"oracle-db-11g\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-popular/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db-11g-ee-popular\",\r\n \"product\": \"oracle-db-11g\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-11g/Skus/db-11g-ee-popular/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "504" @@ -74721,7 +76436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "226bc2c5-5680-4d6e-b23f-c66684f56b32" + "2d2c72bb-fe11-4943-8034-f94f899d595e" ], "Cache-Control": [ "no-cache" @@ -74731,31 +76446,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12604" + "13464" ], "x-ms-correlation-request-id": [ - "92a5fb74-f104-489c-bc86-dd8ae04fcf1e" + "da141806-cbf7-41b4-838c-39955158affb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:92a5fb74-f104-489c-bc86-dd8ae04fcf1e" + "WESTUS:20150813T074831Z:da141806-cbf7-41b4-838c-39955158affb" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db-12c-ee-all\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-all\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db-12c-ee-popular\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-popular\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db-12c-ee-all\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-all\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"db-12c-ee-popular\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-popular\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "535" @@ -74773,7 +76488,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9def6e7c-bf7e-47b9-a59e-09cc628efa2a" + "a684e632-4efa-4fba-865b-14f2d7e0f542" ], "Cache-Control": [ "no-cache" @@ -74783,31 +76498,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12603" + "13463" ], "x-ms-correlation-request-id": [ - "9b15d733-54d9-40f9-8c51-2f1cca142996" + "471345e1-da8d-4854-aaf4-1c2e366e1fae" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:9b15d733-54d9-40f9-8c51-2f1cca142996" + "WESTUS:20150813T074831Z:471345e1-da8d-4854-aaf4-1c2e366e1fae" ], "Date": [ - "Wed, 05 Aug 2015 21:26:51 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus/db-12c-ee-all/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cy9kYi0xMmMtZWUtYWxsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus/db-12c-ee-all/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cy9kYi0xMmMtZWUtYWxsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-all/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-all/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -74825,7 +76540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6cda9db2-7526-4cd5-87b5-6b7984aed3da" + "7a25d62b-7d3d-439f-b5df-257e8e2c4cfe" ], "Cache-Control": [ "no-cache" @@ -74835,31 +76550,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12602" + "13462" ], "x-ms-correlation-request-id": [ - "6a5a2a9d-0938-4dca-8645-2882d88c7517" + "89dddd27-fb3f-45e9-9547-6e37a4b84562" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212652Z:6a5a2a9d-0938-4dca-8645-2882d88c7517" + "WESTUS:20150813T074831Z:89dddd27-fb3f-45e9-9547-6e37a4b84562" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus/db-12c-ee-all/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cy9kYi0xMmMtZWUtYWxsL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus/db-12c-ee-all/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cy9kYi0xMmMtZWUtYWxsL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db-12c-ee-all\",\r\n \"product\": \"oracle-db-12c\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-all/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db-12c-ee-all\",\r\n \"product\": \"oracle-db-12c\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-all/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "496" @@ -74877,7 +76592,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59d7cdd0-b24c-4af7-9f4d-0e3f1a256483" + "996c7387-f59d-40ed-9320-57d6bbe447db" ], "Cache-Control": [ "no-cache" @@ -74887,31 +76602,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12601" + "13461" ], "x-ms-correlation-request-id": [ - "1b186696-4522-4332-a310-fe5e125591ae" + "df921304-eac0-4ff5-a382-09cc6d9dc421" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:1b186696-4522-4332-a310-fe5e125591ae" + "WESTUS:20150813T074831Z:df921304-eac0-4ff5-a382-09cc6d9dc421" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus/db-12c-ee-popular/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cy9kYi0xMmMtZWUtcG9wdWxhci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus/db-12c-ee-popular/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cy9kYi0xMmMtZWUtcG9wdWxhci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-popular/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-popular/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -74929,7 +76644,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b92601c2-8c43-47f4-8ac5-c4e4978e4b71" + "c2899b1c-35d6-4969-8944-c50241ce3e71" ], "Cache-Control": [ "no-cache" @@ -74939,31 +76654,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12600" + "13460" ], "x-ms-correlation-request-id": [ - "eef57075-1961-4af8-bdeb-4d7d12bbe175" + "8ae14484-86af-4c19-bc2d-779f71cffdde" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:eef57075-1961-4af8-bdeb-4d7d12bbe175" + "WESTUS:20150813T074831Z:8ae14484-86af-4c19-bc2d-779f71cffdde" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus/db-12c-ee-popular/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cy9kYi0xMmMtZWUtcG9wdWxhci92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/oracle-db-12c/skus/db-12c-ee-popular/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29yYWNsZS1kYi0xMmMvc2t1cy9kYi0xMmMtZWUtcG9wdWxhci92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db-12c-ee-popular\",\r\n \"product\": \"oracle-db-12c\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-popular/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"db-12c-ee-popular\",\r\n \"product\": \"oracle-db-12c\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/oracle-db-12c/Skus/db-12c-ee-popular/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "504" @@ -74981,7 +76696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7be7ddc3-7614-4187-8503-2d761a053a48" + "9058735e-1681-4582-b4ec-e19f25de938e" ], "Cache-Control": [ "no-cache" @@ -74991,31 +76706,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12599" + "13459" ], "x-ms-correlation-request-id": [ - "0055379e-ffd5-428b-8f2d-d56e7eb4885a" + "c1b5af71-e35e-4b8e-96b6-de037d0d0c18" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:0055379e-ffd5-428b-8f2d-d56e7eb4885a" + "WESTUS:20150813T074831Z:c1b5af71-e35e-4b8e-96b6-de037d0d0c18" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/was-8-5/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcy04LTUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/was-8-5/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcy04LTUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"was-8-5-5-3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/was-8-5/Skus/was-8-5-5-3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"was-8-5-5-3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/was-8-5/Skus/was-8-5-5-3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "255" @@ -75033,7 +76748,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "926167c7-34c0-4fdd-9bfc-c799b0280e56" + "e1307a15-5a2d-48cb-abde-c687d8e5a182" ], "Cache-Control": [ "no-cache" @@ -75043,31 +76758,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12598" + "13458" ], "x-ms-correlation-request-id": [ - "1b13835e-0f76-4dc8-b561-9b11717c206b" + "cf6aa46b-9225-471e-9393-2cff4f0b3d8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:1b13835e-0f76-4dc8-b561-9b11717c206b" + "WESTUS:20150813T074831Z:cf6aa46b-9225-471e-9393-2cff4f0b3d8f" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/was-8-5/skus/was-8-5-5-3/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcy04LTUvc2t1cy93YXMtOC01LTUtMy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/was-8-5/skus/was-8-5-5-3/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcy04LTUvc2t1cy93YXMtOC01LTUtMy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/was-8-5/Skus/was-8-5-5-3/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/was-8-5/Skus/was-8-5-5-3/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -75085,7 +76800,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1391267-736e-40a7-a654-9f2db5921938" + "91b3ca8b-a87e-4bad-b332-d56388b5f3a7" ], "Cache-Control": [ "no-cache" @@ -75095,31 +76810,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12597" + "13457" ], "x-ms-correlation-request-id": [ - "c63e11e4-091f-49f8-a200-41a6de2ebbc7" + "6f60d95a-2c0e-4b6e-ba01-29edd29d1570" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:c63e11e4-091f-49f8-a200-41a6de2ebbc7" + "WESTUS:20150813T074831Z:6f60d95a-2c0e-4b6e-ba01-29edd29d1570" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/was-8-5/skus/was-8-5-5-3/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcy04LTUvc2t1cy93YXMtOC01LTUtMy92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/msopentech/artifacttypes/vmimage/offers/was-8-5/skus/was-8-5-5-3/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXNvcGVudGVjaC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcy04LTUvc2t1cy93YXMtOC01LTUtMy92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"was-8-5-5-3\",\r\n \"product\": \"was-8-5\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/was-8-5/Skus/was-8-5-5-3/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"msopentech\",\r\n \"name\": \"was-8-5-5-3\",\r\n \"product\": \"was-8-5\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech/ArtifactTypes/VMImage/Offers/was-8-5/Skus/was-8-5-5-3/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "480" @@ -75137,7 +76852,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83f74475-eb73-4cf7-aeb7-93fe8cd1d088" + "3bfb9879-f436-4a99-bd15-6832f1b9e6b3" ], "Cache-Control": [ "no-cache" @@ -75147,28 +76862,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12596" + "13456" ], "x-ms-correlation-request-id": [ - "373203fc-d3ba-4861-b48f-b6edc7c1fe8b" + "f9d3ce5e-9d48-4e37-9890-08d304f435be" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:373203fc-d3ba-4861-b48f-b6edc7c1fe8b" + "WESTUS:20150813T074831Z:f9d3ce5e-9d48-4e37-9890-08d304f435be" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MSOpenTech.Extensions/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTVNPcGVuVGVjaC5FeHRlbnNpb25zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MSOpenTech.Extensions/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTVNPcGVuVGVjaC5FeHRlbnNpb25zL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -75189,7 +76904,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17279bc9-71ca-4738-92bf-95ffcb3f055a" + "91295019-a4e5-4e54-a288-f95c9324845c" ], "Cache-Control": [ "no-cache" @@ -75199,28 +76914,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12595" + "13455" ], "x-ms-correlation-request-id": [ - "5af2f29e-b06e-4e6c-8dfc-181a96a34ab3" + "4550f297-a742-4e70-ac44-c914329c40c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:5af2f29e-b06e-4e6c-8dfc-181a96a34ab3" + "WESTUS:20150813T074832Z:4550f297-a742-4e70-ac44-c914329c40c5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mtnfog/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXRuZm9nL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mtnfog/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXRuZm9nL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -75241,7 +76956,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "987eea8f-9f4a-4dac-8be1-378058e7e098" + "eddeeea6-061c-45de-bf45-7e27902990a5" ], "Cache-Control": [ "no-cache" @@ -75251,31 +76966,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12594" + "13454" ], "x-ms-correlation-request-id": [ - "f389c4b4-4bba-4dd6-91e4-3bb94ea94fc8" + "1a404f8f-11cf-4086-acf1-58b34f218135" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:f389c4b4-4bba-4dd6-91e4-3bb94ea94fc8" + "WESTUS:20150813T074832Z:1a404f8f-11cf-4086-acf1-58b34f218135" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mvp-systems/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXZwLXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mvp-systems/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXZwLXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jamsscheduler-single-instance\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems/ArtifactTypes/VMImage/Offers/jamsscheduler-single-instance\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jamsscheduler-single-instance\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems/ArtifactTypes/VMImage/Offers/jamsscheduler-single-instance\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -75293,7 +77008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6de68348-588a-4205-8277-18d69175165f" + "9e25ea66-ed1c-4eb1-a064-4994f3fe2ad2" ], "Cache-Control": [ "no-cache" @@ -75303,31 +77018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12593" + "13453" ], "x-ms-correlation-request-id": [ - "79b45bce-4983-4468-8972-a5cc4e5c420f" + "f0648312-8e65-44e7-b6de-939953127924" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:79b45bce-4983-4468-8972-a5cc4e5c420f" + "WESTUS:20150813T074832Z:f0648312-8e65-44e7-b6de-939953127924" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mvp-systems/artifacttypes/vmimage/offers/jamsscheduler-single-instance/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXZwLXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qYW1zc2NoZWR1bGVyLXNpbmdsZS1pbnN0YW5jZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mvp-systems/artifacttypes/vmimage/offers/jamsscheduler-single-instance/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXZwLXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qYW1zc2NoZWR1bGVyLXNpbmdsZS1pbnN0YW5jZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_x-num-servers_x-num-jobs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems/ArtifactTypes/VMImage/Offers/jamsscheduler-single-instance/Skus/byol_x-num-servers_x-num-jobs\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_x-num-servers_x-num-jobs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems/ArtifactTypes/VMImage/Offers/jamsscheduler-single-instance/Skus/byol_x-num-servers_x-num-jobs\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "314" @@ -75345,7 +77060,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82ca6f11-370d-4fe1-a438-d29b3ecb34cf" + "5f75e67c-c0d0-405d-bcca-e7bbf4f2626c" ], "Cache-Control": [ "no-cache" @@ -75355,31 +77070,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12592" + "13452" ], "x-ms-correlation-request-id": [ - "2744102c-4840-47ca-9e48-8df962df6cce" + "24cb2a7c-2467-43cb-a143-bf1aca6bbfd8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:2744102c-4840-47ca-9e48-8df962df6cce" + "WESTUS:20150813T074832Z:24cb2a7c-2467-43cb-a143-bf1aca6bbfd8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:52 GMT" + "Thu, 13 Aug 2015 07:48:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mvp-systems/artifacttypes/vmimage/offers/jamsscheduler-single-instance/skus/byol_x-num-servers_x-num-jobs/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXZwLXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qYW1zc2NoZWR1bGVyLXNpbmdsZS1pbnN0YW5jZS9za3VzL2J5b2xfeC1udW0tc2VydmVyc194LW51bS1qb2JzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mvp-systems/artifacttypes/vmimage/offers/jamsscheduler-single-instance/skus/byol_x-num-servers_x-num-jobs/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXZwLXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qYW1zc2NoZWR1bGVyLXNpbmdsZS1pbnN0YW5jZS9za3VzL2J5b2xfeC1udW0tc2VydmVyc194LW51bS1qb2JzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems/ArtifactTypes/VMImage/Offers/jamsscheduler-single-instance/Skus/byol_x-num-servers_x-num-jobs/Versions/1.0.3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems/ArtifactTypes/VMImage/Offers/jamsscheduler-single-instance/Skus/byol_x-num-servers_x-num-jobs/Versions/1.0.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "305" @@ -75397,7 +77112,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "949cd576-998f-46ce-8474-4a0cabb0d044" + "4145ee1b-e4c3-443f-92d4-3d4a85aa3cd6" ], "Cache-Control": [ "no-cache" @@ -75407,31 +77122,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12591" + "13451" ], "x-ms-correlation-request-id": [ - "8ccf2d3d-fa30-4638-a834-8ef39c134d31" + "db15d218-f22f-40ce-971e-6645c6b40e82" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212653Z:8ccf2d3d-fa30-4638-a834-8ef39c134d31" + "WESTUS:20150813T074832Z:db15d218-f22f-40ce-971e-6645c6b40e82" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mvp-systems/artifacttypes/vmimage/offers/jamsscheduler-single-instance/skus/byol_x-num-servers_x-num-jobs/versions/1.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXZwLXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qYW1zc2NoZWR1bGVyLXNpbmdsZS1pbnN0YW5jZS9za3VzL2J5b2xfeC1udW0tc2VydmVyc194LW51bS1qb2JzL3ZlcnNpb25zLzEuMC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mvp-systems/artifacttypes/vmimage/offers/jamsscheduler-single-instance/skus/byol_x-num-servers_x-num-jobs/versions/1.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXZwLXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9qYW1zc2NoZWR1bGVyLXNpbmdsZS1pbnN0YW5jZS9za3VzL2J5b2xfeC1udW0tc2VydmVyc194LW51bS1qb2JzL3ZlcnNpb25zLzEuMC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mvp-systems\",\r\n \"name\": \"byol_x-num-servers_x-num-jobs\",\r\n \"product\": \"jamsscheduler-single-instance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems/ArtifactTypes/VMImage/Offers/jamsscheduler-single-instance/Skus/byol_x-num-servers_x-num-jobs/Versions/1.0.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mvp-systems\",\r\n \"name\": \"byol_x-num-servers_x-num-jobs\",\r\n \"product\": \"jamsscheduler-single-instance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems/ArtifactTypes/VMImage/Offers/jamsscheduler-single-instance/Skus/byol_x-num-servers_x-num-jobs/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "562" @@ -75449,7 +77164,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91d5e353-9117-4312-80c0-63fe2d6ad031" + "1abd885b-cdb6-445b-bbe5-40c655dfdfbd" ], "Cache-Control": [ "no-cache" @@ -75459,31 +77174,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12590" + "13450" ], "x-ms-correlation-request-id": [ - "c2581bd1-a64b-46b5-bbae-d279c3ab7aff" + "c1e012f5-9f97-47a4-a044-59b47d668223" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:c2581bd1-a64b-46b5-bbae-d279c3ab7aff" + "WESTUS:20150813T074832Z:c1e012f5-9f97-47a4-a044-59b47d668223" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mail2cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mail2cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "236" @@ -75501,7 +77216,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "342d0718-a7a8-4fb0-96bd-f1ccee1e6fcc" + "1ae28e59-921f-48f5-9fe0-f541acbb9896" ], "Cache-Control": [ "no-cache" @@ -75511,31 +77226,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12589" + "13449" ], "x-ms-correlation-request-id": [ - "9d6edf92-8fb2-4130-b891-37cfd3a2b4ff" + "f184d269-dbcc-44a7-bae3-8debee4739d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:9d6edf92-8fb2-4130-b891-37cfd3a2b4ff" + "WESTUS:20150813T074832Z:f184d269-dbcc-44a7-bae3-8debee4739d5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-10000pk-gdss-x\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-10000pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-1000pk-gdss-x\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-1000pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-100pk-gdss-x\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-100pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-2500pk-gdss-x\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-2500pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-250pk-gdss-x\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-250pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-500pk-gdss-x\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-500pk-gdss-x\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-10000pk-gdss-x\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-10000pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-1000pk-gdss-x\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-1000pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-100pk-gdss-x\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-100pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-2500pk-gdss-x\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-2500pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-250pk-gdss-x\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-250pk-gdss-x\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhm2c-500pk-gdss-x\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-500pk-gdss-x\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1613" @@ -75553,7 +77268,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54aaebbf-f713-4916-a87b-1ca6d5ede07e" + "3034c85a-c15b-4082-9b02-81042cc9c5a9" ], "Cache-Control": [ "no-cache" @@ -75563,31 +77278,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12588" + "13448" ], "x-ms-correlation-request-id": [ - "f638415c-f650-4a49-a74f-b67974fb98d9" + "2e436b01-21e7-4848-9bf9-f9a616ee67b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:f638415c-f650-4a49-a74f-b67974fb98d9" + "WESTUS:20150813T074832Z:2e436b01-21e7-4848-9bf9-f9a616ee67b5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-10000pk-gdss-x/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDAwMHBrLWdkc3MteC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-10000pk-gdss-x/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDAwMHBrLWdkc3MteC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-10000pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-10000pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "273" @@ -75605,7 +77320,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4ace789-fa1c-4459-8833-06340b43a3a7" + "ea374fa5-88cc-45c7-9524-c22857d54bda" ], "Cache-Control": [ "no-cache" @@ -75615,31 +77330,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12587" + "13447" ], "x-ms-correlation-request-id": [ - "c355f3e7-3623-4725-94ac-588e03c8271b" + "35ae979c-3b80-4e48-a6f4-4acbb0a223ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:c355f3e7-3623-4725-94ac-588e03c8271b" + "WESTUS:20150813T074832Z:35ae979c-3b80-4e48-a6f4-4acbb0a223ec" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-10000pk-gdss-x/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDAwMHBrLWdkc3MteC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-10000pk-gdss-x/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDAwMHBrLWdkc3MteC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-10000pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-10000pk-gdss-x/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-10000pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-10000pk-gdss-x/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "496" @@ -75657,7 +77372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11634940-36d0-46cb-8fd6-df3913492236" + "c6ce147d-5fe5-4cb9-bca9-886f36611779" ], "Cache-Control": [ "no-cache" @@ -75667,31 +77382,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12586" + "13446" ], "x-ms-correlation-request-id": [ - "811b80e2-9e91-4d84-b0aa-559cdd10e3c1" + "c7166031-50f7-4646-8c75-4b0d19e7e680" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:811b80e2-9e91-4d84-b0aa-559cdd10e3c1" + "WESTUS:20150813T074832Z:c7166031-50f7-4646-8c75-4b0d19e7e680" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-1000pk-gdss-x/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDAwcGstZ2Rzcy14L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-1000pk-gdss-x/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDAwcGstZ2Rzcy14L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-1000pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-1000pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -75709,7 +77424,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60294e3c-b53c-4fea-b803-e98bc344e9c3" + "8917ec85-47cb-492e-90fe-855b29659f2f" ], "Cache-Control": [ "no-cache" @@ -75719,31 +77434,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12585" + "13445" ], "x-ms-correlation-request-id": [ - "981ea233-5fed-439e-83ea-3ba379c25514" + "d9e6049c-9420-4b5d-923b-5b8fe7a5bd36" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:981ea233-5fed-439e-83ea-3ba379c25514" + "WESTUS:20150813T074833Z:d9e6049c-9420-4b5d-923b-5b8fe7a5bd36" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-1000pk-gdss-x/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDAwcGstZ2Rzcy14L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-1000pk-gdss-x/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDAwcGstZ2Rzcy14L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-1000pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-1000pk-gdss-x/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-1000pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-1000pk-gdss-x/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "494" @@ -75761,7 +77476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af1484b7-d8e3-4fea-8e80-0f811be495fe" + "4b27564e-76ea-400b-811a-a1877d5d64f3" ], "Cache-Control": [ "no-cache" @@ -75771,31 +77486,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12584" + "13444" ], "x-ms-correlation-request-id": [ - "975b9d20-0f6e-460e-815a-2fc96a981c39" + "c549bb81-d247-4e12-b7d2-2b0be0aad447" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:975b9d20-0f6e-460e-815a-2fc96a981c39" + "WESTUS:20150813T074833Z:c549bb81-d247-4e12-b7d2-2b0be0aad447" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-100pk-gdss-x/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDBway1nZHNzLXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-100pk-gdss-x/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDBway1nZHNzLXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-100pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-100pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "271" @@ -75813,7 +77528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eed09804-73a0-41f9-a046-5d060984c670" + "00087a36-47fa-489a-81cd-f39b53e910e6" ], "Cache-Control": [ "no-cache" @@ -75823,31 +77538,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12583" + "13443" ], "x-ms-correlation-request-id": [ - "176479a5-8e9e-4395-9009-27c7f61fe951" + "d0e3a8d0-969d-4dab-9276-9943df8a33b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:176479a5-8e9e-4395-9009-27c7f61fe951" + "WESTUS:20150813T074833Z:d0e3a8d0-969d-4dab-9276-9943df8a33b2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:53 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-100pk-gdss-x/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDBway1nZHNzLXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-100pk-gdss-x/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0xMDBway1nZHNzLXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-100pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-100pk-gdss-x/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-100pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-100pk-gdss-x/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "492" @@ -75865,7 +77580,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa2a107c-e0c6-4c0a-8ef3-696bd8729e71" + "aade35c8-435d-46cc-a70a-19ed16fe6310" ], "Cache-Control": [ "no-cache" @@ -75875,31 +77590,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12582" + "13442" ], "x-ms-correlation-request-id": [ - "3efe3e8e-0603-4f34-8469-66e253d02ba2" + "69ec673d-542f-4c4a-bf4c-c6f1f564a2f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212654Z:3efe3e8e-0603-4f34-8469-66e253d02ba2" + "WESTUS:20150813T074833Z:69ec673d-542f-4c4a-bf4c-c6f1f564a2f5" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-2500pk-gdss-x/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0yNTAwcGstZ2Rzcy14L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-2500pk-gdss-x/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0yNTAwcGstZ2Rzcy14L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-2500pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-2500pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -75917,7 +77632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f26e5a2e-197c-4e0f-83b9-dd03039551a3" + "1bbf9aad-9b66-4cd2-91d5-e22ce685128f" ], "Cache-Control": [ "no-cache" @@ -75927,31 +77642,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12581" + "13441" ], "x-ms-correlation-request-id": [ - "517c8846-3284-47d7-81bb-4d79770dfbaf" + "18245344-a9d9-4aaa-a680-671601da6f28" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:517c8846-3284-47d7-81bb-4d79770dfbaf" + "WESTUS:20150813T074833Z:18245344-a9d9-4aaa-a680-671601da6f28" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-2500pk-gdss-x/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0yNTAwcGstZ2Rzcy14L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-2500pk-gdss-x/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0yNTAwcGstZ2Rzcy14L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-2500pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-2500pk-gdss-x/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-2500pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-2500pk-gdss-x/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "494" @@ -75969,7 +77684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f9be877-d6d9-4224-87bd-4d7143ebad45" + "a139dd74-39f6-4743-949d-ff63a49df45a" ], "Cache-Control": [ "no-cache" @@ -75979,31 +77694,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12580" + "13440" ], "x-ms-correlation-request-id": [ - "60b092b4-96e6-4c70-a5d0-f9bafbb7dc54" + "28c7859b-32dc-40ba-9643-f321d14c248a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:60b092b4-96e6-4c70-a5d0-f9bafbb7dc54" + "WESTUS:20150813T074833Z:28c7859b-32dc-40ba-9643-f321d14c248a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-250pk-gdss-x/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0yNTBway1nZHNzLXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-250pk-gdss-x/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0yNTBway1nZHNzLXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-250pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-250pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "271" @@ -76021,7 +77736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c728097-f55c-4da2-a056-c6910fd5125e" + "bb092b55-42b9-47a7-bfe9-100c8a69a471" ], "Cache-Control": [ "no-cache" @@ -76031,31 +77746,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12579" + "13439" ], "x-ms-correlation-request-id": [ - "6cfdc964-a1a2-44ba-8a28-bb90195a6cbc" + "3fa4a7fe-0b39-4c04-8fc1-011a1142d516" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:6cfdc964-a1a2-44ba-8a28-bb90195a6cbc" + "WESTUS:20150813T074833Z:3fa4a7fe-0b39-4c04-8fc1-011a1142d516" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-250pk-gdss-x/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0yNTBway1nZHNzLXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-250pk-gdss-x/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy0yNTBway1nZHNzLXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-250pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-250pk-gdss-x/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-250pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-250pk-gdss-x/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "492" @@ -76073,7 +77788,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06c71e6f-d021-4c59-b2fa-caf195202a4c" + "3395f7e3-658c-4683-88d9-bfbe7a1088de" ], "Cache-Control": [ "no-cache" @@ -76083,31 +77798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12578" + "13438" ], "x-ms-correlation-request-id": [ - "e1530b7e-820d-4433-a2bb-bf97beb0be87" + "e75c206d-8493-487a-91e2-c14086f31657" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:e1530b7e-820d-4433-a2bb-bf97beb0be87" + "WESTUS:20150813T074833Z:e75c206d-8493-487a-91e2-c14086f31657" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-500pk-gdss-x/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy01MDBway1nZHNzLXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-500pk-gdss-x/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy01MDBway1nZHNzLXgvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-500pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-500pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "271" @@ -76125,7 +77840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5176a105-e913-48f7-8cdc-f719b56b551e" + "9fd8a0f1-4806-44c1-af8b-95128c75cbb3" ], "Cache-Control": [ "no-cache" @@ -76135,31 +77850,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12577" + "13437" ], "x-ms-correlation-request-id": [ - "239f9166-91cf-4477-9caf-d5d5ad1c5283" + "8d155c1d-332f-4a8b-80f5-7e48f8c6373b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:239f9166-91cf-4477-9caf-d5d5ad1c5283" + "WESTUS:20150813T074833Z:8d155c1d-332f-4a8b-80f5-7e48f8c6373b" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-500pk-gdss-x/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy01MDBway1nZHNzLXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/mxhero/artifacttypes/vmimage/offers/mail2cloud/skus/mxhm2c-500pk-gdss-x/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbXhoZXJvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbWFpbDJjbG91ZC9za3VzL214aG0yYy01MDBway1nZHNzLXgvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-500pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-500pk-gdss-x/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"mxhero\",\r\n \"name\": \"mxhm2c-500pk-gdss-x\",\r\n \"product\": \"mail2cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-500pk-gdss-x/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "492" @@ -76177,7 +77892,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35160f59-9f2f-4b04-9580-51b87df6b950" + "4e697df9-f43b-4216-aa97-6cd5033998cd" ], "Cache-Control": [ "no-cache" @@ -76187,31 +77902,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12576" + "13436" ], "x-ms-correlation-request-id": [ - "8bfafe1c-dde0-4ce5-aa54-763f79bdd0a7" + "ddcae763-c11d-4ced-8013-108975140569" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:8bfafe1c-dde0-4ce5-aa54-763f79bdd0a7" + "WESTUS:20150813T074833Z:ddcae763-c11d-4ced-8013-108975140569" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ncbi/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmNiaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ncbi/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmNiaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi-free-2-2-31\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi-free-2-2-31\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "246" @@ -76229,7 +77944,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2356278b-01e1-449f-9f79-33ef6d443c2d" + "41859bd3-c8dc-4fb9-aff5-e20fcde76da4" ], "Cache-Control": [ "no-cache" @@ -76239,31 +77954,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12575" + "13435" ], "x-ms-correlation-request-id": [ - "9f89443f-3622-4a88-8cca-f8382396aa25" + "47933981-aa43-428b-bee5-28ba32981755" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:9f89443f-3622-4a88-8cca-f8382396aa25" + "WESTUS:20150813T074834Z:47933981-aa43-428b-bee5-28ba32981755" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ncbi/artifacttypes/vmimage/offers/ncbi-free-2-2-31/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmNiaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYmktZnJlZS0yLTItMzEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ncbi/artifacttypes/vmimage/offers/ncbi-free-2-2-31/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmNiaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYmktZnJlZS0yLTItMzEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31/Skus/free\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31/Skus/free\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "244" @@ -76281,7 +77996,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "409a2ca6-cd65-47f4-ab41-a316b925fd01" + "309dbe6d-fb39-4cde-a191-c7c9251e815b" ], "Cache-Control": [ "no-cache" @@ -76291,31 +78006,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12574" + "13434" ], "x-ms-correlation-request-id": [ - "40af14a1-61e8-4c4a-8884-b7cf1af40582" + "f962eca6-3fb6-412c-ad79-f71d30928ed3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:40af14a1-61e8-4c4a-8884-b7cf1af40582" + "WESTUS:20150813T074834Z:f962eca6-3fb6-412c-ad79-f71d30928ed3" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ncbi/artifacttypes/vmimage/offers/ncbi-free-2-2-31/skus/free/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmNiaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYmktZnJlZS0yLTItMzEvc2t1cy9mcmVlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ncbi/artifacttypes/vmimage/offers/ncbi-free-2-2-31/skus/free/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmNiaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYmktZnJlZS0yLTItMzEvc2t1cy9mcmVlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31/Skus/free/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31/Skus/free/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -76333,7 +78048,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a56bb726-b94c-43dd-a95c-cc4729dc4b37" + "9d5867a8-55a2-4a84-9c8b-6e0693862477" ], "Cache-Control": [ "no-cache" @@ -76343,31 +78058,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12573" + "13433" ], "x-ms-correlation-request-id": [ - "9a964b09-6bb8-46a1-ba81-1f623f18402a" + "66d9698f-f912-4bf2-8689-d2488d69aab1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212655Z:9a964b09-6bb8-46a1-ba81-1f623f18402a" + "WESTUS:20150813T074834Z:66d9698f-f912-4bf2-8689-d2488d69aab1" ], "Date": [ - "Wed, 05 Aug 2015 21:26:54 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ncbi/artifacttypes/vmimage/offers/ncbi-free-2-2-31/skus/free/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmNiaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYmktZnJlZS0yLTItMzEvc2t1cy9mcmVlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ncbi/artifacttypes/vmimage/offers/ncbi-free-2-2-31/skus/free/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmNiaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL25jYmktZnJlZS0yLTItMzEvc2t1cy9mcmVlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"ncbi\",\r\n \"name\": \"free\",\r\n \"product\": \"ncbi-free-2-2-31\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31/Skus/free/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"ncbi\",\r\n \"name\": \"free\",\r\n \"product\": \"ncbi-free-2-2-31\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31/Skus/free/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "470" @@ -76385,7 +78100,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89024fff-ee34-4b9d-9466-864b6db5d391" + "ff11a3e3-53c6-4fff-871a-fefc902e5b25" ], "Cache-Control": [ "no-cache" @@ -76395,28 +78110,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12572" + "13432" ], "x-ms-correlation-request-id": [ - "464d3bc6-22cf-4cc6-8208-bc84351c3a57" + "88b85207-3ea9-4ca9-a41d-e11cdce188b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:464d3bc6-22cf-4cc6-8208-bc84351c3a57" + "WESTUS:20150813T074834Z:88b85207-3ea9-4ca9-a41d-e11cdce188b2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/netapp/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV0YXBwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/netapp/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV0YXBwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -76437,7 +78152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7bc18cbd-2242-402c-baf4-c20816d5e3f7" + "37c7d313-7470-4577-b970-76a9c45347d0" ], "Cache-Control": [ "no-cache" @@ -76447,31 +78162,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12571" + "13431" ], "x-ms-correlation-request-id": [ - "b39cabc2-e926-48c5-a31e-4f5e06720cd5" + "7c052015-d727-458a-9cc8-bc784886a202" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:b39cabc2-e926-48c5-a31e-4f5e06720cd5" + "WESTUS:20150813T074834Z:7c052015-d727-458a-9cc8-bc784886a202" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nexus/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nexus/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus-chameleon-9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus-chameleon-9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "249" @@ -76489,7 +78204,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85e17fca-d1b4-497c-a553-c1132f751514" + "033a027e-7965-4cab-b775-986601d2913a" ], "Cache-Control": [ "no-cache" @@ -76499,31 +78214,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12570" + "13430" ], "x-ms-correlation-request-id": [ - "6c14d13b-f2d3-47db-afbd-7cf67ac1b7bd" + "f992a24a-60df-4af8-9114-3d017dbd079c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:6c14d13b-f2d3-47db-afbd-7cf67ac1b7bd" + "WESTUS:20150813T074834Z:f992a24a-60df-4af8-9114-3d017dbd079c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nexus/artifacttypes/vmimage/offers/nexus-chameleon-9/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZXh1cy1jaGFtZWxlb24tOS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nexus/artifacttypes/vmimage/offers/nexus-chameleon-9/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZXh1cy1jaGFtZWxlb24tOS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexuschameleon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9/Skus/nexuschameleon\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexuschameleon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9/Skus/nexuschameleon\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "266" @@ -76541,7 +78256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f66d9de3-e1f1-4bac-8b2c-92a040e68d18" + "3fdc794b-e63a-4217-ae49-b02f431e9623" ], "Cache-Control": [ "no-cache" @@ -76551,31 +78266,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12569" + "13429" ], "x-ms-correlation-request-id": [ - "ad4a26a0-7897-492f-a015-eca4e21c1420" + "45594386-1f44-413c-b922-9b246111642a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:ad4a26a0-7897-492f-a015-eca4e21c1420" + "WESTUS:20150813T074834Z:45594386-1f44-413c-b922-9b246111642a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nexus/artifacttypes/vmimage/offers/nexus-chameleon-9/skus/nexuschameleon/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZXh1cy1jaGFtZWxlb24tOS9za3VzL25leHVzY2hhbWVsZW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nexus/artifacttypes/vmimage/offers/nexus-chameleon-9/skus/nexuschameleon/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZXh1cy1jaGFtZWxlb24tOS9za3VzL25leHVzY2hhbWVsZW9uL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9/Skus/nexuschameleon/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9/Skus/nexuschameleon/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -76593,7 +78308,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cfd6d66-a3dc-4532-9c5b-21b3c457b25d" + "52cbead9-61d3-4849-9067-e502387b7afd" ], "Cache-Control": [ "no-cache" @@ -76603,31 +78318,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12568" + "13428" ], "x-ms-correlation-request-id": [ - "3c55025a-45d0-425d-8088-0a66c66b7f9e" + "9e8c8764-d5d0-40ec-9713-992806b29340" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:3c55025a-45d0-425d-8088-0a66c66b7f9e" + "WESTUS:20150813T074834Z:9e8c8764-d5d0-40ec-9713-992806b29340" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nexus/artifacttypes/vmimage/offers/nexus-chameleon-9/skus/nexuschameleon/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZXh1cy1jaGFtZWxlb24tOS9za3VzL25leHVzY2hhbWVsZW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nexus/artifacttypes/vmimage/offers/nexus-chameleon-9/skus/nexuschameleon/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmV4dXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZXh1cy1jaGFtZWxlb24tOS9za3VzL25leHVzY2hhbWVsZW9uL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nexus\",\r\n \"name\": \"nexuschameleon\",\r\n \"product\": \"nexus-chameleon-9\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9/Skus/nexuschameleon/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nexus\",\r\n \"name\": \"nexuschameleon\",\r\n \"product\": \"nexus-chameleon-9\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9/Skus/nexuschameleon/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "496" @@ -76645,7 +78360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f0185b6-d986-416a-8cd1-851d5f965a3b" + "e3d8a9d6-f0e9-4a70-9bcd-03e41a55c36e" ], "Cache-Control": [ "no-cache" @@ -76655,31 +78370,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12567" + "13427" ], "x-ms-correlation-request-id": [ - "043a7df0-fe54-481d-ab15-8173891450bd" + "17596b23-c4a2-4859-b0b7-5e7754f989f2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:043a7df0-fe54-481d-ab15-8173891450bd" + "WESTUS:20150813T074834Z:17596b23-c4a2-4859-b0b7-5e7754f989f2" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nginxinc/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmdpbnhpbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nginxinc/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmdpbnhpbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginx-plus-v1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginx-plus-v1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "244" @@ -76697,7 +78412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10d8ca16-3eea-420c-9f34-a7ef0a390a63" + "2978c9f7-273b-466d-a912-7e2b79061f3d" ], "Cache-Control": [ "no-cache" @@ -76707,31 +78422,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12566" + "13426" ], "x-ms-correlation-request-id": [ - "2ec127a5-f6f4-4311-adf8-be562e1d7020" + "e8307c22-1b63-470a-8ca0-97d7994174ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:2ec127a5-f6f4-4311-adf8-be562e1d7020" + "WESTUS:20150813T074835Z:e8307c22-1b63-470a-8ca0-97d7994174ce" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nginxinc/artifacttypes/vmimage/offers/nginx-plus-v1/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmdpbnhpbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZ2lueC1wbHVzLXYxL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nginxinc/artifacttypes/vmimage/offers/nginx-plus-v1/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmdpbnhpbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZ2lueC1wbHVzLXYxL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginx-plus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1/Skus/nginx-plus\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginx-plus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1/Skus/nginx-plus\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -76749,7 +78464,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5c9628c-fbf4-4f9a-8bee-f1e44f15c67a" + "aefff05d-180f-4cbf-91e4-20d548b76e2e" ], "Cache-Control": [ "no-cache" @@ -76759,31 +78474,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12565" + "13425" ], "x-ms-correlation-request-id": [ - "b1cd3ce0-e3d2-4af5-b686-53bdd0a6cadb" + "bc24adb9-4df5-42e0-b8f7-96c94a40d6df" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:b1cd3ce0-e3d2-4af5-b686-53bdd0a6cadb" + "WESTUS:20150813T074835Z:bc24adb9-4df5-42e0-b8f7-96c94a40d6df" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nginxinc/artifacttypes/vmimage/offers/nginx-plus-v1/skus/nginx-plus/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmdpbnhpbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZ2lueC1wbHVzLXYxL3NrdXMvbmdpbngtcGx1cy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nginxinc/artifacttypes/vmimage/offers/nginx-plus-v1/skus/nginx-plus/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmdpbnhpbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZ2lueC1wbHVzLXYxL3NrdXMvbmdpbngtcGx1cy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1/Skus/nginx-plus/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1/Skus/nginx-plus/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -76801,7 +78516,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9db3459-7e8f-49cd-8e84-3453aeff1b17" + "d0701acf-1980-49db-98f0-fe9ef04f3a3c" ], "Cache-Control": [ "no-cache" @@ -76811,31 +78526,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12564" + "13424" ], "x-ms-correlation-request-id": [ - "41f19d64-fd8b-4992-9ded-bc4c6a4f3210" + "4d6e76d7-413e-4cf1-818f-2fc2edf8eed0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212656Z:41f19d64-fd8b-4992-9ded-bc4c6a4f3210" + "WESTUS:20150813T074835Z:4d6e76d7-413e-4cf1-818f-2fc2edf8eed0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:55 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nginxinc/artifacttypes/vmimage/offers/nginx-plus-v1/skus/nginx-plus/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmdpbnhpbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZ2lueC1wbHVzLXYxL3NrdXMvbmdpbngtcGx1cy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nginxinc/artifacttypes/vmimage/offers/nginx-plus-v1/skus/nginx-plus/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmdpbnhpbmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uZ2lueC1wbHVzLXYxL3NrdXMvbmdpbngtcGx1cy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nginxinc\",\r\n \"name\": \"nginx-plus\",\r\n \"product\": \"nginx-plus-v1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1/Skus/nginx-plus/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nginxinc\",\r\n \"name\": \"nginx-plus\",\r\n \"product\": \"nginx-plus-v1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1/Skus/nginx-plus/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "484" @@ -76853,7 +78568,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3007ada-e584-4076-97c0-ce41f806abb1" + "187ebea3-9d2c-4e91-9089-db42bf03bc23" ], "Cache-Control": [ "no-cache" @@ -76863,31 +78578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12563" + "13423" ], "x-ms-correlation-request-id": [ - "a0393d56-265f-43b5-981b-5486f94bc849" + "71f16dad-7cd0-4404-8eb7-8c5a67e1207e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:a0393d56-265f-43b5-981b-5486f94bc849" + "WESTUS:20150813T074835Z:71f16dad-7cd0-4404-8eb7-8c5a67e1207e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nicepeopleatwork/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmljZXBlb3BsZWF0d29yay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nicepeopleatwork/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmljZXBlb3BsZWF0d29yay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"youzana\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork/ArtifactTypes/VMImage/Offers/youzana\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"youzana\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork/ArtifactTypes/VMImage/Offers/youzana\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "240" @@ -76905,7 +78620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2dd99ff-ae48-4565-8202-c27316f92042" + "17efa928-90a9-4876-b241-3a088fea098c" ], "Cache-Control": [ "no-cache" @@ -76915,31 +78630,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12562" + "13422" ], "x-ms-correlation-request-id": [ - "77642ea6-e3c3-4969-88e7-dd68898fb4ab" + "2a362746-4883-42c3-947c-fc8be6ee8c0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:77642ea6-e3c3-4969-88e7-dd68898fb4ab" + "WESTUS:20150813T074835Z:2a362746-4883-42c3-947c-fc8be6ee8c0a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nicepeopleatwork/artifacttypes/vmimage/offers/youzana/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmljZXBlb3BsZWF0d29yay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3lvdXphbmEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nicepeopleatwork/artifacttypes/vmimage/offers/youzana/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmljZXBlb3BsZWF0d29yay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3lvdXphbmEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"youzana\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork/ArtifactTypes/VMImage/Offers/youzana/Skus/youzana\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"youzana\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork/ArtifactTypes/VMImage/Offers/youzana/Skus/youzana\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "253" @@ -76957,7 +78672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3fe492de-f802-4acb-b3a4-6eeb6096e0da" + "18cd9d17-77c0-4803-ae11-edeae91899bd" ], "Cache-Control": [ "no-cache" @@ -76967,31 +78682,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12561" + "13421" ], "x-ms-correlation-request-id": [ - "834d8c98-bc63-4e91-bbf4-1b81d002a546" + "c7848385-9ef6-4fac-8450-ccd15e2a45de" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:834d8c98-bc63-4e91-bbf4-1b81d002a546" + "WESTUS:20150813T074835Z:c7848385-9ef6-4fac-8450-ccd15e2a45de" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nicepeopleatwork/artifacttypes/vmimage/offers/youzana/skus/youzana/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmljZXBlb3BsZWF0d29yay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3lvdXphbmEvc2t1cy95b3V6YW5hL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nicepeopleatwork/artifacttypes/vmimage/offers/youzana/skus/youzana/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmljZXBlb3BsZWF0d29yay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3lvdXphbmEvc2t1cy95b3V6YW5hL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork/ArtifactTypes/VMImage/Offers/youzana/Skus/youzana/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork/ArtifactTypes/VMImage/Offers/youzana/Skus/youzana/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "266" @@ -77009,7 +78724,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71eb156e-2e55-43d5-893f-c78e4a994384" + "f25f15b3-bf24-434a-90f6-ca3c6c72af5d" ], "Cache-Control": [ "no-cache" @@ -77019,31 +78734,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12560" + "13420" ], "x-ms-correlation-request-id": [ - "1e09bc00-7f0a-4920-b238-3d1fe8620082" + "eb8e21a1-97d6-4861-8081-63306ee2862c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:1e09bc00-7f0a-4920-b238-3d1fe8620082" + "WESTUS:20150813T074835Z:eb8e21a1-97d6-4861-8081-63306ee2862c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nicepeopleatwork/artifacttypes/vmimage/offers/youzana/skus/youzana/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmljZXBlb3BsZWF0d29yay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3lvdXphbmEvc2t1cy95b3V6YW5hL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nicepeopleatwork/artifacttypes/vmimage/offers/youzana/skus/youzana/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbmljZXBlb3BsZWF0d29yay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3lvdXphbmEvc2t1cy95b3V6YW5hL3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nicepeopleatwork\",\r\n \"name\": \"youzana\",\r\n \"product\": \"youzana\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork/ArtifactTypes/VMImage/Offers/youzana/Skus/youzana/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nicepeopleatwork\",\r\n \"name\": \"youzana\",\r\n \"product\": \"youzana\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork/ArtifactTypes/VMImage/Offers/youzana/Skus/youzana/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "482" @@ -77061,7 +78776,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d87ec232-86de-49e6-b41d-5b720e70a8e0" + "b207b012-b679-403c-a6d1-f4fe9f04d8cf" ], "Cache-Control": [ "no-cache" @@ -77071,31 +78786,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12559" + "13419" ], "x-ms-correlation-request-id": [ - "e01b13dd-83e7-44f8-ad74-5ea534a73e56" + "4e4f01c0-002b-49bc-9751-ebdce3c2fac9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:e01b13dd-83e7-44f8-ad74-5ea534a73e56" + "WESTUS:20150813T074835Z:4e4f01c0-002b-49bc-9751-ebdce3c2fac9" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"node-js-api\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"node-js-api\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "241" @@ -77113,7 +78828,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "761be4d8-b840-4295-9b50-01d0b42ce9b9" + "a26b3fb8-08c8-45e2-93a4-99064242a643" ], "Cache-Control": [ "no-cache" @@ -77123,31 +78838,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12558" + "13418" ], "x-ms-correlation-request-id": [ - "377442a3-5cfa-43a2-9272-8f9e81c2b7e6" + "80d39c0b-8731-47dd-8840-7c4084582278" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:377442a3-5cfa-43a2-9272-8f9e81c2b7e6" + "WESTUS:20150813T074835Z:80d39c0b-8731-47dd-8840-7c4084582278" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"professional\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/professional\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/starter\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"professional\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/professional\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/standard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/starter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "756" @@ -77165,7 +78880,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35ffeb63-b0e7-4556-869f-0f9105ff1d7a" + "e42d1036-081a-4e40-98a1-707df87e7018" ], "Cache-Control": [ "no-cache" @@ -77175,31 +78890,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12557" + "13417" ], "x-ms-correlation-request-id": [ - "472b148c-56b0-4df7-b9bb-e0a6e7f2e1fb" + "b1cf0e34-8727-4319-b1c3-94cae4eba292" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:472b148c-56b0-4df7-b9bb-e0a6e7f2e1fb" + "WESTUS:20150813T074835Z:b1cf0e34-8727-4319-b1c3-94cae4eba292" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/professional/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9wcm9mZXNzaW9uYWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/professional/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9wcm9mZXNzaW9uYWwvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/professional/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/professional/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "268" @@ -77217,7 +78932,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "746f2c67-9928-4aec-b034-6d4702747823" + "5447152a-038c-408b-94ea-f074fb7fb58b" ], "Cache-Control": [ "no-cache" @@ -77227,31 +78942,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12556" + "13416" ], "x-ms-correlation-request-id": [ - "40f274ff-1f69-4251-bbb7-31ff8dd907fb" + "cdb6c87f-49d7-497c-bae2-d65fe7b73107" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:40f274ff-1f69-4251-bbb7-31ff8dd907fb" + "WESTUS:20150813T074836Z:cdb6c87f-49d7-497c-bae2-d65fe7b73107" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/professional/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9wcm9mZXNzaW9uYWwvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/professional/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9wcm9mZXNzaW9uYWwvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nodejsapi\",\r\n \"name\": \"professional\",\r\n \"product\": \"node-js-api\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/professional/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nodejsapi\",\r\n \"name\": \"professional\",\r\n \"product\": \"node-js-api\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/professional/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "486" @@ -77269,7 +78984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8eb08e2b-27e4-4c64-a268-6ea14dcf177b" + "60762e4e-aae6-46af-baa6-f0ea311b9deb" ], "Cache-Control": [ "no-cache" @@ -77279,31 +78994,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12555" + "13415" ], "x-ms-correlation-request-id": [ - "5fd82b93-f4a7-454e-9ffb-350a5caa3f22" + "c46a7028-ab94-4dd4-a166-27f8e3add18d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:5fd82b93-f4a7-454e-9ffb-350a5caa3f22" + "WESTUS:20150813T074836Z:c46a7028-ab94-4dd4-a166-27f8e3add18d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9zdGFuZGFyZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9zdGFuZGFyZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/standard/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/standard/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -77321,7 +79036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "769fb233-2ad7-4880-916a-43da79734e73" + "5ecbac89-638b-493e-a5df-4951d712fb0e" ], "Cache-Control": [ "no-cache" @@ -77331,31 +79046,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12554" + "13414" ], "x-ms-correlation-request-id": [ - "804857d8-9b34-4240-87ba-f8d989f40176" + "54b6e517-2a90-41a5-8009-2fc983f664b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:804857d8-9b34-4240-87ba-f8d989f40176" + "WESTUS:20150813T074836Z:54b6e517-2a90-41a5-8009-2fc983f664b0" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/standard/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9zdGFuZGFyZC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/standard/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9zdGFuZGFyZC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nodejsapi\",\r\n \"name\": \"standard\",\r\n \"product\": \"node-js-api\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/standard/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nodejsapi\",\r\n \"name\": \"standard\",\r\n \"product\": \"node-js-api\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/standard/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "478" @@ -77373,7 +79088,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8b01704-68bc-4c38-8bda-ecec1dd13a0b" + "f34223db-febd-47d1-9be5-1a08cb4fc912" ], "Cache-Control": [ "no-cache" @@ -77383,31 +79098,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12553" + "13413" ], "x-ms-correlation-request-id": [ - "fd4a5638-47cd-49dc-b09c-6f0975d7525b" + "0a21f191-4e31-4b4a-8d51-b42d1a936d79" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212657Z:fd4a5638-47cd-49dc-b09c-6f0975d7525b" + "WESTUS:20150813T074836Z:0a21f191-4e31-4b4a-8d51-b42d1a936d79" ], "Date": [ - "Wed, 05 Aug 2015 21:26:57 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/starter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9zdGFydGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/starter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9zdGFydGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/starter/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/starter/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "263" @@ -77425,7 +79140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "038295ba-2863-4669-9771-f8903c580e50" + "a9fcf096-df4e-4204-a9d9-0cc381fd48ec" ], "Cache-Control": [ "no-cache" @@ -77435,31 +79150,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12552" + "13412" ], "x-ms-correlation-request-id": [ - "eb619976-73ca-4d06-8adf-69dfd5ad5dc4" + "b3eba82c-3526-410a-8984-655c1d38a990" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212658Z:eb619976-73ca-4d06-8adf-69dfd5ad5dc4" + "WESTUS:20150813T074836Z:b3eba82c-3526-410a-8984-655c1d38a990" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/starter/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9zdGFydGVyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/nodejsapi/artifacttypes/vmimage/offers/node-js-api/skus/starter/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvbm9kZWpzYXBpL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbm9kZS1qcy1hcGkvc2t1cy9zdGFydGVyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nodejsapi\",\r\n \"name\": \"starter\",\r\n \"product\": \"node-js-api\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/starter/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"nodejsapi\",\r\n \"name\": \"starter\",\r\n \"product\": \"node-js-api\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/starter/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "476" @@ -77477,7 +79192,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02191c35-bef1-458a-9070-5000820253ad" + "dc2a2929-1214-4028-a7f2-6640fbe425f5" ], "Cache-Control": [ "no-cache" @@ -77487,31 +79202,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12551" + "13411" ], "x-ms-correlation-request-id": [ - "941011e5-ac60-44e2-93b0-9af1056bafb2" + "a13beb8f-e2a4-492b-8ef7-927051bee65c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212658Z:941011e5-ac60-44e2-93b0-9af1056bafb2" + "WESTUS:20150813T074836Z:a13beb8f-e2a4-492b-8ef7-927051bee65c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/officeclipsuite/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb2ZmaWNlY2xpcHN1aXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/officeclipsuite/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb2ZmaWNlY2xpcHN1aXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "255" @@ -77529,7 +79244,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6f2c14cf-8da6-45e2-a8ae-9cf714a3c6f5" + "80b31605-8556-4323-ba68-4b62d15417e0" ], "Cache-Control": [ "no-cache" @@ -77539,31 +79254,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12550" + "13410" ], "x-ms-correlation-request-id": [ - "39abba30-4f26-4cba-a94e-4b4a519d14a1" + "723ca9a2-24aa-4bb9-8a34-a45babbf095c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212658Z:39abba30-4f26-4cba-a94e-4b4a519d14a1" + "WESTUS:20150813T074836Z:723ca9a2-24aa-4bb9-8a34-a45babbf095c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/officeclipsuite/artifacttypes/vmimage/offers/officeclipsuite/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb2ZmaWNlY2xpcHN1aXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb2ZmaWNlY2xpcHN1aXRlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/officeclipsuite/artifacttypes/vmimage/offers/officeclipsuite/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb2ZmaWNlY2xpcHN1aXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb2ZmaWNlY2xpcHN1aXRlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite/Skus/officeclipsuite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite/Skus/officeclipsuite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -77581,7 +79296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb20d3ed-b591-451b-b71c-58adc5c19ee9" + "9b815c31-fd9b-4782-95f7-e1ca85c07eae" ], "Cache-Control": [ "no-cache" @@ -77591,31 +79306,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12549" + "13409" ], "x-ms-correlation-request-id": [ - "882f5207-eb65-4d77-a03c-a874e0f28f05" + "7006fd00-c7b1-4f20-8cab-d2f3876472fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212658Z:882f5207-eb65-4d77-a03c-a874e0f28f05" + "WESTUS:20150813T074836Z:7006fd00-c7b1-4f20-8cab-d2f3876472fd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/officeclipsuite/artifacttypes/vmimage/offers/officeclipsuite/skus/officeclipsuite/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb2ZmaWNlY2xpcHN1aXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb2ZmaWNlY2xpcHN1aXRlL3NrdXMvb2ZmaWNlY2xpcHN1aXRlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/officeclipsuite/artifacttypes/vmimage/offers/officeclipsuite/skus/officeclipsuite/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb2ZmaWNlY2xpcHN1aXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb2ZmaWNlY2xpcHN1aXRlL3NrdXMvb2ZmaWNlY2xpcHN1aXRlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite/Skus/officeclipsuite/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite/Skus/officeclipsuite/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "281" @@ -77633,7 +79348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f663821b-be3a-4a48-b2e5-b32f1b15d9c7" + "6a360f79-299e-4800-b950-411f96cbc5dd" ], "Cache-Control": [ "no-cache" @@ -77643,31 +79358,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12548" + "13408" ], "x-ms-correlation-request-id": [ - "03e6a094-8abf-47df-bff0-2a10cfd7be0d" + "459ce52b-e364-4a79-b39f-7471e1b11f6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212658Z:03e6a094-8abf-47df-bff0-2a10cfd7be0d" + "WESTUS:20150813T074836Z:459ce52b-e364-4a79-b39f-7471e1b11f6e" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/officeclipsuite/artifacttypes/vmimage/offers/officeclipsuite/skus/officeclipsuite/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb2ZmaWNlY2xpcHN1aXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb2ZmaWNlY2xpcHN1aXRlL3NrdXMvb2ZmaWNlY2xpcHN1aXRlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/officeclipsuite/artifacttypes/vmimage/offers/officeclipsuite/skus/officeclipsuite/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb2ZmaWNlY2xpcHN1aXRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb2ZmaWNlY2xpcHN1aXRlL3NrdXMvb2ZmaWNlY2xpcHN1aXRlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"officeclipsuite\",\r\n \"name\": \"officeclipsuite\",\r\n \"product\": \"officeclipsuite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite/Skus/officeclipsuite/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"officeclipsuite\",\r\n \"name\": \"officeclipsuite\",\r\n \"product\": \"officeclipsuite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite/Skus/officeclipsuite/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "514" @@ -77685,7 +79400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d918ea86-bb8d-48d5-9535-1d6463a3eee1" + "58c51a32-8504-4abd-91f3-32f565f574de" ], "Cache-Control": [ "no-cache" @@ -77695,31 +79410,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12547" + "13407" ], "x-ms-correlation-request-id": [ - "57a7f8da-d8bb-4a6d-ad6e-aba00947ef7f" + "191439c8-5326-41d3-9849-df814e088bca" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212658Z:57a7f8da-d8bb-4a6d-ad6e-aba00947ef7f" + "WESTUS:20150813T074836Z:191439c8-5326-41d3-9849-df814e088bca" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meveo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meveo403sp2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo403sp2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meveo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meveo403sp2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo403sp2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "465" @@ -77737,7 +79452,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "971f3ff0-92be-4f33-9253-4348c16da9b7" + "1d583849-31eb-4ce7-b67e-69c14718b06e" ], "Cache-Control": [ "no-cache" @@ -77747,31 +79462,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12546" + "13406" ], "x-ms-correlation-request-id": [ - "49d1a6f0-7055-429f-b68e-e80659fccdd1" + "b5bce914-f3b9-4f1e-a3ae-f4fb50a4c991" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212658Z:49d1a6f0-7055-429f-b68e-e80659fccdd1" + "WESTUS:20150813T074837Z:b5bce914-f3b9-4f1e-a3ae-f4fb50a4c991" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlby9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlby9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meveo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo/Skus/meveo\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meveo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo/Skus/meveo\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "239" @@ -77789,7 +79504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7062c4d-ad00-4694-afe4-496c0582d3d6" + "84103691-ca53-4912-af20-2bdb5c2bb4bf" ], "Cache-Control": [ "no-cache" @@ -77799,31 +79514,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12545" + "13405" ], "x-ms-correlation-request-id": [ - "1db856f2-b239-485c-930e-d7822734f85e" + "2fb84153-9212-4715-b742-ca7078c2f737" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212658Z:1db856f2-b239-485c-930e-d7822734f85e" + "WESTUS:20150813T074837Z:2fb84153-9212-4715-b742-ca7078c2f737" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo/skus/meveo/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlby9za3VzL21ldmVvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo/skus/meveo/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlby9za3VzL21ldmVvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo/Skus/meveo/Versions/4.0.3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo/Skus/meveo/Versions/4.0.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "254" @@ -77841,7 +79556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "895b95be-3189-467b-b807-e9236f3bff56" + "140d1494-7f86-4e35-9311-1553e0d6c929" ], "Cache-Control": [ "no-cache" @@ -77851,31 +79566,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12544" + "13404" ], "x-ms-correlation-request-id": [ - "f366feaa-4462-462d-a036-4675dc00702d" + "3f77990b-4b1e-434b-9a72-acaccdff5edf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:f366feaa-4462-462d-a036-4675dc00702d" + "WESTUS:20150813T074837Z:3f77990b-4b1e-434b-9a72-acaccdff5edf" ], "Date": [ - "Wed, 05 Aug 2015 21:26:58 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo/skus/meveo/versions/4.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlby9za3VzL21ldmVvL3ZlcnNpb25zLzQuMC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo/skus/meveo/versions/4.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlby9za3VzL21ldmVvL3ZlcnNpb25zLzQuMC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"opencell\",\r\n \"name\": \"meveo\",\r\n \"product\": \"meveo\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo/Skus/meveo/Versions/4.0.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"opencell\",\r\n \"name\": \"meveo\",\r\n \"product\": \"meveo\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo/Skus/meveo/Versions/4.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "458" @@ -77893,7 +79608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "886a1c75-b8a4-4dee-9080-55633653dff2" + "7327a9ab-0563-4c34-a8d3-70c049d270ab" ], "Cache-Control": [ "no-cache" @@ -77903,31 +79618,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12543" + "13403" ], "x-ms-correlation-request-id": [ - "5708c27f-c15e-4f8b-9771-19de933b0e20" + "0bb2f795-ff6a-4523-8b1c-2038ccb77c55" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:5708c27f-c15e-4f8b-9771-19de933b0e20" + "WESTUS:20150813T074837Z:0bb2f795-ff6a-4523-8b1c-2038ccb77c55" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo403sp2/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlbzQwM3NwMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo403sp2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlbzQwM3NwMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meveo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo403sp2/Skus/meveo\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meveo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo403sp2/Skus/meveo\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "245" @@ -77945,7 +79660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c087c446-7f95-4571-8ae2-8a7531ee7e8b" + "973534ff-bbfb-45e5-b9ba-d330e35a7e18" ], "Cache-Control": [ "no-cache" @@ -77955,31 +79670,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12542" + "13402" ], "x-ms-correlation-request-id": [ - "935d4a0b-92a4-4509-b026-ffbdbfe25763" + "6c1d28b3-6551-4ce8-9799-6be6bc8a99de" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:935d4a0b-92a4-4509-b026-ffbdbfe25763" + "WESTUS:20150813T074837Z:6c1d28b3-6551-4ce8-9799-6be6bc8a99de" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo403sp2/skus/meveo/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlbzQwM3NwMi9za3VzL21ldmVvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo403sp2/skus/meveo/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlbzQwM3NwMi9za3VzL21ldmVvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.32\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo403sp2/Skus/meveo/Versions/4.0.32\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.32\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo403sp2/Skus/meveo/Versions/4.0.32\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "262" @@ -77997,7 +79712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c9ba4ca-729d-44f0-8a62-9d2d8f9be03c" + "d4f0623e-7d10-47f7-b250-54ca9bc76934" ], "Cache-Control": [ "no-cache" @@ -78007,31 +79722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12541" + "13401" ], "x-ms-correlation-request-id": [ - "994e26cd-52f0-4db4-a8f3-fe9301937403" + "d83e3876-e8a7-4ee3-b858-e98f569f1722" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:994e26cd-52f0-4db4-a8f3-fe9301937403" + "WESTUS:20150813T074837Z:d83e3876-e8a7-4ee3-b858-e98f569f1722" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo403sp2/skus/meveo/versions/4.0.32?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlbzQwM3NwMi9za3VzL21ldmVvL3ZlcnNpb25zLzQuMC4zMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opencell/artifacttypes/vmimage/offers/meveo403sp2/skus/meveo/versions/4.0.32?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3BlbmNlbGwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tZXZlbzQwM3NwMi9za3VzL21ldmVvL3ZlcnNpb25zLzQuMC4zMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"opencell\",\r\n \"name\": \"meveo\",\r\n \"product\": \"meveo403sp2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.32\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo403sp2/Skus/meveo/Versions/4.0.32\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"opencell\",\r\n \"name\": \"meveo\",\r\n \"product\": \"meveo403sp2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.32\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell/ArtifactTypes/VMImage/Offers/meveo403sp2/Skus/meveo/Versions/4.0.32\"\r\n}", "ResponseHeaders": { "Content-Length": [ "472" @@ -78049,7 +79764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9854e4a2-f404-4dd4-9453-702a50b01372" + "03b75cfb-26a7-4775-b60a-d9ac241f3534" ], "Cache-Control": [ "no-cache" @@ -78059,31 +79774,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12540" + "13400" ], "x-ms-correlation-request-id": [ - "9ff00fba-344c-431c-b71e-e08d6deddcd8" + "f18db697-2771-4b1e-aa7e-a51ab2c46f9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:9ff00fba-344c-431c-b71e-e08d6deddcd8" + "WESTUS:20150813T074837Z:f18db697-2771-4b1e-aa7e-a51ab2c46f9a" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CentOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CentOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "231" @@ -78101,7 +79816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dcf202b8-c346-47ed-a851-ad7aceb147f6" + "2436d91e-4425-49f2-83cf-9ab663b1e561" ], "Cache-Control": [ "no-cache" @@ -78111,31 +79826,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12539" + "13399" ], "x-ms-correlation-request-id": [ - "57ec38a5-56a2-4b3c-8683-2695755abe4a" + "d8415abe-c0d7-404d-b2f3-695aad91826c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:57ec38a5-56a2-4b3c-8683-2695755abe4a" + "WESTUS:20150813T074837Z:d8415abe-c0d7-404d-b2f3-695aad91826c" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "939" @@ -78153,7 +79868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "025f4789-8b8c-4e37-9be1-5e4a99ca11ff" + "fc60c581-1577-4a01-a7b1-5f0809b173f4" ], "Cache-Control": [ "no-cache" @@ -78163,31 +79878,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12538" + "13398" ], "x-ms-correlation-request-id": [ - "68bde113-2be9-4363-b2d0-05638575e0e6" + "7fe966c1-669d-4ec1-b1b9-397d8354ebc8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:68bde113-2be9-4363-b2d0-05638575e0e6" + "WESTUS:20150813T074837Z:7fe966c1-669d-4ec1-b1b9-397d8354ebc8" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.5/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi41L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.5/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi41L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201501\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201506\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201501\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201506\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "786" @@ -78205,7 +79920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8c40a50-df46-4702-91dc-83e246e747e5" + "d1ae631a-ff95-4f81-bf76-3b27876d8393" ], "Cache-Control": [ "no-cache" @@ -78215,31 +79930,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12537" + "13397" ], "x-ms-correlation-request-id": [ - "490e4d8e-b982-423d-a19e-22e261984170" + "a191a75e-ccd1-479a-9fed-7178bf071b27" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:490e4d8e-b982-423d-a19e-22e261984170" + "WESTUS:20150813T074837Z:a191a75e-ccd1-479a-9fed-7178bf071b27" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.5/versions/6.5.201501?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi41L3ZlcnNpb25zLzYuNS4yMDE1MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.5/versions/6.5.201501?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi41L3ZlcnNpb25zLzYuNS4yMDE1MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201501\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201501\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78257,7 +79972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a167f995-077c-414d-8401-794755d8c80d" + "f1888193-0456-4528-ac7f-a56bc609f2b2" ], "Cache-Control": [ "no-cache" @@ -78267,31 +79982,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12536" + "13396" ], "x-ms-correlation-request-id": [ - "2132b34d-5fc8-455b-af1b-13b9d96d22ef" + "fe756e0b-f0a0-47d9-a1b2-2191b5794cbd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212659Z:2132b34d-5fc8-455b-af1b-13b9d96d22ef" + "WESTUS:20150813T074837Z:fe756e0b-f0a0-47d9-a1b2-2191b5794cbd" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.5/versions/6.5.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi41L3ZlcnNpb25zLzYuNS4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.5/versions/6.5.201503?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi41L3ZlcnNpb25zLzYuNS4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78309,7 +80024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67554074-0669-4d60-a41b-356e7cfc802d" + "a52fbcd8-7eeb-47c4-8046-e341a208bbb0" ], "Cache-Control": [ "no-cache" @@ -78319,31 +80034,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12535" + "13395" ], "x-ms-correlation-request-id": [ - "49ce17e5-92ce-4f84-bb6a-200775e85c16" + "8c31dccc-7ccf-4e83-be0b-b9917a40bc4d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:49ce17e5-92ce-4f84-bb6a-200775e85c16" + "WESTUS:20150813T074837Z:8c31dccc-7ccf-4e83-be0b-b9917a40bc4d" ], "Date": [ - "Wed, 05 Aug 2015 21:26:59 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.5/versions/6.5.201506?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi41L3ZlcnNpb25zLzYuNS4yMDE1MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.5/versions/6.5.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi41L3ZlcnNpb25zLzYuNS4yMDE1MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201506\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.5.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.5/Versions/6.5.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78361,7 +80076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da60db27-b402-4306-89c5-b575cadbca28" + "374567e5-2f2b-4b6d-97f1-81209040fb7b" ], "Cache-Control": [ "no-cache" @@ -78371,34 +80086,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12534" + "13394" ], "x-ms-correlation-request-id": [ - "9be121de-1a08-4130-a462-486615271f7c" + "aed0b0e2-a42b-4031-a3d7-aee9d47440af" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:9be121de-1a08-4130-a462-486615271f7c" + "WESTUS:20150813T074838Z:aed0b0e2-a42b-4031-a3d7-aee9d47440af" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201501\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.20150706\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.20150706\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201501\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.20150706\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.20150706\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.20150731\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.20150731\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1051" + "1316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -78413,7 +80128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71f7924e-9898-4610-a1a5-51004766ea44" + "47c01b23-a2b3-4b33-8428-5753ea45c290" ], "Cache-Control": [ "no-cache" @@ -78423,31 +80138,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12533" + "13393" ], "x-ms-correlation-request-id": [ - "f6d69f15-1d0f-4a0c-9290-e7e3439d7c81" + "6f7610f7-8c89-4055-8c2a-a8c2798cd119" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:f6d69f15-1d0f-4a0c-9290-e7e3439d7c81" + "WESTUS:20150813T074838Z:6f7610f7-8c89-4055-8c2a-a8c2798cd119" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.201501?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.201501?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201501\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201501\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78465,7 +80180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e67f198e-3469-4f2b-9cc0-2b6f17383fc5" + "8ab2d724-90ed-47cb-9c10-3cefe9746c96" ], "Cache-Control": [ "no-cache" @@ -78475,31 +80190,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12532" + "13392" ], "x-ms-correlation-request-id": [ - "6e49e102-d985-486a-b217-ba165587fd82" + "22eddaf1-30a1-4158-ac74-6ae9b2935b62" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:6e49e102-d985-486a-b217-ba165587fd82" + "WESTUS:20150813T074838Z:22eddaf1-30a1-4158-ac74-6ae9b2935b62" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.201503?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78517,7 +80232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ba83323-29e2-41fe-8d77-1a86d42d6c12" + "c83bc9d0-f425-4f02-9133-868ce761562c" ], "Cache-Control": [ "no-cache" @@ -78527,31 +80242,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12531" + "13391" ], "x-ms-correlation-request-id": [ - "8a631a4d-bf1e-43f5-a57a-bbc985be2a09" + "fb655cb0-6798-46a3-9fd1-f1608dd74847" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:8a631a4d-bf1e-43f5-a57a-bbc985be2a09" + "WESTUS:20150813T074838Z:fb655cb0-6798-46a3-9fd1-f1608dd74847" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.201506?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201506\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78569,7 +80284,59 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4b44dc8-0d5b-445d-b41d-a147ded15d5e" + "77f73a99-b593-4b2c-aac6-7257e50fc93b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13390" + ], + "x-ms-correlation-request-id": [ + "cd778c54-610b-4e05-99e4-a5ed065f1dee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074838Z:cd778c54-610b-4e05-99e4-a5ed065f1dee" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.20150706?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDcwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.20150706\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.20150706\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "367" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "39dbbd48-0977-446e-9e95-43480974a443" ], "Cache-Control": [ "no-cache" @@ -78579,31 +80346,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12530" + "13389" ], "x-ms-correlation-request-id": [ - "4f6b0b5b-81df-4407-af31-e5862d981502" + "b12d75d4-9de1-4e6f-b98d-47ad353aa95e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:4f6b0b5b-81df-4407-af31-e5862d981502" + "WESTUS:20150813T074838Z:b12d75d4-9de1-4e6f-b98d-47ad353aa95e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.20150706?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDcwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/6.6/versions/6.6.20150731?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNi42L3ZlcnNpb25zLzYuNi4yMDE1MDczMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.20150706\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.20150706\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.6.20150731\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/6.6/Versions/6.6.20150731\"\r\n}", "ResponseHeaders": { "Content-Length": [ "367" @@ -78621,7 +80388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "429cb8bc-f695-43c8-854b-0ba7f11c0b0c" + "6710c4d6-bdf4-446d-92cb-2e710927385a" ], "Cache-Control": [ "no-cache" @@ -78631,31 +80398,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12529" + "13388" ], "x-ms-correlation-request-id": [ - "e3f02b90-cd93-4c9a-b516-eaa8375a4316" + "80cb8fb9-61d4-4938-a118-2f969a732cf3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:e3f02b90-cd93-4c9a-b516-eaa8375a4316" + "WESTUS:20150813T074838Z:80cb8fb9-61d4-4938-a118-2f969a732cf3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4wL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4wL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201501\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201506\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201501\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201506\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "786" @@ -78673,7 +80440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e07898c7-681e-46fe-9b32-2b0a56398b5b" + "0714cccc-341b-4030-853c-c6bf35e201f9" ], "Cache-Control": [ "no-cache" @@ -78683,31 +80450,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12528" + "13387" ], "x-ms-correlation-request-id": [ - "22d12625-1a2f-435c-affe-957a6633f20a" + "aaebe10f-db08-4a76-b57e-fc8059e5d73a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:22d12625-1a2f-435c-affe-957a6633f20a" + "WESTUS:20150813T074838Z:aaebe10f-db08-4a76-b57e-fc8059e5d73a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.0/versions/7.0.201501?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4wL3ZlcnNpb25zLzcuMC4yMDE1MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.0/versions/7.0.201501?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4wL3ZlcnNpb25zLzcuMC4yMDE1MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201501\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201501\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78725,7 +80492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cd791bd-51da-48fa-91ba-9ad273deb01c" + "4ae84534-d5a7-46e0-9fbc-710edcd8e8e9" ], "Cache-Control": [ "no-cache" @@ -78735,31 +80502,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12527" + "13386" ], "x-ms-correlation-request-id": [ - "4a8d3c6a-8679-441b-9dcc-e22b89139cf5" + "ea95086c-eb2c-4e43-b090-74d508b5578a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:4a8d3c6a-8679-441b-9dcc-e22b89139cf5" + "WESTUS:20150813T074838Z:ea95086c-eb2c-4e43-b090-74d508b5578a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.0/versions/7.0.201503?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4wL3ZlcnNpb25zLzcuMC4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.0/versions/7.0.201503?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4wL3ZlcnNpb25zLzcuMC4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201503\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78777,7 +80544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9575bb37-3eb5-4bac-8160-814b6700452f" + "966fa6bb-6ca5-4adb-8880-fac250e2a36e" ], "Cache-Control": [ "no-cache" @@ -78787,31 +80554,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12526" + "13385" ], "x-ms-correlation-request-id": [ - "e23d728a-3fd6-456d-9501-f7b7b57315b7" + "f1b82f26-6936-4b76-949e-d8880c54075e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:e23d728a-3fd6-456d-9501-f7b7b57315b7" + "WESTUS:20150813T074838Z:f1b82f26-6936-4b76-949e-d8880c54075e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.0/versions/7.0.201506?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4wL3ZlcnNpb25zLzcuMC4yMDE1MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.0/versions/7.0.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4wL3ZlcnNpb25zLzcuMC4yMDE1MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201506\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.0/Versions/7.0.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78829,7 +80596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ec55037-cbd1-4fb1-a934-5cd2edf4522c" + "de5334a7-17bb-45ff-9dd1-d3f8be9032d9" ], "Cache-Control": [ "no-cache" @@ -78839,34 +80606,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12525" + "13384" ], "x-ms-correlation-request-id": [ - "0dbb2319-1d09-4ed9-8053-08327bdd0d93" + "dd9f049a-3eb3-4415-8069-d5b8662ec090" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212700Z:0dbb2319-1d09-4ed9-8053-08327bdd0d93" + "WESTUS:20150813T074838Z:dd9f049a-3eb3-4415-8069-d5b8662ec090" ], "Date": [ - "Wed, 05 Aug 2015 21:27:00 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4xL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4xL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.201504\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.201506\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.201504\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.20150731\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.20150731\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "525" + "790" ], "Content-Type": [ "application/json; charset=utf-8" @@ -78881,7 +80648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6d11b8a-153d-46f7-ae74-8f564c113662" + "4fa92b56-a7f5-4492-8bfa-517082be001a" ], "Cache-Control": [ "no-cache" @@ -78891,31 +80658,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12524" + "13383" ], "x-ms-correlation-request-id": [ - "b6179794-c2b8-4110-969a-ea3b68f21341" + "845638e5-78ae-40e9-a4ec-78d5a5d3e4f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:b6179794-c2b8-4110-969a-ea3b68f21341" + "WESTUS:20150813T074839Z:845638e5-78ae-40e9-a4ec-78d5a5d3e4f0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.1/versions/7.1.201504?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4xL3ZlcnNpb25zLzcuMS4yMDE1MDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.1/versions/7.1.201504?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4xL3ZlcnNpb25zLzcuMS4yMDE1MDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.201504\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.201504\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78933,7 +80700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca12c830-9465-442d-a0a3-c8fb3dde8256" + "2ae0fc7b-5f3f-4b6e-a9fe-42b3b668599f" ], "Cache-Control": [ "no-cache" @@ -78943,31 +80710,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12523" + "13382" ], "x-ms-correlation-request-id": [ - "8fc8bbe1-372d-4763-9e2a-5df461ce7536" + "042f5177-b6cd-4134-aa2e-427190172832" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:8fc8bbe1-372d-4763-9e2a-5df461ce7536" + "WESTUS:20150813T074839Z:042f5177-b6cd-4134-aa2e-427190172832" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.1/versions/7.1.201506?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4xL3ZlcnNpb25zLzcuMS4yMDE1MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.1/versions/7.1.201506?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4xL3ZlcnNpb25zLzcuMS4yMDE1MDY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.201506\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.201506\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.201506\"\r\n}", "ResponseHeaders": { "Content-Length": [ "363" @@ -78985,7 +80752,59 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b7b3c8f-001c-4624-aeb9-542a360ca46a" + "f0efcef0-1986-4f56-9893-912a92a676d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13381" + ], + "x-ms-correlation-request-id": [ + "009ba597-8059-47a2-96c0-85f7ec135f51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074839Z:009ba597-8059-47a2-96c0-85f7ec135f51" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/OpenLogic/artifacttypes/vmimage/offers/CentOS/skus/7.1/versions/7.1.20150731?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3BlbkxvZ2ljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvQ2VudE9TL3NrdXMvNy4xL3ZlcnNpb25zLzcuMS4yMDE1MDczMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.20150731\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.1/Versions/7.1.20150731\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "367" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "021530ef-2501-4693-896e-94e046d900b7" ], "Cache-Control": [ "no-cache" @@ -78995,31 +80814,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12522" + "13380" ], "x-ms-correlation-request-id": [ - "5c1c0fdc-d4de-4741-aeb8-748efe212651" + "7c868749-d6cc-43d1-a91f-ca0e335bc385" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:5c1c0fdc-d4de-4741-aeb8-748efe212651" + "WESTUS:20150813T074839Z:7c868749-d6cc-43d1-a91f-ca0e335bc385" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/openmeap/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm1lYXAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/openmeap/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm1lYXAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap/ArtifactTypes/VMImage/Offers/openmeap\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap/ArtifactTypes/VMImage/Offers/openmeap\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "234" @@ -79037,7 +80856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6bcd995-ae29-45c8-a66c-22d6a4f57c8a" + "2edc87de-d823-42da-982b-ca15188b8c69" ], "Cache-Control": [ "no-cache" @@ -79047,31 +80866,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12521" + "13379" ], "x-ms-correlation-request-id": [ - "e1946671-a10b-4d3c-8e78-bcf21b040bd5" + "25569fb7-402f-4cdf-b3fa-9b764efe5d75" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:e1946671-a10b-4d3c-8e78-bcf21b040bd5" + "WESTUS:20150813T074839Z:25569fb7-402f-4cdf-b3fa-9b764efe5d75" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/openmeap/artifacttypes/vmimage/offers/openmeap/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm1lYXAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubWVhcC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/openmeap/artifacttypes/vmimage/offers/openmeap/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm1lYXAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubWVhcC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap-1_5-windows\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap/ArtifactTypes/VMImage/Offers/openmeap/Skus/openmeap-1_5-windows\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap-1_5-windows\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap/ArtifactTypes/VMImage/Offers/openmeap/Skus/openmeap-1_5-windows\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -79089,7 +80908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff3cbd29-ec30-4c29-8cce-6a3b3a3ebf68" + "fc1dee7a-dfa4-4079-ad58-9e2b975763ba" ], "Cache-Control": [ "no-cache" @@ -79099,31 +80918,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12520" + "13378" ], "x-ms-correlation-request-id": [ - "803d5f3c-4359-4226-b37e-abb45ab25eb2" + "e6d76937-d234-4bdd-a10d-51c00172774d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:803d5f3c-4359-4226-b37e-abb45ab25eb2" + "WESTUS:20150813T074839Z:e6d76937-d234-4bdd-a10d-51c00172774d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/openmeap/artifacttypes/vmimage/offers/openmeap/skus/openmeap-1_5-windows/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm1lYXAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubWVhcC9za3VzL29wZW5tZWFwLTFfNS13aW5kb3dzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/openmeap/artifacttypes/vmimage/offers/openmeap/skus/openmeap-1_5-windows/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm1lYXAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubWVhcC9za3VzL29wZW5tZWFwLTFfNS13aW5kb3dzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap/ArtifactTypes/VMImage/Offers/openmeap/Skus/openmeap-1_5-windows/Versions/1.5.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap/ArtifactTypes/VMImage/Offers/openmeap/Skus/openmeap-1_5-windows/Versions/1.5.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -79141,7 +80960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8281727d-fbc8-41c7-8137-cd2800a59834" + "8d1b47e2-fdce-480f-8493-99a5618ba297" ], "Cache-Control": [ "no-cache" @@ -79151,31 +80970,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12519" + "13377" ], "x-ms-correlation-request-id": [ - "d2ba969b-98ad-44b7-91e9-6a94d88e33ce" + "a8fcb407-8967-4ad3-9e80-25ad049098a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:d2ba969b-98ad-44b7-91e9-6a94d88e33ce" + "WESTUS:20150813T074839Z:a8fcb407-8967-4ad3-9e80-25ad049098a0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/openmeap/artifacttypes/vmimage/offers/openmeap/skus/openmeap-1_5-windows/versions/1.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm1lYXAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubWVhcC9za3VzL29wZW5tZWFwLTFfNS13aW5kb3dzL3ZlcnNpb25zLzEuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/openmeap/artifacttypes/vmimage/offers/openmeap/skus/openmeap-1_5-windows/versions/1.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm1lYXAvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubWVhcC9za3VzL29wZW5tZWFwLTFfNS13aW5kb3dzL3ZlcnNpb25zLzEuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"openmeap\",\r\n \"name\": \"openmeap-1_5-windows\",\r\n \"product\": \"openmeap\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap/ArtifactTypes/VMImage/Offers/openmeap/Skus/openmeap-1_5-windows/Versions/1.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"openmeap\",\r\n \"name\": \"openmeap-1_5-windows\",\r\n \"product\": \"openmeap\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap/ArtifactTypes/VMImage/Offers/openmeap/Skus/openmeap-1_5-windows/Versions/1.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "496" @@ -79193,7 +81012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1375000e-57da-4997-9b4a-2433a0e1b5e8" + "665db113-0403-434e-8e10-75d7b08cb250" ], "Cache-Control": [ "no-cache" @@ -79203,31 +81022,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12518" + "13376" ], "x-ms-correlation-request-id": [ - "b261f0f8-7155-4b06-98b3-3cd4f2826e9d" + "3da75be9-da1f-451a-9f34-dd30e0d40b68" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:b261f0f8-7155-4b06-98b3-3cd4f2826e9d" + "WESTUS:20150813T074839Z:3da75be9-da1f-451a-9f34-dd30e0d40b68" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opennebulasystems/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm5lYnVsYXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opennebulasystems/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm5lYnVsYXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebula-sandbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems/ArtifactTypes/VMImage/Offers/opennebula-sandbox\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebula-sandbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems/ArtifactTypes/VMImage/Offers/opennebula-sandbox\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "263" @@ -79245,7 +81064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92312477-c61a-456a-a25b-e92f2a8880a2" + "f77eae0c-f6cd-40a8-870f-efe769226f34" ], "Cache-Control": [ "no-cache" @@ -79255,31 +81074,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12517" + "13375" ], "x-ms-correlation-request-id": [ - "153fbee0-49f8-43d9-9a2f-91ac0e5608ca" + "fe80b04c-5599-4aa7-aaec-549affceaef0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:153fbee0-49f8-43d9-9a2f-91ac0e5608ca" + "WESTUS:20150813T074840Z:fe80b04c-5599-4aa7-aaec-549affceaef0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opennebulasystems/artifacttypes/vmimage/offers/opennebula-sandbox/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm5lYnVsYXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubmVidWxhLXNhbmRib3gvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opennebulasystems/artifacttypes/vmimage/offers/opennebula-sandbox/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm5lYnVsYXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubmVidWxhLXNhbmRib3gvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebula-sandbox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems/ArtifactTypes/VMImage/Offers/opennebula-sandbox/Skus/opennebula-sandbox\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebula-sandbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems/ArtifactTypes/VMImage/Offers/opennebula-sandbox/Skus/opennebula-sandbox\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "287" @@ -79297,7 +81116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7698303f-5414-4d95-9d08-31b29f4dc711" + "cb3ba964-b35e-4a44-9491-98e34d0dce98" ], "Cache-Control": [ "no-cache" @@ -79307,31 +81126,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12516" + "13374" ], "x-ms-correlation-request-id": [ - "40253345-0279-4fa6-bf69-bed53fdccedb" + "ec550a13-2823-4078-9b7e-c96faedb1e9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212701Z:40253345-0279-4fa6-bf69-bed53fdccedb" + "WESTUS:20150813T074840Z:ec550a13-2823-4078-9b7e-c96faedb1e9a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opennebulasystems/artifacttypes/vmimage/offers/opennebula-sandbox/skus/opennebula-sandbox/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm5lYnVsYXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubmVidWxhLXNhbmRib3gvc2t1cy9vcGVubmVidWxhLXNhbmRib3gvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opennebulasystems/artifacttypes/vmimage/offers/opennebula-sandbox/skus/opennebula-sandbox/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm5lYnVsYXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubmVidWxhLXNhbmRib3gvc2t1cy9vcGVubmVidWxhLXNhbmRib3gvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems/ArtifactTypes/VMImage/Offers/opennebula-sandbox/Skus/opennebula-sandbox/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems/ArtifactTypes/VMImage/Offers/opennebula-sandbox/Skus/opennebula-sandbox/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "289" @@ -79349,7 +81168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cca7105-c22a-4c8d-b9ef-996979bc110f" + "1ee66398-4aeb-41ef-81fb-da2cac56d12d" ], "Cache-Control": [ "no-cache" @@ -79359,31 +81178,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12515" + "13373" ], "x-ms-correlation-request-id": [ - "32c8ceb8-5289-4165-99d4-dc3599c3fec9" + "baa26b06-652b-449a-9112-2a4c72581926" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:32c8ceb8-5289-4165-99d4-dc3599c3fec9" + "WESTUS:20150813T074840Z:baa26b06-652b-449a-9112-2a4c72581926" ], "Date": [ - "Wed, 05 Aug 2015 21:27:01 GMT" + "Thu, 13 Aug 2015 07:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/opennebulasystems/artifacttypes/vmimage/offers/opennebula-sandbox/skus/opennebula-sandbox/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm5lYnVsYXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubmVidWxhLXNhbmRib3gvc2t1cy9vcGVubmVidWxhLXNhbmRib3gvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/opennebulasystems/artifacttypes/vmimage/offers/opennebula-sandbox/skus/opennebula-sandbox/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Blbm5lYnVsYXN5c3RlbXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcGVubmVidWxhLXNhbmRib3gvc2t1cy9vcGVubmVidWxhLXNhbmRib3gvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"opennebulasystems\",\r\n \"name\": \"opennebula-sandbox\",\r\n \"product\": \"opennebula-sandbox\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems/ArtifactTypes/VMImage/Offers/opennebula-sandbox/Skus/opennebula-sandbox/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"opennebulasystems\",\r\n \"name\": \"opennebula-sandbox\",\r\n \"product\": \"opennebula-sandbox\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems/ArtifactTypes/VMImage/Offers/opennebula-sandbox/Skus/opennebula-sandbox/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "528" @@ -79401,7 +81220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e375f5c6-1caa-43f2-9bd4-22db0a3ae701" + "04b409d6-4b67-482d-9143-e28c6852c84a" ], "Cache-Control": [ "no-cache" @@ -79411,31 +81230,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12514" + "13372" ], "x-ms-correlation-request-id": [ - "7b4e850c-3058-4c1f-a4f6-19d8ac366d02" + "d25d5431-328a-4ba7-8b65-de12f2cc9bb2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:7b4e850c-3058-4c1f-a4f6-19d8ac366d02" + "WESTUS:20150813T074840Z:d25d5431-328a-4ba7-8b65-de12f2cc9bb2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle-Linux-7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-Linux-7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle-WebLogic-Server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-WebLogic-Server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle-Linux-7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-Linux-7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle-WebLogic-Server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-WebLogic-Server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "826" @@ -79453,7 +81272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3f50001-bc87-4806-9a49-713eca5f71a4" + "698e1c9b-ba93-4717-b46a-f788d2e1fb7e" ], "Cache-Control": [ "no-cache" @@ -79463,31 +81282,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12513" + "13371" ], "x-ms-correlation-request-id": [ - "9128febc-b073-4bb8-b4ab-c8fd04c0e660" + "17361dac-6391-47c8-810d-a31d7f1e542f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:9128febc-b073-4bb8-b4ab-c8fd04c0e660" + "WESTUS:20150813T074840Z:17361dac-6391-47c8-810d-a31d7f1e542f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYzI5MGE2YjAzMWQ4NDFlMDlmMmRhNzU5YmJhYmU3MWZfX09yYWNsZS1MaW51eC02LTEyLTIwMTQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYzI5MGE2YjAzMWQ4NDFlMDlmMmRhNzU5YmJhYmU3MWZfX09yYWNsZS1MaW51eC02LTEyLTIwMTQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OL64\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/Skus/OL64\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OL64\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/Skus/OL64\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "286" @@ -79505,7 +81324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16007289-b49a-433e-b497-874757bddc1c" + "187e4f24-b8a3-4a71-be50-0e45bd49a671" ], "Cache-Control": [ "no-cache" @@ -79515,31 +81334,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12512" + "13370" ], "x-ms-correlation-request-id": [ - "bc3b79d5-301e-496f-800d-af8a71ddf723" + "7a419cfb-8bca-457b-b4dc-c2b171be3f57" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:bc3b79d5-301e-496f-800d-af8a71ddf723" + "WESTUS:20150813T074840Z:7a419cfb-8bca-457b-b4dc-c2b171be3f57" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/skus/OL64/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYzI5MGE2YjAzMWQ4NDFlMDlmMmRhNzU5YmJhYmU3MWZfX09yYWNsZS1MaW51eC02LTEyLTIwMTQvc2t1cy9PTDY0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/skus/OL64/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYzI5MGE2YjAzMWQ4NDFlMDlmMmRhNzU5YmJhYmU3MWZfX09yYWNsZS1MaW51eC02LTEyLTIwMTQvc2t1cy9PTDY0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/Skus/OL64/Versions/6.4.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/Skus/OL64/Versions/6.4.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "302" @@ -79557,7 +81376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c991aad-168e-45f3-b491-793d241c9558" + "f797f177-4bff-4d99-9c8d-3acd4eba9ee2" ], "Cache-Control": [ "no-cache" @@ -79567,31 +81386,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12511" + "13369" ], "x-ms-correlation-request-id": [ - "b918448d-e273-4ebc-9b04-d63b5a6c2590" + "10765654-a078-441d-8e8f-b48447fe32a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:b918448d-e273-4ebc-9b04-d63b5a6c2590" + "WESTUS:20150813T074840Z:10765654-a078-441d-8e8f-b48447fe32a0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/skus/OL64/versions/6.4.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYzI5MGE2YjAzMWQ4NDFlMDlmMmRhNzU5YmJhYmU3MWZfX09yYWNsZS1MaW51eC02LTEyLTIwMTQvc2t1cy9PTDY0L3ZlcnNpb25zLzYuNC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/skus/OL64/versions/6.4.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYzI5MGE2YjAzMWQ4NDFlMDlmMmRhNzU5YmJhYmU3MWZfX09yYWNsZS1MaW51eC02LTEyLTIwMTQvc2t1cy9PTDY0L3ZlcnNpb25zLzYuNC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/Skus/OL64/Versions/6.4.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"6.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014/Skus/OL64/Versions/6.4.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "401" @@ -79609,7 +81428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0817cabf-4589-4b2a-aaa0-41c94205d97b" + "2e3d0f03-bad6-4197-8550-522c76456707" ], "Cache-Control": [ "no-cache" @@ -79619,31 +81438,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12510" + "13368" ], "x-ms-correlation-request-id": [ - "e95453d6-b11d-4d79-8abc-ea0dd910ee96" + "a0bfaac6-869d-4c45-bafc-ec66feff3844" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:e95453d6-b11d-4d79-8abc-ea0dd910ee96" + "WESTUS:20150813T074840Z:a0bfaac6-869d-4c45-bafc-ec66feff3844" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-Linux-7/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLUxpbnV4LTcvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-Linux-7/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLUxpbnV4LTcvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OL70\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-Linux-7/Skus/OL70\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OL70\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-Linux-7/Skus/OL70\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "244" @@ -79661,7 +81480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc954bf5-0ae8-452a-b897-2272c4f7ecb1" + "435bc7eb-c314-485e-afa7-b68f14587643" ], "Cache-Control": [ "no-cache" @@ -79671,31 +81490,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12509" + "13367" ], "x-ms-correlation-request-id": [ - "5c485abe-70d5-423f-a361-6167a57831ca" + "43b9aa36-2225-4c4e-b2ba-e2416998dcad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:5c485abe-70d5-423f-a361-6167a57831ca" + "WESTUS:20150813T074841Z:43b9aa36-2225-4c4e-b2ba-e2416998dcad" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-Linux-7/skus/OL70/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLUxpbnV4LTcvc2t1cy9PTDcwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-Linux-7/skus/OL70/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLUxpbnV4LTcvc2t1cy9PTDcwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-Linux-7/Skus/OL70/Versions/7.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-Linux-7/Skus/OL70/Versions/7.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -79713,7 +81532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3546e984-6ad0-4ea7-8699-b102fd4b9f13" + "c1ef3d50-2d17-4a85-8da0-96f955c53306" ], "Cache-Control": [ "no-cache" @@ -79723,31 +81542,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12508" + "13366" ], "x-ms-correlation-request-id": [ - "38405a56-863c-4214-bb22-ad91a73361e3" + "c9444836-06d0-4196-a2c2-c836d87f1303" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:38405a56-863c-4214-bb22-ad91a73361e3" + "WESTUS:20150813T074841Z:c9444836-06d0-4196-a2c2-c836d87f1303" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-Linux-7/skus/OL70/versions/7.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLUxpbnV4LTcvc2t1cy9PTDcwL3ZlcnNpb25zLzcuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-Linux-7/skus/OL70/versions/7.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLUxpbnV4LTcvc2t1cy9PTDcwL3ZlcnNpb25zLzcuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-Linux-7/Skus/OL70/Versions/7.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-Linux-7/Skus/OL70/Versions/7.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "359" @@ -79765,7 +81584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4abd89ae-cabe-4c99-a04c-453994ec927c" + "6cdaedde-d9a3-4cbe-bae2-66795063db01" ], "Cache-Control": [ "no-cache" @@ -79775,31 +81594,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12507" + "13365" ], "x-ms-correlation-request-id": [ - "ca15fad4-4ebe-4b63-8eab-75a4573ade13" + "a438d0a5-66bb-44de-8e74-3dabce3cf067" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212702Z:ca15fad4-4ebe-4b63-8eab-75a4573ade13" + "WESTUS:20150813T074841Z:a438d0a5-66bb-44de-8e74-3dabce3cf067" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-WebLogic-Server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLVdlYkxvZ2ljLVNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-WebLogic-Server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLVdlYkxvZ2ljLVNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle-WebLogic-Server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-WebLogic-Server/Skus/Oracle-WebLogic-Server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle-WebLogic-Server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-WebLogic-Server/Skus/Oracle-WebLogic-Server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "288" @@ -79817,7 +81636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4dee1d1-1cde-489d-a19f-7f0e48c8280e" + "bc3aa17b-f417-4c55-b80f-845eb8b529a5" ], "Cache-Control": [ "no-cache" @@ -79827,31 +81646,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12506" + "13364" ], "x-ms-correlation-request-id": [ - "0507c114-3063-46ac-bf20-177fadacd085" + "edb15d84-7f99-4be4-8322-dcde5fc71062" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:0507c114-3063-46ac-bf20-177fadacd085" + "WESTUS:20150813T074841Z:edb15d84-7f99-4be4-8322-dcde5fc71062" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-WebLogic-Server/skus/Oracle-WebLogic-Server/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLVdlYkxvZ2ljLVNlcnZlci9za3VzL09yYWNsZS1XZWJMb2dpYy1TZXJ2ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-WebLogic-Server/skus/Oracle-WebLogic-Server/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLVdlYkxvZ2ljLVNlcnZlci9za3VzL09yYWNsZS1XZWJMb2dpYy1TZXJ2ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-WebLogic-Server/Skus/Oracle-WebLogic-Server/Versions/12.1.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-WebLogic-Server/Skus/Oracle-WebLogic-Server/Versions/12.1.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "288" @@ -79869,7 +81688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba7646cb-773f-442d-b949-4501f356668f" + "95c8452b-f8cc-4d73-b58c-445a6da807b4" ], "Cache-Control": [ "no-cache" @@ -79879,31 +81698,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12505" + "13363" ], "x-ms-correlation-request-id": [ - "9f83d260-2d1a-463c-a650-33db98ec4dde" + "236a7569-45a9-4b6e-ae20-fbedef8e26e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:9f83d260-2d1a-463c-a650-33db98ec4dde" + "WESTUS:20150813T074841Z:236a7569-45a9-4b6e-ae20-fbedef8e26e7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:02 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-WebLogic-Server/skus/Oracle-WebLogic-Server/versions/12.1.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLVdlYkxvZ2ljLVNlcnZlci9za3VzL09yYWNsZS1XZWJMb2dpYy1TZXJ2ZXIvdmVyc2lvbnMvMTIuMS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Oracle/artifacttypes/vmimage/offers/Oracle-WebLogic-Server/skus/Oracle-WebLogic-Server/versions/12.1.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvT3JhY2xlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvT3JhY2xlLVdlYkxvZ2ljLVNlcnZlci9za3VzL09yYWNsZS1XZWJMb2dpYy1TZXJ2ZXIvdmVyc2lvbnMvMTIuMS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-WebLogic-Server/Skus/Oracle-WebLogic-Server/Versions/12.1.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"12.1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle/ArtifactTypes/VMImage/Offers/Oracle-WebLogic-Server/Skus/Oracle-WebLogic-Server/Versions/12.1.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "387" @@ -79921,7 +81740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d97e16c9-75ea-47e9-8466-b298c6b2589f" + "5db102b8-4dc5-4723-8323-3842ebb2a202" ], "Cache-Control": [ "no-cache" @@ -79931,31 +81750,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12504" + "13362" ], "x-ms-correlation-request-id": [ - "dde72987-ea56-4125-b84f-e541e8b5f25f" + "ff1f76d9-33c4-4479-965c-2a7e5c477193" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:dde72987-ea56-4125-b84f-e541e8b5f25f" + "WESTUS:20150813T074841Z:ff1f76d9-33c4-4479-965c-2a7e5c477193" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/orientdb/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3JpZW50ZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/orientdb/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3JpZW50ZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb-community-edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb/ArtifactTypes/VMImage/Offers/orientdb-community-edition\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb-community-edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb/ArtifactTypes/VMImage/Offers/orientdb-community-edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "270" @@ -79973,7 +81792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a18fdc04-c06b-4f69-9603-3ff75b3ee00d" + "9c42d99e-e938-426b-b274-fd1b8df80d35" ], "Cache-Control": [ "no-cache" @@ -79983,31 +81802,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12503" + "13361" ], "x-ms-correlation-request-id": [ - "1a0e4696-bdd6-45ee-b036-57d911cb44b3" + "9000b5ba-c5c7-4fc1-b3e1-0f27335594b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:1a0e4696-bdd6-45ee-b036-57d911cb44b3" + "WESTUS:20150813T074841Z:9000b5ba-c5c7-4fc1-b3e1-0f27335594b4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/orientdb/artifacttypes/vmimage/offers/orientdb-community-edition/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3JpZW50ZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcmllbnRkYi1jb21tdW5pdHktZWRpdGlvbi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/orientdb/artifacttypes/vmimage/offers/orientdb-community-edition/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3JpZW50ZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcmllbnRkYi1jb21tdW5pdHktZWRpdGlvbi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb-community-edition-2_0_10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb/ArtifactTypes/VMImage/Offers/orientdb-community-edition/Skus/orientdb-community-edition-2_0_10\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb-community-edition-2_0_10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb/ArtifactTypes/VMImage/Offers/orientdb-community-edition/Skus/orientdb-community-edition-2_0_10\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "316" @@ -80025,7 +81844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e83dc1a-7da1-4c98-9619-96b5e97e8554" + "31716514-ba03-443a-8e86-8b27659e57f7" ], "Cache-Control": [ "no-cache" @@ -80035,31 +81854,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12502" + "13360" ], "x-ms-correlation-request-id": [ - "d2ca5f75-7d3c-4c53-abbd-906e7f07f507" + "553abcc7-01f2-44df-9e06-4dd3351041a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:d2ca5f75-7d3c-4c53-abbd-906e7f07f507" + "WESTUS:20150813T074841Z:553abcc7-01f2-44df-9e06-4dd3351041a0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/orientdb/artifacttypes/vmimage/offers/orientdb-community-edition/skus/orientdb-community-edition-2_0_10/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3JpZW50ZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcmllbnRkYi1jb21tdW5pdHktZWRpdGlvbi9za3VzL29yaWVudGRiLWNvbW11bml0eS1lZGl0aW9uLTJfMF8xMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/orientdb/artifacttypes/vmimage/offers/orientdb-community-edition/skus/orientdb-community-edition-2_0_10/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3JpZW50ZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcmllbnRkYi1jb21tdW5pdHktZWRpdGlvbi9za3VzL29yaWVudGRiLWNvbW11bml0eS1lZGl0aW9uLTJfMF8xMC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb/ArtifactTypes/VMImage/Offers/orientdb-community-edition/Skus/orientdb-community-edition-2_0_10/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb/ArtifactTypes/VMImage/Offers/orientdb-community-edition/Skus/orientdb-community-edition-2_0_10/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "303" @@ -80077,7 +81896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82dfcb47-f48a-47b8-b41d-0f4dd184ab6c" + "82322111-e31b-44a1-b902-a87aea9b20c9" ], "Cache-Control": [ "no-cache" @@ -80087,31 +81906,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12501" + "13359" ], "x-ms-correlation-request-id": [ - "fe0c18e7-fb85-49b0-b183-ce7682673e2a" + "9a22ad7f-4797-488e-98dc-79f127ec2cd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:fe0c18e7-fb85-49b0-b183-ce7682673e2a" + "WESTUS:20150813T074841Z:9a22ad7f-4797-488e-98dc-79f127ec2cd3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/orientdb/artifacttypes/vmimage/offers/orientdb-community-edition/skus/orientdb-community-edition-2_0_10/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3JpZW50ZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcmllbnRkYi1jb21tdW5pdHktZWRpdGlvbi9za3VzL29yaWVudGRiLWNvbW11bml0eS1lZGl0aW9uLTJfMF8xMC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/orientdb/artifacttypes/vmimage/offers/orientdb-community-edition/skus/orientdb-community-edition-2_0_10/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3JpZW50ZGIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9vcmllbnRkYi1jb21tdW5pdHktZWRpdGlvbi9za3VzL29yaWVudGRiLWNvbW11bml0eS1lZGl0aW9uLTJfMF8xMC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"orientdb\",\r\n \"name\": \"orientdb-community-edition-2_0_10\",\r\n \"product\": \"orientdb-community-edition\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb/ArtifactTypes/VMImage/Offers/orientdb-community-edition/Skus/orientdb-community-edition-2_0_10/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"orientdb\",\r\n \"name\": \"orientdb-community-edition-2_0_10\",\r\n \"product\": \"orientdb-community-edition\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb/ArtifactTypes/VMImage/Offers/orientdb-community-edition/Skus/orientdb-community-edition-2_0_10/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "598" @@ -80129,7 +81948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c9d6140-a010-4fb4-99b2-f79aba5c9b1c" + "683ab5d9-c183-4aa8-9058-1ca441948754" ], "Cache-Control": [ "no-cache" @@ -80139,31 +81958,83 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12500" + "13358" ], "x-ms-correlation-request-id": [ - "1a934414-1ba4-4c07-83ae-bb162dc5d20a" + "5cbda13b-4310-4440-aec9-d6859eec63e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:1a934414-1ba4-4c07-83ae-bb162dc5d20a" + "WESTUS:20150813T074842Z:5cbda13b-4310-4440-aec9-d6859eec63e1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/outsystems/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3V0c3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/osisoft/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3Npc29mdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems/ArtifactTypes/VMImage/Offers/outsystems\"\r\n }\r\n]", + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "51705465-d82f-4b40-ae00-e7a7c43ab757" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13357" + ], + "x-ms-correlation-request-id": [ + "5c745e41-c3c6-491a-b98e-e6f997717696" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074842Z:5c745e41-c3c6-491a-b98e-e6f997717696" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/outsystems/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3V0c3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems/ArtifactTypes/VMImage/Offers/outsystems\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "240" @@ -80181,7 +82052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00638e57-da93-4b9a-b752-52117ffcdc79" + "ebf4812d-07ea-46d1-b430-58f323a29fac" ], "Cache-Control": [ "no-cache" @@ -80191,31 +82062,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12499" + "13356" ], "x-ms-correlation-request-id": [ - "52e7734e-fe28-43d1-9184-0d0ccf362c8a" + "79bd4f52-f686-4947-aef4-36eecd280a25" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:52e7734e-fe28-43d1-9184-0d0ccf362c8a" + "WESTUS:20150813T074842Z:79bd4f52-f686-4947-aef4-36eecd280a25" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/outsystems/artifacttypes/vmimage/offers/outsystems/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3V0c3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL291dHN5c3RlbXMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/outsystems/artifacttypes/vmimage/offers/outsystems/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3V0c3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL291dHN5c3RlbXMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems_azure_intro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems/ArtifactTypes/VMImage/Offers/outsystems/Skus/outsystems_azure_intro\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems_azure_intro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems/ArtifactTypes/VMImage/Offers/outsystems/Skus/outsystems_azure_intro\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -80233,7 +82104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a85bad2d-48b9-4d75-b2d3-869c13a8bbd9" + "4fd340bc-bd8c-4e6e-8f47-9fd4e96ab2a7" ], "Cache-Control": [ "no-cache" @@ -80243,31 +82114,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12498" + "13355" ], "x-ms-correlation-request-id": [ - "fe1b6028-9c77-45ae-9c19-cebf7201257b" + "ee0437a8-badd-4c1b-9af1-36a65a0060a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:fe1b6028-9c77-45ae-9c19-cebf7201257b" + "WESTUS:20150813T074842Z:ee0437a8-badd-4c1b-9af1-36a65a0060a0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/outsystems/artifacttypes/vmimage/offers/outsystems/skus/outsystems_azure_intro/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3V0c3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL291dHN5c3RlbXMvc2t1cy9vdXRzeXN0ZW1zX2F6dXJlX2ludHJvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/outsystems/artifacttypes/vmimage/offers/outsystems/skus/outsystems_azure_intro/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3V0c3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL291dHN5c3RlbXMvc2t1cy9vdXRzeXN0ZW1zX2F6dXJlX2ludHJvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems/ArtifactTypes/VMImage/Offers/outsystems/Skus/outsystems_azure_intro/Versions/2.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems/ArtifactTypes/VMImage/Offers/outsystems/Skus/outsystems_azure_intro/Versions/2.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "278" @@ -80285,7 +82156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a512bd7-46fc-472e-987f-80c0af0e3a81" + "90cbfeff-f1d0-4ef0-b07c-2646d0b8e9d3" ], "Cache-Control": [ "no-cache" @@ -80295,31 +82166,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12497" + "13354" ], "x-ms-correlation-request-id": [ - "057f0b27-a86f-4543-8e7f-7933f7456574" + "644907a2-3686-4f98-b745-b08ffdb7fe01" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:057f0b27-a86f-4543-8e7f-7933f7456574" + "WESTUS:20150813T074842Z:644907a2-3686-4f98-b745-b08ffdb7fe01" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/outsystems/artifacttypes/vmimage/offers/outsystems/skus/outsystems_azure_intro/versions/2.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3V0c3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL291dHN5c3RlbXMvc2t1cy9vdXRzeXN0ZW1zX2F6dXJlX2ludHJvL3ZlcnNpb25zLzIuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/outsystems/artifacttypes/vmimage/offers/outsystems/skus/outsystems_azure_intro/versions/2.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvb3V0c3lzdGVtcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL291dHN5c3RlbXMvc2t1cy9vdXRzeXN0ZW1zX2F6dXJlX2ludHJvL3ZlcnNpb25zLzIuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"outsystems\",\r\n \"name\": \"outsystems_azure_intro\",\r\n \"product\": \"outsystems\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems/ArtifactTypes/VMImage/Offers/outsystems/Skus/outsystems_azure_intro/Versions/2.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"outsystems\",\r\n \"name\": \"outsystems_azure_intro\",\r\n \"product\": \"outsystems\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems/ArtifactTypes/VMImage/Offers/outsystems/Skus/outsystems_azure_intro/Versions/2.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -80337,7 +82208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "829e81b6-b89b-4715-80d3-ff0bc91ea78f" + "94bc9dcb-9660-4476-a0c6-515629b74415" ], "Cache-Control": [ "no-cache" @@ -80347,31 +82218,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12496" + "13353" ], "x-ms-correlation-request-id": [ - "aaade808-c7ae-47b4-91a0-1fc51b955f1d" + "0c883ba5-38db-485c-bb51-075973e880e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212703Z:aaade808-c7ae-47b4-91a0-1fc51b955f1d" + "WESTUS:20150813T074842Z:0c883ba5-38db-485c-bb51-075973e880e2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pointmatter/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcG9pbnRtYXR0ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/pointmatter/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcG9pbnRtYXR0ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter-csvhub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter-csvhub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -80389,7 +82260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98599941-13de-4c24-8871-fb2b1293f8db" + "e3fdc426-47e1-4798-aa96-1ff49f65dd72" ], "Cache-Control": [ "no-cache" @@ -80399,31 +82270,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12495" + "13352" ], "x-ms-correlation-request-id": [ - "4fcfd75e-cac3-46a8-8235-e7a1dcc37e6c" + "99679587-6ea0-4fd6-abf0-52e1067c9f5d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:4fcfd75e-cac3-46a8-8235-e7a1dcc37e6c" + "WESTUS:20150813T074842Z:99679587-6ea0-4fd6-abf0-52e1067c9f5d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:03 GMT" + "Thu, 13 Aug 2015 07:48:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pointmatter/artifacttypes/vmimage/offers/pointmatter-csvhub/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcG9pbnRtYXR0ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wb2ludG1hdHRlci1jc3ZodWIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/pointmatter/artifacttypes/vmimage/offers/pointmatter-csvhub/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcG9pbnRtYXR0ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wb2ludG1hdHRlci1jc3ZodWIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter-csvhub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub/Skus/pointmatter-csvhub\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter-csvhub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub/Skus/pointmatter-csvhub\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "281" @@ -80441,7 +82312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0dfc32e7-6e6f-4173-a391-bf5ad23d18f3" + "738af363-9fac-43a0-a7f6-e285962612d2" ], "Cache-Control": [ "no-cache" @@ -80451,31 +82322,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12494" + "13351" ], "x-ms-correlation-request-id": [ - "78e5c051-cc36-4e63-8782-d4c5e83e6c38" + "6897d08a-3d51-45cf-ae1c-bcc98a88e206" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:78e5c051-cc36-4e63-8782-d4c5e83e6c38" + "WESTUS:20150813T074842Z:6897d08a-3d51-45cf-ae1c-bcc98a88e206" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pointmatter/artifacttypes/vmimage/offers/pointmatter-csvhub/skus/pointmatter-csvhub/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcG9pbnRtYXR0ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wb2ludG1hdHRlci1jc3ZodWIvc2t1cy9wb2ludG1hdHRlci1jc3ZodWIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/pointmatter/artifacttypes/vmimage/offers/pointmatter-csvhub/skus/pointmatter-csvhub/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcG9pbnRtYXR0ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wb2ludG1hdHRlci1jc3ZodWIvc2t1cy9wb2ludG1hdHRlci1jc3ZodWIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub/Skus/pointmatter-csvhub/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub/Skus/pointmatter-csvhub/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "283" @@ -80493,7 +82364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "306ab1e8-a912-49f9-9ce5-fc138ac025ac" + "4f67499d-37ca-40f4-934f-978702513a71" ], "Cache-Control": [ "no-cache" @@ -80503,31 +82374,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12493" + "13350" ], "x-ms-correlation-request-id": [ - "ae68f052-70f2-42bc-920d-9c47f3151fe7" + "2e68e1b2-d26e-468c-a25d-05561c3d0dd2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:ae68f052-70f2-42bc-920d-9c47f3151fe7" + "WESTUS:20150813T074842Z:2e68e1b2-d26e-468c-a25d-05561c3d0dd2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pointmatter/artifacttypes/vmimage/offers/pointmatter-csvhub/skus/pointmatter-csvhub/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcG9pbnRtYXR0ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wb2ludG1hdHRlci1jc3ZodWIvc2t1cy9wb2ludG1hdHRlci1jc3ZodWIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/pointmatter/artifacttypes/vmimage/offers/pointmatter-csvhub/skus/pointmatter-csvhub/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcG9pbnRtYXR0ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wb2ludG1hdHRlci1jc3ZodWIvc2t1cy9wb2ludG1hdHRlci1jc3ZodWIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"pointmatter\",\r\n \"name\": \"pointmatter-csvhub\",\r\n \"product\": \"pointmatter-csvhub\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub/Skus/pointmatter-csvhub/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"pointmatter\",\r\n \"name\": \"pointmatter-csvhub\",\r\n \"product\": \"pointmatter-csvhub\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub/Skus/pointmatter-csvhub/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "560" @@ -80545,7 +82416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3aa78146-662f-47e8-98c3-f0adc0c5fe1a" + "9cfc60c7-e6fb-4ab3-8a42-839a5404d819" ], "Cache-Control": [ "no-cache" @@ -80555,31 +82426,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12492" + "13349" ], "x-ms-correlation-request-id": [ - "cf33ab7f-909c-44ea-9f68-571f6928200c" + "73661c72-6b4b-4497-a30e-9883cace6739" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:cf33ab7f-909c-44ea-9f68-571f6928200c" + "WESTUS:20150813T074842Z:73661c72-6b4b-4497-a30e-9883cace6739" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/predictionio/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGljdGlvbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/predictionio/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGljdGlvbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio/ArtifactTypes/VMImage/Offers/predictionio\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio/ArtifactTypes/VMImage/Offers/predictionio\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "246" @@ -80597,7 +82468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ed705c0-7843-402b-a180-71f06bf3a29e" + "1ccf1880-f71d-478c-b326-5e6dfc622b8a" ], "Cache-Control": [ "no-cache" @@ -80607,31 +82478,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12491" + "13348" ], "x-ms-correlation-request-id": [ - "a1da760c-998b-42a9-8159-a79199ae53c9" + "64944e32-f22d-4b5c-b656-20c18d952fad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:a1da760c-998b-42a9-8159-a79199ae53c9" + "WESTUS:20150813T074843Z:64944e32-f22d-4b5c-b656-20c18d952fad" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/predictionio/artifacttypes/vmimage/offers/predictionio/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGljdGlvbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGljdGlvbmlvL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/predictionio/artifacttypes/vmimage/offers/predictionio/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGljdGlvbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGljdGlvbmlvL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"community\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio/ArtifactTypes/VMImage/Offers/predictionio/Skus/community\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"community\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio/ArtifactTypes/VMImage/Offers/predictionio/Skus/community\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -80649,7 +82520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c0d98d2-3e70-461b-8ca5-9bcbd8a3aa4f" + "29d93473-8919-49ee-ac19-22fa169ba992" ], "Cache-Control": [ "no-cache" @@ -80659,31 +82530,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12490" + "13347" ], "x-ms-correlation-request-id": [ - "c3908440-10f3-463d-a831-4717807bd013" + "cad13607-9a91-41c5-bfe1-d4f674b9426c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:c3908440-10f3-463d-a831-4717807bd013" + "WESTUS:20150813T074843Z:cad13607-9a91-41c5-bfe1-d4f674b9426c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/predictionio/artifacttypes/vmimage/offers/predictionio/skus/community/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGljdGlvbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGljdGlvbmlvL3NrdXMvY29tbXVuaXR5L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/predictionio/artifacttypes/vmimage/offers/predictionio/skus/community/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGljdGlvbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGljdGlvbmlvL3NrdXMvY29tbXVuaXR5L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.9.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio/ArtifactTypes/VMImage/Offers/predictionio/Skus/community/Versions/0.9.3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.9.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio/ArtifactTypes/VMImage/Offers/predictionio/Skus/community/Versions/0.9.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -80701,7 +82572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e5549d0-933b-4e11-a15a-f18378e32710" + "b8a0be90-87f5-4192-a21d-8a614a9e5f72" ], "Cache-Control": [ "no-cache" @@ -80711,31 +82582,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12489" + "13346" ], "x-ms-correlation-request-id": [ - "b4bd35a4-7134-4692-afa3-84a17078b1ff" + "5335579d-e917-4065-a855-47b9281ec913" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:b4bd35a4-7134-4692-afa3-84a17078b1ff" + "WESTUS:20150813T074843Z:5335579d-e917-4065-a855-47b9281ec913" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/predictionio/artifacttypes/vmimage/offers/predictionio/skus/community/versions/0.9.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGljdGlvbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGljdGlvbmlvL3NrdXMvY29tbXVuaXR5L3ZlcnNpb25zLzAuOS4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/predictionio/artifacttypes/vmimage/offers/predictionio/skus/community/versions/0.9.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGljdGlvbmlvL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGljdGlvbmlvL3NrdXMvY29tbXVuaXR5L3ZlcnNpb25zLzAuOS4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"predictionio\",\r\n \"name\": \"community\",\r\n \"product\": \"predictionio\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.9.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio/ArtifactTypes/VMImage/Offers/predictionio/Skus/community/Versions/0.9.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"predictionio\",\r\n \"name\": \"community\",\r\n \"product\": \"predictionio\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.9.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio/ArtifactTypes/VMImage/Offers/predictionio/Skus/community/Versions/0.9.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "488" @@ -80753,7 +82624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d840a896-3e80-4af4-8f70-e68edac00713" + "f452f4bf-453b-4bac-93c1-27913ebebfe0" ], "Cache-Control": [ "no-cache" @@ -80763,31 +82634,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12488" + "13345" ], "x-ms-correlation-request-id": [ - "145bbe79-183e-43a1-89e0-6a86330c8099" + "3e802056-33d8-4993-bf9f-94c9009541a8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:145bbe79-183e-43a1-89e0-6a86330c8099" + "WESTUS:20150813T074843Z:3e802056-33d8-4993-bf9f-94c9009541a8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/predixion/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGl4aW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/predixion/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGl4aW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion-insight-2015-02-feb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion/ArtifactTypes/VMImage/Offers/predixion-insight-2015-02-feb\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion-insight-2015-02-feb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion/ArtifactTypes/VMImage/Offers/predixion-insight-2015-02-feb\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -80805,7 +82676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38cabf1a-28fa-4299-b331-eb6be9ca7e6f" + "c0200a28-e0ac-41ea-9b37-d8489e7bd092" ], "Cache-Control": [ "no-cache" @@ -80815,31 +82686,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12487" + "13344" ], "x-ms-correlation-request-id": [ - "547e4503-f0d6-4502-b624-272cf8bb2302" + "ab680eeb-3c06-44ea-94b7-eda7078f00f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:547e4503-f0d6-4502-b624-272cf8bb2302" + "WESTUS:20150813T074843Z:ab680eeb-3c06-44ea-94b7-eda7078f00f8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/predixion/artifacttypes/vmimage/offers/predixion-insight-2015-02-feb/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGl4aW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGl4aW9uLWluc2lnaHQtMjAxNS0wMi1mZWIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/predixion/artifacttypes/vmimage/offers/predixion-insight-2015-02-feb/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGl4aW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGl4aW9uLWluc2lnaHQtMjAxNS0wMi1mZWIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"r-only\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion/ArtifactTypes/VMImage/Offers/predixion-insight-2015-02-feb/Skus/r-only\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"r-only\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion/ArtifactTypes/VMImage/Offers/predixion-insight-2015-02-feb/Skus/r-only\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "266" @@ -80857,7 +82728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78521b24-555e-4a76-b11e-da821c842e43" + "6f15cf3b-4240-40c1-a3f0-fd27f05f2dfd" ], "Cache-Control": [ "no-cache" @@ -80867,31 +82738,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12486" + "13343" ], "x-ms-correlation-request-id": [ - "96a98f0e-7a55-4d87-8066-4887fd88c5f2" + "34417ad0-c2b6-48c6-9ab7-a1ead288a676" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212704Z:96a98f0e-7a55-4d87-8066-4887fd88c5f2" + "WESTUS:20150813T074843Z:34417ad0-c2b6-48c6-9ab7-a1ead288a676" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/predixion/artifacttypes/vmimage/offers/predixion-insight-2015-02-feb/skus/r-only/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGl4aW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGl4aW9uLWluc2lnaHQtMjAxNS0wMi1mZWIvc2t1cy9yLW9ubHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/predixion/artifacttypes/vmimage/offers/predixion-insight-2015-02-feb/skus/r-only/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGl4aW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGl4aW9uLWluc2lnaHQtMjAxNS0wMi1mZWIvc2t1cy9yLW9ubHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.20000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion/ArtifactTypes/VMImage/Offers/predixion-insight-2015-02-feb/Skus/r-only/Versions/4.1.20000\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.20000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion/ArtifactTypes/VMImage/Offers/predixion-insight-2015-02-feb/Skus/r-only/Versions/4.1.20000\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "288" @@ -80909,7 +82780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0832fdcd-1aa3-4235-b5b5-a8cf622a6a62" + "7db5a423-9e67-49ff-903d-6fe480409005" ], "Cache-Control": [ "no-cache" @@ -80919,31 +82790,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12485" + "13342" ], "x-ms-correlation-request-id": [ - "199c6598-7a8d-44ac-9335-3a4bf2ad8c2d" + "6fb70559-886b-495f-9cfd-9abeebbafa6c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:199c6598-7a8d-44ac-9335-3a4bf2ad8c2d" + "WESTUS:20150813T074843Z:6fb70559-886b-495f-9cfd-9abeebbafa6c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/predixion/artifacttypes/vmimage/offers/predixion-insight-2015-02-feb/skus/r-only/versions/4.1.20000?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGl4aW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGl4aW9uLWluc2lnaHQtMjAxNS0wMi1mZWIvc2t1cy9yLW9ubHkvdmVyc2lvbnMvNC4xLjIwMDAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/predixion/artifacttypes/vmimage/offers/predixion-insight-2015-02-feb/skus/r-only/versions/4.1.20000?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlZGl4aW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcHJlZGl4aW9uLWluc2lnaHQtMjAxNS0wMi1mZWIvc2t1cy9yLW9ubHkvdmVyc2lvbnMvNC4xLjIwMDAwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"predixion\",\r\n \"name\": \"r-only\",\r\n \"product\": \"predixion-insight-2015-02-feb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.20000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion/ArtifactTypes/VMImage/Offers/predixion-insight-2015-02-feb/Skus/r-only/Versions/4.1.20000\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"predixion\",\r\n \"name\": \"r-only\",\r\n \"product\": \"predixion-insight-2015-02-feb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.20000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion/ArtifactTypes/VMImage/Offers/predixion-insight-2015-02-feb/Skus/r-only/Versions/4.1.20000\"\r\n}", "ResponseHeaders": { "Content-Length": [ "562" @@ -80961,7 +82832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd5de0ee-1185-4e9c-a83b-1eebc0af2ba2" + "fbd86ba3-a666-4285-8769-4c508dcf5e7b" ], "Cache-Control": [ "no-cache" @@ -80971,31 +82842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12484" + "13341" ], "x-ms-correlation-request-id": [ - "7da5f0ac-aab2-48dd-af57-64177f0db52c" + "eb510a73-d1f5-4fe6-a389-4bc1a2ebde34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:7da5f0ac-aab2-48dd-af57-64177f0db52c" + "WESTUS:20150813T074843Z:eb510a73-d1f5-4fe6-a389-4bc1a2ebde34" ], "Date": [ - "Wed, 05 Aug 2015 21:27:04 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/prestashop/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlc3Rhc2hvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/prestashop/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlc3Rhc2hvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop16-lamp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop/ArtifactTypes/VMImage/Offers/prestashop16-lamp\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop16-lamp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop/ArtifactTypes/VMImage/Offers/prestashop16-lamp\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "254" @@ -81013,7 +82884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "318a51ec-1ad8-4df5-930c-712395c25f71" + "803e69c3-935d-4012-8e33-1828ea2f8933" ], "Cache-Control": [ "no-cache" @@ -81023,31 +82894,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12483" + "13340" ], "x-ms-correlation-request-id": [ - "39f7bae8-019b-41e7-a3ad-1e7ed6a14931" + "9744c993-d0f1-4399-acbd-5d299eee19cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:39f7bae8-019b-41e7-a3ad-1e7ed6a14931" + "WESTUS:20150813T074844Z:9744c993-d0f1-4399-acbd-5d299eee19cf" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/prestashop/artifacttypes/vmimage/offers/prestashop16-lamp/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlc3Rhc2hvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ByZXN0YXNob3AxNi1sYW1wL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/prestashop/artifacttypes/vmimage/offers/prestashop16-lamp/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlc3Rhc2hvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ByZXN0YXNob3AxNi1sYW1wL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashopdev\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop/ArtifactTypes/VMImage/Offers/prestashop16-lamp/Skus/prestashopdev\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashopdev\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop/ArtifactTypes/VMImage/Offers/prestashop16-lamp/Skus/prestashopdev\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -81065,7 +82936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47b0a111-40df-4fab-837c-880838c4659d" + "475310f9-b6f5-478e-ab58-d030ab583183" ], "Cache-Control": [ "no-cache" @@ -81075,31 +82946,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12482" + "13339" ], "x-ms-correlation-request-id": [ - "68120f0c-1bf3-4a78-bd70-fac91e5ea8b0" + "e2adef88-1139-42bc-bafe-065cd380c014" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:68120f0c-1bf3-4a78-bd70-fac91e5ea8b0" + "WESTUS:20150813T074844Z:e2adef88-1139-42bc-bafe-065cd380c014" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/prestashop/artifacttypes/vmimage/offers/prestashop16-lamp/skus/prestashopdev/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlc3Rhc2hvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ByZXN0YXNob3AxNi1sYW1wL3NrdXMvcHJlc3Rhc2hvcGRldi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/prestashop/artifacttypes/vmimage/offers/prestashop16-lamp/skus/prestashopdev/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlc3Rhc2hvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ByZXN0YXNob3AxNi1sYW1wL3NrdXMvcHJlc3Rhc2hvcGRldi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop/ArtifactTypes/VMImage/Offers/prestashop16-lamp/Skus/prestashopdev/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop/ArtifactTypes/VMImage/Offers/prestashop16-lamp/Skus/prestashopdev/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -81117,7 +82988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "577dbb4a-3c87-497d-b046-259a4c415ce3" + "bd198a80-4580-440b-b8ab-fa2f75d616e3" ], "Cache-Control": [ "no-cache" @@ -81127,31 +82998,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12481" + "13338" ], "x-ms-correlation-request-id": [ - "d79a64ec-3c70-45ac-a14b-da20b7e3e56d" + "c1b70ebe-312b-49b2-ab9d-db6ea31b5138" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:d79a64ec-3c70-45ac-a14b-da20b7e3e56d" + "WESTUS:20150813T074844Z:c1b70ebe-312b-49b2-ab9d-db6ea31b5138" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/prestashop/artifacttypes/vmimage/offers/prestashop16-lamp/skus/prestashopdev/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlc3Rhc2hvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ByZXN0YXNob3AxNi1sYW1wL3NrdXMvcHJlc3Rhc2hvcGRldi92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/prestashop/artifacttypes/vmimage/offers/prestashop16-lamp/skus/prestashopdev/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJlc3Rhc2hvcC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3ByZXN0YXNob3AxNi1sYW1wL3NrdXMvcHJlc3Rhc2hvcGRldi92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"prestashop\",\r\n \"name\": \"prestashopdev\",\r\n \"product\": \"prestashop16-lamp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop/ArtifactTypes/VMImage/Offers/prestashop16-lamp/Skus/prestashopdev/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"prestashop\",\r\n \"name\": \"prestashopdev\",\r\n \"product\": \"prestashop16-lamp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop/ArtifactTypes/VMImage/Offers/prestashop16-lamp/Skus/prestashopdev/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "502" @@ -81169,7 +83040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fdf74ad3-a78c-44d6-aa92-c5c532d41045" + "d35c3a79-fa25-4943-bed1-ad987751a132" ], "Cache-Control": [ "no-cache" @@ -81179,31 +83050,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12480" + "13337" ], "x-ms-correlation-request-id": [ - "50ec5e31-a105-4775-ac17-0fcb8d54cc74" + "dc21be32-6ca6-4e13-bb09-563e71d6ac25" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:50ec5e31-a105-4775-ac17-0fcb8d54cc74" + "WESTUS:20150813T074844Z:dc21be32-6ca6-4e13-bb09-563e71d6ac25" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/primestream/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJpbWVzdHJlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/primestream/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJpbWVzdHJlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xchange_media_cloud_10_users\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream/ArtifactTypes/VMImage/Offers/xchange_media_cloud_10_users\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xchange_media_cloud_10_users\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream/ArtifactTypes/VMImage/Offers/xchange_media_cloud_10_users\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -81221,7 +83092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cecb194-c13e-4d94-8b03-a6fb07f737c8" + "c4fe7ce1-dd81-4056-a447-4ed5edd30a4a" ], "Cache-Control": [ "no-cache" @@ -81231,31 +83102,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12479" + "13336" ], "x-ms-correlation-request-id": [ - "775a0375-ec2a-479d-a646-e2fea7759a2f" + "36b92e2d-ee4c-40c1-82ac-144931a2ae88" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:775a0375-ec2a-479d-a646-e2fea7759a2f" + "WESTUS:20150813T074844Z:36b92e2d-ee4c-40c1-82ac-144931a2ae88" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/primestream/artifacttypes/vmimage/offers/xchange_media_cloud_10_users/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJpbWVzdHJlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94Y2hhbmdlX21lZGlhX2Nsb3VkXzEwX3VzZXJzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/primestream/artifacttypes/vmimage/offers/xchange_media_cloud_10_users/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJpbWVzdHJlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94Y2hhbmdlX21lZGlhX2Nsb3VkXzEwX3VzZXJzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xchange_media_cloud_10_users\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream/ArtifactTypes/VMImage/Offers/xchange_media_cloud_10_users/Skus/xchange_media_cloud_10_users\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xchange_media_cloud_10_users\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream/ArtifactTypes/VMImage/Offers/xchange_media_cloud_10_users/Skus/xchange_media_cloud_10_users\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "311" @@ -81273,7 +83144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b7eecd4-7250-42ce-b5a1-273d4011d4aa" + "1956c015-6446-49e3-875c-191489ed0ef8" ], "Cache-Control": [ "no-cache" @@ -81283,31 +83154,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12478" + "13335" ], "x-ms-correlation-request-id": [ - "162ac7aa-9f2b-4150-8731-047db731642f" + "8119aa0f-e427-424a-b391-5e300cf87022" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:162ac7aa-9f2b-4150-8731-047db731642f" + "WESTUS:20150813T074844Z:8119aa0f-e427-424a-b391-5e300cf87022" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/primestream/artifacttypes/vmimage/offers/xchange_media_cloud_10_users/skus/xchange_media_cloud_10_users/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJpbWVzdHJlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94Y2hhbmdlX21lZGlhX2Nsb3VkXzEwX3VzZXJzL3NrdXMveGNoYW5nZV9tZWRpYV9jbG91ZF8xMF91c2Vycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/primestream/artifacttypes/vmimage/offers/xchange_media_cloud_10_users/skus/xchange_media_cloud_10_users/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJpbWVzdHJlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94Y2hhbmdlX21lZGlhX2Nsb3VkXzEwX3VzZXJzL3NrdXMveGNoYW5nZV9tZWRpYV9jbG91ZF8xMF91c2Vycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream/ArtifactTypes/VMImage/Offers/xchange_media_cloud_10_users/Skus/xchange_media_cloud_10_users/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream/ArtifactTypes/VMImage/Offers/xchange_media_cloud_10_users/Skus/xchange_media_cloud_10_users/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "303" @@ -81325,7 +83196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5695a3aa-c0a7-4c4f-adfc-4134dcf44d50" + "01ff18dd-8b18-4273-b3ce-75788c33c324" ], "Cache-Control": [ "no-cache" @@ -81335,31 +83206,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12477" + "13334" ], "x-ms-correlation-request-id": [ - "a9341d01-a71f-4d51-adba-85f60062402b" + "5b90b632-e4fe-4520-9e62-30b062715f7a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:a9341d01-a71f-4d51-adba-85f60062402b" + "WESTUS:20150813T074844Z:5b90b632-e4fe-4520-9e62-30b062715f7a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/primestream/artifacttypes/vmimage/offers/xchange_media_cloud_10_users/skus/xchange_media_cloud_10_users/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJpbWVzdHJlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94Y2hhbmdlX21lZGlhX2Nsb3VkXzEwX3VzZXJzL3NrdXMveGNoYW5nZV9tZWRpYV9jbG91ZF8xMF91c2Vycy92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/primestream/artifacttypes/vmimage/offers/xchange_media_cloud_10_users/skus/xchange_media_cloud_10_users/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJpbWVzdHJlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94Y2hhbmdlX21lZGlhX2Nsb3VkXzEwX3VzZXJzL3NrdXMveGNoYW5nZV9tZWRpYV9jbG91ZF8xMF91c2Vycy92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"primestream\",\r\n \"name\": \"xchange_media_cloud_10_users\",\r\n \"product\": \"xchange_media_cloud_10_users\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream/ArtifactTypes/VMImage/Offers/xchange_media_cloud_10_users/Skus/xchange_media_cloud_10_users/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"primestream\",\r\n \"name\": \"xchange_media_cloud_10_users\",\r\n \"product\": \"xchange_media_cloud_10_users\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream/ArtifactTypes/VMImage/Offers/xchange_media_cloud_10_users/Skus/xchange_media_cloud_10_users/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "600" @@ -81377,7 +83248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eaf99782-0ae7-41e8-a8cb-8822107368e5" + "618b56ed-52f5-49c3-b966-151b939fc691" ], "Cache-Control": [ "no-cache" @@ -81387,31 +83258,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12476" + "13333" ], "x-ms-correlation-request-id": [ - "b85b9e54-4ce3-4ff0-b949-f695e127634d" + "75b3943d-0267-4314-92fc-ca9cc9ab75e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212705Z:b85b9e54-4ce3-4ff0-b949-f695e127634d" + "WESTUS:20150813T074844Z:75b3943d-0267-4314-92fc-ca9cc9ab75e0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/profisee/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJvZmlzZWUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/profisee/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJvZmlzZWUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"maestro-base-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"maestro-base-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "256" @@ -81429,7 +83300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "286f8edd-0194-4915-b0bd-25d4227f9c18" + "d56a4df4-12b4-4a45-9293-d289d39d3a6f" ], "Cache-Control": [ "no-cache" @@ -81439,31 +83310,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12475" + "13332" ], "x-ms-correlation-request-id": [ - "b18f8937-661e-4a40-b2b5-ee9533416d03" + "214863d6-8090-450b-b7e1-6913b2085884" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:b18f8937-661e-4a40-b2b5-ee9533416d03" + "WESTUS:20150813T074844Z:214863d6-8090-450b-b7e1-6913b2085884" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/profisee/artifacttypes/vmimage/offers/maestro-base-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJvZmlzZWUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tYWVzdHJvLWJhc2Utc2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/profisee/artifacttypes/vmimage/offers/maestro-base-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJvZmlzZWUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tYWVzdHJvLWJhc2Utc2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"maestrosibase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server/Skus/maestrosibase\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"maestrosibase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server/Skus/maestrosibase\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -81481,7 +83352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5415d5b4-9bcf-468d-97a4-507a0b4cfe22" + "668d99ff-79a1-42b1-baf5-6c2d9f7f3eb1" ], "Cache-Control": [ "no-cache" @@ -81491,31 +83362,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12474" + "13331" ], "x-ms-correlation-request-id": [ - "8bcdc1fa-3e68-4fda-9a23-e6fa723bf0ee" + "7e5f8721-5f43-4cb1-8888-23ac0ce1a776" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:8bcdc1fa-3e68-4fda-9a23-e6fa723bf0ee" + "WESTUS:20150813T074845Z:7e5f8721-5f43-4cb1-8888-23ac0ce1a776" ], "Date": [ - "Wed, 05 Aug 2015 21:27:05 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/profisee/artifacttypes/vmimage/offers/maestro-base-server/skus/maestrosibase/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJvZmlzZWUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tYWVzdHJvLWJhc2Utc2VydmVyL3NrdXMvbWFlc3Ryb3NpYmFzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/profisee/artifacttypes/vmimage/offers/maestro-base-server/skus/maestrosibase/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJvZmlzZWUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tYWVzdHJvLWJhc2Utc2VydmVyL3NrdXMvbWFlc3Ryb3NpYmFzZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server/Skus/maestrosibase/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server/Skus/maestrosibase/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -81533,7 +83404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d715f0f2-738c-4e39-90c8-26776cd0c9aa" + "c907fd6f-101f-48c3-b0f9-e5126bd883d3" ], "Cache-Control": [ "no-cache" @@ -81543,31 +83414,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12473" + "13330" ], "x-ms-correlation-request-id": [ - "b1cc845a-098a-47c0-8ed8-051e8797a177" + "c57f192d-25d1-4a6c-a4f0-43ad24abc78b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:b1cc845a-098a-47c0-8ed8-051e8797a177" + "WESTUS:20150813T074845Z:c57f192d-25d1-4a6c-a4f0-43ad24abc78b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/profisee/artifacttypes/vmimage/offers/maestro-base-server/skus/maestrosibase/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJvZmlzZWUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tYWVzdHJvLWJhc2Utc2VydmVyL3NrdXMvbWFlc3Ryb3NpYmFzZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/profisee/artifacttypes/vmimage/offers/maestro-base-server/skus/maestrosibase/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHJvZmlzZWUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9tYWVzdHJvLWJhc2Utc2VydmVyL3NrdXMvbWFlc3Ryb3NpYmFzZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"profisee\",\r\n \"name\": \"maestrosibase\",\r\n \"product\": \"maestro-base-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server/Skus/maestrosibase/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"profisee\",\r\n \"name\": \"maestrosibase\",\r\n \"product\": \"maestro-base-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server/Skus/maestrosibase/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "504" @@ -81585,7 +83456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a2c90e2-dab0-46f4-b4b9-2fbc2538db5b" + "9fc0c5fa-44b2-4138-9c8f-7e93d7f2b6eb" ], "Cache-Control": [ "no-cache" @@ -81595,31 +83466,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12472" + "13329" ], "x-ms-correlation-request-id": [ - "5b8bb990-f3d6-4226-9395-71d4469b19b0" + "49bac5fb-d172-40d9-b193-8583ec90a45f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:5b8bb990-f3d6-4226-9395-71d4469b19b0" + "WESTUS:20150813T074845Z:49bac5fb-d172-40d9-b193-8583ec90a45f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetEnterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetEnterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "252" @@ -81637,7 +83508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81b1a920-6616-434b-9edd-0ed28e21b822" + "e60860ef-eb0e-4ff9-af3d-4c608fadde1e" ], "Cache-Control": [ "no-cache" @@ -81647,31 +83518,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12471" + "13328" ], "x-ms-correlation-request-id": [ - "f317a9be-66d5-4dc5-9f90-f4518790ff80" + "4e6ccd83-d14a-491a-8813-63b5a9bc1f9b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:f317a9be-66d5-4dc5-9f90-f4518790ff80" + "WESTUS:20150813T074845Z:4e6ccd83-d14a-491a-8813-63b5a9bc1f9b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.7\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.7\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "493" @@ -81689,7 +83560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc2e8cbc-2731-4851-824e-0e4bb9b47084" + "acfc7a39-4ab2-46db-beda-2b6a48b238e1" ], "Cache-Control": [ "no-cache" @@ -81699,31 +83570,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12470" + "13327" ], "x-ms-correlation-request-id": [ - "692d56b9-4018-40b7-84c6-fd6a85067a2f" + "c6125d09-a2a4-46b8-abf0-1a544c490857" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:692d56b9-4018-40b7-84c6-fd6a85067a2f" + "WESTUS:20150813T074845Z:c6125d09-a2a4-46b8-abf0-1a544c490857" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus/3.2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cy8zLjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus/3.2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cy8zLjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.2.3140925\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.2/Versions/3.2.3140925\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.2.3140925\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.2/Versions/3.2.3140925\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -81741,7 +83612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f101e7cd-d53d-4a3f-93eb-861069cffef1" + "3c21df3f-8dad-4439-ac44-b0499ad900d7" ], "Cache-Control": [ "no-cache" @@ -81751,31 +83622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12469" + "13326" ], "x-ms-correlation-request-id": [ - "d2b911fe-7518-4d78-a658-43cbe844023a" + "2bd797b8-19f6-475e-9dd3-e22be19f94f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:d2b911fe-7518-4d78-a658-43cbe844023a" + "WESTUS:20150813T074845Z:2bd797b8-19f6-475e-9dd3-e22be19f94f6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus/3.2/versions/3.2.3140925?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cy8zLjIvdmVyc2lvbnMvMy4yLjMxNDA5MjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus/3.2/versions/3.2.3140925?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cy8zLjIvdmVyc2lvbnMvMy4yLjMxNDA5MjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.2.3140925\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.2/Versions/3.2.3140925\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.2.3140925\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.2/Versions/3.2.3140925\"\r\n}", "ResponseHeaders": { "Content-Length": [ "376" @@ -81793,7 +83664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc5f2e79-f4d7-469b-bea2-6430834ceffe" + "e3d9d8ac-b989-4b78-bfc1-ef1452216a82" ], "Cache-Control": [ "no-cache" @@ -81803,31 +83674,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12468" + "13325" ], "x-ms-correlation-request-id": [ - "531ba3ed-dd27-4720-9c30-49c7dc48b041" + "3d75c942-d1b2-4657-ac3f-1fbf196f2e7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:531ba3ed-dd27-4720-9c30-49c7dc48b041" + "WESTUS:20150813T074845Z:3d75c942-d1b2-4657-ac3f-1fbf196f2e7b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus/3.7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cy8zLjcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus/3.7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cy8zLjcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.7.2150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.7/Versions/3.7.2150309\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.7.2150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.7/Versions/3.7.2150309\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -81845,7 +83716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "642ab13f-64a9-445c-9732-fb423e637509" + "bbea6717-6124-4b88-ac5e-7c1724ec81c6" ], "Cache-Control": [ "no-cache" @@ -81855,31 +83726,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12467" + "13324" ], "x-ms-correlation-request-id": [ - "5f2afd77-acd1-4a71-843f-878b8b7d9386" + "57cd591a-a166-4b15-84e0-1218b5d26057" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:5f2afd77-acd1-4a71-843f-878b8b7d9386" + "WESTUS:20150813T074845Z:57cd591a-a166-4b15-84e0-1218b5d26057" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus/3.7/versions/3.7.2150309?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cy8zLjcvdmVyc2lvbnMvMy43LjIxNTAzMDk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs/artifacttypes/vmimage/offers/PuppetEnterprise/skus/3.7/versions/3.7.2150309?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1B1cHBldEVudGVycHJpc2Uvc2t1cy8zLjcvdmVyc2lvbnMvMy43LjIxNTAzMDk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.7.2150309\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.7/Versions/3.7.2150309\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.7.2150309\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs/ArtifactTypes/VMImage/Offers/PuppetEnterprise/Skus/3.7/Versions/3.7.2150309\"\r\n}", "ResponseHeaders": { "Content-Length": [ "376" @@ -81897,7 +83768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b313025e-5995-44bb-9589-51fdd5862a13" + "ced8b49e-d590-45aa-9525-532753e93ade" ], "Cache-Control": [ "no-cache" @@ -81907,28 +83778,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12466" + "13323" ], "x-ms-correlation-request-id": [ - "15de0b43-0865-4f44-8d86-95acd6da59d8" + "8ed4a0f6-7de4-431d-bc89-218f6450bb9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:15de0b43-0865-4f44-8d86-95acd6da59d8" + "WESTUS:20150813T074845Z:8ed4a0f6-7de4-431d-bc89-218f6450bb9a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/PuppetLabs.Test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUHVwcGV0TGFicy5UZXN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -81949,7 +83820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de53f6ad-9d52-4969-9189-a3f3cff8bc8a" + "162ca70c-cfe3-4c8d-92a0-8ffd55c7ecf3" ], "Cache-Control": [ "no-cache" @@ -81959,31 +83830,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12465" + "13322" ], "x-ms-correlation-request-id": [ - "9c911278-90ff-43ef-b60b-f9f6dc23632e" + "84ebb353-ede3-49c2-ab91-07416d189384" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212706Z:9c911278-90ff-43ef-b60b-f9f6dc23632e" + "WESTUS:20150813T074845Z:84ebb353-ede3-49c2-ab91-07416d189384" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pxlag_swiss/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHhsYWdfc3dpc3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/pxlag_swiss/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHhsYWdfc3dpc3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxl-portal-marketplace-edition\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss/ArtifactTypes/VMImage/Offers/pxl-portal-marketplace-edition\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxl-portal-marketplace-edition\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss/ArtifactTypes/VMImage/Offers/pxl-portal-marketplace-edition\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "281" @@ -82001,7 +83872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "adb656eb-fc96-42aa-95da-cabfe0fe9bb0" + "57c9b038-2458-4f4f-be63-2ab43ab140d4" ], "Cache-Control": [ "no-cache" @@ -82011,31 +83882,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12464" + "13321" ], "x-ms-correlation-request-id": [ - "36f4d2f0-9082-42c4-b9cd-88ed40c17d10" + "1daad84e-f270-48c0-b5a9-d8d36b0c3085" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:36f4d2f0-9082-42c4-b9cd-88ed40c17d10" + "WESTUS:20150813T074846Z:1daad84e-f270-48c0-b5a9-d8d36b0c3085" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pxlag_swiss/artifacttypes/vmimage/offers/pxl-portal-marketplace-edition/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHhsYWdfc3dpc3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9weGwtcG9ydGFsLW1hcmtldHBsYWNlLWVkaXRpb24vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/pxlag_swiss/artifacttypes/vmimage/offers/pxl-portal-marketplace-edition/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHhsYWdfc3dpc3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9weGwtcG9ydGFsLW1hcmtldHBsYWNlLWVkaXRpb24vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlportalmarketplaceedition2015\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss/ArtifactTypes/VMImage/Offers/pxl-portal-marketplace-edition/Skus/pxlportalmarketplaceedition2015\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlportalmarketplaceedition2015\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss/ArtifactTypes/VMImage/Offers/pxl-portal-marketplace-edition/Skus/pxlportalmarketplaceedition2015\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "319" @@ -82053,7 +83924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9789b0ef-265b-49fc-878d-7d799a0249bf" + "71bd5b41-3fc0-4fa1-b12b-65bd60711694" ], "Cache-Control": [ "no-cache" @@ -82063,31 +83934,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12463" + "13320" ], "x-ms-correlation-request-id": [ - "1679fa6a-cb81-45e9-8cdc-05d2a633e6bc" + "54e1367d-8a3c-4ee4-90d5-2dbd47e97bdd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:1679fa6a-cb81-45e9-8cdc-05d2a633e6bc" + "WESTUS:20150813T074846Z:54e1367d-8a3c-4ee4-90d5-2dbd47e97bdd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:06 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pxlag_swiss/artifacttypes/vmimage/offers/pxl-portal-marketplace-edition/skus/pxlportalmarketplaceedition2015/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHhsYWdfc3dpc3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9weGwtcG9ydGFsLW1hcmtldHBsYWNlLWVkaXRpb24vc2t1cy9weGxwb3J0YWxtYXJrZXRwbGFjZWVkaXRpb24yMDE1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/pxlag_swiss/artifacttypes/vmimage/offers/pxl-portal-marketplace-edition/skus/pxlportalmarketplaceedition2015/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHhsYWdfc3dpc3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9weGwtcG9ydGFsLW1hcmtldHBsYWNlLWVkaXRpb24vc2t1cy9weGxwb3J0YWxtYXJrZXRwbGFjZWVkaXRpb24yMDE1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss/ArtifactTypes/VMImage/Offers/pxl-portal-marketplace-edition/Skus/pxlportalmarketplaceedition2015/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss/ArtifactTypes/VMImage/Offers/pxl-portal-marketplace-edition/Skus/pxlportalmarketplaceedition2015/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "308" @@ -82105,7 +83976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "624f94f1-8499-4ee1-8d72-db2031a7d4bc" + "7136a5c2-31cd-4521-a0bf-700ca1f3d8c6" ], "Cache-Control": [ "no-cache" @@ -82115,31 +83986,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12462" + "13319" ], "x-ms-correlation-request-id": [ - "01cb449b-1477-4f13-806c-a4ab57ff5655" + "b29b114c-6929-49a8-8dcb-1ccb1f2f1701" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:01cb449b-1477-4f13-806c-a4ab57ff5655" + "WESTUS:20150813T074846Z:b29b114c-6929-49a8-8dcb-1ccb1f2f1701" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/pxlag_swiss/artifacttypes/vmimage/offers/pxl-portal-marketplace-edition/skus/pxlportalmarketplaceedition2015/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHhsYWdfc3dpc3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9weGwtcG9ydGFsLW1hcmtldHBsYWNlLWVkaXRpb24vc2t1cy9weGxwb3J0YWxtYXJrZXRwbGFjZWVkaXRpb24yMDE1L3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/pxlag_swiss/artifacttypes/vmimage/offers/pxl-portal-marketplace-edition/skus/pxlportalmarketplaceedition2015/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcHhsYWdfc3dpc3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9weGwtcG9ydGFsLW1hcmtldHBsYWNlLWVkaXRpb24vc2t1cy9weGxwb3J0YWxtYXJrZXRwbGFjZWVkaXRpb24yMDE1L3ZlcnNpb25zLzEuMC4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"pxlag_swiss\",\r\n \"name\": \"pxlportalmarketplaceedition2015\",\r\n \"product\": \"pxl-portal-marketplace-edition\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss/ArtifactTypes/VMImage/Offers/pxl-portal-marketplace-edition/Skus/pxlportalmarketplaceedition2015/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"pxlag_swiss\",\r\n \"name\": \"pxlportalmarketplaceedition2015\",\r\n \"product\": \"pxl-portal-marketplace-edition\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss/ArtifactTypes/VMImage/Offers/pxl-portal-marketplace-edition/Skus/pxlportalmarketplaceedition2015/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "568" @@ -82157,7 +84028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14ff3be0-cc53-43ed-b88e-946a02c08d52" + "32ffc221-51f5-416c-9811-4d729173013d" ], "Cache-Control": [ "no-cache" @@ -82167,31 +84038,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12461" + "13318" ], "x-ms-correlation-request-id": [ - "aa0de4a8-fe20-4e89-8037-08fe50668676" + "fe94b6e0-b823-4649-8b81-0eac5c15f100" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:aa0de4a8-fe20-4e89-8037-08fe50668676" + "WESTUS:20150813T074846Z:fe94b6e0-b823-4649-8b81-0eac5c15f100" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/rancher/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmFuY2hlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/rancher/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmFuY2hlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancheros\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher/ArtifactTypes/VMImage/Offers/rancheros\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancheros\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher/ArtifactTypes/VMImage/Offers/rancheros\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "235" @@ -82209,7 +84080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13475e13-e917-4304-8040-791587e20a35" + "043e131a-4b5a-4679-ab22-982996148125" ], "Cache-Control": [ "no-cache" @@ -82219,31 +84090,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12460" + "13317" ], "x-ms-correlation-request-id": [ - "8e81656d-974a-4162-a7e3-6bee1de63fd8" + "b3cca422-3ae4-47b9-b793-9b19fec2b92d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:8e81656d-974a-4162-a7e3-6bee1de63fd8" + "WESTUS:20150813T074846Z:b3cca422-3ae4-47b9-b793-9b19fec2b92d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/rancher/artifacttypes/vmimage/offers/rancheros/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmFuY2hlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JhbmNoZXJvcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/rancher/artifacttypes/vmimage/offers/rancheros/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmFuY2hlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JhbmNoZXJvcy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"os\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher/ArtifactTypes/VMImage/Offers/rancheros/Skus/os\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"os\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher/ArtifactTypes/VMImage/Offers/rancheros/Skus/os\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "236" @@ -82261,7 +84132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66304e81-6731-477e-9d68-4cc9d2388389" + "237287c1-afed-49cb-ab1b-22ea7a40960b" ], "Cache-Control": [ "no-cache" @@ -82271,31 +84142,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12459" + "13316" ], "x-ms-correlation-request-id": [ - "20ef6752-f7ae-42ba-b99a-1ffd94d97add" + "e452ce0e-b9b5-4a1f-9b9e-67ab881e26ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:20ef6752-f7ae-42ba-b99a-1ffd94d97add" + "WESTUS:20150813T074846Z:e452ce0e-b9b5-4a1f-9b9e-67ab881e26ca" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/rancher/artifacttypes/vmimage/offers/rancheros/skus/os/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmFuY2hlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JhbmNoZXJvcy9za3VzL29zL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/rancher/artifacttypes/vmimage/offers/rancheros/skus/os/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmFuY2hlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JhbmNoZXJvcy9za3VzL29zL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher/ArtifactTypes/VMImage/Offers/rancheros/Skus/os/Versions/0.3.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher/ArtifactTypes/VMImage/Offers/rancheros/Skus/os/Versions/0.3.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "254" @@ -82313,7 +84184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f7d9d11-98d5-4ce1-b36e-641d10bb6f5f" + "088278ac-6e8b-43bd-8479-996419433906" ], "Cache-Control": [ "no-cache" @@ -82323,31 +84194,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12458" + "13315" ], "x-ms-correlation-request-id": [ - "485678f0-c451-44b3-8d02-83d9e4d18a47" + "027d0fd6-6b43-43f2-97ae-7948a237a711" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:485678f0-c451-44b3-8d02-83d9e4d18a47" + "WESTUS:20150813T074846Z:027d0fd6-6b43-43f2-97ae-7948a237a711" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/rancher/artifacttypes/vmimage/offers/rancheros/skus/os/versions/0.3.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmFuY2hlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JhbmNoZXJvcy9za3VzL29zL3ZlcnNpb25zLzAuMy4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/rancher/artifacttypes/vmimage/offers/rancheros/skus/os/versions/0.3.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmFuY2hlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JhbmNoZXJvcy9za3VzL29zL3ZlcnNpb25zLzAuMy4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"rancher\",\r\n \"name\": \"os\",\r\n \"product\": \"rancheros\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher/ArtifactTypes/VMImage/Offers/rancheros/Skus/os/Versions/0.3.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"rancher\",\r\n \"name\": \"os\",\r\n \"product\": \"rancheros\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher/ArtifactTypes/VMImage/Offers/rancheros/Skus/os/Versions/0.3.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "458" @@ -82365,7 +84236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1ba37e9-5d6a-44ca-b666-606511bfc7a6" + "674325b7-a53c-4e5c-bf8d-a65f26a6dd54" ], "Cache-Control": [ "no-cache" @@ -82375,31 +84246,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12457" + "13314" ], "x-ms-correlation-request-id": [ - "f3e33a07-c980-416a-8faf-b05ee05f9d95" + "8b6b2358-17d7-4bba-b983-882e07effb08" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:f3e33a07-c980-416a-8faf-b05ee05f9d95" + "WESTUS:20150813T074846Z:8b6b2358-17d7-4bba-b983-882e07effb08" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-interaction\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-interaction\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-rpdm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-rpdm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-interaction\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-interaction\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-rpdm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-rpdm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "513" @@ -82417,7 +84288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ecc89390-5c1b-4584-ba20-d591b5da8611" + "c49480fe-c5d5-4ac0-88c8-d9b36294b262" ], "Cache-Control": [ "no-cache" @@ -82427,31 +84298,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12456" + "13313" ], "x-ms-correlation-request-id": [ - "8114f1d7-0ba4-4076-aca4-7de8f9b9b691" + "6de1cdbe-d781-4816-a30f-343034383e9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:8114f1d7-0ba4-4076-aca4-7de8f9b9b691" + "WESTUS:20150813T074846Z:6de1cdbe-d781-4816-a30f-343034383e9a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-interaction/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtaW50ZXJhY3Rpb24vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-interaction/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtaW50ZXJhY3Rpb24vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rpi\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-interaction/Skus/rpi\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rpi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-interaction/Skus/rpi\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -82469,7 +84340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59e23f2f-d5d5-411a-a540-7a5e680dbeee" + "8327a28e-3d3c-4968-881a-d3b25f0bf7a2" ], "Cache-Control": [ "no-cache" @@ -82479,31 +84350,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12455" + "13312" ], "x-ms-correlation-request-id": [ - "0f217610-172a-44a9-9e3f-58d33e9c51af" + "2cf09e44-5f2d-40ee-af87-d32c6dc039df" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212707Z:0f217610-172a-44a9-9e3f-58d33e9c51af" + "WESTUS:20150813T074846Z:2cf09e44-5f2d-40ee-af87-d32c6dc039df" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-interaction/skus/rpi/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtaW50ZXJhY3Rpb24vc2t1cy9ycGkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-interaction/skus/rpi/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtaW50ZXJhY3Rpb24vc2t1cy9ycGkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-interaction/Skus/rpi/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-interaction/Skus/rpi/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "274" @@ -82521,7 +84392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ac9ef84-3c47-45a4-b728-2491018fab94" + "deef85d8-8acd-49f7-8742-0a9e24c7189d" ], "Cache-Control": [ "no-cache" @@ -82531,31 +84402,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12454" + "13311" ], "x-ms-correlation-request-id": [ - "0c90b4ba-d770-4065-bb1e-148dec199e7b" + "ab2f0a5a-0b9e-4c8e-9e57-386b91e4b8a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:0c90b4ba-d770-4065-bb1e-148dec199e7b" + "WESTUS:20150813T074847Z:ab2f0a5a-0b9e-4c8e-9e57-386b91e4b8a1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:07 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-interaction/skus/rpi/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtaW50ZXJhY3Rpb24vc2t1cy9ycGkvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-interaction/skus/rpi/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtaW50ZXJhY3Rpb24vc2t1cy9ycGkvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"redpoint-global\",\r\n \"name\": \"rpi\",\r\n \"product\": \"redpoint-interaction\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-interaction/Skus/rpi/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"redpoint-global\",\r\n \"name\": \"rpi\",\r\n \"product\": \"redpoint-interaction\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-interaction/Skus/rpi/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "500" @@ -82573,7 +84444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b5208f8-02d5-4694-8fec-0f2aa79b59ae" + "b16511c3-63d6-4884-b8ab-477dc1142eee" ], "Cache-Control": [ "no-cache" @@ -82583,31 +84454,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12453" + "13310" ], "x-ms-correlation-request-id": [ - "db01c937-20b9-4221-b9dc-e1abb7533f1b" + "79c4c7a7-20e4-4e53-8877-e521f62f5acd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:db01c937-20b9-4221-b9dc-e1abb7533f1b" + "WESTUS:20150813T074847Z:79c4c7a7-20e4-4e53-8877-e521f62f5acd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-rpdm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtcnBkbS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-rpdm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtcnBkbS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rpdm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-rpdm/Skus/rpdm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rpdm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-rpdm/Skus/rpdm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "252" @@ -82625,7 +84496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a5715cfd-029c-4280-8e74-fef9d98a848d" + "22cd6c0e-d3d6-4a18-9064-20fa0e1fe179" ], "Cache-Control": [ "no-cache" @@ -82635,31 +84506,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12452" + "13309" ], "x-ms-correlation-request-id": [ - "5f026680-8249-47d9-82e1-37daf6ea06e8" + "7e16c963-8357-4bb9-ae93-33b0365e076d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:5f026680-8249-47d9-82e1-37daf6ea06e8" + "WESTUS:20150813T074847Z:7e16c963-8357-4bb9-ae93-33b0365e076d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-rpdm/skus/rpdm/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtcnBkbS9za3VzL3JwZG0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-rpdm/skus/rpdm/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtcnBkbS9za3VzL3JwZG0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-rpdm/Skus/rpdm/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-rpdm/Skus/rpdm/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "268" @@ -82677,7 +84548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "092de839-cedb-41d6-ad0e-2fa038f0e973" + "05d4de63-373c-4b1c-a87d-d51dab2678cb" ], "Cache-Control": [ "no-cache" @@ -82687,31 +84558,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12451" + "13308" ], "x-ms-correlation-request-id": [ - "1c92308f-e4e8-44f1-96bf-3aae17b31197" + "0937f7a5-41d4-4321-b35c-2160a242f08c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:1c92308f-e4e8-44f1-96bf-3aae17b31197" + "WESTUS:20150813T074847Z:0937f7a5-41d4-4321-b35c-2160a242f08c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-rpdm/skus/rpdm/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtcnBkbS9za3VzL3JwZG0vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/redpoint-global/artifacttypes/vmimage/offers/redpoint-rpdm/skus/rpdm/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVkcG9pbnQtZ2xvYmFsL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvcmVkcG9pbnQtcnBkbS9za3VzL3JwZG0vdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"redpoint-global\",\r\n \"name\": \"rpdm\",\r\n \"product\": \"redpoint-rpdm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-rpdm/Skus/rpdm/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"redpoint-global\",\r\n \"name\": \"rpdm\",\r\n \"product\": \"redpoint-rpdm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global/ArtifactTypes/VMImage/Offers/redpoint-rpdm/Skus/rpdm/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "488" @@ -82729,7 +84600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45dcd433-f222-4f0e-9a3f-bcdb2b29ecd4" + "1fc29554-6f4e-4ab0-a6f9-b1e9cfb05d3c" ], "Cache-Control": [ "no-cache" @@ -82739,31 +84610,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12450" + "13307" ], "x-ms-correlation-request-id": [ - "f51cb20d-4e79-404f-8e27-59d1f58b981a" + "7a92b4c5-84c3-4136-bad8-7a45c729f4b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:f51cb20d-4e79-404f-8e27-59d1f58b981a" + "WESTUS:20150813T074847Z:7a92b4c5-84c3-4136-bad8-7a45c729f4b7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/remotelearner/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVtb3RlbGVhcm5lci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/remotelearner/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVtb3RlbGVhcm5lci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fully-supported-moodle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fully-supported-moodle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -82781,7 +84652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06544467-0156-4aec-bdd0-d0a776526492" + "a1a982d7-43df-49aa-8421-9ba53548089f" ], "Cache-Control": [ "no-cache" @@ -82791,31 +84662,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12449" + "13306" ], "x-ms-correlation-request-id": [ - "0da74d46-6c07-457d-856b-9c98d4a65341" + "b4b5ff6c-a801-4191-92d9-673799f84fcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:0da74d46-6c07-457d-856b-9c98d4a65341" + "WESTUS:20150813T074847Z:b4b5ff6c-a801-4191-92d9-673799f84fcb" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/remotelearner/artifacttypes/vmimage/offers/fully-supported-moodle/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVtb3RlbGVhcm5lci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Z1bGx5LXN1cHBvcnRlZC1tb29kbGUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/remotelearner/artifacttypes/vmimage/offers/fully-supported-moodle/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVtb3RlbGVhcm5lci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Z1bGx5LXN1cHBvcnRlZC1tb29kbGUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"version27\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle/Skus/version27\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"version27\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle/Skus/version27\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -82833,7 +84704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89a58bef-cbec-4d83-9c26-7cf922a85731" + "2e75d812-39b5-4330-b154-834632e6d8f9" ], "Cache-Control": [ "no-cache" @@ -82843,31 +84714,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12448" + "13305" ], "x-ms-correlation-request-id": [ - "669e4442-0e3f-4efe-8410-a643e6725eac" + "b1a5fb5f-a96b-4e46-b74f-a0e50f3403e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:669e4442-0e3f-4efe-8410-a643e6725eac" + "WESTUS:20150813T074847Z:b1a5fb5f-a96b-4e46-b74f-a0e50f3403e7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/remotelearner/artifacttypes/vmimage/offers/fully-supported-moodle/skus/version27/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVtb3RlbGVhcm5lci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Z1bGx5LXN1cHBvcnRlZC1tb29kbGUvc2t1cy92ZXJzaW9uMjcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/remotelearner/artifacttypes/vmimage/offers/fully-supported-moodle/skus/version27/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVtb3RlbGVhcm5lci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Z1bGx5LXN1cHBvcnRlZC1tb29kbGUvc2t1cy92ZXJzaW9uMjcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle/Skus/version27/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle/Skus/version27/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -82885,7 +84756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0186ee1-013f-44ff-8180-0e3a0a6a707f" + "99357bf8-97d3-4f40-b0d7-2569e0864d61" ], "Cache-Control": [ "no-cache" @@ -82895,31 +84766,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12447" + "13304" ], "x-ms-correlation-request-id": [ - "0351004b-57cd-4428-939b-dfec01a9239e" + "3f75970d-74a3-4310-acdd-cddb06b4a2a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:0351004b-57cd-4428-939b-dfec01a9239e" + "WESTUS:20150813T074847Z:3f75970d-74a3-4310-acdd-cddb06b4a2a6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/remotelearner/artifacttypes/vmimage/offers/fully-supported-moodle/skus/version27/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVtb3RlbGVhcm5lci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Z1bGx5LXN1cHBvcnRlZC1tb29kbGUvc2t1cy92ZXJzaW9uMjcvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/remotelearner/artifacttypes/vmimage/offers/fully-supported-moodle/skus/version27/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmVtb3RlbGVhcm5lci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Z1bGx5LXN1cHBvcnRlZC1tb29kbGUvc2t1cy92ZXJzaW9uMjcvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"remotelearner\",\r\n \"name\": \"version27\",\r\n \"product\": \"fully-supported-moodle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle/Skus/version27/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"remotelearner\",\r\n \"name\": \"version27\",\r\n \"product\": \"fully-supported-moodle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle/Skus/version27/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "510" @@ -82937,7 +84808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a96a1b7d-51b4-4082-9663-5ad692513d64" + "de97f8d4-4852-4d33-a220-c7ccd7d70060" ], "Cache-Control": [ "no-cache" @@ -82947,31 +84818,83 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12446" + "13303" ], "x-ms-correlation-request-id": [ - "f6b65004-a12b-4bcc-8764-b0207e4cbe5d" + "514b34f0-ac80-4277-8827-f45874a154b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212708Z:f6b65004-a12b-4bcc-8764-b0207e4cbe5d" + "WESTUS:20150813T074847Z:514b34f0-ac80-4277-8827-f45874a154b7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/revolution-analytics/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcmV2b2x1dGlvbi1hbmFseXRpY3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightImage-CentOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightImage-Ubuntu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu\"\r\n }\r\n]", + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bc2461a5-5481-4f14-97da-7240ee9e8d54" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13302" + ], + "x-ms-correlation-request-id": [ + "da3cb8df-d55a-4ade-b403-4a05bffa5d55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074847Z:da3cb8df-d55a-4ade-b403-4a05bffa5d55" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightImage-CentOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightImage-Ubuntu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "515" @@ -82989,7 +84912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "564761ee-e5b4-42ee-81b6-abc829116a86" + "e07fbc26-9740-4916-9670-15dc7335a3fc" ], "Cache-Control": [ "no-cache" @@ -82999,31 +84922,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12445" + "13301" ], "x-ms-correlation-request-id": [ - "2ae5b287-7b25-45af-a03f-1b6ff1a3d195" + "d3270f35-16eb-4dd0-9d4c-ef0f07cf79ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:2ae5b287-7b25-45af-a03f-1b6ff1a3d195" + "WESTUS:20150813T074848Z:d3270f35-16eb-4dd0-9d4c-ef0f07cf79ec" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "497" @@ -83041,7 +84964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2205a477-89a1-4f29-90b8-2447f4488f6b" + "b58f86a5-f9cc-4bfc-8084-2ca7b06cc18b" ], "Cache-Control": [ "no-cache" @@ -83051,31 +84974,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12444" + "13300" ], "x-ms-correlation-request-id": [ - "13bd61e2-e40d-4a99-967a-05bd56d9905b" + "12aa3fe7-3da3-40d0-82d4-8a3d41be05eb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:13bd61e2-e40d-4a99-967a-05bd56d9905b" + "WESTUS:20150813T074848Z:12aa3fe7-3da3-40d0-82d4-8a3d41be05eb" ], "Date": [ - "Wed, 05 Aug 2015 21:27:08 GMT" + "Thu, 13 Aug 2015 07:48:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.2.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.11\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.13\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.13\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.14\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.9\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.2.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.11\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.13\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.13\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.14\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.9\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "4823" @@ -83093,7 +85016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be425ee7-df86-48f2-a5b5-5249594e0ac9" + "a6c323fc-3c8c-4a78-bedf-86b7e33cf017" ], "Cache-Control": [ "no-cache" @@ -83103,31 +85026,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12443" + "13299" ], "x-ms-correlation-request-id": [ - "24e165cc-e5ce-471e-b1fa-10d4a8db72f1" + "5476189a-53f1-474a-8e2b-be7504e4b46a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:24e165cc-e5ce-471e-b1fa-10d4a8db72f1" + "WESTUS:20150813T074848Z:5476189a-53f1-474a-8e2b-be7504e4b46a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.4.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjQuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.4.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjQuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.4.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.4.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83145,7 +85068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e8ce8d9-8542-4127-bf1f-41875f52609a" + "6dd46edd-abde-4777-b0a5-c939eea674c3" ], "Cache-Control": [ "no-cache" @@ -83155,31 +85078,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12442" + "13298" ], "x-ms-correlation-request-id": [ - "b396eb66-cf4e-4dfb-8250-fbc26b69f4a1" + "ab5e198f-f417-469d-a8c2-409b1b128f3c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:b396eb66-cf4e-4dfb-8250-fbc26b69f4a1" + "WESTUS:20150813T074848Z:ab5e198f-f417-469d-a8c2-409b1b128f3c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83197,7 +85120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "100bba6f-2a34-44a9-bfff-56eeff239cfa" + "a272a12f-29a8-404d-9f42-b4ab35ca58f0" ], "Cache-Control": [ "no-cache" @@ -83207,31 +85130,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12441" + "13297" ], "x-ms-correlation-request-id": [ - "0696764f-711d-4c04-b786-4758c7603d62" + "1016edee-88be-4c5c-b504-1f607cab9895" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:0696764f-711d-4c04-b786-4758c7603d62" + "WESTUS:20150813T074848Z:1016edee-88be-4c5c-b504-1f607cab9895" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83249,7 +85172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "339b46a0-c486-414b-96ef-9c09c81c8166" + "b8ab8b73-585f-4cae-9c31-ff86c4bc06dd" ], "Cache-Control": [ "no-cache" @@ -83259,31 +85182,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12440" + "13296" ], "x-ms-correlation-request-id": [ - "944c8263-7b99-46d2-b2a8-0f880556f33c" + "e1ccb895-d625-424d-9e57-b91af2f1f703" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:944c8263-7b99-46d2-b2a8-0f880556f33c" + "WESTUS:20150813T074848Z:e1ccb895-d625-424d-9e57-b91af2f1f703" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83301,7 +85224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2c0beae-a2c6-465d-91d9-0b973fe02676" + "f3d60dc4-c8dc-4efc-baf4-105b24034b1b" ], "Cache-Control": [ "no-cache" @@ -83311,31 +85234,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12439" + "13295" ], "x-ms-correlation-request-id": [ - "f0c88c75-0d77-4a1c-bd27-d7aec75686e1" + "1aca5501-5977-4910-9f25-a9a8c61063aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:f0c88c75-0d77-4a1c-bd27-d7aec75686e1" + "WESTUS:20150813T074848Z:1aca5501-5977-4910-9f25-a9a8c61063aa" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83353,7 +85276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58bf5f9d-0fb4-4014-9080-85db4cfe0122" + "f35490f0-7c92-485c-89e0-fffe592f5c4f" ], "Cache-Control": [ "no-cache" @@ -83363,31 +85286,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12438" + "13294" ], "x-ms-correlation-request-id": [ - "3bc38b70-9667-4525-a669-bed00b39c161" + "a69d6e76-9b93-4fc4-b007-09c91b687f8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:3bc38b70-9667-4525-a669-bed00b39c161" + "WESTUS:20150813T074848Z:a69d6e76-9b93-4fc4-b007-09c91b687f8f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/13.5.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzEzLjUuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.5\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/13.5.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83405,7 +85328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57a97312-97a6-45d0-87e6-950e213b33b0" + "c6461c02-b0af-4ea4-bc03-02024c38210f" ], "Cache-Control": [ "no-cache" @@ -83415,31 +85338,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12437" + "13293" ], "x-ms-correlation-request-id": [ - "feacef02-4be9-4177-80c6-7ac0764a30df" + "81f4e8c1-a34a-48cf-b17a-17833296d385" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:feacef02-4be9-4177-80c6-7ac0764a30df" + "WESTUS:20150813T074849Z:81f4e8c1-a34a-48cf-b17a-17833296d385" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83457,7 +85380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a29c5e59-bea6-435e-b865-cabb18742512" + "e4df5527-e769-4a89-8969-96d9f7d8f87c" ], "Cache-Control": [ "no-cache" @@ -83467,31 +85390,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12436" + "13292" ], "x-ms-correlation-request-id": [ - "d90ee23b-1ff9-429d-987c-781df9f52262" + "3af0adb0-b2b1-438e-b267-69a9024a2ae4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212709Z:d90ee23b-1ff9-429d-987c-781df9f52262" + "WESTUS:20150813T074849Z:3af0adb0-b2b1-438e-b267-69a9024a2ae4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.1.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjEuMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.1.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjEuMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83509,7 +85432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e533ee33-4ad1-43e0-8b46-0eda1da0258a" + "80a303d8-2a23-4a23-875b-de199164b267" ], "Cache-Control": [ "no-cache" @@ -83519,31 +85442,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12435" + "13291" ], "x-ms-correlation-request-id": [ - "98386384-6121-4b2f-bbea-61913a6cf2e3" + "2814e93d-73e3-4407-992b-21c0ce15379c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:98386384-6121-4b2f-bbea-61913a6cf2e3" + "WESTUS:20150813T074849Z:2814e93d-73e3-4407-992b-21c0ce15379c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.1.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjEuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.1.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjEuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.5\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.1.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83561,7 +85484,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dae2015f-4789-4d05-81d7-153af3dac4cf" + "d282be2b-fc34-45ea-85bf-c71aeac81e8e" ], "Cache-Control": [ "no-cache" @@ -83571,31 +85494,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12434" + "13290" ], "x-ms-correlation-request-id": [ - "c4f9c06d-b6cf-4e63-b7a2-135a09ffca0f" + "0f7b1117-9d07-4af5-aa0a-2d58da9f822c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:c4f9c06d-b6cf-4e63-b7a2-135a09ffca0f" + "WESTUS:20150813T074849Z:0f7b1117-9d07-4af5-aa0a-2d58da9f822c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83613,7 +85536,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a37f9512-4bb5-491c-ba0a-b484a3666bff" + "cacd1aad-d5bb-494f-b799-26acc94c2aba" ], "Cache-Control": [ "no-cache" @@ -83623,31 +85546,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12433" + "13289" ], "x-ms-correlation-request-id": [ - "e67429a6-acf4-4940-b2a8-bbfa0c6bd7e9" + "4a1fdc99-220b-40d9-a978-be4b6e096900" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:e67429a6-acf4-4940-b2a8-bbfa0c6bd7e9" + "WESTUS:20150813T074849Z:4a1fdc99-220b-40d9-a978-be4b6e096900" ], "Date": [ - "Wed, 05 Aug 2015 21:27:09 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.2.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjIuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/14.2.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzE0LjIuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.2.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/14.2.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83665,7 +85588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "279616fd-75ea-433d-b33b-bea11e4a0233" + "9e8fea7d-ab08-432b-bf40-0096b8c53b6c" ], "Cache-Control": [ "no-cache" @@ -83675,31 +85598,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12432" + "13288" ], "x-ms-correlation-request-id": [ - "3660243c-746b-4b64-90cf-59e753dbcebf" + "ad97f310-79d7-4075-a63a-287f0eee37d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:3660243c-746b-4b64-90cf-59e753dbcebf" + "WESTUS:20150813T074849Z:ad97f310-79d7-4075-a63a-287f0eee37d9" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.10?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.10\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.10\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83717,7 +85640,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03362f40-b451-4afe-a276-bbd535bb5c2c" + "f27010ea-a9ac-446a-b00c-909e3a8ba990" ], "Cache-Control": [ "no-cache" @@ -83727,31 +85650,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12431" + "13287" ], "x-ms-correlation-request-id": [ - "12af3502-71ec-4091-b6a4-8463c0aefd98" + "1792b8b2-1b6e-45ca-be9f-1528df7089ea" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:12af3502-71ec-4091-b6a4-8463c0aefd98" + "WESTUS:20150813T074849Z:1792b8b2-1b6e-45ca-be9f-1528df7089ea" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.11?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.11\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.11\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83769,7 +85692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9c05555-cb05-41b5-b938-16a5f90cd104" + "2db55f70-b531-4a31-8b12-aad884f6fe8b" ], "Cache-Control": [ "no-cache" @@ -83779,31 +85702,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12430" + "13286" ], "x-ms-correlation-request-id": [ - "9b2d229c-85b7-4e78-ac65-192b21ede587" + "9d03de32-7e9e-419a-a7c1-597834d1c377" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:9b2d229c-85b7-4e78-ac65-192b21ede587" + "WESTUS:20150813T074849Z:9d03de32-7e9e-419a-a7c1-597834d1c377" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.12?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.12\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.12\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83821,7 +85744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43c3dc72-f440-4fb4-8dc3-7cee205f839a" + "eb9d1ce8-3262-49ed-94e3-30dd8378649d" ], "Cache-Control": [ "no-cache" @@ -83831,31 +85754,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12429" + "13285" ], "x-ms-correlation-request-id": [ - "843ff9dd-17a9-4463-a0b9-08df48b6bd6e" + "b3eee720-d770-4630-b4f8-7440ea76832c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:843ff9dd-17a9-4463-a0b9-08df48b6bd6e" + "WESTUS:20150813T074849Z:b3eee720-d770-4630-b4f8-7440ea76832c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.13?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.13?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.13\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.13\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.13\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.13\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83873,7 +85796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a351143-bfdf-4b6c-be14-41636f127b18" + "b0c8b785-51e8-4f88-9710-e6618c2da1a3" ], "Cache-Control": [ "no-cache" @@ -83883,31 +85806,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12428" + "13284" ], "x-ms-correlation-request-id": [ - "2be79e54-dcc3-4893-856d-b7ec712459dc" + "0b7b5a9e-b4d9-4ddd-9ad8-26f219107622" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:2be79e54-dcc3-4893-856d-b7ec712459dc" + "WESTUS:20150813T074849Z:0b7b5a9e-b4d9-4ddd-9ad8-26f219107622" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.14?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.14?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC4xND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.14\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.14\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -83925,7 +85848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4c862e2-7714-4bc7-a84f-027ac38756b6" + "f895caeb-013c-4691-b67a-ed8e956a4258" ], "Cache-Control": [ "no-cache" @@ -83935,31 +85858,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12427" + "13283" ], "x-ms-correlation-request-id": [ - "eb123efb-0b50-413f-bb24-cbf6271b445e" + "688a97e7-e361-49e5-a645-1008d78d2da3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:eb123efb-0b50-413f-bb24-cbf6271b445e" + "WESTUS:20150813T074849Z:688a97e7-e361-49e5-a645-1008d78d2da3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC44P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC44P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.8\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "368" @@ -83977,7 +85900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53cd21aa-c9b4-4092-adbc-8634e2368c31" + "e6bbc10d-2000-41ac-b90b-ac9975329710" ], "Cache-Control": [ "no-cache" @@ -83987,31 +85910,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12426" + "13282" ], "x-ms-correlation-request-id": [ - "6e06530e-b989-47b2-a041-0d628f2debda" + "07e96529-eee5-4695-8cbe-db568628d1b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212710Z:6e06530e-b989-47b2-a041-0d628f2debda" + "WESTUS:20150813T074850Z:07e96529-eee5-4695-8cbe-db568628d1b1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.9?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC45P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/6/versions/5.8.9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy82L3ZlcnNpb25zLzUuOC45P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/6/Versions/5.8.9\"\r\n}", "ResponseHeaders": { "Content-Length": [ "368" @@ -84029,7 +85952,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c862217-ab02-439c-8fc7-361bd1c26f1a" + "17038b84-0362-4001-aaf3-50ff3c08716a" ], "Cache-Control": [ "no-cache" @@ -84039,31 +85962,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12425" + "13281" ], "x-ms-correlation-request-id": [ - "23a7b86f-9011-4ae9-8ad7-9f5ffdf6a413" + "41ae9260-952f-4b50-ae97-75af8b5363e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:23a7b86f-9011-4ae9-8ad7-9f5ffdf6a413" + "WESTUS:20150813T074850Z:41ae9260-952f-4b50-ae97-75af8b5363e2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy83L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy83L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.1.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.1.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.2.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "807" @@ -84081,7 +86004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc568748-5c30-4328-945d-ed61b7959e69" + "a6fd8aa8-0934-4c29-9264-cc895e3bc079" ], "Cache-Control": [ "no-cache" @@ -84091,31 +86014,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12424" + "13280" ], "x-ms-correlation-request-id": [ - "b6f09547-b8ee-4aeb-ba3a-62595c98c626" + "74d7ecb7-4446-4dd5-83bc-b3d67bdbbb87" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:b6f09547-b8ee-4aeb-ba3a-62595c98c626" + "WESTUS:20150813T074850Z:74d7ecb7-4446-4dd5-83bc-b3d67bdbbb87" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/7/versions/14.1.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy83L3ZlcnNpb25zLzE0LjEuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/7/versions/14.1.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy83L3ZlcnNpb25zLzE0LjEuNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.1.5\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.1.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -84133,7 +86056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b0f0174-9185-492c-b997-5ab3cc6643d0" + "b7a5bd02-ef50-4b43-8716-cc70b8db7ee4" ], "Cache-Control": [ "no-cache" @@ -84143,31 +86066,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12423" + "13279" ], "x-ms-correlation-request-id": [ - "71675355-eb1a-4a7f-8096-c2d4757ea9ae" + "0c747299-a038-4f45-ae8d-66dc9848b620" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:71675355-eb1a-4a7f-8096-c2d4757ea9ae" + "WESTUS:20150813T074850Z:0c747299-a038-4f45-ae8d-66dc9848b620" ], "Date": [ - "Wed, 05 Aug 2015 21:27:10 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/7/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy83L3ZlcnNpb25zLzE0LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/7/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy83L3ZlcnNpb25zLzE0LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -84185,7 +86108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa985fb5-8e3c-4438-bade-cee2ebbcdffb" + "7423d654-97ef-499a-aeb5-ae0d8b2ad962" ], "Cache-Control": [ "no-cache" @@ -84195,31 +86118,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12422" + "13278" ], "x-ms-correlation-request-id": [ - "76b2a757-7e1a-47f6-bc21-3ac6a11314bc" + "300a48bf-e540-42d7-929b-ba94eb50c153" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:76b2a757-7e1a-47f6-bc21-3ac6a11314bc" + "WESTUS:20150813T074850Z:300a48bf-e540-42d7-929b-ba94eb50c153" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/7/versions/14.2.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy83L3ZlcnNpb25zLzE0LjIuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-CentOS/skus/7/versions/14.2.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1DZW50T1Mvc2t1cy83L3ZlcnNpb25zLzE0LjIuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.2.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-CentOS/Skus/7/Versions/14.2.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -84237,7 +86160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b29c6d7-d445-41d4-bbd2-010e184a23b2" + "ab493e8a-0282-4d33-9b9f-a6c76f3d0822" ], "Cache-Control": [ "no-cache" @@ -84247,31 +86170,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12421" + "13277" ], "x-ms-correlation-request-id": [ - "d55b1bed-e299-4022-9ca8-bca72b102459" + "36177796-6598-4bd8-a0fa-57952e23b246" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:d55b1bed-e299-4022-9ca8-bca72b102459" + "WESTUS:20150813T074850Z:36177796-6598-4bd8-a0fa-57952e23b246" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12.04\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.04\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "513" @@ -84289,7 +86212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "034e9afc-d312-4b71-b5d2-06bd3cbc338e" + "4a2e27ef-9b0e-41e2-a2d0-a9f403e164ba" ], "Cache-Control": [ "no-cache" @@ -84299,31 +86222,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12420" + "13276" ], "x-ms-correlation-request-id": [ - "19bfc09f-8164-49e2-9583-9a7c0bc44f12" + "2a245d89-3e1f-444b-9594-dc53dbfa937d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:19bfc09f-8164-49e2-9583-9a7c0bc44f12" + "WESTUS:20150813T074850Z:2a245d89-3e1f-444b-9594-dc53dbfa937d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.2.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.11\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.9\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.4.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.2.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.11\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.9\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "3807" @@ -84341,7 +86264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e7f872e-2f34-4b17-892e-79293962ef50" + "3d3f1f0d-5eff-42dd-9398-18e81b27c7aa" ], "Cache-Control": [ "no-cache" @@ -84351,31 +86274,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12419" + "13275" ], "x-ms-correlation-request-id": [ - "861bb7ce-2401-492d-8c72-dc2eeae8dea2" + "ee24f503-6ab9-4a49-8a0d-2b81673e9501" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:861bb7ce-2401-492d-8c72-dc2eeae8dea2" + "WESTUS:20150813T074850Z:ee24f503-6ab9-4a49-8a0d-2b81673e9501" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.4.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy40LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.4.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy40LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.4.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.4.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84393,7 +86316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c50c0b2c-605d-45fe-a1ed-21b11f6d788e" + "428d55ef-f6f6-4e1f-9999-a7f991c8cddf" ], "Cache-Control": [ "no-cache" @@ -84403,31 +86326,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12418" + "13274" ], "x-ms-correlation-request-id": [ - "7e412dcc-8486-49bc-989a-ed13cc79824c" + "f70b433e-b59a-4022-ae0f-188431fb7010" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:7e412dcc-8486-49bc-989a-ed13cc79824c" + "WESTUS:20150813T074850Z:f70b433e-b59a-4022-ae0f-188431fb7010" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84445,7 +86368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db82bfb6-aca2-4b54-8b20-9ecf90926814" + "7d3bf640-7c3b-4f8f-9741-c495d945d2e4" ], "Cache-Control": [ "no-cache" @@ -84455,31 +86378,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12417" + "13273" ], "x-ms-correlation-request-id": [ - "2a7e0966-fa29-45f3-be6a-6c821776cda6" + "b82004b6-4ad9-4597-90a1-5bf9111fde42" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:2a7e0966-fa29-45f3-be6a-6c821776cda6" + "WESTUS:20150813T074850Z:b82004b6-4ad9-4597-90a1-5bf9111fde42" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.5.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy41LjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.5.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy41LjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84497,7 +86420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f71675e5-bb63-4f51-aa77-ec40fc26e094" + "f599de3d-f05c-420e-897f-07367e9921d8" ], "Cache-Control": [ "no-cache" @@ -84507,31 +86430,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12416" + "13272" ], "x-ms-correlation-request-id": [ - "48402de1-f395-4321-839e-ef00e796205e" + "8b36546f-4a8b-4d6e-b1fe-ffcf044e3bf8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:48402de1-f395-4321-839e-ef00e796205e" + "WESTUS:20150813T074851Z:8b36546f-4a8b-4d6e-b1fe-ffcf044e3bf8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.5.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy41LjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.5.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy41LjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84549,7 +86472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4fbd147-532f-4723-9057-097c109d54ec" + "50c1af91-5dd4-4f34-b16a-b36310f1851f" ], "Cache-Control": [ "no-cache" @@ -84559,31 +86482,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12415" + "13271" ], "x-ms-correlation-request-id": [ - "53685f28-bee1-4e09-afea-db0453f8d0cc" + "4e34c63e-ae38-4be0-ba27-d08da962144a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212711Z:53685f28-bee1-4e09-afea-db0453f8d0cc" + "WESTUS:20150813T074851Z:4e34c63e-ae38-4be0-ba27-d08da962144a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.5.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy41LjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/13.5.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xMy41LjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.5\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/13.5.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84601,7 +86524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32b2762c-eb0b-4483-9639-913ff02e7006" + "a7c95740-15e2-4cd7-b3f9-e67f7cecb675" ], "Cache-Control": [ "no-cache" @@ -84611,31 +86534,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12414" + "13270" ], "x-ms-correlation-request-id": [ - "61b1faa8-9c7b-4062-98f3-ad03b1c6a98e" + "294476e0-cf23-46fa-af01-d81704b1f0d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:61b1faa8-9c7b-4062-98f3-ad03b1c6a98e" + "WESTUS:20150813T074851Z:294476e0-cf23-46fa-af01-d81704b1f0d2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.1.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4xLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.1.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4xLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84653,7 +86576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c21be731-06ef-4226-b7e6-2de784fcb083" + "825d26ef-d080-41fe-bbcd-e9b21e6d3ce2" ], "Cache-Control": [ "no-cache" @@ -84663,31 +86586,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12413" + "13269" ], "x-ms-correlation-request-id": [ - "3c73c0ec-e4c3-4530-a74a-cc3b594fd7fb" + "2bfb694e-18b0-448b-aa05-1afe6f7d488d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:3c73c0ec-e4c3-4530-a74a-cc3b594fd7fb" + "WESTUS:20150813T074851Z:2bfb694e-18b0-448b-aa05-1afe6f7d488d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.1.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4xLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.1.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4xLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84705,7 +86628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7befc8f-4409-4323-84b7-b8ca8284f67f" + "5f810d29-f715-447f-b32b-7368e374d42e" ], "Cache-Control": [ "no-cache" @@ -84715,31 +86638,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12412" + "13268" ], "x-ms-correlation-request-id": [ - "619696ab-b4aa-417f-a9fa-bdadf86d9ff9" + "29eb76ce-a74b-4a92-8ac1-af87fb1115ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:619696ab-b4aa-417f-a9fa-bdadf86d9ff9" + "WESTUS:20150813T074851Z:29eb76ce-a74b-4a92-8ac1-af87fb1115ad" ], "Date": [ - "Wed, 05 Aug 2015 21:27:11 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.1.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4xLjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.1.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4xLjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.5\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.1.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84757,7 +86680,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8677638-f9cc-4aa1-892b-85e65c140e21" + "b40f4b88-cf78-4c0c-8450-c38e7f362e10" ], "Cache-Control": [ "no-cache" @@ -84767,31 +86690,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12411" + "13267" ], "x-ms-correlation-request-id": [ - "f95e3993-28c0-4c87-b2f2-8aa15e12c6c7" + "09df136d-1e8e-4653-8227-e77060cc2efc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:f95e3993-28c0-4c87-b2f2-8aa15e12c6c7" + "WESTUS:20150813T074851Z:09df136d-1e8e-4653-8227-e77060cc2efc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84809,7 +86732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2a4eb0a-28d0-4b38-949a-76dc56020a3b" + "e8e79c25-bd94-4a17-af1b-4c702fb79ca1" ], "Cache-Control": [ "no-cache" @@ -84819,31 +86742,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12410" + "13266" ], "x-ms-correlation-request-id": [ - "e51cd193-03b9-488e-bc9a-9439f323fee2" + "fd0d1360-bb1d-40f8-9218-19782b8b5a43" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:e51cd193-03b9-488e-bc9a-9439f323fee2" + "WESTUS:20150813T074851Z:fd0d1360-bb1d-40f8-9218-19782b8b5a43" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.2.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4yLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/14.2.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy8xNC4yLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.2.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/14.2.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84861,7 +86784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3963ff98-1962-48c0-b221-47bb8b682f86" + "0fb339f5-a949-4fa6-bebd-fffbcbaeac0f" ], "Cache-Control": [ "no-cache" @@ -84871,31 +86794,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12409" + "13265" ], "x-ms-correlation-request-id": [ - "3683a696-cc3c-422f-9656-d53844a4d524" + "5e9362d5-af5e-4ad5-ac31-86c4be6f89a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:3683a696-cc3c-422f-9656-d53844a4d524" + "WESTUS:20150813T074851Z:5e9362d5-af5e-4ad5-ac31-86c4be6f89a5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/5.8.10?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy81LjguMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/5.8.10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy81LjguMTA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.10\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.10\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84913,7 +86836,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8c2e8e2-504a-47a2-bddd-8ae702462e72" + "30849c41-a898-42f1-9a6c-92f620f026e9" ], "Cache-Control": [ "no-cache" @@ -84923,31 +86846,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12408" + "13264" ], "x-ms-correlation-request-id": [ - "0d2630c8-e7b3-4f85-9ed2-dc4b3815a516" + "1c6f59b2-c7ee-4cd1-be47-178e1606ba9e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:0d2630c8-e7b3-4f85-9ed2-dc4b3815a516" + "WESTUS:20150813T074851Z:1c6f59b2-c7ee-4cd1-be47-178e1606ba9e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/5.8.11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy81LjguMTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/5.8.11?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy81LjguMTE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.11\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.11\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -84965,7 +86888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58d53dda-66df-4cc5-af9d-71c3b2f2447d" + "a1787c90-d593-4f95-9a65-6a7e91dc587a" ], "Cache-Control": [ "no-cache" @@ -84975,31 +86898,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12407" + "13263" ], "x-ms-correlation-request-id": [ - "c3b4d4e2-53a2-4255-876b-de9d897025e5" + "6a60f0f8-d040-48d7-a555-bcfcbeecaece" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:c3b4d4e2-53a2-4255-876b-de9d897025e5" + "WESTUS:20150813T074851Z:6a60f0f8-d040-48d7-a555-bcfcbeecaece" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/5.8.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy81LjguOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/5.8.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy81LjguOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.8\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "372" @@ -85017,7 +86940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a91c966c-c590-458c-a60e-7e4e117f8e8d" + "b48f7c49-0e7b-4c34-8efc-d60a70a26db5" ], "Cache-Control": [ "no-cache" @@ -85027,31 +86950,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12406" + "13262" ], "x-ms-correlation-request-id": [ - "9d150e5b-f8a3-4e72-ae01-76f19b0e5582" + "cbba1968-1796-4f61-a7f0-d46e23c4344c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:9d150e5b-f8a3-4e72-ae01-76f19b0e5582" + "WESTUS:20150813T074851Z:cbba1968-1796-4f61-a7f0-d46e23c4344c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/5.8.9?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy81LjguOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/12.04/versions/5.8.9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xMi4wNC92ZXJzaW9ucy81LjguOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/12.04/Versions/5.8.9\"\r\n}", "ResponseHeaders": { "Content-Length": [ "372" @@ -85069,7 +86992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78beb56c-26ca-4743-b583-9c6aa555d21a" + "adbb32fd-3db5-4e4e-ad60-5f093c17a0e0" ], "Cache-Control": [ "no-cache" @@ -85079,31 +87002,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12405" + "13261" ], "x-ms-correlation-request-id": [ - "5f446007-f84f-4d0e-9919-54b2bbad0fc1" + "ad1a7d93-2251-4523-b8d6-7d47710c70e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212712Z:5f446007-f84f-4d0e-9919-54b2bbad0fc1" + "WESTUS:20150813T074852Z:ad1a7d93-2251-4523-b8d6-7d47710c70e2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.2.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.5\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.2.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1363" @@ -85121,7 +87044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8a5de0c-02b5-4e95-aa7d-6924c253a895" + "49170ba3-6878-4776-8a17-dcc688028c00" ], "Cache-Control": [ "no-cache" @@ -85131,31 +87054,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12404" + "13260" ], "x-ms-correlation-request-id": [ - "fcd47083-1893-49a2-ac13-f0175bf847a6" + "7fde01e4-14f3-47c1-95e0-8b3a7dacc45c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:fcd47083-1893-49a2-ac13-f0175bf847a6" + "WESTUS:20150813T074852Z:7fde01e4-14f3-47c1-95e0-8b3a7dacc45c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -85173,7 +87096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bfaf1f51-1e8e-4459-98c2-da2121569e5a" + "d8998a0e-5b1d-42cc-8ca5-d2bc64b35b70" ], "Cache-Control": [ "no-cache" @@ -85183,31 +87106,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12403" + "13259" ], "x-ms-correlation-request-id": [ - "24c422e2-be5b-465a-bbd7-28e4cb80d12d" + "9c7039bf-93c2-4e4b-969b-5c829ba3e6c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:24c422e2-be5b-465a-bbd7-28e4cb80d12d" + "WESTUS:20150813T074852Z:9c7039bf-93c2-4e4b-969b-5c829ba3e6c3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.1.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4xLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.1.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4xLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -85225,7 +87148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "092afd52-0945-4b3e-9333-17cbb353c84a" + "c5b93971-8737-43e3-957d-c51f4265869f" ], "Cache-Control": [ "no-cache" @@ -85235,31 +87158,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12402" + "13258" ], "x-ms-correlation-request-id": [ - "8f8f9753-8a28-411c-b408-6400f317bb64" + "1b3268bc-44a4-48e6-aa1a-be47db832a08" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:8f8f9753-8a28-411c-b408-6400f317bb64" + "WESTUS:20150813T074852Z:1b3268bc-44a4-48e6-aa1a-be47db832a08" ], "Date": [ - "Wed, 05 Aug 2015 21:27:12 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.1.5?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4xLjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.1.5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4xLjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.5\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.1.5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.1.5\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -85277,7 +87200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ccf23209-39c5-4ec1-b83d-a1a1ca9721c3" + "b210bdda-e138-4cf7-8bb4-9f764b0bc98f" ], "Cache-Control": [ "no-cache" @@ -85287,31 +87210,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12401" + "13257" ], "x-ms-correlation-request-id": [ - "7f3f4612-55c3-48aa-98a2-c58c724cf631" + "4317d199-eb67-403c-8dce-3968c8b04e35" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:7f3f4612-55c3-48aa-98a2-c58c724cf631" + "WESTUS:20150813T074852Z:4317d199-eb67-403c-8dce-3968c8b04e35" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -85329,7 +87252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdd94031-41e9-4fa7-ae01-72f0f8a9a06d" + "cb20f455-b932-4ec5-8dd5-e95e210fe07d" ], "Cache-Control": [ "no-cache" @@ -85339,31 +87262,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12400" + "13256" ], "x-ms-correlation-request-id": [ - "4478a9d2-e11c-4d76-af68-f94638583999" + "7a12b107-9699-4607-86be-fbf3b846117a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:4478a9d2-e11c-4d76-af68-f94638583999" + "WESTUS:20150813T074852Z:7a12b107-9699-4607-86be-fbf3b846117a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.2.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4yLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleLinux/artifacttypes/vmimage/offers/RightImage-Ubuntu/skus/14.04/versions/14.2.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZUxpbnV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvUmlnaHRJbWFnZS1VYnVudHUvc2t1cy8xNC4wNC92ZXJzaW9ucy8xNC4yLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.2.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux/ArtifactTypes/VMImage/Offers/RightImage-Ubuntu/Skus/14.04/Versions/14.2.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "374" @@ -85381,7 +87304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a686efa3-ab2f-4f24-ba6d-14abf252302e" + "f836902c-01b9-4cfa-bd98-4ca38bd8803a" ], "Cache-Control": [ "no-cache" @@ -85391,31 +87314,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12399" + "13255" ], "x-ms-correlation-request-id": [ - "2694bce2-fa27-4626-aafd-346e987f57eb" + "2e9565aa-3a18-4548-891b-dd2d7bdab8dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:2694bce2-fa27-4626-aafd-346e987f57eb" + "WESTUS:20150813T074852Z:2e9565aa-3a18-4548-891b-dd2d7bdab8dd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightImage-WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightImage-WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "281" @@ -85433,7 +87356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4937d8d1-8def-4b44-9f50-9332ece1450b" + "05bdafdb-3053-4fe6-a7d2-c1531ff10a05" ], "Cache-Control": [ "no-cache" @@ -85443,31 +87366,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12398" + "13254" ], "x-ms-correlation-request-id": [ - "614ef392-c282-49c5-8959-e65e673dd016" + "276c1258-11d1-48e4-ae9d-b69633a86ed7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:614ef392-c282-49c5-8959-e65e673dd016" + "WESTUS:20150813T074852Z:276c1258-11d1-48e4-ae9d-b69633a86ed7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1-with-IIS-7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1-with-SQL-2012\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-IIS-7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-SQL-2008-R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-SQL-2008-R2-Ent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-SQL-2012\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-SQL-2012-Ent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter-with-IIS-8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter-with-SQL-2012\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter-with-SQL-2012-Ent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1-with-IIS-7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1-with-SQL-2012\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-IIS-7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-SQL-2008-R2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-SQL-2008-R2-Ent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-SQL-2012\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-with-SQL-2012-Ent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter-with-IIS-8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter-with-SQL-2012\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter-with-SQL-2012-Ent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "4247" @@ -85485,7 +87408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9e29b23-9696-479f-a389-224c26b42e5a" + "6d4b189e-a7b5-45be-a8d1-99c74e1f547e" ], "Cache-Control": [ "no-cache" @@ -85495,31 +87418,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12397" + "13253" ], "x-ms-correlation-request-id": [ - "b9189845-c6ba-4a4b-8d18-3ba27733c03d" + "94014e48-6ebb-452a-905b-9a67af0dc573" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:b9189845-c6ba-4a4b-8d18-3ba27733c03d" + "WESTUS:20150813T074852Z:94014e48-6ebb-452a-905b-9a67af0dc573" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/13.4.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/14.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/13.4.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/14.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1161" @@ -85537,7 +87460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0851a3ed-3bed-4b20-a7fc-89c2ca0fd63a" + "99c7f909-87fc-4d01-974c-147bb851fc65" ], "Cache-Control": [ "no-cache" @@ -85547,31 +87470,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12396" + "13252" ], "x-ms-correlation-request-id": [ - "fef78879-0fee-40b8-acc9-3e70cae881a8" + "e058f00a-a70d-44f5-9c06-a71f2a63c219" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:fef78879-0fee-40b8-acc9-3e70cae881a8" + "WESTUS:20150813T074853Z:e058f00a-a70d-44f5-9c06-a71f2a63c219" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions/13.4.12?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zLzEzLjQuMTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions/13.4.12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zLzEzLjQuMTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/13.4.12\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/13.4.12\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -85589,7 +87512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d22f22ab-7621-4ea2-91c6-eac8c6df7241" + "0c332e18-c851-4022-aae0-01392647108b" ], "Cache-Control": [ "no-cache" @@ -85599,31 +87522,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12395" + "13251" ], "x-ms-correlation-request-id": [ - "2add6de1-231e-471b-a939-c3952ff3dea2" + "dc8029fc-7834-4123-91c5-f9277b4a4e0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212713Z:2add6de1-231e-471b-a939-c3952ff3dea2" + "WESTUS:20150813T074853Z:dc8029fc-7834-4123-91c5-f9277b4a4e0f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zLzEzLjUuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zLzEzLjUuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -85641,7 +87564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c19f15e-5b63-4bcd-b590-3f7a20df2731" + "c2b2377c-75dc-4510-a392-81e487570426" ], "Cache-Control": [ "no-cache" @@ -85651,31 +87574,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12394" + "13250" ], "x-ms-correlation-request-id": [ - "91d644ba-3eda-43bc-ae4e-59b5a0060b61" + "b8738f2b-d5bb-46a2-9f1d-3eaa80295168" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:91d644ba-3eda-43bc-ae4e-59b5a0060b61" + "WESTUS:20150813T074853Z:b8738f2b-d5bb-46a2-9f1d-3eaa80295168" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zLzE0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zLzE0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -85693,7 +87616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "668ae4df-e431-40ce-88f2-fbaee22c204a" + "609ad7fb-794e-45cf-8f80-e5fd8d490dd8" ], "Cache-Control": [ "no-cache" @@ -85703,31 +87626,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12393" + "13249" ], "x-ms-correlation-request-id": [ - "9f6b45e6-b022-4c72-a8ac-d3973e72d7d7" + "c2dc9ddb-bae8-422d-a0de-4c02fc930312" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:9f6b45e6-b022-4c72-a8ac-d3973e72d7d7" + "WESTUS:20150813T074853Z:c2dc9ddb-bae8-422d-a0de-4c02fc930312" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zLzE0LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyL3ZlcnNpb25zLzE0LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -85745,7 +87668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22729375-5988-4816-b51c-e3a170fc6465" + "b1dc3281-aef2-4d18-8ba4-2d56d2ece02c" ], "Cache-Control": [ "no-cache" @@ -85755,31 +87678,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12392" + "13248" ], "x-ms-correlation-request-id": [ - "2c010882-925b-42ea-bbea-9adf9b1733cc" + "90477044-3c93-45d6-b6a8-0d5bf7d1e0a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:2c010882-925b-42ea-bbea-9adf9b1733cc" + "WESTUS:20150813T074853Z:90477044-3c93-45d6-b6a8-0d5bf7d1e0a7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:13 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1/Versions/5.8.9\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1/Versions/5.8.9\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "585" @@ -85797,7 +87720,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2043c1f0-d5cb-47fb-ba8a-beaa73a2a24f" + "6da397a3-4971-4f83-95b9-5431e45aee8f" ], "Cache-Control": [ "no-cache" @@ -85807,31 +87730,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12391" + "13247" ], "x-ms-correlation-request-id": [ - "c5c5f3a6-b135-4d6c-89de-522722487a99" + "4892c67e-6837-4d7e-989d-9e21f7dc5e19" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:c5c5f3a6-b135-4d6c-89de-522722487a99" + "WESTUS:20150813T074853Z:4892c67e-6837-4d7e-989d-9e21f7dc5e19" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1/versions/5.8.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy81LjguOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1/versions/5.8.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy81LjguOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1/Versions/5.8.8\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1/Versions/5.8.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -85849,7 +87772,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fff33c4e-f5e8-45cb-a3ed-90ad1176182b" + "d72a9c05-e5c7-465c-8787-98f1016a58b3" ], "Cache-Control": [ "no-cache" @@ -85859,31 +87782,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12390" + "13246" ], "x-ms-correlation-request-id": [ - "e5949f65-ba37-485c-8f4f-443c5e8e173b" + "f070e92c-7099-4f43-b699-8724b469b4b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:e5949f65-ba37-485c-8f4f-443c5e8e173b" + "WESTUS:20150813T074853Z:f070e92c-7099-4f43-b699-8724b469b4b9" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1/versions/5.8.9?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy81LjguOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1/versions/5.8.9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy81LjguOT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1/Versions/5.8.9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1/Versions/5.8.9\"\r\n}", "ResponseHeaders": { "Content-Length": [ "395" @@ -85901,7 +87824,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b5215cd-3964-456b-91aa-806cfcbb84b2" + "eb4cd129-9389-41cc-9909-e5eaf8b7cb50" ], "Cache-Control": [ "no-cache" @@ -85911,31 +87834,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12389" + "13245" ], "x-ms-correlation-request-id": [ - "f591b2fd-aea5-46ca-83dc-c93c0d7434b5" + "a928e7a9-2df8-49a4-b5cb-beadf4beb7cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:f591b2fd-aea5-46ca-83dc-c93c0d7434b5" + "WESTUS:20150813T074853Z:a928e7a9-2df8-49a4-b5cb-beadf4beb7cd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-IIS-7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLUlJUy03L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-IIS-7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLUlJUy03L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7/Versions/5.8.9\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7/Versions/5.8.9\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "607" @@ -85953,7 +87876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30a5b4ec-fca4-46df-acaf-97a0b666d281" + "393150c1-10f5-4f41-a9da-7accb6dedd25" ], "Cache-Control": [ "no-cache" @@ -85963,31 +87886,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12388" + "13244" ], "x-ms-correlation-request-id": [ - "99db9cbe-783a-4343-b76d-563d7771e7d8" + "55d5424c-453c-4d61-acd2-4cae105d150a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:99db9cbe-783a-4343-b76d-563d7771e7d8" + "WESTUS:20150813T074853Z:55d5424c-453c-4d61-acd2-4cae105d150a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-IIS-7/versions/5.8.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLUlJUy03L3ZlcnNpb25zLzUuOC44P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-IIS-7/versions/5.8.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLUlJUy03L3ZlcnNpb25zLzUuOC44P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7/Versions/5.8.8\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7/Versions/5.8.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "406" @@ -86005,7 +87928,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d132977a-766d-49d3-80a9-7ea83f21a4dc" + "0b7a3aab-5d4c-43e4-8d6b-e70b970e750e" ], "Cache-Control": [ "no-cache" @@ -86015,31 +87938,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12387" + "13243" ], "x-ms-correlation-request-id": [ - "bbe5ed7e-453f-4074-9d72-83875c8ef876" + "8782de36-1f63-4ed9-abfa-99dbcca23407" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:bbe5ed7e-453f-4074-9d72-83875c8ef876" + "WESTUS:20150813T074853Z:8782de36-1f63-4ed9-abfa-99dbcca23407" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-IIS-7/versions/5.8.9?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLUlJUy03L3ZlcnNpb25zLzUuOC45P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-IIS-7/versions/5.8.9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLUlJUy03L3ZlcnNpb25zLzUuOC45P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7/Versions/5.8.9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-IIS-7/Versions/5.8.9\"\r\n}", "ResponseHeaders": { "Content-Length": [ "406" @@ -86057,7 +87980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f4198ad-d8d8-4407-9783-7638478b5757" + "5a89d0dd-ed26-4402-bdd1-d18f29186725" ], "Cache-Control": [ "no-cache" @@ -86067,31 +87990,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12386" + "13242" ], "x-ms-correlation-request-id": [ - "c81a3a2d-fa3b-4441-b3b5-06505fc07a1d" + "541505ab-ede6-4e78-abd5-639252924866" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212714Z:c81a3a2d-fa3b-4441-b3b5-06505fc07a1d" + "WESTUS:20150813T074854Z:541505ab-ede6-4e78-abd5-639252924866" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.11\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.9\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.10\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.11\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.8\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.9\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1227" @@ -86109,7 +88032,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b218ba6-dd1b-4fac-bf3d-6dd1bee2871b" + "36a46e3f-79eb-4509-9428-bfe43b481d29" ], "Cache-Control": [ "no-cache" @@ -86119,31 +88042,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12385" + "13241" ], "x-ms-correlation-request-id": [ - "31588aa3-3e4e-46e8-9143-51e1aa8aa549" + "b9e3cf76-8fa0-4c8c-9915-ffb23cd2038d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:31588aa3-3e4e-46e8-9143-51e1aa8aa549" + "WESTUS:20150813T074854Z:b9e3cf76-8fa0-4c8c-9915-ffb23cd2038d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions/5.8.10?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zLzUuOC4xMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions/5.8.10?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zLzUuOC4xMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.10\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.10\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.10\"\r\n}", "ResponseHeaders": { "Content-Length": [ "411" @@ -86161,7 +88084,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f1c60634-2ce7-4082-86de-84e0485462c6" + "b961236a-6963-4e30-8fdf-6613ec68e03a" ], "Cache-Control": [ "no-cache" @@ -86171,31 +88094,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12384" + "13240" ], "x-ms-correlation-request-id": [ - "066c6c66-b192-46f2-bcdd-96e3f5ae9abd" + "def00e3b-698f-464b-8ae2-37341f0ac338" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:066c6c66-b192-46f2-bcdd-96e3f5ae9abd" + "WESTUS:20150813T074854Z:def00e3b-698f-464b-8ae2-37341f0ac338" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions/5.8.11?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zLzUuOC4xMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions/5.8.11?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zLzUuOC4xMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.11\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.11\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.11\"\r\n}", "ResponseHeaders": { "Content-Length": [ "411" @@ -86213,7 +88136,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7594930d-ebf4-45ae-b359-e913db1a08a5" + "23bb0475-75d3-423c-aa89-03d9f93f8fb0" ], "Cache-Control": [ "no-cache" @@ -86223,31 +88146,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12383" + "13239" ], "x-ms-correlation-request-id": [ - "fbab9be0-395d-42aa-bb2e-d8a9638bf245" + "9c99f024-27b6-4e34-a1bb-fd8db01b2ba4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:fbab9be0-395d-42aa-bb2e-d8a9638bf245" + "WESTUS:20150813T074854Z:9c99f024-27b6-4e34-a1bb-fd8db01b2ba4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions/5.8.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zLzUuOC44P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions/5.8.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zLzUuOC44P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.8\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "409" @@ -86265,7 +88188,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e01e37fc-b66c-4656-8972-4083dbea42c4" + "870ca2cf-c049-45d1-a299-dd52fe016e05" ], "Cache-Control": [ "no-cache" @@ -86275,31 +88198,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12382" + "13238" ], "x-ms-correlation-request-id": [ - "dec3402f-d2c2-4fa9-89fc-c8edd13e81d2" + "0ac36c27-41ee-41a6-a3fa-4ccf6fdbb769" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:dec3402f-d2c2-4fa9-89fc-c8edd13e81d2" + "WESTUS:20150813T074854Z:0ac36c27-41ee-41a6-a3fa-4ccf6fdbb769" ], "Date": [ - "Wed, 05 Aug 2015 21:27:14 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions/5.8.9?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zLzUuOC45P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-SP1-with-SQL-2012/versions/5.8.9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS13aXRoLVNRTC0yMDEyL3ZlcnNpb25zLzUuOC45P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.9\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-SP1-with-SQL-2012/Versions/5.8.9\"\r\n}", "ResponseHeaders": { "Content-Length": [ "409" @@ -86317,7 +88240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2e2bb4a-2c9f-47e7-88db-03162bf13f66" + "defa7ce7-a655-48ee-8919-502212eff033" ], "Cache-Control": [ "no-cache" @@ -86327,31 +88250,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12381" + "13237" ], "x-ms-correlation-request-id": [ - "b4459d24-4888-4bf2-a41d-f6fd59d0fb4a" + "9662c936-4929-43f6-98c6-2ac2462461bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:b4459d24-4888-4bf2-a41d-f6fd59d0fb4a" + "WESTUS:20150813T074854Z:9662c936-4929-43f6-98c6-2ac2462461bd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/13.4.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/14.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/13.4.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/14.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1205" @@ -86369,7 +88292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2de1ce9d-a635-446d-b37d-378387fb183f" + "c39f86b3-f0a9-41d8-8397-d14609a74f30" ], "Cache-Control": [ "no-cache" @@ -86379,31 +88302,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12380" + "13236" ], "x-ms-correlation-request-id": [ - "074cf223-edfc-4523-b659-7d3941ac3378" + "843fdce8-384b-4465-a63d-f7542b05abc6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:074cf223-edfc-4523-b659-7d3941ac3378" + "WESTUS:20150813T074854Z:843fdce8-384b-4465-a63d-f7542b05abc6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions/13.4.12?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnMvMTMuNC4xMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions/13.4.12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnMvMTMuNC4xMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/13.4.12\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/13.4.12\"\r\n}", "ResponseHeaders": { "Content-Length": [ "406" @@ -86421,7 +88344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d11f8a0-d9c8-4119-a16d-9d0e3c009927" + "e15b3dc8-f3be-4448-a9e6-01041e8318c0" ], "Cache-Control": [ "no-cache" @@ -86431,31 +88354,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12379" + "13235" ], "x-ms-correlation-request-id": [ - "39f542ef-4196-4fc3-8e54-3faf82cff75d" + "6ccb4204-f2af-426f-bcf2-ea78ac47270f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:39f542ef-4196-4fc3-8e54-3faf82cff75d" + "WESTUS:20150813T074854Z:6ccb4204-f2af-426f-bcf2-ea78ac47270f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnMvMTMuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnMvMTMuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "404" @@ -86473,7 +88396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b53dddc8-d765-4a52-b433-217fc010c858" + "fd48410b-5cbb-43f3-b491-f034b0ab2088" ], "Cache-Control": [ "no-cache" @@ -86483,31 +88406,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12378" + "13234" ], "x-ms-correlation-request-id": [ - "015e2bfa-709e-4c0e-803e-d1f1a45a7241" + "d777e9fa-d20f-4af8-bdb5-c2118953ab74" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:015e2bfa-709e-4c0e-803e-d1f1a45a7241" + "WESTUS:20150813T074854Z:d777e9fa-d20f-4af8-bdb5-c2118953ab74" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "404" @@ -86525,7 +88448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e18d021-3eff-4bf7-a2f1-ff801770d83b" + "b3131dd3-f5d3-411d-b1c3-51d01facfb1d" ], "Cache-Control": [ "no-cache" @@ -86535,31 +88458,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12377" + "13233" ], "x-ms-correlation-request-id": [ - "93fcae99-d931-4b4b-9512-118e2f7ae1c4" + "6de8ac3a-0580-4810-ae09-778db1aa7a5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:93fcae99-d931-4b4b-9512-118e2f7ae1c4" + "WESTUS:20150813T074855Z:6de8ac3a-0580-4810-ae09-778db1aa7a5f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-IIS-7/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtSUlTLTcvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-IIS-7/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "404" @@ -86577,7 +88500,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78f518a3-0022-4e4c-b2b9-7c49f05169ad" + "ccbe37fa-8f1f-4353-b239-f9821b1bf40d" ], "Cache-Control": [ "no-cache" @@ -86587,31 +88510,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12376" + "13232" ], "x-ms-correlation-request-id": [ - "ea859461-71c2-4af2-b13a-9b7114943793" + "c5395caa-cfee-4c35-b952-59ee54c83bc6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:ea859461-71c2-4af2-b13a-9b7114943793" + "WESTUS:20150813T074855Z:c5395caa-cfee-4c35-b952-59ee54c83bc6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/14.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/14.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "921" @@ -86629,7 +88552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4198e5fd-3489-43da-af07-d755f793e153" + "10e0097f-538e-403c-915f-eb380eadea7f" ], "Cache-Control": [ "no-cache" @@ -86639,31 +88562,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12375" + "13231" ], "x-ms-correlation-request-id": [ - "7f7f57c3-73d9-4a3b-9f00-194f69185f69" + "3e3c0f5f-5833-4d06-bf2e-d986cff8d4fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212715Z:7f7f57c3-73d9-4a3b-9f00-194f69185f69" + "WESTUS:20150813T074855Z:3e3c0f5f-5833-4d06-bf2e-d986cff8d4fd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjIvdmVyc2lvbnMvMTMuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjIvdmVyc2lvbnMvMTMuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "410" @@ -86681,7 +88604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09ae3e03-b6aa-4696-865c-3ed109fe9238" + "2db36d49-bb50-4031-9f5d-1ce300791cf7" ], "Cache-Control": [ "no-cache" @@ -86691,31 +88614,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12374" + "13230" ], "x-ms-correlation-request-id": [ - "1ed1c318-45fe-4bab-867b-182aa95e0887" + "a9a1da90-4a1e-493f-8233-9b4e63684fc3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:1ed1c318-45fe-4bab-867b-182aa95e0887" + "WESTUS:20150813T074855Z:a9a1da90-4a1e-493f-8233-9b4e63684fc3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjIvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjIvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "410" @@ -86733,7 +88656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88a82728-0c0a-4ad7-91a6-1516f60d425b" + "abfb5d24-d340-45b0-b080-9ef696a69465" ], "Cache-Control": [ "no-cache" @@ -86743,31 +88666,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12373" + "13229" ], "x-ms-correlation-request-id": [ - "96bc4b2a-7a34-40ca-bf75-06801a6ed176" + "8e251274-4907-4721-90ea-44bc72cff85d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:96bc4b2a-7a34-40ca-bf75-06801a6ed176" + "WESTUS:20150813T074855Z:8e251274-4907-4721-90ea-44bc72cff85d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjIvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjIvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "410" @@ -86785,7 +88708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a29948cc-0994-4304-aee1-b1935181dd40" + "b578144d-6e8d-4048-9b04-312fb3fc4c31" ], "Cache-Control": [ "no-cache" @@ -86795,31 +88718,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12372" + "13228" ], "x-ms-correlation-request-id": [ - "3da0a047-187e-4777-b6ea-56a23f87ff64" + "3b7efd77-cc6c-4eb5-8b2e-375153b79f64" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:3da0a047-187e-4777-b6ea-56a23f87ff64" + "WESTUS:20150813T074855Z:3b7efd77-cc6c-4eb5-8b2e-375153b79f64" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2-Ent/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjItRW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2-Ent/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjItRW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/14.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/14.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "933" @@ -86837,7 +88760,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d68d018-3b28-4901-9010-4b3ccfe2a5fc" + "8e1837e9-3c81-4bf5-a030-864b4cbf84f6" ], "Cache-Control": [ "no-cache" @@ -86847,31 +88770,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12371" + "13227" ], "x-ms-correlation-request-id": [ - "90bc3add-62cd-4564-b412-b9b5d23ffbb3" + "7628d177-858c-454e-a4f7-1278a03e4b9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:90bc3add-62cd-4564-b412-b9b5d23ffbb3" + "WESTUS:20150813T074855Z:7628d177-858c-454e-a4f7-1278a03e4b9f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:15 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2-Ent/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjItRW50L3ZlcnNpb25zLzEzLjUuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2-Ent/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjItRW50L3ZlcnNpb25zLzEzLjUuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "414" @@ -86889,7 +88812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ccf72dd7-4ac7-46cf-a275-0e3c6d4c2abc" + "0243fd7f-f05f-4b14-9817-fe75363222b4" ], "Cache-Control": [ "no-cache" @@ -86899,31 +88822,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12370" + "13226" ], "x-ms-correlation-request-id": [ - "6f4186e3-780c-40b5-820d-c30dfb0a3d8b" + "9fc91a29-fa2b-4e8c-bc6e-aa10093070e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:6f4186e3-780c-40b5-820d-c30dfb0a3d8b" + "WESTUS:20150813T074855Z:9fc91a29-fa2b-4e8c-bc6e-aa10093070e2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2-Ent/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjItRW50L3ZlcnNpb25zLzE0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2-Ent/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjItRW50L3ZlcnNpb25zLzE0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "414" @@ -86941,7 +88864,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dcf43d06-d179-4bec-bb93-5f22e636af32" + "7c1a307e-5783-491e-b581-5a57be943ee5" ], "Cache-Control": [ "no-cache" @@ -86951,31 +88874,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12369" + "13225" ], "x-ms-correlation-request-id": [ - "bfaf0728-18b1-4965-a3e7-27e770c9f6a4" + "f7c79cf8-10bf-4802-aff3-b374ea7413d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:bfaf0728-18b1-4965-a3e7-27e770c9f6a4" + "WESTUS:20150813T074855Z:f7c79cf8-10bf-4802-aff3-b374ea7413d6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2-Ent/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjItRW50L3ZlcnNpb25zLzE0LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2008-R2-Ent/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMDgtUjItRW50L3ZlcnNpb25zLzE0LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2008-R2-Ent/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "414" @@ -86993,7 +88916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc9d29e0-0c20-4b3a-96f9-92d8caa0c43e" + "70a8c1dd-e37d-456c-9e57-5ecd6328b212" ], "Cache-Control": [ "no-cache" @@ -87003,31 +88926,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12368" + "13224" ], "x-ms-correlation-request-id": [ - "3d24ab15-75ca-4e6a-b66b-f244f4a477a0" + "65082248-08bb-4836-a1d3-cb22a10ba765" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:3d24ab15-75ca-4e6a-b66b-f244f4a477a0" + "WESTUS:20150813T074855Z:65082248-08bb-4836-a1d3-cb22a10ba765" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/13.4.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/13.5.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/14.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/13.4.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/13.5.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/14.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "912" @@ -87045,7 +88968,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76a21900-5391-4204-b8a5-54f57551c8dd" + "dc96c72f-8a1d-4711-bcb1-34740100c4b4" ], "Cache-Control": [ "no-cache" @@ -87055,31 +88978,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12367" + "13223" ], "x-ms-correlation-request-id": [ - "f8bfc4f4-cc11-42ab-9872-508226471c08" + "0ecc30d9-3b88-4e07-bb77-04b53e333bd2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:f8bfc4f4-cc11-42ab-9872-508226471c08" + "WESTUS:20150813T074856Z:0ecc30d9-3b88-4e07-bb77-04b53e333bd2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012/versions/13.4.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTIvdmVyc2lvbnMvMTMuNC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012/versions/13.4.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTIvdmVyc2lvbnMvMTMuNC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/13.4.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/13.4.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "407" @@ -87097,7 +89020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "403795b9-8fa5-4a88-8534-9da67c0392ee" + "2594e0f5-f57b-404c-99a3-22801c3b2c3a" ], "Cache-Control": [ "no-cache" @@ -87107,31 +89030,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12366" + "13222" ], "x-ms-correlation-request-id": [ - "d06aa90c-77f1-4b3f-9753-19c2f114e762" + "fa517164-fa68-48e0-b928-d828d049c008" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:d06aa90c-77f1-4b3f-9753-19c2f114e762" + "WESTUS:20150813T074856Z:fa517164-fa68-48e0-b928-d828d049c008" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012/versions/13.5.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTIvdmVyc2lvbnMvMTMuNS4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012/versions/13.5.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTIvdmVyc2lvbnMvMTMuNS4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/13.5.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/13.5.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "407" @@ -87149,7 +89072,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9adaa053-0168-40b2-8cf5-1282db97bb23" + "ad9e1b43-17a2-4f47-ab30-b9aef40afd58" ], "Cache-Control": [ "no-cache" @@ -87159,31 +89082,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12365" + "13221" ], "x-ms-correlation-request-id": [ - "c771b532-4fbf-4889-bb31-5cffb76fc6d3" + "1d34df3d-a782-4e68-813c-aa5a37316c2a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212716Z:c771b532-4fbf-4889-bb31-5cffb76fc6d3" + "WESTUS:20150813T074856Z:1d34df3d-a782-4e68-813c-aa5a37316c2a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTIvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTIvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "407" @@ -87201,7 +89124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "05ee3a34-f5fd-407e-931a-3f595c0752b2" + "a1aac28f-d9db-4b16-8e69-e1fde4d774ea" ], "Cache-Control": [ "no-cache" @@ -87211,31 +89134,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12364" + "13220" ], "x-ms-correlation-request-id": [ - "281d69cf-dc67-4e48-bc7f-9070c430e194" + "794f972d-e9c3-41ed-9c29-cbb38d68437e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:281d69cf-dc67-4e48-bc7f-9070c430e194" + "WESTUS:20150813T074856Z:794f972d-e9c3-41ed-9c29-cbb38d68437e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012-Ent/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTItRW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012-Ent/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTItRW50L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/13.4.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/14.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/13.4.3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/14.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "924" @@ -87253,7 +89176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "319cad09-07cd-4981-a442-651e09d9c49a" + "49d93f4a-c552-4a9b-891b-f16c56e7d150" ], "Cache-Control": [ "no-cache" @@ -87263,31 +89186,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12363" + "13219" ], "x-ms-correlation-request-id": [ - "dc555ec3-cfd5-42b2-ab2d-f6af4ebebd82" + "bd881011-3af1-45ae-b075-56194df686a1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:dc555ec3-cfd5-42b2-ab2d-f6af4ebebd82" + "WESTUS:20150813T074856Z:bd881011-3af1-45ae-b075-56194df686a1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012-Ent/versions/13.4.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTItRW50L3ZlcnNpb25zLzEzLjQuMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012-Ent/versions/13.4.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTItRW50L3ZlcnNpb25zLzEzLjQuMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/13.4.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/13.4.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "411" @@ -87305,7 +89228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5f27fa7-085f-4d30-8a51-e94ae148d6ff" + "339d2900-4ad3-4b13-a63e-e4bbe7d0abdd" ], "Cache-Control": [ "no-cache" @@ -87315,31 +89238,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12362" + "13218" ], "x-ms-correlation-request-id": [ - "1c45b119-4310-4e70-a347-005047d8e188" + "0f82a400-ec13-4dd3-b854-37970b1e641b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:1c45b119-4310-4e70-a347-005047d8e188" + "WESTUS:20150813T074856Z:0f82a400-ec13-4dd3-b854-37970b1e641b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012-Ent/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTItRW50L3ZlcnNpb25zLzEzLjUuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012-Ent/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTItRW50L3ZlcnNpb25zLzEzLjUuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "411" @@ -87357,7 +89280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3b2f4f1-e0aa-44f6-854e-adca2a3a12b6" + "483a8fff-1323-4482-ba0e-432423578d88" ], "Cache-Control": [ "no-cache" @@ -87367,31 +89290,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12361" + "13217" ], "x-ms-correlation-request-id": [ - "d9b33ca0-1500-4564-8685-b0ec54e16a89" + "36fd54f3-9e52-435f-9e69-b943b112cf27" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:d9b33ca0-1500-4564-8685-b0ec54e16a89" + "WESTUS:20150813T074856Z:36fd54f3-9e52-435f-9e69-b943b112cf27" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012-Ent/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTItRW50L3ZlcnNpb25zLzE0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2008-R2-with-SQL-2012-Ent/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLXdpdGgtU1FMLTIwMTItRW50L3ZlcnNpb25zLzE0LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2008-R2-with-SQL-2012-Ent/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "411" @@ -87409,7 +89332,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed61ba09-c50b-4f59-9edc-a534f794c260" + "869a718c-76cf-4b65-a62e-73537ce5b31c" ], "Cache-Control": [ "no-cache" @@ -87419,31 +89342,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12360" + "13216" ], "x-ms-correlation-request-id": [ - "1bb1224b-cbeb-40e4-8164-e88a2df79c60" + "58de5ba0-eca2-4b80-9baf-2872c1a3831b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:1bb1224b-cbeb-40e4-8164-e88a2df79c60" + "WESTUS:20150813T074856Z:58de5ba0-eca2-4b80-9baf-2872c1a3831b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:16 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/13.4.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/5.8.8\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/13.4.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/5.8.8\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1488" @@ -87461,7 +89384,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdd3845d-c779-4d8f-9e55-a41e4bf912c6" + "5420da1a-f4db-43f6-8b78-585d9e65e916" ], "Cache-Control": [ "no-cache" @@ -87471,31 +89394,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12359" + "13215" ], "x-ms-correlation-request-id": [ - "a65234a6-828e-4aef-918c-c83a878e1821" + "4836e401-6c14-4f37-ac1c-e18d4fdd115e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:a65234a6-828e-4aef-918c-c83a878e1821" + "WESTUS:20150813T074856Z:4836e401-6c14-4f37-ac1c-e18d4fdd115e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/13.4.12?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTMuNC4xMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/13.4.12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTMuNC4xMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/13.4.12\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/13.4.12\"\r\n}", "ResponseHeaders": { "Content-Length": [ "403" @@ -87513,7 +89436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f55c81f0-d405-47fe-bfcb-e226e88bc2c5" + "518c83fe-1d5d-474a-bace-3d3dde25217f" ], "Cache-Control": [ "no-cache" @@ -87523,31 +89446,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12358" + "13214" ], "x-ms-correlation-request-id": [ - "cc4f9a83-1d4b-479e-8672-966ae0b28fe9" + "e426466d-aacb-4b9b-92f1-480ec53ffb73" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:cc4f9a83-1d4b-479e-8672-966ae0b28fe9" + "WESTUS:20150813T074856Z:e426466d-aacb-4b9b-92f1-480ec53ffb73" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTMuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTMuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "401" @@ -87565,7 +89488,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18e5cfce-a1e2-4e55-9dcd-34e151d72d23" + "e5cf6817-506a-4b5f-bf41-8968beb62722" ], "Cache-Control": [ "no-cache" @@ -87575,31 +89498,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12357" + "13213" ], "x-ms-correlation-request-id": [ - "82c645f9-b907-4833-993d-e08bb5bbee0b" + "c6d5286a-eb26-47ab-8268-f331d9cc0cb5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:82c645f9-b907-4833-993d-e08bb5bbee0b" + "WESTUS:20150813T074856Z:c6d5286a-eb26-47ab-8268-f331d9cc0cb5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "401" @@ -87617,7 +89540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38ba8872-4a97-4bdb-bfeb-cb8fe6714000" + "6cc48d19-c84a-4bf5-a94c-d0c685b2078e" ], "Cache-Control": [ "no-cache" @@ -87627,31 +89550,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12356" + "13212" ], "x-ms-correlation-request-id": [ - "45c0694e-a6ca-453d-a29c-66a5677ff27d" + "bbaa3df0-de87-407c-9f84-2dcb2eaab728" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:45c0694e-a6ca-453d-a29c-66a5677ff27d" + "WESTUS:20150813T074857Z:bbaa3df0-de87-407c-9f84-2dcb2eaab728" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "401" @@ -87669,7 +89592,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a93b297-69b4-4666-a797-b830b063dcb9" + "e8030475-40dd-4289-85f5-acb49edbcf41" ], "Cache-Control": [ "no-cache" @@ -87679,31 +89602,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12355" + "13211" ], "x-ms-correlation-request-id": [ - "78823f3c-befa-4c7a-a246-e952e3e94eef" + "0a6b3e94-a54d-4b01-b356-3f14c2a387d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:78823f3c-befa-4c7a-a246-e952e3e94eef" + "WESTUS:20150813T074857Z:0a6b3e94-a54d-4b01-b356-3f14c2a387d8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/5.8.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvNS44Ljg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter/versions/5.8.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXIvdmVyc2lvbnMvNS44Ljg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/5.8.8\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter/Versions/5.8.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "399" @@ -87721,7 +89644,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09288255-0866-4677-9fd5-87adae173154" + "d0e29d7d-fc9d-4d9a-a128-59f00f8f7cd9" ], "Cache-Control": [ "no-cache" @@ -87731,31 +89654,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12354" + "13210" ], "x-ms-correlation-request-id": [ - "c7e68c28-2ff8-4e49-adcc-1391563bc678" + "aa15ba2d-417d-4fe5-8f8f-a31d9110937d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212717Z:c7e68c28-2ff8-4e49-adcc-1391563bc678" + "WESTUS:20150813T074857Z:aa15ba2d-417d-4fe5-8f8f-a31d9110937d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/13.4.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/5.8.8\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/13.4.12\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/14.2.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/5.8.8\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1543" @@ -87773,7 +89696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "949c6e81-e573-4f58-915d-985cde8f6a3e" + "58954906-32e3-44a5-bdb1-9349adc9380a" ], "Cache-Control": [ "no-cache" @@ -87783,31 +89706,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12353" + "13209" ], "x-ms-correlation-request-id": [ - "6c66ed91-72b5-4da3-ac32-03f80ac849c8" + "886b99e1-f298-4356-a435-326de05d554c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:6c66ed91-72b5-4da3-ac32-03f80ac849c8" + "WESTUS:20150813T074857Z:886b99e1-f298-4356-a435-326de05d554c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/13.4.12?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy8xMy40LjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/13.4.12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy8xMy40LjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/13.4.12\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.4.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/13.4.12\"\r\n}", "ResponseHeaders": { "Content-Length": [ "414" @@ -87825,7 +89748,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8bd8a386-0839-43f3-beaf-9d2311ffdc37" + "d507c7f0-ae09-4a88-91ab-9e4cf072663b" ], "Cache-Control": [ "no-cache" @@ -87835,31 +89758,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12352" + "13208" ], "x-ms-correlation-request-id": [ - "98360088-dd82-4a1c-a720-5168de57e03d" + "41a23041-cc09-4a73-81a1-5cdadb38039e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:98360088-dd82-4a1c-a720-5168de57e03d" + "WESTUS:20150813T074857Z:41a23041-cc09-4a73-81a1-5cdadb38039e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy8xMy41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy8xMy41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "412" @@ -87877,7 +89800,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "988e4caf-abc7-4036-a995-753f8f9404d0" + "50675e12-c192-4928-9bd6-740c0cd951af" ], "Cache-Control": [ "no-cache" @@ -87887,31 +89810,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12351" + "13207" ], "x-ms-correlation-request-id": [ - "8dc62b92-2401-46e7-88db-de22eb52b584" + "d129fd03-c0ed-4283-b384-b33f2c18f4d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:8dc62b92-2401-46e7-88db-de22eb52b584" + "WESTUS:20150813T074857Z:d129fd03-c0ed-4283-b384-b33f2c18f4d4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy8xNC4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy8xNC4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "412" @@ -87929,7 +89852,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a175891c-2b2a-49a2-bed6-e60cba75922d" + "d89652f5-066c-4322-8a6c-bdc1c4996334" ], "Cache-Control": [ "no-cache" @@ -87939,31 +89862,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12350" + "13206" ], "x-ms-correlation-request-id": [ - "7d6e9565-4351-4dd6-bed3-0a80e2500e35" + "296ebc4e-4a48-45a7-8a66-a64a70492982" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:7d6e9565-4351-4dd6-bed3-0a80e2500e35" + "WESTUS:20150813T074857Z:296ebc4e-4a48-45a7-8a66-a64a70492982" ], "Date": [ - "Wed, 05 Aug 2015 21:27:17 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy8xNC4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy8xNC4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "412" @@ -87981,7 +89904,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b37da4f4-893e-492a-92b2-69d3a50d8c2c" + "ce2b9fca-6cde-4b76-945a-33607781f5c3" ], "Cache-Control": [ "no-cache" @@ -87991,31 +89914,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12349" + "13205" ], "x-ms-correlation-request-id": [ - "7fa7329e-4447-424c-9414-c39aae2c6646" + "8687deda-c096-43ef-b5f6-298912007065" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:7fa7329e-4447-424c-9414-c39aae2c6646" + "WESTUS:20150813T074857Z:8687deda-c096-43ef-b5f6-298912007065" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/5.8.8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy81LjguOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-IIS-8/versions/5.8.8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1JSVMtOC92ZXJzaW9ucy81LjguOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/5.8.8\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.8.8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-IIS-8/Versions/5.8.8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "410" @@ -88033,7 +89956,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e4f4fcc-a490-4c26-b47a-ff91065c18ad" + "3dc9638b-a5d0-4118-925a-fa2d0b56abf0" ], "Cache-Control": [ "no-cache" @@ -88043,31 +89966,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12348" + "13204" ], "x-ms-correlation-request-id": [ - "34250ec9-3953-4212-ab97-800e8c751fec" + "1c3d8961-df9e-47c1-8cf5-01dd86077877" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:34250ec9-3953-4212-ab97-800e8c751fec" + "WESTUS:20150813T074857Z:1c3d8961-df9e-47c1-8cf5-01dd86077877" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/14.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/14.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "936" @@ -88085,7 +90008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "022eead4-80f8-4cef-b083-ceb91eb011f3" + "fef8e897-4c34-4ec4-8ccf-0cd8d2bddb98" ], "Cache-Control": [ "no-cache" @@ -88095,31 +90018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12347" + "13203" ], "x-ms-correlation-request-id": [ - "3363398c-d452-4f54-bad5-3443e597540d" + "9124dfc8-1fb3-4ddd-b7eb-ead378ae80cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:3363398c-d452-4f54-bad5-3443e597540d" + "WESTUS:20150813T074857Z:9124dfc8-1fb3-4ddd-b7eb-ead378ae80cb" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi92ZXJzaW9ucy8xMy41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi92ZXJzaW9ucy8xMy41LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "415" @@ -88137,7 +90060,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "844eb537-1e51-4cff-93d1-3d6373e189b8" + "ad83e526-c681-4c19-8b38-8959a7a54593" ], "Cache-Control": [ "no-cache" @@ -88147,31 +90070,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12346" + "13202" ], "x-ms-correlation-request-id": [ - "601356f1-6fb3-4b63-a59f-02f53492f409" + "3951add1-f561-4ab6-9f7c-415662f9b02f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:601356f1-6fb3-4b63-a59f-02f53492f409" + "WESTUS:20150813T074858Z:3951add1-f561-4ab6-9f7c-415662f9b02f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi92ZXJzaW9ucy8xNC4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi92ZXJzaW9ucy8xNC4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "415" @@ -88189,7 +90112,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f894b05-dd64-458c-85fc-79a261f9db67" + "b91e169d-deaa-4689-b39f-db0c31878e3c" ], "Cache-Control": [ "no-cache" @@ -88199,31 +90122,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12345" + "13201" ], "x-ms-correlation-request-id": [ - "cd6ccdda-0b01-4f38-899a-d617d9886118" + "7447c045-977a-49d3-b69e-0d921efe9d14" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:cd6ccdda-0b01-4f38-899a-d617d9886118" + "WESTUS:20150813T074858Z:7447c045-977a-49d3-b69e-0d921efe9d14" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi92ZXJzaW9ucy8xNC4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi92ZXJzaW9ucy8xNC4yLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "415" @@ -88241,7 +90164,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c85a38f-9897-4b59-87a6-2c727e1ed6b9" + "ce39c3d2-a1fe-496f-a0f5-bf1f8b73e2cf" ], "Cache-Control": [ "no-cache" @@ -88251,31 +90174,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12344" + "13200" ], "x-ms-correlation-request-id": [ - "3d191b2e-9ba0-4ce0-88ff-9c6a9b5dfd21" + "4a6e24e6-eeb6-4d4d-bc6e-c3cd898d1d7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212718Z:3d191b2e-9ba0-4ce0-88ff-9c6a9b5dfd21" + "WESTUS:20150813T074858Z:4a6e24e6-eeb6-4d4d-bc6e-c3cd898d1d7c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012-Ent/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi1FbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012-Ent/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi1FbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/14.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/13.5.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/14.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/14.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "948" @@ -88293,7 +90216,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54ca538b-6256-49cc-87b6-23fb84b46f16" + "73920efa-7c03-40bd-ac76-7ae10106b7aa" ], "Cache-Control": [ "no-cache" @@ -88303,31 +90226,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12343" + "13199" ], "x-ms-correlation-request-id": [ - "25fa14f5-692d-4a86-99ea-22c479444eec" + "c4312117-a2c5-464f-a2d0-245b01109a0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:25fa14f5-692d-4a86-99ea-22c479444eec" + "WESTUS:20150813T074858Z:c4312117-a2c5-464f-a2d0-245b01109a0a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012-Ent/versions/13.5.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi1FbnQvdmVyc2lvbnMvMTMuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012-Ent/versions/13.5.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi1FbnQvdmVyc2lvbnMvMTMuNS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/13.5.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"13.5.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/13.5.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "419" @@ -88345,7 +90268,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8aa92fa3-5a97-4e32-b7a8-770cdf39f0fc" + "073a422b-4404-4b8e-bbbd-1942429d1b0c" ], "Cache-Control": [ "no-cache" @@ -88355,31 +90278,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12342" + "13198" ], "x-ms-correlation-request-id": [ - "252a3b5c-8833-42cd-8b6f-ae3f8da007ed" + "3035bbff-44b6-4609-a1a7-0e7660644074" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:252a3b5c-8833-42cd-8b6f-ae3f8da007ed" + "WESTUS:20150813T074858Z:3035bbff-44b6-4609-a1a7-0e7660644074" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012-Ent/versions/14.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi1FbnQvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012-Ent/versions/14.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi1FbnQvdmVyc2lvbnMvMTQuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/14.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/14.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "419" @@ -88397,7 +90320,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "793ef4b6-aac1-422a-98a1-193bae0b9c5e" + "2fca1eb9-ad8c-458c-afa9-047ddb5e3283" ], "Cache-Control": [ "no-cache" @@ -88407,31 +90330,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12341" + "13197" ], "x-ms-correlation-request-id": [ - "d13664cc-84bc-406c-a05f-550bdb7675f7" + "f022ba1b-885f-485a-b27b-392f874fc462" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:d13664cc-84bc-406c-a05f-550bdb7675f7" + "WESTUS:20150813T074858Z:f022ba1b-885f-485a-b27b-392f874fc462" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012-Ent/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi1FbnQvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-Datacenter-with-SQL-2012-Ent/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLURhdGFjZW50ZXItd2l0aC1TUUwtMjAxMi1FbnQvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-Datacenter-with-SQL-2012-Ent/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "419" @@ -88449,7 +90372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bdb19bd2-acf4-40c8-9f2a-58d0e2845eef" + "8fa592ac-ba58-4695-a51f-0358dd46cdb6" ], "Cache-Control": [ "no-cache" @@ -88459,31 +90382,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12340" + "13196" ], "x-ms-correlation-request-id": [ - "839769a3-1cc9-4de6-a90c-43f00e5b6a90" + "1d69b7d1-9d4f-4ae2-aaa7-d1f0c214838a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:839769a3-1cc9-4de6-a90c-43f00e5b6a90" + "WESTUS:20150813T074858Z:1d69b7d1-9d4f-4ae2-aaa7-d1f0c214838a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-R2-Datacenter/Versions/14.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-R2-Datacenter/Versions/14.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "303" @@ -88501,7 +90424,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60db1886-0e03-4468-bf52-d2926136aa60" + "02696315-d4a2-4782-9747-f6375b44781c" ], "Cache-Control": [ "no-cache" @@ -88511,31 +90434,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12339" + "13195" ], "x-ms-correlation-request-id": [ - "f1853302-a158-445e-a468-d91063d63414" + "d4bfbef7-19ea-4b4e-b672-0fe3d78290c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:f1853302-a158-445e-a468-d91063d63414" + "WESTUS:20150813T074858Z:d4bfbef7-19ea-4b4e-b672-0fe3d78290c3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:18 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-R2-Datacenter/versions/14.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RightScaleWindowsServer/artifacttypes/vmimage/offers/RightImage-WindowsServer/skus/2012-R2-Datacenter/versions/14.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUmlnaHRTY2FsZVdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9SaWdodEltYWdlLVdpbmRvd3NTZXJ2ZXIvc2t1cy8yMDEyLVIyLURhdGFjZW50ZXIvdmVyc2lvbnMvMTQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-R2-Datacenter/Versions/14.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"14.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer/ArtifactTypes/VMImage/Offers/RightImage-WindowsServer/Skus/2012-R2-Datacenter/Versions/14.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "404" @@ -88553,7 +90476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e37b1d5-aed4-411a-90c6-9935b2b93f79" + "f8e57634-3829-4da1-a671-fe07cf254a04" ], "Cache-Control": [ "no-cache" @@ -88563,31 +90486,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12338" + "13194" ], "x-ms-correlation-request-id": [ - "32801d00-369f-4b41-87a5-2f50c0f79f7a" + "ccca9791-7f83-4c65-bcfc-5bfa0d9daa4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:32801d00-369f-4b41-87a5-2f50c0f79f7a" + "WESTUS:20150813T074858Z:ccca9791-7f83-4c65-bcfc-5bfa0d9daa4e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed-steelcentral-appinternals\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/riverbed-steelcentral-appinternals\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelapp_traffic_manager\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/steelapp_traffic_manager\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed-steelcentral-appinternals\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/riverbed-steelcentral-appinternals\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelapp_traffic_manager\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/steelapp_traffic_manager\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "549" @@ -88605,7 +90528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3be6c204-0df3-41a7-a5cd-4e2451d09f00" + "5b1e8276-fd06-4a5c-9ab9-f5f076c4db99" ], "Cache-Control": [ "no-cache" @@ -88615,31 +90538,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12337" + "13193" ], "x-ms-correlation-request-id": [ - "95c29f9d-ba43-4b6d-a205-9fa07dffc420" + "63ad6fb6-451f-4a04-b450-11bc9f4dec33" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:95c29f9d-ba43-4b6d-a205-9fa07dffc420" + "WESTUS:20150813T074858Z:63ad6fb6-451f-4a04-b450-11bc9f4dec33" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/riverbed-steelcentral-appinternals/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaXZlcmJlZC1zdGVlbGNlbnRyYWwtYXBwaW50ZXJuYWxzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/riverbed-steelcentral-appinternals/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaXZlcmJlZC1zdGVlbGNlbnRyYWwtYXBwaW50ZXJuYWxzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ai_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/riverbed-steelcentral-appinternals/Skus/ai_byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ai_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/riverbed-steelcentral-appinternals/Skus/ai_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -88657,7 +90580,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "791c6e2c-a112-4025-bec1-a243949627e3" + "6d91f18a-ae3c-4459-9bbc-c260211dec08" ], "Cache-Control": [ "no-cache" @@ -88667,31 +90590,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12336" + "13192" ], "x-ms-correlation-request-id": [ - "1aa53b8d-6574-4f95-a415-caba5ee4305b" + "6f11e758-9814-4523-a7d3-e9103d621523" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:1aa53b8d-6574-4f95-a415-caba5ee4305b" + "WESTUS:20150813T074858Z:6f11e758-9814-4523-a7d3-e9103d621523" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/riverbed-steelcentral-appinternals/skus/ai_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaXZlcmJlZC1zdGVlbGNlbnRyYWwtYXBwaW50ZXJuYWxzL3NrdXMvYWlfYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/riverbed-steelcentral-appinternals/skus/ai_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaXZlcmJlZC1zdGVlbGNlbnRyYWwtYXBwaW50ZXJuYWxzL3NrdXMvYWlfYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/riverbed-steelcentral-appinternals/Skus/ai_byol/Versions/10.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/riverbed-steelcentral-appinternals/Skus/ai_byol/Versions/10.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "287" @@ -88709,7 +90632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f484a606-1533-46af-8328-b2355c5c0089" + "84192871-a9de-4ee2-8a07-3d39c236334e" ], "Cache-Control": [ "no-cache" @@ -88719,31 +90642,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12335" + "13191" ], "x-ms-correlation-request-id": [ - "b47fae07-d785-49f5-a8f1-889ce18e9a73" + "5494f600-9caf-43c2-b8ca-fe8196c6c9de" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:b47fae07-d785-49f5-a8f1-889ce18e9a73" + "WESTUS:20150813T074858Z:5494f600-9caf-43c2-b8ca-fe8196c6c9de" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/riverbed-steelcentral-appinternals/skus/ai_byol/versions/10.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaXZlcmJlZC1zdGVlbGNlbnRyYWwtYXBwaW50ZXJuYWxzL3NrdXMvYWlfYnlvbC92ZXJzaW9ucy8xMC4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/riverbed-steelcentral-appinternals/skus/ai_byol/versions/10.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9yaXZlcmJlZC1zdGVlbGNlbnRyYWwtYXBwaW50ZXJuYWxzL3NrdXMvYWlfYnlvbC92ZXJzaW9ucy8xMC4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"riverbed\",\r\n \"name\": \"ai_byol\",\r\n \"product\": \"riverbed-steelcentral-appinternals\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/riverbed-steelcentral-appinternals/Skus/ai_byol/Versions/10.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"riverbed\",\r\n \"name\": \"ai_byol\",\r\n \"product\": \"riverbed-steelcentral-appinternals\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 1\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"10.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/riverbed-steelcentral-appinternals/Skus/ai_byol/Versions/10.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "564" @@ -88761,7 +90684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66024bbf-5f04-4067-87ab-5fa5aeb6118e" + "c4567d14-1ce0-4dad-b4bc-d6917b883c84" ], "Cache-Control": [ "no-cache" @@ -88771,31 +90694,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12334" + "13190" ], "x-ms-correlation-request-id": [ - "a59007b3-189c-48ef-8c0d-ba567c9fbcad" + "aa9fc5e5-4ac1-4c5b-9ec5-2bc1d4797437" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212719Z:a59007b3-189c-48ef-8c0d-ba567c9fbcad" + "WESTUS:20150813T074859Z:aa9fc5e5-4ac1-4c5b-9ec5-2bc1d4797437" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/steelapp_traffic_manager/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGVlbGFwcF90cmFmZmljX21hbmFnZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/steelapp_traffic_manager/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGVlbGFwcF90cmFmZmljX21hbmFnZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stm_dev_64_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/steelapp_traffic_manager/Skus/stm_dev_64_byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stm_dev_64_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/steelapp_traffic_manager/Skus/stm_dev_64_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "278" @@ -88813,7 +90736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd5afd18-7a21-436e-8e99-9049814bf59b" + "c18d2dde-960f-4d5f-a4f2-c8b7bebb3b32" ], "Cache-Control": [ "no-cache" @@ -88823,31 +90746,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12333" + "13189" ], "x-ms-correlation-request-id": [ - "af187111-6216-4938-98b5-1a4aa605a92e" + "23e71b2a-c281-44f1-8623-4353862e217e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:af187111-6216-4938-98b5-1a4aa605a92e" + "WESTUS:20150813T074859Z:23e71b2a-c281-44f1-8623-4353862e217e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/steelapp_traffic_manager/skus/stm_dev_64_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGVlbGFwcF90cmFmZmljX21hbmFnZXIvc2t1cy9zdG1fZGV2XzY0X2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/steelapp_traffic_manager/skus/stm_dev_64_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGVlbGFwcF90cmFmZmljX21hbmFnZXIvc2t1cy9zdG1fZGV2XzY0X2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/steelapp_traffic_manager/Skus/stm_dev_64_byol/Versions/1.4.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/steelapp_traffic_manager/Skus/stm_dev_64_byol/Versions/1.4.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "283" @@ -88865,7 +90788,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1edcc0e-0e99-4ebb-95f0-abddf6bafbd1" + "c743db2f-9f35-4958-b75e-477e34c15463" ], "Cache-Control": [ "no-cache" @@ -88875,31 +90798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12332" + "13188" ], "x-ms-correlation-request-id": [ - "45ba85ff-d122-46c6-b5df-a6acf17675c1" + "7937088d-bc94-43a3-bbfd-274cd76b7d8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:45ba85ff-d122-46c6-b5df-a6acf17675c1" + "WESTUS:20150813T074859Z:7937088d-bc94-43a3-bbfd-274cd76b7d8c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/steelapp_traffic_manager/skus/stm_dev_64_byol/versions/1.4.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGVlbGFwcF90cmFmZmljX21hbmFnZXIvc2t1cy9zdG1fZGV2XzY0X2J5b2wvdmVyc2lvbnMvMS40LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/riverbed/artifacttypes/vmimage/offers/steelapp_traffic_manager/skus/stm_dev_64_byol/versions/1.4.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvcml2ZXJiZWQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGVlbGFwcF90cmFmZmljX21hbmFnZXIvc2t1cy9zdG1fZGV2XzY0X2J5b2wvdmVyc2lvbnMvMS40LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"riverbed\",\r\n \"name\": \"stm_dev_64_byol\",\r\n \"product\": \"steelapp_traffic_manager\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.4.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/steelapp_traffic_manager/Skus/stm_dev_64_byol/Versions/1.4.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"riverbed\",\r\n \"name\": \"stm_dev_64_byol\",\r\n \"product\": \"steelapp_traffic_manager\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.4.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed/ArtifactTypes/VMImage/Offers/steelapp_traffic_manager/Skus/stm_dev_64_byol/Versions/1.4.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "516" @@ -88917,7 +90840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8938e898-b238-4562-b4ce-fdbc0391ac93" + "3b2a8708-1723-4cd2-b6ae-da00b4cbe054" ], "Cache-Control": [ "no-cache" @@ -88927,31 +90850,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12331" + "13187" ], "x-ms-correlation-request-id": [ - "2b36a90e-492d-444e-aec0-0246bcc2982c" + "6b085219-fe9a-4236-87a3-d897035ae6cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:2b36a90e-492d-444e-aec0-0246bcc2982c" + "WESTUS:20150813T074859Z:6b085219-fe9a-4236-87a3-d897035ae6cb" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SteelHead\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SteelHead\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "246" @@ -88969,7 +90892,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba997810-d675-44e4-99b6-626c15a24822" + "deb11a45-93ab-4493-a482-acc101635d18" ], "Cache-Control": [ "no-cache" @@ -88979,31 +90902,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12330" + "13186" ], "x-ms-correlation-request-id": [ - "875ede13-f26d-434c-a958-1a861fc9d5d7" + "28d12156-d845-4cec-94d1-1ccaf7f27463" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:875ede13-f26d-434c-a958-1a861fc9d5d7" + "WESTUS:20150813T074859Z:28d12156-d845-4cec-94d1-1ccaf7f27463" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiOS-8.6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiOS-9.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiOS-8.6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiOS-9.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "515" @@ -89021,7 +90944,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7817f2c-ef76-4ff5-b7ef-19b2f0c337cf" + "a42c1e39-b611-4258-8930-91d3de1afdf0" ], "Cache-Control": [ "no-cache" @@ -89031,34 +90954,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12329" + "13185" ], "x-ms-correlation-request-id": [ - "45ffb695-474d-4590-b165-06ec5a9f4827" + "0d494c58-f9dc-4ab3-85e5-4cf28c6a24de" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:45ffb695-474d-4590-b165-06ec5a9f4827" + "WESTUS:20150813T074859Z:0d494c58-f9dc-4ab3-85e5-4cf28c6a24de" ], "Date": [ - "Wed, 05 Aug 2015 21:27:19 GMT" + "Thu, 13 Aug 2015 07:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-8.6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy04LjYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-8.6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy04LjYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "539" + "807" ], "Content-Type": [ "application/json; charset=utf-8" @@ -89073,7 +90996,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69fd60ab-60e5-467a-9305-28944022b16c" + "5d09aeb6-bb17-456f-8561-0e7a56d06b63" ], "Cache-Control": [ "no-cache" @@ -89083,31 +91006,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12328" + "13184" ], "x-ms-correlation-request-id": [ - "9cb8b684-da86-440d-a8cc-4d1f06b42c1b" + "ffc85ec2-e95a-4b29-bc4d-0e5241dd5f5c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:9cb8b684-da86-440d-a8cc-4d1f06b42c1b" + "WESTUS:20150813T074859Z:ffc85ec2-e95a-4b29-bc4d-0e5241dd5f5c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-8.6/versions/8.6.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy04LjYvdmVyc2lvbnMvOC42LjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-8.6/versions/8.6.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy04LjYvdmVyc2lvbnMvOC42LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -89125,7 +91048,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "841327b7-0c12-4981-9d61-7874045de684" + "9b37d70e-44cd-4bd2-a25f-049d49973d7d" ], "Cache-Control": [ "no-cache" @@ -89135,31 +91058,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12327" + "13183" ], "x-ms-correlation-request-id": [ - "856d6cc0-cedc-44fd-b07e-82bce2277642" + "f889a901-1061-43a9-902d-62b8eb10a18c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:856d6cc0-cedc-44fd-b07e-82bce2277642" + "WESTUS:20150813T074859Z:f889a901-1061-43a9-902d-62b8eb10a18c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-8.6/versions/8.6.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy04LjYvdmVyc2lvbnMvOC42LjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-8.6/versions/8.6.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy04LjYvdmVyc2lvbnMvOC42LjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -89177,7 +91100,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de69f514-a69b-4dc3-9a56-279c08c46305" + "8d648f85-5f86-4251-9005-e76523be1a17" ], "Cache-Control": [ "no-cache" @@ -89187,31 +91110,83 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12326" + "13182" ], "x-ms-correlation-request-id": [ - "e1a0b84f-4056-4732-bfe5-e93d93e69f2d" + "b730c326-68f6-423a-8b72-e6e3972ee5f2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:e1a0b84f-4056-4732-bfe5-e93d93e69f2d" + "WESTUS:20150813T074859Z:b730c326-68f6-423a-8b72-e6e3972ee5f2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-9.0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy05LjAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-8.6/versions/8.6.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy04LjYvdmVyc2lvbnMvOC42LjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0/Versions/9.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0/Versions/9.0.1\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.6.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-8.6/Versions/8.6.2\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "370" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34a93bb9-c2b6-4295-b68e-62849eeecca8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13181" + ], + "x-ms-correlation-request-id": [ + "1100f104-6f24-4cd2-bbed-2ba43273dead" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074900Z:1100f104-6f24-4cd2-bbed-2ba43273dead" + ], + "Date": [ + "Thu, 13 Aug 2015 07:48:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-9.0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy05LjAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0/Versions/9.0.0\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0/Versions/9.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "539" @@ -89229,7 +91204,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af4e74bd-233f-447e-94b7-6f66e327b158" + "154864d7-9156-44b4-a625-211e8c91dc84" ], "Cache-Control": [ "no-cache" @@ -89239,31 +91214,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12325" + "13180" ], "x-ms-correlation-request-id": [ - "31cf1674-4f59-44a9-a7bc-2929cacf313f" + "7419af32-6f87-4967-935a-a1288d773a5e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:31cf1674-4f59-44a9-a7bc-2929cacf313f" + "WESTUS:20150813T074900Z:7419af32-6f87-4967-935a-a1288d773a5e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:48:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-9.0/versions/9.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy05LjAvdmVyc2lvbnMvOS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-9.0/versions/9.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy05LjAvdmVyc2lvbnMvOS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0/Versions/9.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0/Versions/9.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -89281,7 +91256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7af7283-3c37-48c3-b81b-819fe2138e01" + "6a8110b6-02ee-4873-a513-f4a30d330230" ], "Cache-Control": [ "no-cache" @@ -89291,31 +91266,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12324" + "13179" ], "x-ms-correlation-request-id": [ - "dea7ba33-07db-4d5b-8b3e-2266e1d9bf5a" + "017ada59-3c32-4ab6-9668-f12c79292e29" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212720Z:dea7ba33-07db-4d5b-8b3e-2266e1d9bf5a" + "WESTUS:20150813T074900Z:017ada59-3c32-4ab6-9668-f12c79292e29" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:49:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-9.0/versions/9.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy05LjAvdmVyc2lvbnMvOS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/RiverbedTechnology/artifacttypes/vmimage/offers/SteelHead/skus/RiOS-9.0/versions/9.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvUml2ZXJiZWRUZWNobm9sb2d5L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RlZWxIZWFkL3NrdXMvUmlPUy05LjAvdmVyc2lvbnMvOS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0/Versions/9.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology/ArtifactTypes/VMImage/Offers/SteelHead/Skus/RiOS-9.0/Versions/9.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "370" @@ -89333,7 +91308,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b40bfae0-5c96-45fb-a1c1-199d580170b5" + "cca6d0d8-a9bb-4e63-b5e8-b59f4ac6d4f6" ], "Cache-Control": [ "no-cache" @@ -89343,31 +91318,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12323" + "13178" ], "x-ms-correlation-request-id": [ - "07a330de-97ef-4580-9c0e-c1aad40c9a51" + "a30fdad8-25f4-4122-8c69-7ea91902cd7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212721Z:07a330de-97ef-4580-9c0e-c1aad40c9a51" + "WESTUS:20150813T074900Z:a30fdad8-25f4-4122-8c69-7ea91902cd7b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:49:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/saltstack/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FsdHN0YWNrL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/saltstack/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FsdHN0YWNrL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"centos65saltstackenterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"centos65saltstackenterprise\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "273" @@ -89385,7 +91360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "410957b8-118b-4801-8bfb-0ca8db3cbccd" + "0bfb7e59-967f-48ce-8bf7-d41a22acfc15" ], "Cache-Control": [ "no-cache" @@ -89395,31 +91370,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12322" + "13177" ], "x-ms-correlation-request-id": [ - "21ee02be-3faf-43b3-ae96-e1328b04980f" + "c56dcaa3-c1d2-47f0-8d0f-a71d7c26b3d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212721Z:21ee02be-3faf-43b3-ae96-e1328b04980f" + "WESTUS:20150813T074900Z:c56dcaa3-c1d2-47f0-8d0f-a71d7c26b3d1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:49:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/saltstack/artifacttypes/vmimage/offers/centos65saltstackenterprise/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FsdHN0YWNrL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2VudG9zNjVzYWx0c3RhY2tlbnRlcnByaXNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/saltstack/artifacttypes/vmimage/offers/centos65saltstackenterprise/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FsdHN0YWNrL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2VudG9zNjVzYWx0c3RhY2tlbnRlcnByaXNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sse-01\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise/Skus/sse-01\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sse-01\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise/Skus/sse-01\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -89437,7 +91412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b105293-77f9-466c-848b-129239047fc1" + "f8e621ba-5068-491c-b74d-92be95e96a96" ], "Cache-Control": [ "no-cache" @@ -89447,31 +91422,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12321" + "13176" ], "x-ms-correlation-request-id": [ - "d772933a-5c10-44dd-884b-0cbd8bd95b8d" + "51bed2b4-799d-4a7b-a646-582b0b1c29d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212721Z:d772933a-5c10-44dd-884b-0cbd8bd95b8d" + "WESTUS:20150813T074900Z:51bed2b4-799d-4a7b-a646-582b0b1c29d0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:49:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/saltstack/artifacttypes/vmimage/offers/centos65saltstackenterprise/skus/sse-01/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FsdHN0YWNrL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2VudG9zNjVzYWx0c3RhY2tlbnRlcnByaXNlL3NrdXMvc3NlLTAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/saltstack/artifacttypes/vmimage/offers/centos65saltstackenterprise/skus/sse-01/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FsdHN0YWNrL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2VudG9zNjVzYWx0c3RhY2tlbnRlcnByaXNlL3NrdXMvc3NlLTAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise/Skus/sse-01/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise/Skus/sse-01/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "278" @@ -89489,7 +91464,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e7a979c-95ff-4a2a-bbdf-d5a85ab7491e" + "41ca1fa9-5c99-4411-8eb4-e79ddc031069" ], "Cache-Control": [ "no-cache" @@ -89499,31 +91474,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12320" + "13175" ], "x-ms-correlation-request-id": [ - "4b9d065d-1b79-42b0-9658-3010f3dd4734" + "df0ce9d9-21ea-4135-a76e-9d9025a8c7b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212721Z:4b9d065d-1b79-42b0-9658-3010f3dd4734" + "WESTUS:20150813T074900Z:df0ce9d9-21ea-4135-a76e-9d9025a8c7b6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:20 GMT" + "Thu, 13 Aug 2015 07:49:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/saltstack/artifacttypes/vmimage/offers/centos65saltstackenterprise/skus/sse-01/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FsdHN0YWNrL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2VudG9zNjVzYWx0c3RhY2tlbnRlcnByaXNlL3NrdXMvc3NlLTAxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/saltstack/artifacttypes/vmimage/offers/centos65saltstackenterprise/skus/sse-01/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FsdHN0YWNrL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvY2VudG9zNjVzYWx0c3RhY2tlbnRlcnByaXNlL3NrdXMvc3NlLTAxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"saltstack\",\r\n \"name\": \"sse-01\",\r\n \"product\": \"centos65saltstackenterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise/Skus/sse-01/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"saltstack\",\r\n \"name\": \"sse-01\",\r\n \"product\": \"centos65saltstackenterprise\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise/Skus/sse-01/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -89541,7 +91516,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18fc8e2b-c0e1-4cca-adb2-fd6c23b76c49" + "d507469f-4c7d-4614-a24c-3500693f415d" ], "Cache-Control": [ "no-cache" @@ -89551,28 +91526,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12319" + "13174" ], "x-ms-correlation-request-id": [ - "fdc0eed9-5234-44c2-ab01-a8df2ab1daa4" + "3a8306a1-33da-45bb-a808-1a0d363edb54" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212721Z:fdc0eed9-5234-44c2-ab01-a8df2ab1daa4" + "WESTUS:20150813T074900Z:3a8306a1-33da-45bb-a808-1a0d363edb54" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sap/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sap/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2FwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -89593,7 +91568,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e51d93c5-e007-497a-a6fd-8b6c2bdadb79" + "6c4b5e81-38d6-4f87-8da2-2bd66b3437be" ], "Cache-Control": [ "no-cache" @@ -89603,31 +91578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12318" + "13173" ], "x-ms-correlation-request-id": [ - "f1a1c8bb-e33c-4d75-b285-72f442d88afc" + "9a922293-e9d5-4998-8ee3-d926424d04e2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212721Z:f1a1c8bb-e33c-4d75-b285-72f442d88afc" + "WESTUS:20150813T074900Z:9a922293-e9d5-4998-8ee3-d926424d04e2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc-v3-5-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc_mysql-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc_sql_server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_sql_server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc-v3-5-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc_mysql-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc_sql_server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_sql_server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "758" @@ -89645,7 +91620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a85d3a1-5d6c-426f-bccf-528a3ab152ac" + "b8e5b795-7af0-4332-a8f5-6f11ca975dbe" ], "Cache-Control": [ "no-cache" @@ -89655,31 +91630,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12317" + "13172" ], "x-ms-correlation-request-id": [ - "803ca79b-086c-406d-a46e-9be6a0148ce2" + "edad00d4-0d72-4a72-9e93-7ff0751f29b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212721Z:803ca79b-086c-406d-a46e-9be6a0148ce2" + "WESTUS:20150813T074901Z:edad00d4-0d72-4a72-9e93-7ff0751f29b5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc-v3-5-1/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyYy12My01LTEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc-v3-5-1/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyYy12My01LTEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol-351\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1/Skus/byol-351\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol-351\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1/Skus/byol-351\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "255" @@ -89697,7 +91672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48a1e3d9-2708-442d-92e2-1ac1cebe8247" + "f2e464a1-ab78-4b49-8528-67405d01d350" ], "Cache-Control": [ "no-cache" @@ -89707,31 +91682,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12316" + "13171" ], "x-ms-correlation-request-id": [ - "4e047fa7-d92e-4af4-8098-b6f7458898a5" + "8c38b438-05fd-4691-af8a-a6d0454304d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212721Z:4e047fa7-d92e-4af4-8098-b6f7458898a5" + "WESTUS:20150813T074901Z:8c38b438-05fd-4691-af8a-a6d0454304d0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc-v3-5-1/skus/byol-351/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyYy12My01LTEvc2t1cy9ieW9sLTM1MS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc-v3-5-1/skus/byol-351/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyYy12My01LTEvc2t1cy9ieW9sLTM1MS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1/Skus/byol-351/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1/Skus/byol-351/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -89749,7 +91724,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c59fa0a2-b9b5-4bd8-9b7c-8939ac23c0d6" + "ed865623-db5f-4534-a5ae-b80bf5b132d0" ], "Cache-Control": [ "no-cache" @@ -89759,31 +91734,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12315" + "13170" ], "x-ms-correlation-request-id": [ - "8ed6f9cc-6679-42f8-9470-e9c6fcc0d9a6" + "a263547b-390e-4e21-af15-16a919199c7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:8ed6f9cc-6679-42f8-9470-e9c6fcc0d9a6" + "WESTUS:20150813T074901Z:a263547b-390e-4e21-af15-16a919199c7b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc-v3-5-1/skus/byol-351/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyYy12My01LTEvc2t1cy9ieW9sLTM1MS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc-v3-5-1/skus/byol-351/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyYy12My01LTEvc2t1cy9ieW9sLTM1MS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"scalearc\",\r\n \"name\": \"byol-351\",\r\n \"product\": \"scalearc-v3-5-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1/Skus/byol-351/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"scalearc\",\r\n \"name\": \"byol-351\",\r\n \"product\": \"scalearc-v3-5-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1/Skus/byol-351/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "484" @@ -89801,7 +91776,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12e1c054-1d2e-4a47-929f-b7950c00e556" + "62c06949-b7d7-4d59-a07a-163fab211a1d" ], "Cache-Control": [ "no-cache" @@ -89811,31 +91786,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12314" + "13169" ], "x-ms-correlation-request-id": [ - "3efd73a5-30f4-4bd8-8bb9-da6e34fec5de" + "d0aae24b-e111-44dd-8428-65a336ff33c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:3efd73a5-30f4-4bd8-8bb9-da6e34fec5de" + "WESTUS:20150813T074901Z:d0aae24b-e111-44dd-8428-65a336ff33c2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_mysql-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19teXNxbC1zZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_mysql-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19teXNxbC1zZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_mysql\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server/Skus/byol_mysql\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol_mysql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server/Skus/byol_mysql\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "265" @@ -89853,7 +91828,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4091a7b-9766-460e-be1b-b28835909f6f" + "df069eca-bb01-4847-bad3-7c80bc46a8f7" ], "Cache-Control": [ "no-cache" @@ -89863,31 +91838,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12313" + "13168" ], "x-ms-correlation-request-id": [ - "10d25b97-40ea-43f2-ac77-5ceaee06c692" + "e9c5c36d-d046-498a-bf8f-59a84fa02aa0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:10d25b97-40ea-43f2-ac77-5ceaee06c692" + "WESTUS:20150813T074901Z:e9c5c36d-d046-498a-bf8f-59a84fa02aa0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_mysql-server/skus/byol_mysql/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19teXNxbC1zZXJ2ZXIvc2t1cy9ieW9sX215c3FsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_mysql-server/skus/byol_mysql/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19teXNxbC1zZXJ2ZXIvc2t1cy9ieW9sX215c3FsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server/Skus/byol_mysql/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server/Skus/byol_mysql/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "275" @@ -89905,7 +91880,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8601d15b-8e4c-4e0f-b294-e9c3c00c3f6d" + "afe06020-2ce4-4570-8601-91635fcee191" ], "Cache-Control": [ "no-cache" @@ -89915,31 +91890,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12312" + "13167" ], "x-ms-correlation-request-id": [ - "d1c34f06-64e2-401c-93a6-1dccba0db18f" + "73d195eb-01fd-445f-847a-87b67d0a97d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:d1c34f06-64e2-401c-93a6-1dccba0db18f" + "WESTUS:20150813T074901Z:73d195eb-01fd-445f-847a-87b67d0a97d5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_mysql-server/skus/byol_mysql/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19teXNxbC1zZXJ2ZXIvc2t1cy9ieW9sX215c3FsL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_mysql-server/skus/byol_mysql/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19teXNxbC1zZXJ2ZXIvc2t1cy9ieW9sX215c3FsL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"scalearc\",\r\n \"name\": \"byol_mysql\",\r\n \"product\": \"scalearc_mysql-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server/Skus/byol_mysql/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"scalearc\",\r\n \"name\": \"byol_mysql\",\r\n \"product\": \"scalearc_mysql-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server/Skus/byol_mysql/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "500" @@ -89957,7 +91932,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33d0e953-48d9-4ab1-87be-dc01e668762e" + "243de8db-1814-4454-88ee-98e2b877d102" ], "Cache-Control": [ "no-cache" @@ -89967,31 +91942,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12311" + "13166" ], "x-ms-correlation-request-id": [ - "bb52fc48-eea4-44b9-bd38-b808d7dd0c25" + "25b39136-c88e-4970-8204-139c8e0eb4b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:bb52fc48-eea4-44b9-bd38-b808d7dd0c25" + "WESTUS:20150813T074901Z:25b39136-c88e-4970-8204-139c8e0eb4b4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_sql_server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19zcWxfc2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_sql_server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19zcWxfc2VydmVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_sql_server/Skus/byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_sql_server/Skus/byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "251" @@ -90009,7 +91984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3e3227a-5ec4-4d3f-8e02-e8d71c45b1f0" + "4bb34c5c-05fb-4d8e-9579-56714c013be7" ], "Cache-Control": [ "no-cache" @@ -90019,31 +91994,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12310" + "13165" ], "x-ms-correlation-request-id": [ - "4f44aba0-ca28-4cc6-839a-6bd0f60d2302" + "d8922680-db18-4e0b-8b6c-214ff3382635" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:4f44aba0-ca28-4cc6-839a-6bd0f60d2302" + "WESTUS:20150813T074901Z:d8922680-db18-4e0b-8b6c-214ff3382635" ], "Date": [ - "Wed, 05 Aug 2015 21:27:21 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_sql_server/skus/byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19zcWxfc2VydmVyL3NrdXMvYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_sql_server/skus/byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19zcWxfc2VydmVyL3NrdXMvYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_sql_server/Skus/byol/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_sql_server/Skus/byol/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -90061,7 +92036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39ee51e6-9493-4a5f-8597-939d28369fba" + "17064ff6-0402-41b4-8e13-b8c3d6fcfdbb" ], "Cache-Control": [ "no-cache" @@ -90071,31 +92046,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12309" + "13164" ], "x-ms-correlation-request-id": [ - "ea20e9c4-6464-4ce3-a5f0-d2382e492dd4" + "6beae8ee-a3b4-4bd2-a2bc-df9675be2762" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:ea20e9c4-6464-4ce3-a5f0-d2382e492dd4" + "WESTUS:20150813T074902Z:6beae8ee-a3b4-4bd2-a2bc-df9675be2762" ], "Date": [ - "Wed, 05 Aug 2015 21:27:22 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_sql_server/skus/byol/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19zcWxfc2VydmVyL3NrdXMvYnlvbC92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalearc/artifacttypes/vmimage/offers/scalearc_sql_server/skus/byol/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGVhcmMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zY2FsZWFyY19zcWxfc2VydmVyL3NrdXMvYnlvbC92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"scalearc\",\r\n \"name\": \"byol\",\r\n \"product\": \"scalearc_sql_server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_sql_server/Skus/byol/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"scalearc\",\r\n \"name\": \"byol\",\r\n \"product\": \"scalearc_sql_server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc/ArtifactTypes/VMImage/Offers/scalearc_sql_server/Skus/byol/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "484" @@ -90113,7 +92088,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b694a86c-e509-4608-b86c-85c0d3e86435" + "c575654f-5185-4b75-95e7-3d1ccb04d509" ], "Cache-Control": [ "no-cache" @@ -90123,28 +92098,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12308" + "13163" ], "x-ms-correlation-request-id": [ - "af4ce8fd-6835-4eef-b627-24afc08756ce" + "00c8918d-f128-4449-a99e-9b9dcdf339d3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:af4ce8fd-6835-4eef-b627-24afc08756ce" + "WESTUS:20150813T074902Z:00c8918d-f128-4449-a99e-9b9dcdf339d3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:22 GMT" + "Thu, 13 Aug 2015 07:49:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/scalebase/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGViYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/scalebase/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2NhbGViYXNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -90165,7 +92140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ac901a8-50ee-4f01-ba98-58b0e6cbcc74" + "bd84e9bb-4087-4a77-941c-0d19e8cc5a41" ], "Cache-Control": [ "no-cache" @@ -90175,31 +92150,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12307" + "13162" ], "x-ms-correlation-request-id": [ - "e203e1ae-7dd4-4952-a2e0-f7770aa89534" + "cab99338-64b7-47bd-8c1c-5ec11f4ccd1c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:e203e1ae-7dd4-4952-a2e0-f7770aa89534" + "WESTUS:20150813T074902Z:cab99338-64b7-47bd-8c1c-5ec11f4ccd1c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:22 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/seagate/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhZ2F0ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/seagate/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhZ2F0ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"backup\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate/ArtifactTypes/VMImage/Offers/backup\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"backup\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate/ArtifactTypes/VMImage/Offers/backup\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "229" @@ -90217,7 +92192,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b656e1ba-8f69-4454-903d-6af1a04a3173" + "97cb60f8-28b4-4b3a-a635-380aa6d7d0b3" ], "Cache-Control": [ "no-cache" @@ -90227,31 +92202,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12306" + "13161" ], "x-ms-correlation-request-id": [ - "5ae6cf40-378c-48bd-8651-42fcfa94e65b" + "c0e22363-fb65-419c-bb04-208dda851afc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212722Z:5ae6cf40-378c-48bd-8651-42fcfa94e65b" + "WESTUS:20150813T074902Z:c0e22363-fb65-419c-bb04-208dda851afc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:22 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/seagate/artifacttypes/vmimage/offers/backup/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhZ2F0ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JhY2t1cC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/seagate/artifacttypes/vmimage/offers/backup/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhZ2F0ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JhY2t1cC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"014-141-001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate/ArtifactTypes/VMImage/Offers/backup/Skus/014-141-001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"014-141-001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate/ArtifactTypes/VMImage/Offers/backup/Skus/014-141-001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "251" @@ -90269,7 +92244,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c6c61a2-4dfa-4002-b629-e6cffdea4043" + "990e7d1d-1603-47fc-81bf-22e150ca5d97" ], "Cache-Control": [ "no-cache" @@ -90279,31 +92254,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12305" + "13160" ], "x-ms-correlation-request-id": [ - "7b66fccf-7508-460c-a0fa-25008f94061e" + "56964cf9-9a32-4f01-8b47-15aaf843b15b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212723Z:7b66fccf-7508-460c-a0fa-25008f94061e" + "WESTUS:20150813T074902Z:56964cf9-9a32-4f01-8b47-15aaf843b15b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:22 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/seagate/artifacttypes/vmimage/offers/backup/skus/014-141-001/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhZ2F0ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JhY2t1cC9za3VzLzAxNC0xNDEtMDAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/seagate/artifacttypes/vmimage/offers/backup/skus/014-141-001/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhZ2F0ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JhY2t1cC9za3VzLzAxNC0xNDEtMDAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate/ArtifactTypes/VMImage/Offers/backup/Skus/014-141-001/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate/ArtifactTypes/VMImage/Offers/backup/Skus/014-141-001/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -90321,7 +92296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a76b36a3-80fb-4f18-a20d-076d9d6995ab" + "ac4b8d1c-3498-4df6-91da-8812d638e05c" ], "Cache-Control": [ "no-cache" @@ -90331,31 +92306,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12304" + "13159" ], "x-ms-correlation-request-id": [ - "1e84af00-28b8-4188-997f-510d2c5d0f97" + "8f3d635e-45ce-4758-a338-3d96dc16f136" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212723Z:1e84af00-28b8-4188-997f-510d2c5d0f97" + "WESTUS:20150813T074902Z:8f3d635e-45ce-4758-a338-3d96dc16f136" ], "Date": [ - "Wed, 05 Aug 2015 21:27:22 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/seagate/artifacttypes/vmimage/offers/backup/skus/014-141-001/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhZ2F0ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JhY2t1cC9za3VzLzAxNC0xNDEtMDAxL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/seagate/artifacttypes/vmimage/offers/backup/skus/014-141-001/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhZ2F0ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2JhY2t1cC9za3VzLzAxNC0xNDEtMDAxL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"seagate\",\r\n \"name\": \"014-141-001\",\r\n \"product\": \"backup\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n },\r\n {\r\n \"lun\": 15\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate/ArtifactTypes/VMImage/Offers/backup/Skus/014-141-001/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"seagate\",\r\n \"name\": \"014-141-001\",\r\n \"product\": \"backup\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n },\r\n {\r\n \"lun\": 1\r\n },\r\n {\r\n \"lun\": 2\r\n },\r\n {\r\n \"lun\": 3\r\n },\r\n {\r\n \"lun\": 4\r\n },\r\n {\r\n \"lun\": 5\r\n },\r\n {\r\n \"lun\": 6\r\n },\r\n {\r\n \"lun\": 7\r\n },\r\n {\r\n \"lun\": 8\r\n },\r\n {\r\n \"lun\": 9\r\n },\r\n {\r\n \"lun\": 10\r\n },\r\n {\r\n \"lun\": 11\r\n },\r\n {\r\n \"lun\": 12\r\n },\r\n {\r\n \"lun\": 13\r\n },\r\n {\r\n \"lun\": 14\r\n },\r\n {\r\n \"lun\": 15\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate/ArtifactTypes/VMImage/Offers/backup/Skus/014-141-001/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1075" @@ -90373,7 +92348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b3de2c0-97be-41e2-b449-c12878f258fa" + "107927c4-ece2-4439-93e4-5ba5d811b8eb" ], "Cache-Control": [ "no-cache" @@ -90383,31 +92358,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12303" + "13158" ], "x-ms-correlation-request-id": [ - "554a858c-0076-4faf-a38e-d1ee206d4675" + "03cabce6-24ad-49cc-a844-d50f79a28973" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212723Z:554a858c-0076-4faf-a38e-d1ee206d4675" + "WESTUS:20150813T074902Z:03cabce6-24ad-49cc-a844-d50f79a28973" ], "Date": [ - "Wed, 05 Aug 2015 21:27:22 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/searchblox/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhcmNoYmxveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/searchblox/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhcmNoYmxveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox_server_v82\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox_server_v82\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "262" @@ -90425,7 +92400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68e0b13c-bfee-4800-82bc-18a39f9c178c" + "d6b039bf-d725-45dc-a051-3381ac5b2d87" ], "Cache-Control": [ "no-cache" @@ -90435,31 +92410,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12302" + "13157" ], "x-ms-correlation-request-id": [ - "2c9225e1-f9a1-4329-b1b5-60d72ea8e859" + "4a81bef2-c04a-4eca-a92a-7934733af28f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212723Z:2c9225e1-f9a1-4329-b1b5-60d72ea8e859" + "WESTUS:20150813T074902Z:4a81bef2-c04a-4eca-a92a-7934733af28f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:22 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/searchblox/artifacttypes/vmimage/offers/searchblox_server_v82/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhcmNoYmxveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlYXJjaGJsb3hfc2VydmVyX3Y4Mi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/searchblox/artifacttypes/vmimage/offers/searchblox_server_v82/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhcmNoYmxveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlYXJjaGJsb3hfc2VydmVyX3Y4Mi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox_win_version82\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82/Skus/searchblox_win_version82\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox_win_version82\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82/Skus/searchblox_win_version82\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "295" @@ -90477,7 +92452,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d2fdd1f-25bf-42ad-887c-972203eba7d5" + "2d1e830d-d8ca-461c-b889-20d84200836a" ], "Cache-Control": [ "no-cache" @@ -90487,31 +92462,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12301" + "13156" ], "x-ms-correlation-request-id": [ - "f3a0db19-08b3-495b-9a80-ce7cd8e44658" + "ca0f4908-2193-4cc8-bcbc-7327f3953d66" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212723Z:f3a0db19-08b3-495b-9a80-ce7cd8e44658" + "WESTUS:20150813T074902Z:ca0f4908-2193-4cc8-bcbc-7327f3953d66" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/searchblox/artifacttypes/vmimage/offers/searchblox_server_v82/skus/searchblox_win_version82/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhcmNoYmxveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlYXJjaGJsb3hfc2VydmVyX3Y4Mi9za3VzL3NlYXJjaGJsb3hfd2luX3ZlcnNpb244Mi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/searchblox/artifacttypes/vmimage/offers/searchblox_server_v82/skus/searchblox_win_version82/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhcmNoYmxveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlYXJjaGJsb3hfc2VydmVyX3Y4Mi9za3VzL3NlYXJjaGJsb3hfd2luX3ZlcnNpb244Mi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82/Skus/searchblox_win_version82/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82/Skus/searchblox_win_version82/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "291" @@ -90529,7 +92504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64eadd38-8cad-4ae0-83e5-06a4986991cf" + "6f340b36-88d1-42eb-ab2c-c29d2370681f" ], "Cache-Control": [ "no-cache" @@ -90539,31 +92514,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12300" + "13155" ], "x-ms-correlation-request-id": [ - "29df24e5-fbee-4641-90c8-fb42fe7e91d9" + "96d04452-d98d-48b5-9bbf-3c545309506a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212723Z:29df24e5-fbee-4641-90c8-fb42fe7e91d9" + "WESTUS:20150813T074903Z:96d04452-d98d-48b5-9bbf-3c545309506a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/searchblox/artifacttypes/vmimage/offers/searchblox_server_v82/skus/searchblox_win_version82/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhcmNoYmxveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlYXJjaGJsb3hfc2VydmVyX3Y4Mi9za3VzL3NlYXJjaGJsb3hfd2luX3ZlcnNpb244Mi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/searchblox/artifacttypes/vmimage/offers/searchblox_server_v82/skus/searchblox_win_version82/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2VhcmNoYmxveC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NlYXJjaGJsb3hfc2VydmVyX3Y4Mi9za3VzL3NlYXJjaGJsb3hfd2luX3ZlcnNpb244Mi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"searchblox\",\r\n \"name\": \"searchblox_win_version82\",\r\n \"product\": \"searchblox_server_v82\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82/Skus/searchblox_win_version82/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"searchblox\",\r\n \"name\": \"searchblox_win_version82\",\r\n \"product\": \"searchblox_server_v82\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82/Skus/searchblox_win_version82/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "534" @@ -90581,7 +92556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fde66f30-7ce7-4e29-99c7-ea8c325641c3" + "33cf1228-6aba-434f-95de-385e6dbfe8b5" ], "Cache-Control": [ "no-cache" @@ -90591,31 +92566,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12299" + "13154" ], "x-ms-correlation-request-id": [ - "397f028e-b0af-4aae-95d5-ac1c55c4ab27" + "239b78e9-be4b-4b35-a8aa-f0cea094055f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212723Z:397f028e-b0af-4aae-95d5-ac1c55c4ab27" + "WESTUS:20150813T074903Z:239b78e9-be4b-4b35-a8aa-f0cea094055f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netscaler-vpx-bring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/netscaler-vpx-bring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile-storagezones-controller\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/sharefile-storagezones-controller\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netscaler-vpx-bring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/netscaler-vpx-bring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile-storagezones-controller\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/sharefile-storagezones-controller\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "539" @@ -90633,7 +92608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b567b02-40e7-4658-b2f2-bc339ddb3823" + "65ed9d83-03e6-442c-8c62-0faf8e159f36" ], "Cache-Control": [ "no-cache" @@ -90643,31 +92618,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12298" + "13153" ], "x-ms-correlation-request-id": [ - "6dfdcd5f-ed08-4c07-b0f0-daa384574175" + "867bdf4b-f318-4361-8f9a-6285a6daa95f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212723Z:6dfdcd5f-ed08-4c07-b0f0-daa384574175" + "WESTUS:20150813T074903Z:867bdf4b-f318-4361-8f9a-6285a6daa95f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/netscaler-vpx-bring/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbmV0c2NhbGVyLXZweC1icmluZy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/netscaler-vpx-bring/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbmV0c2NhbGVyLXZweC1icmluZy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netscalervpxbyol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/netscaler-vpx-bring/Skus/netscalervpxbyol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netscalervpxbyol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/netscaler-vpx-bring/Skus/netscalervpxbyol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -90685,7 +92660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76ee9456-146e-40c6-b68e-9134f9aa0ad0" + "41d7cd95-9a4a-46ea-b980-89c27c90b047" ], "Cache-Control": [ "no-cache" @@ -90695,31 +92670,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12297" + "13152" ], "x-ms-correlation-request-id": [ - "3efcdeaf-93e2-4f90-9d65-d00ad2c557de" + "c39eb47b-4edd-4035-aa78-84aa709f7118" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212724Z:3efcdeaf-93e2-4f90-9d65-d00ad2c557de" + "WESTUS:20150813T074903Z:c39eb47b-4edd-4035-aa78-84aa709f7118" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/netscaler-vpx-bring/skus/netscalervpxbyol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbmV0c2NhbGVyLXZweC1icmluZy9za3VzL25ldHNjYWxlcnZweGJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/netscaler-vpx-bring/skus/netscalervpxbyol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbmV0c2NhbGVyLXZweC1icmluZy9za3VzL25ldHNjYWxlcnZweGJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/netscaler-vpx-bring/Skus/netscalervpxbyol/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/netscaler-vpx-bring/Skus/netscalervpxbyol/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -90737,7 +92712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2aac52c3-db2c-4884-9364-7c0430c37be0" + "371f1c43-cacd-4c12-b72e-1fdea5b07b64" ], "Cache-Control": [ "no-cache" @@ -90747,31 +92722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12296" + "13151" ], "x-ms-correlation-request-id": [ - "ea004baf-e70a-42a1-8e23-0712ff1c288f" + "1c8aafe3-39aa-4106-9297-0f5a3d934289" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212724Z:ea004baf-e70a-42a1-8e23-0712ff1c288f" + "WESTUS:20150813T074903Z:1c8aafe3-39aa-4106-9297-0f5a3d934289" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/netscaler-vpx-bring/skus/netscalervpxbyol/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbmV0c2NhbGVyLXZweC1icmluZy9za3VzL25ldHNjYWxlcnZweGJ5b2wvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/netscaler-vpx-bring/skus/netscalervpxbyol/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvbmV0c2NhbGVyLXZweC1icmluZy9za3VzL25ldHNjYWxlcnZweGJ5b2wvdmVyc2lvbnMvMS4wLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sharefile\",\r\n \"name\": \"netscalervpxbyol\",\r\n \"product\": \"netscaler-vpx-bring\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/netscaler-vpx-bring/Skus/netscalervpxbyol/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sharefile\",\r\n \"name\": \"netscalervpxbyol\",\r\n \"product\": \"netscaler-vpx-bring\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/netscaler-vpx-bring/Skus/netscalervpxbyol/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "510" @@ -90789,7 +92764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "659dce05-f743-4ea2-8aa0-e384a6200475" + "badac693-cecb-4ecf-8ca6-d77c9e5c045b" ], "Cache-Control": [ "no-cache" @@ -90799,31 +92774,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12295" + "13150" ], "x-ms-correlation-request-id": [ - "7cafac2c-097e-4c8c-8b5d-0dad2b369b06" + "f877f6d2-f370-4fe2-8c1f-056e27d08930" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212724Z:7cafac2c-097e-4c8c-8b5d-0dad2b369b06" + "WESTUS:20150813T074903Z:f877f6d2-f370-4fe2-8c1f-056e27d08930" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/sharefile-storagezones-controller/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/sharefile-storagezones-controller/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile-storagezones-controller\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/sharefile-storagezones-controller/Skus/sharefile-storagezones-controller\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile-storagezones-controller\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/sharefile-storagezones-controller/Skus/sharefile-storagezones-controller\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "324" @@ -90841,7 +92816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3d6d087-91a5-4c08-95a0-2804ef72dde4" + "685b209a-c71f-49e4-b390-b8b7629c7f0a" ], "Cache-Control": [ "no-cache" @@ -90851,31 +92826,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12294" + "13149" ], "x-ms-correlation-request-id": [ - "92972955-37c0-4c58-aceb-a077549f9e85" + "c6438b24-3ac2-4523-a496-472f6696b84d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212724Z:92972955-37c0-4c58-aceb-a077549f9e85" + "WESTUS:20150813T074903Z:c6438b24-3ac2-4523-a496-472f6696b84d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/sharefile-storagezones-controller/skus/sharefile-storagezones-controller/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3NrdXMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/sharefile-storagezones-controller/skus/sharefile-storagezones-controller/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3NrdXMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/sharefile-storagezones-controller/Skus/sharefile-storagezones-controller/Versions/2.2.3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/sharefile-storagezones-controller/Skus/sharefile-storagezones-controller/Versions/2.2.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "311" @@ -90893,7 +92868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b4117d2-dbfa-49c5-8038-1d6204fac7b1" + "0da590dc-92ba-4233-965e-ab8585ed65b8" ], "Cache-Control": [ "no-cache" @@ -90903,31 +92878,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12293" + "13148" ], "x-ms-correlation-request-id": [ - "28507fca-4ba9-4915-b8ce-0f6625972487" + "12cbe11b-8fcb-46fe-a8fc-291bb6ab7a3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212724Z:28507fca-4ba9-4915-b8ce-0f6625972487" + "WESTUS:20150813T074903Z:12cbe11b-8fcb-46fe-a8fc-291bb6ab7a3f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:23 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/sharefile-storagezones-controller/skus/sharefile-storagezones-controller/versions/2.2.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3NrdXMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3ZlcnNpb25zLzIuMi4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sharefile/artifacttypes/vmimage/offers/sharefile-storagezones-controller/skus/sharefile-storagezones-controller/versions/2.2.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhcmVmaWxlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3NrdXMvc2hhcmVmaWxlLXN0b3JhZ2V6b25lcy1jb250cm9sbGVyL3ZlcnNpb25zLzIuMi4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sharefile\",\r\n \"name\": \"sharefile-storagezones-controller\",\r\n \"product\": \"sharefile-storagezones-controller\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/sharefile-storagezones-controller/Skus/sharefile-storagezones-controller/Versions/2.2.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sharefile\",\r\n \"name\": \"sharefile-storagezones-controller\",\r\n \"product\": \"sharefile-storagezones-controller\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.2.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile/ArtifactTypes/VMImage/Offers/sharefile-storagezones-controller/Skus/sharefile-storagezones-controller/Versions/2.2.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -90945,7 +92920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18196998-cf36-44aa-86ac-0a2045c9959a" + "fa6d076c-2c76-4553-9c33-5984a0292f91" ], "Cache-Control": [ "no-cache" @@ -90955,31 +92930,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12292" + "13147" ], "x-ms-correlation-request-id": [ - "e8f3f735-49e1-43af-a0e2-26670dfb0d5c" + "9f313a54-4fdd-4aa6-b386-b2aa1790c5f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212724Z:e8f3f735-49e1-43af-a0e2-26670dfb0d5c" + "WESTUS:20150813T074903Z:9f313a54-4fdd-4aa6-b386-b2aa1790c5f5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:24 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/shavlik/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhdmxpay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/shavlik/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhdmxpay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik-protect-azure-standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik/ArtifactTypes/VMImage/Offers/shavlik-protect-azure-standard\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik-protect-azure-standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik/ArtifactTypes/VMImage/Offers/shavlik-protect-azure-standard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -90997,7 +92972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d427fcae-08bd-4f18-a672-e9e94e99eb49" + "f1a2bab8-2371-4e57-91c1-257d524b3178" ], "Cache-Control": [ "no-cache" @@ -91007,31 +92982,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12291" + "13146" ], "x-ms-correlation-request-id": [ - "756366a7-193d-4e4b-8674-f79187df9082" + "55c68990-6b1b-4b28-a918-8f70218d95c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212724Z:756366a7-193d-4e4b-8674-f79187df9082" + "WESTUS:20150813T074904Z:55c68990-6b1b-4b28-a918-8f70218d95c8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:24 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/shavlik/artifacttypes/vmimage/offers/shavlik-protect-azure-standard/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhdmxpay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NoYXZsaWstcHJvdGVjdC1henVyZS1zdGFuZGFyZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/shavlik/artifacttypes/vmimage/offers/shavlik-protect-azure-standard/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhdmxpay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NoYXZsaWstcHJvdGVjdC1henVyZS1zdGFuZGFyZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik_protect_azure_standard_commercial\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik/ArtifactTypes/VMImage/Offers/shavlik-protect-azure-standard/Skus/shavlik_protect_azure_standard_commercial\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik_protect_azure_standard_commercial\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik/ArtifactTypes/VMImage/Offers/shavlik-protect-azure-standard/Skus/shavlik_protect_azure_standard_commercial\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "335" @@ -91049,7 +93024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1032e3b4-b49d-4390-b545-1b7f567b59d6" + "f946ffb9-ec72-4ca8-9e9e-bffdf2ce02e9" ], "Cache-Control": [ "no-cache" @@ -91059,31 +93034,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12290" + "13145" ], "x-ms-correlation-request-id": [ - "9e2bbdb4-4777-4b72-8a7e-0d59b547e8f4" + "ef60deb4-6ebf-4b4b-a20c-854196b92398" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212724Z:9e2bbdb4-4777-4b72-8a7e-0d59b547e8f4" + "WESTUS:20150813T074904Z:ef60deb4-6ebf-4b4b-a20c-854196b92398" ], "Date": [ - "Wed, 05 Aug 2015 21:27:24 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/shavlik/artifacttypes/vmimage/offers/shavlik-protect-azure-standard/skus/shavlik_protect_azure_standard_commercial/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhdmxpay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NoYXZsaWstcHJvdGVjdC1henVyZS1zdGFuZGFyZC9za3VzL3NoYXZsaWtfcHJvdGVjdF9henVyZV9zdGFuZGFyZF9jb21tZXJjaWFsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/shavlik/artifacttypes/vmimage/offers/shavlik-protect-azure-standard/skus/shavlik_protect_azure_standard_commercial/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhdmxpay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NoYXZsaWstcHJvdGVjdC1henVyZS1zdGFuZGFyZC9za3VzL3NoYXZsaWtfcHJvdGVjdF9henVyZV9zdGFuZGFyZF9jb21tZXJjaWFsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik/ArtifactTypes/VMImage/Offers/shavlik-protect-azure-standard/Skus/shavlik_protect_azure_standard_commercial/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik/ArtifactTypes/VMImage/Offers/shavlik-protect-azure-standard/Skus/shavlik_protect_azure_standard_commercial/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "314" @@ -91101,7 +93076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3bb632b-1b53-499b-a3a3-dff6d72108de" + "0e386246-cb61-4945-a90a-1eeff8d0cf93" ], "Cache-Control": [ "no-cache" @@ -91111,31 +93086,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12289" + "13144" ], "x-ms-correlation-request-id": [ - "b0d73505-ffa1-4db9-8d80-d79267b17db9" + "43a6c68d-202e-436b-85a2-6821c7c01ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212725Z:b0d73505-ffa1-4db9-8d80-d79267b17db9" + "WESTUS:20150813T074904Z:43a6c68d-202e-436b-85a2-6821c7c01ee5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:24 GMT" + "Thu, 13 Aug 2015 07:49:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/shavlik/artifacttypes/vmimage/offers/shavlik-protect-azure-standard/skus/shavlik_protect_azure_standard_commercial/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhdmxpay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NoYXZsaWstcHJvdGVjdC1henVyZS1zdGFuZGFyZC9za3VzL3NoYXZsaWtfcHJvdGVjdF9henVyZV9zdGFuZGFyZF9jb21tZXJjaWFsL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/shavlik/artifacttypes/vmimage/offers/shavlik-protect-azure-standard/skus/shavlik_protect_azure_standard_commercial/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2hhdmxpay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NoYXZsaWstcHJvdGVjdC1henVyZS1zdGFuZGFyZC9za3VzL3NoYXZsaWtfcHJvdGVjdF9henVyZV9zdGFuZGFyZF9jb21tZXJjaWFsL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"shavlik\",\r\n \"name\": \"shavlik_protect_azure_standard_commercial\",\r\n \"product\": \"shavlik-protect-azure-standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik/ArtifactTypes/VMImage/Offers/shavlik-protect-azure-standard/Skus/shavlik_protect_azure_standard_commercial/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"shavlik\",\r\n \"name\": \"shavlik_protect_azure_standard_commercial\",\r\n \"product\": \"shavlik-protect-azure-standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik/ArtifactTypes/VMImage/Offers/shavlik-protect-azure-standard/Skus/shavlik_protect_azure_standard_commercial/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "580" @@ -91153,7 +93128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38b72487-9e73-439a-ba82-dc0750389c12" + "d57b7a4d-2ee3-4164-8c11-51d208f8749e" ], "Cache-Control": [ "no-cache" @@ -91163,31 +93138,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12288" + "13143" ], "x-ms-correlation-request-id": [ - "cace8686-924b-4c6a-b6d1-437f8cfa1ce0" + "56b2dc0e-f1b4-4725-8732-9ea8a79fc073" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212725Z:cace8686-924b-4c6a-b6d1-437f8cfa1ce0" + "WESTUS:20150813T074904Z:56b2dc0e-f1b4-4725-8732-9ea8a79fc073" ], "Date": [ - "Wed, 05 Aug 2015 21:27:24 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sightapps/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lnaHRhcHBzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sightapps/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lnaHRhcHBzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps/ArtifactTypes/VMImage/Offers/sightapps\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps/ArtifactTypes/VMImage/Offers/sightapps\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "237" @@ -91205,7 +93180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8f4b424-151d-4b57-a113-f7564cbf015a" + "3e84a134-0f20-488b-861a-47ef5306d156" ], "Cache-Control": [ "no-cache" @@ -91215,31 +93190,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12287" + "13142" ], "x-ms-correlation-request-id": [ - "f23648db-1838-4d95-ba92-384ba10c1060" + "ce098d8b-8c3c-4314-ae92-75c3d6fe0b72" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212725Z:f23648db-1838-4d95-ba92-384ba10c1060" + "WESTUS:20150813T074904Z:ce098d8b-8c3c-4314-ae92-75c3d6fe0b72" ], "Date": [ - "Wed, 05 Aug 2015 21:27:24 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sightapps/artifacttypes/vmimage/offers/sightapps/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lnaHRhcHBzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lnaHRhcHBzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sightapps/artifacttypes/vmimage/offers/sightapps/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lnaHRhcHBzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lnaHRhcHBzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dtap-sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps/ArtifactTypes/VMImage/Offers/sightapps/Skus/dtap-sightapps\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dtap-sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps/ArtifactTypes/VMImage/Offers/sightapps/Skus/dtap-sightapps\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "262" @@ -91257,7 +93232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "219c1ad1-4212-4ab5-886b-b4b56fddfb66" + "355b27db-5460-4df0-b79d-99582903418a" ], "Cache-Control": [ "no-cache" @@ -91267,31 +93242,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12286" + "13141" ], "x-ms-correlation-request-id": [ - "a4685ade-c4c8-4315-bca9-024fb867df88" + "248c80fc-cd4a-4b33-87e0-1392a4d438d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212725Z:a4685ade-c4c8-4315-bca9-024fb867df88" + "WESTUS:20150813T074904Z:248c80fc-cd4a-4b33-87e0-1392a4d438d4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:24 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sightapps/artifacttypes/vmimage/offers/sightapps/skus/dtap-sightapps/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lnaHRhcHBzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lnaHRhcHBzL3NrdXMvZHRhcC1zaWdodGFwcHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sightapps/artifacttypes/vmimage/offers/sightapps/skus/dtap-sightapps/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lnaHRhcHBzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lnaHRhcHBzL3NrdXMvZHRhcC1zaWdodGFwcHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps/ArtifactTypes/VMImage/Offers/sightapps/Skus/dtap-sightapps/Versions/2.3.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps/ArtifactTypes/VMImage/Offers/sightapps/Skus/dtap-sightapps/Versions/2.3.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "268" @@ -91309,7 +93284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67b44d13-deca-4bd5-ad33-c0fe6ce09169" + "56e3cbf9-aa95-4c13-9bf5-31476415948e" ], "Cache-Control": [ "no-cache" @@ -91319,31 +93294,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12285" + "13140" ], "x-ms-correlation-request-id": [ - "7c7190c9-55df-4f14-8691-28d19ea5d6b4" + "3377a7b5-b66f-400c-ab14-184fca62b352" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212725Z:7c7190c9-55df-4f14-8691-28d19ea5d6b4" + "WESTUS:20150813T074904Z:3377a7b5-b66f-400c-ab14-184fca62b352" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sightapps/artifacttypes/vmimage/offers/sightapps/skus/dtap-sightapps/versions/2.3.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lnaHRhcHBzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lnaHRhcHBzL3NrdXMvZHRhcC1zaWdodGFwcHMvdmVyc2lvbnMvMi4zLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sightapps/artifacttypes/vmimage/offers/sightapps/skus/dtap-sightapps/versions/2.3.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lnaHRhcHBzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lnaHRhcHBzL3NrdXMvZHRhcC1zaWdodGFwcHMvdmVyc2lvbnMvMi4zLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sightapps\",\r\n \"name\": \"dtap-sightapps\",\r\n \"product\": \"sightapps\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.3.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps/ArtifactTypes/VMImage/Offers/sightapps/Skus/dtap-sightapps/Versions/2.3.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sightapps\",\r\n \"name\": \"dtap-sightapps\",\r\n \"product\": \"sightapps\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.3.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps/ArtifactTypes/VMImage/Offers/sightapps/Skus/dtap-sightapps/Versions/2.3.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "486" @@ -91361,7 +93336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77f5a789-9605-4a4b-8680-a85e645c920f" + "392b1a58-9327-4cfe-a4bd-7184b95a0a70" ], "Cache-Control": [ "no-cache" @@ -91371,31 +93346,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12284" + "13139" ], "x-ms-correlation-request-id": [ - "d7a6fb96-0dbb-42c7-83e0-85a9f77b172b" + "46136a35-1c7d-414f-9823-5210121d9e60" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212725Z:d7a6fb96-0dbb-42c7-83e0-85a9f77b172b" + "WESTUS:20150813T074904Z:46136a35-1c7d-414f-9823-5210121d9e60" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sinefa/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2luZWZhL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sinefa/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2luZWZhL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa-probe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa/ArtifactTypes/VMImage/Offers/sinefa-probe\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa-probe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa/ArtifactTypes/VMImage/Offers/sinefa-probe\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "240" @@ -91413,7 +93388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4969c75-2ba7-49bb-8d45-de8d4961fb76" + "39e47a5d-4ee9-48b9-bf65-f3cb7d0754c5" ], "Cache-Control": [ "no-cache" @@ -91423,31 +93398,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12283" + "13138" ], "x-ms-correlation-request-id": [ - "0f2c560e-6bf8-436b-9dcb-3c3cc5101739" + "7cdd6437-0816-4a86-bec4-7b95ef24720b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212725Z:0f2c560e-6bf8-436b-9dcb-3c3cc5101739" + "WESTUS:20150813T074904Z:7cdd6437-0816-4a86-bec4-7b95ef24720b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sinefa/artifacttypes/vmimage/offers/sinefa-probe/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2luZWZhL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2luZWZhLXByb2JlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sinefa/artifacttypes/vmimage/offers/sinefa-probe/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2luZWZhL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2luZWZhLXByb2JlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sf-va-msa\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa/ArtifactTypes/VMImage/Offers/sinefa-probe/Skus/sf-va-msa\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sf-va-msa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa/ArtifactTypes/VMImage/Offers/sinefa-probe/Skus/sf-va-msa\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "252" @@ -91465,7 +93440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16262508-1c34-44c4-a0f2-4ef8a279fb1a" + "1c319770-b5c4-4878-bf4d-99b76a06d636" ], "Cache-Control": [ "no-cache" @@ -91475,31 +93450,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12282" + "13137" ], "x-ms-correlation-request-id": [ - "3f5719c0-aa71-4c25-95f9-31af494fb863" + "957bdd28-ccce-4b88-a54d-c9ddbd1ee903" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212725Z:3f5719c0-aa71-4c25-95f9-31af494fb863" + "WESTUS:20150813T074904Z:957bdd28-ccce-4b88-a54d-c9ddbd1ee903" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sinefa/artifacttypes/vmimage/offers/sinefa-probe/skus/sf-va-msa/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2luZWZhL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2luZWZhLXByb2JlL3NrdXMvc2YtdmEtbXNhL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sinefa/artifacttypes/vmimage/offers/sinefa-probe/skus/sf-va-msa/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2luZWZhL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2luZWZhLXByb2JlL3NrdXMvc2YtdmEtbXNhL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa/ArtifactTypes/VMImage/Offers/sinefa-probe/Skus/sf-va-msa/Versions/15.04.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa/ArtifactTypes/VMImage/Offers/sinefa-probe/Skus/sf-va-msa/Versions/15.04.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -91517,7 +93492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04f8cde5-f57e-4d19-b145-2603b30db914" + "fa0368e8-2394-4dbb-b468-68820c67635b" ], "Cache-Control": [ "no-cache" @@ -91527,31 +93502,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12281" + "13136" ], "x-ms-correlation-request-id": [ - "afb4f8e0-1190-45dc-add5-c4ef895e3556" + "0cbf128f-ff17-48c1-badf-f0b58767e516" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:afb4f8e0-1190-45dc-add5-c4ef895e3556" + "WESTUS:20150813T074905Z:0cbf128f-ff17-48c1-badf-f0b58767e516" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sinefa/artifacttypes/vmimage/offers/sinefa-probe/skus/sf-va-msa/versions/15.04.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2luZWZhL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2luZWZhLXByb2JlL3NrdXMvc2YtdmEtbXNhL3ZlcnNpb25zLzE1LjA0LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sinefa/artifacttypes/vmimage/offers/sinefa-probe/skus/sf-va-msa/versions/15.04.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2luZWZhL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2luZWZhLXByb2JlL3NrdXMvc2YtdmEtbXNhL3ZlcnNpb25zLzE1LjA0LjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sinefa\",\r\n \"name\": \"sf-va-msa\",\r\n \"product\": \"sinefa-probe\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa/ArtifactTypes/VMImage/Offers/sinefa-probe/Skus/sf-va-msa/Versions/15.04.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sinefa\",\r\n \"name\": \"sf-va-msa\",\r\n \"product\": \"sinefa-probe\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"15.04.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa/ArtifactTypes/VMImage/Offers/sinefa-probe/Skus/sf-va-msa/Versions/15.04.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "480" @@ -91569,7 +93544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8aa30df2-5024-4188-9c34-e8275c9531f4" + "5079bd82-3477-4128-bb11-1d7a360e2b07" ], "Cache-Control": [ "no-cache" @@ -91579,31 +93554,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12280" + "13135" ], "x-ms-correlation-request-id": [ - "f32862dc-2359-41ea-bc5b-ac7d564a9a38" + "2ae9eae7-5f0f-4204-bfe9-dd4f059faa2b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:f32862dc-2359-41ea-bc5b-ac7d564a9a38" + "WESTUS:20150813T074905Z:2ae9eae7-5f0f-4204-bfe9-dd4f059faa2b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sios_datakeeper/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lvc19kYXRha2VlcGVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sios_datakeeper/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lvc19kYXRha2VlcGVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios-datakeeper-8\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper/ArtifactTypes/VMImage/Offers/sios-datakeeper-8\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios-datakeeper-8\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper/ArtifactTypes/VMImage/Offers/sios-datakeeper-8\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "259" @@ -91621,7 +93596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5164849a-6a7a-4609-9784-432193744d04" + "a7348192-2d2a-44e9-be15-2fce77174dea" ], "Cache-Control": [ "no-cache" @@ -91631,31 +93606,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12279" + "13134" ], "x-ms-correlation-request-id": [ - "ac1fd07e-981a-4b64-bb21-f5d25ff8a0b3" + "36492831-b96e-492e-8d0b-45d1fb45b575" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:ac1fd07e-981a-4b64-bb21-f5d25ff8a0b3" + "WESTUS:20150813T074905Z:36492831-b96e-492e-8d0b-45d1fb45b575" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sios_datakeeper/artifacttypes/vmimage/offers/sios-datakeeper-8/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lvc19kYXRha2VlcGVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lvcy1kYXRha2VlcGVyLTgvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sios_datakeeper/artifacttypes/vmimage/offers/sios-datakeeper-8/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lvc19kYXRha2VlcGVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lvcy1kYXRha2VlcGVyLTgvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bring_your_own_license\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper/ArtifactTypes/VMImage/Offers/sios-datakeeper-8/Skus/bring_your_own_license\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bring_your_own_license\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper/ArtifactTypes/VMImage/Offers/sios-datakeeper-8/Skus/bring_your_own_license\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "292" @@ -91673,7 +93648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "05581a67-81db-4712-828d-f5b5c98bedf4" + "84713e19-51c9-459e-892a-1e3ec1fef057" ], "Cache-Control": [ "no-cache" @@ -91683,31 +93658,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12278" + "13133" ], "x-ms-correlation-request-id": [ - "87a845ea-d382-44ae-87a4-5d63e9f589bf" + "d73be914-092b-4940-96c3-8008b5628076" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:87a845ea-d382-44ae-87a4-5d63e9f589bf" + "WESTUS:20150813T074905Z:d73be914-092b-4940-96c3-8008b5628076" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sios_datakeeper/artifacttypes/vmimage/offers/sios-datakeeper-8/skus/bring_your_own_license/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lvc19kYXRha2VlcGVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lvcy1kYXRha2VlcGVyLTgvc2t1cy9icmluZ195b3VyX293bl9saWNlbnNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sios_datakeeper/artifacttypes/vmimage/offers/sios-datakeeper-8/skus/bring_your_own_license/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lvc19kYXRha2VlcGVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lvcy1kYXRha2VlcGVyLTgvc2t1cy9icmluZ195b3VyX293bl9saWNlbnNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper/ArtifactTypes/VMImage/Offers/sios-datakeeper-8/Skus/bring_your_own_license/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper/ArtifactTypes/VMImage/Offers/sios-datakeeper-8/Skus/bring_your_own_license/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "290" @@ -91725,7 +93700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "206e8b87-49fe-4841-9312-7b5488aa3a23" + "3dec088e-a8cd-43a1-b065-a3f334e0fa27" ], "Cache-Control": [ "no-cache" @@ -91735,31 +93710,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12277" + "13132" ], "x-ms-correlation-request-id": [ - "c3c84e73-f492-41c6-a312-754060e17620" + "acb96ceb-7584-483f-aa3e-341bef447ddd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:c3c84e73-f492-41c6-a312-754060e17620" + "WESTUS:20150813T074905Z:acb96ceb-7584-483f-aa3e-341bef447ddd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:25 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sios_datakeeper/artifacttypes/vmimage/offers/sios-datakeeper-8/skus/bring_your_own_license/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lvc19kYXRha2VlcGVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lvcy1kYXRha2VlcGVyLTgvc2t1cy9icmluZ195b3VyX293bl9saWNlbnNlL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sios_datakeeper/artifacttypes/vmimage/offers/sios-datakeeper-8/skus/bring_your_own_license/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lvc19kYXRha2VlcGVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2lvcy1kYXRha2VlcGVyLTgvc2t1cy9icmluZ195b3VyX293bl9saWNlbnNlL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sios_datakeeper\",\r\n \"name\": \"bring_your_own_license\",\r\n \"product\": \"sios-datakeeper-8\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper/ArtifactTypes/VMImage/Offers/sios-datakeeper-8/Skus/bring_your_own_license/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sios_datakeeper\",\r\n \"name\": \"bring_your_own_license\",\r\n \"product\": \"sios-datakeeper-8\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper/ArtifactTypes/VMImage/Offers/sios-datakeeper-8/Skus/bring_your_own_license/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "532" @@ -91777,7 +93752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "582b6cb4-16d5-4e11-9f26-1e733286ccd7" + "e426956b-e1f1-4b5e-9472-ebd1551cef1f" ], "Cache-Control": [ "no-cache" @@ -91787,31 +93762,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12276" + "13131" ], "x-ms-correlation-request-id": [ - "117d5f3b-5715-4466-85ac-e0a3f64444ec" + "7326c363-b409-4e7e-8eab-d54c1edbcf49" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:117d5f3b-5715-4466-85ac-e0a3f64444ec" + "WESTUS:20150813T074905Z:7326c363-b409-4e7e-8eab-d54c1edbcf49" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sisense/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lzZW5zZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sisense/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lzZW5zZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense/ArtifactTypes/VMImage/Offers/sisense_byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense/ArtifactTypes/VMImage/Offers/sisense_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "241" @@ -91829,7 +93804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "924bb07b-22ff-4f02-b62e-1e6a68f0e2b7" + "02337f17-4e56-426a-8085-103ce0aa93a2" ], "Cache-Control": [ "no-cache" @@ -91839,31 +93814,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12275" + "13130" ], "x-ms-correlation-request-id": [ - "b91191de-8353-41d9-ae37-bcdf3336cec9" + "d0528e39-10cb-47aa-83aa-9e5a42270195" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:b91191de-8353-41d9-ae37-bcdf3336cec9" + "WESTUS:20150813T074905Z:d0528e39-10cb-47aa-83aa-9e5a42270195" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sisense/artifacttypes/vmimage/offers/sisense_byol/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lzZW5zZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Npc2Vuc2VfYnlvbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sisense/artifacttypes/vmimage/offers/sisense_byol/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lzZW5zZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Npc2Vuc2VfYnlvbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense/ArtifactTypes/VMImage/Offers/sisense_byol/Skus/sisense_byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense/ArtifactTypes/VMImage/Offers/sisense_byol/Skus/sisense_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "259" @@ -91881,7 +93856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62aeb2cf-70b3-43e2-a8f0-97daba7f1a83" + "bd27bbdc-88dd-438e-bf65-dd56695d18bc" ], "Cache-Control": [ "no-cache" @@ -91891,31 +93866,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12274" + "13129" ], "x-ms-correlation-request-id": [ - "6e8395cc-814e-461a-a47d-aa00c2cc1301" + "e6ed889a-01ea-4e25-a1a2-cc255385f099" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:6e8395cc-814e-461a-a47d-aa00c2cc1301" + "WESTUS:20150813T074905Z:e6ed889a-01ea-4e25-a1a2-cc255385f099" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sisense/artifacttypes/vmimage/offers/sisense_byol/skus/sisense_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lzZW5zZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Npc2Vuc2VfYnlvbC9za3VzL3Npc2Vuc2VfYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sisense/artifacttypes/vmimage/offers/sisense_byol/skus/sisense_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lzZW5zZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Npc2Vuc2VfYnlvbC9za3VzL3Npc2Vuc2VfYnlvbC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense/ArtifactTypes/VMImage/Offers/sisense_byol/Skus/sisense_byol/Versions/1.0.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense/ArtifactTypes/VMImage/Offers/sisense_byol/Skus/sisense_byol/Versions/1.0.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -91933,7 +93908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec6aaefb-fa0b-4cbb-95f9-7e7408b99f43" + "9576dc96-1e8c-49dd-a097-62386b3851fe" ], "Cache-Control": [ "no-cache" @@ -91943,31 +93918,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12273" + "13128" ], "x-ms-correlation-request-id": [ - "54b7fdab-00b7-4ab2-a07b-96c028332090" + "24fbabb9-086e-4773-9493-becb85d828e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212726Z:54b7fdab-00b7-4ab2-a07b-96c028332090" + "WESTUS:20150813T074905Z:24fbabb9-086e-4773-9493-becb85d828e6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sisense/artifacttypes/vmimage/offers/sisense_byol/skus/sisense_byol/versions/1.0.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lzZW5zZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Npc2Vuc2VfYnlvbC9za3VzL3Npc2Vuc2VfYnlvbC92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sisense/artifacttypes/vmimage/offers/sisense_byol/skus/sisense_byol/versions/1.0.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc2lzZW5zZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3Npc2Vuc2VfYnlvbC9za3VzL3Npc2Vuc2VfYnlvbC92ZXJzaW9ucy8xLjAuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sisense\",\r\n \"name\": \"sisense_byol\",\r\n \"product\": \"sisense_byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense/ArtifactTypes/VMImage/Offers/sisense_byol/Skus/sisense_byol/Versions/1.0.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sisense\",\r\n \"name\": \"sisense_byol\",\r\n \"product\": \"sisense_byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense/ArtifactTypes/VMImage/Offers/sisense_byol/Skus/sisense_byol/Versions/1.0.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "486" @@ -91985,7 +93960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19d47a08-a298-4f5b-bf5b-8282775a3a5e" + "dab042b6-6456-4911-a311-13bf0c4b7c5f" ], "Cache-Control": [ "no-cache" @@ -91995,31 +93970,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12272" + "13127" ], "x-ms-correlation-request-id": [ - "db962dd7-1e98-4a0d-a823-24836828b16c" + "a338dd54-318a-4ada-b33f-62eb067595ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:db962dd7-1e98-4a0d-a823-24836828b16c" + "WESTUS:20150813T074905Z:a338dd54-318a-4ada-b33f-62eb067595ca" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2codeprivateinstance\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2codeprivateinstance\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -92037,7 +94012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0deb2c7b-a505-44b1-b175-f6ac076e8444" + "0c1335ad-04c9-4a02-895a-6fcdd021d665" ], "Cache-Control": [ "no-cache" @@ -92047,31 +94022,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12271" + "13126" ], "x-ms-correlation-request-id": [ - "d16fb606-aa68-48db-8488-5486444f8d55" + "701c177b-da8b-42c9-becc-d2c0cdfb7275" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:d16fb606-aa68-48db-8488-5486444f8d55" + "WESTUS:20150813T074906Z:701c177b-da8b-42c9-becc-d2c0cdfb7275" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"s2c-company\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-company\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"s2c-starter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-starter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"s2c-team\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-team\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"s2c-company\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-company\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"s2c-starter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-starter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"s2c-team\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-team\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "801" @@ -92089,7 +94064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0147ded7-e813-4ff0-b915-e79925c47139" + "2b9b401b-3da5-4871-863c-511fcad1a75e" ], "Cache-Control": [ "no-cache" @@ -92099,31 +94074,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12270" + "13125" ], "x-ms-correlation-request-id": [ - "5374257c-6302-48f4-9340-317e1b7ca863" + "88636cda-1105-45a8-82eb-4d7dd4736595" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:5374257c-6302-48f4-9340-317e1b7ca863" + "WESTUS:20150813T074906Z:88636cda-1105-45a8-82eb-4d7dd4736595" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-company/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLWNvbXBhbnkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-company/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLWNvbXBhbnkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-company/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-company/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -92141,7 +94116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb3abbce-63cb-4b22-a573-ab14d6d212cc" + "e08e13da-b9ff-4161-856a-38fff373414c" ], "Cache-Control": [ "no-cache" @@ -92151,31 +94126,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12269" + "13124" ], "x-ms-correlation-request-id": [ - "84c713e4-9d54-4c2d-82ab-273fe67921b3" + "136a7100-31ae-4116-a105-e35195f9807c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:84c713e4-9d54-4c2d-82ab-273fe67921b3" + "WESTUS:20150813T074906Z:136a7100-31ae-4116-a105-e35195f9807c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-company/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLWNvbXBhbnkvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-company/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLWNvbXBhbnkvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"snip2code\",\r\n \"name\": \"s2c-company\",\r\n \"product\": \"snip2codeprivateinstance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-company/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"snip2code\",\r\n \"name\": \"s2c-company\",\r\n \"product\": \"snip2codeprivateinstance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-company/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "512" @@ -92193,7 +94168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a3cecc9-d406-48b3-9986-3cd7367aef21" + "28f7d74a-0661-46bb-b115-af7b82292674" ], "Cache-Control": [ "no-cache" @@ -92203,31 +94178,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12268" + "13123" ], "x-ms-correlation-request-id": [ - "58b2f155-953f-4d0a-b56c-2913cc4f70d6" + "bc5cd87b-8c1b-4386-9d59-059029510535" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:58b2f155-953f-4d0a-b56c-2913cc4f70d6" + "WESTUS:20150813T074906Z:bc5cd87b-8c1b-4386-9d59-059029510535" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-starter/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLXN0YXJ0ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-starter/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLXN0YXJ0ZXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-starter/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-starter/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -92245,7 +94220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3bb4e04-3572-4b1a-ae37-00fbdb8c4cb6" + "9f88bfdf-725c-487a-b0d5-c39ffd7a6135" ], "Cache-Control": [ "no-cache" @@ -92255,31 +94230,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12267" + "13122" ], "x-ms-correlation-request-id": [ - "36832b00-6165-48a4-9a7d-4b4ad7fd552c" + "8da7fac7-76cc-428f-9a42-5018a016651d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:36832b00-6165-48a4-9a7d-4b4ad7fd552c" + "WESTUS:20150813T074906Z:8da7fac7-76cc-428f-9a42-5018a016651d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-starter/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLXN0YXJ0ZXIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-starter/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLXN0YXJ0ZXIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"snip2code\",\r\n \"name\": \"s2c-starter\",\r\n \"product\": \"snip2codeprivateinstance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-starter/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"snip2code\",\r\n \"name\": \"s2c-starter\",\r\n \"product\": \"snip2codeprivateinstance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-starter/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "512" @@ -92297,7 +94272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39a82ff9-5d57-4f59-9624-78aa4d8f6148" + "4efc6254-f79e-47a8-84b7-dd671a05c433" ], "Cache-Control": [ "no-cache" @@ -92307,31 +94282,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12266" + "13121" ], "x-ms-correlation-request-id": [ - "587ff7ff-b4a9-4f1e-8fd9-461e26a2845c" + "b517b272-900a-4cb8-af4d-31f3d8daf424" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:587ff7ff-b4a9-4f1e-8fd9-461e26a2845c" + "WESTUS:20150813T074906Z:b517b272-900a-4cb8-af4d-31f3d8daf424" ], "Date": [ - "Wed, 05 Aug 2015 21:27:26 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-team/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLXRlYW0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-team/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLXRlYW0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-team/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-team/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -92349,7 +94324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0582eeef-07a0-4c12-9e54-8f05f324d734" + "8c938ccc-60f9-4493-a4f6-2370697d0aca" ], "Cache-Control": [ "no-cache" @@ -92359,31 +94334,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12265" + "13120" ], "x-ms-correlation-request-id": [ - "b917646b-8079-4b47-9d72-2d80988c82b4" + "d993dc25-e499-45b2-ad87-e0c07bb0849f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:b917646b-8079-4b47-9d72-2d80988c82b4" + "WESTUS:20150813T074906Z:d993dc25-e499-45b2-ad87-e0c07bb0849f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-team/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLXRlYW0vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/snip2code/artifacttypes/vmimage/offers/snip2codeprivateinstance/skus/s2c-team/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc25pcDJjb2RlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc25pcDJjb2RlcHJpdmF0ZWluc3RhbmNlL3NrdXMvczJjLXRlYW0vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"snip2code\",\r\n \"name\": \"s2c-team\",\r\n \"product\": \"snip2codeprivateinstance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-team/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"snip2code\",\r\n \"name\": \"s2c-team\",\r\n \"product\": \"snip2codeprivateinstance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-team/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -92401,7 +94376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34479380-4491-43d3-9369-584b14d1b531" + "c9413e76-b482-4732-80c7-4aa4370796bd" ], "Cache-Control": [ "no-cache" @@ -92411,31 +94386,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12264" + "13119" ], "x-ms-correlation-request-id": [ - "dd6f3e06-9263-49c1-8316-9e6ecd72030d" + "fee17911-9f41-4e43-b22d-b68ced8742ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:dd6f3e06-9263-49c1-8316-9e6ecd72030d" + "WESTUS:20150813T074906Z:fee17911-9f41-4e43-b22d-b68ced8742ae" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "243" @@ -92453,7 +94428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8eeaec47-cf9e-4f26-a07d-a2166d30f2e7" + "0738a303-bfc8-40a5-9429-12564fc72f5a" ], "Cache-Control": [ "no-cache" @@ -92463,31 +94438,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12263" + "13118" ], "x-ms-correlation-request-id": [ - "b4cb8349-7798-4306-bd14-28c07042f732" + "4b812901-5cd8-47f8-a9ce-0d5caff6f94e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212727Z:b4cb8349-7798-4306-bd14-28c07042f732" + "WESTUS:20150813T074906Z:4b812901-5cd8-47f8-a9ce-0d5caff6f94e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"express_subscription\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/express_subscription\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard_subscription\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_subscription\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"express_subscription\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/express_subscription\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"standard_subscription\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_subscription\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "810" @@ -92505,7 +94480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c9d7414-b6e7-4cda-a6d9-7965be22fb2c" + "4878f67d-5662-4b6d-90ca-70e2816b0a9a" ], "Cache-Control": [ "no-cache" @@ -92515,31 +94490,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12262" + "13117" ], "x-ms-correlation-request-id": [ - "b00cbe85-dfcc-4e94-a25c-76dcafbe3e6d" + "51ab64dc-1907-40f2-9800-0c25283872cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:b00cbe85-dfcc-4e94-a25c-76dcafbe3e6d" + "WESTUS:20150813T074906Z:51ab64dc-1907-40f2-9800-0c25283872cb" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/express_subscription/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9leHByZXNzX3N1YnNjcmlwdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/express_subscription/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9leHByZXNzX3N1YnNjcmlwdGlvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/express_subscription/Versions/3.3.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/express_subscription/Versions/3.3.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -92557,7 +94532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e635f6ad-0990-462d-9aae-bc8b07abf064" + "36f4eaeb-7528-4922-8177-dcfc9a27aef9" ], "Cache-Control": [ "no-cache" @@ -92567,31 +94542,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12261" + "13116" ], "x-ms-correlation-request-id": [ - "e92c58f8-355b-40d7-9274-e21ab3464b9d" + "c80e57d2-cd39-400d-b0b5-458ffb2943ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:e92c58f8-355b-40d7-9274-e21ab3464b9d" + "WESTUS:20150813T074906Z:c80e57d2-cd39-400d-b0b5-458ffb2943ed" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/express_subscription/versions/3.3.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9leHByZXNzX3N1YnNjcmlwdGlvbi92ZXJzaW9ucy8zLjMuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/express_subscription/versions/3.3.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9leHByZXNzX3N1YnNjcmlwdGlvbi92ZXJzaW9ucy8zLjMuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"softnas\",\r\n \"name\": \"express_subscription\",\r\n \"product\": \"softnas-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/express_subscription/Versions/3.3.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"softnas\",\r\n \"name\": \"express_subscription\",\r\n \"product\": \"softnas-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/express_subscription/Versions/3.3.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "502" @@ -92609,7 +94584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85703b51-0ea5-4a2a-9b5e-a73e57771eb6" + "077f5735-14cc-47cb-88d9-46650f715d19" ], "Cache-Control": [ "no-cache" @@ -92619,31 +94594,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12260" + "13115" ], "x-ms-correlation-request-id": [ - "c3684b45-a996-4eb9-85a4-4e2b8a2b2a5c" + "1185b2b3-5b58-47f0-b3eb-58d125b369b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:c3684b45-a996-4eb9-85a4-4e2b8a2b2a5c" + "WESTUS:20150813T074907Z:1185b2b3-5b58-47f0-b3eb-58d125b369b0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/standard_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9zdGFuZGFyZF9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/standard_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9zdGFuZGFyZF9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_byol/Versions/3.3.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_byol/Versions/3.3.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -92661,7 +94636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1671939a-0647-40dd-b384-785378deb9c9" + "d35f6883-1177-436b-b8c9-d179c5857dfe" ], "Cache-Control": [ "no-cache" @@ -92671,31 +94646,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12259" + "13114" ], "x-ms-correlation-request-id": [ - "12fa5b8e-0f9c-4373-acb7-e0ee09559e9f" + "84e02044-e248-41e4-b04c-19fae775b1d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:12fa5b8e-0f9c-4373-acb7-e0ee09559e9f" + "WESTUS:20150813T074907Z:84e02044-e248-41e4-b04c-19fae775b1d6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/standard_byol/versions/3.3.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9zdGFuZGFyZF9ieW9sL3ZlcnNpb25zLzMuMy4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/standard_byol/versions/3.3.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9zdGFuZGFyZF9ieW9sL3ZlcnNpb25zLzMuMy4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"softnas\",\r\n \"name\": \"standard_byol\",\r\n \"product\": \"softnas-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_byol/Versions/3.3.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"softnas\",\r\n \"name\": \"standard_byol\",\r\n \"product\": \"softnas-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_byol/Versions/3.3.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "488" @@ -92713,7 +94688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40a42238-7a44-4427-aee0-d5dd9fb1a555" + "995091e3-4ae8-4f04-be4e-1aa710da76f8" ], "Cache-Control": [ "no-cache" @@ -92723,31 +94698,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12258" + "13113" ], "x-ms-correlation-request-id": [ - "eaf25b1a-efde-45f7-992f-af8c9de2b03e" + "cbf6daee-8442-43a5-b411-672c9d6440e0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:eaf25b1a-efde-45f7-992f-af8c9de2b03e" + "WESTUS:20150813T074907Z:cbf6daee-8442-43a5-b411-672c9d6440e0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/standard_subscription/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9zdGFuZGFyZF9zdWJzY3JpcHRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/standard_subscription/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9zdGFuZGFyZF9zdWJzY3JpcHRpb24vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_subscription/Versions/3.3.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_subscription/Versions/3.3.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -92765,7 +94740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21d14bb6-c20b-43fe-a810-0dadc60f2227" + "d1780abb-a515-40c2-a312-79a1c6c05b51" ], "Cache-Control": [ "no-cache" @@ -92775,31 +94750,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12257" + "13112" ], "x-ms-correlation-request-id": [ - "7cb0a169-204f-4b16-ab81-7047bebd9f41" + "bf4101dd-6a9f-4b63-b9db-73c2ad5135a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:7cb0a169-204f-4b16-ab81-7047bebd9f41" + "WESTUS:20150813T074907Z:bf4101dd-6a9f-4b63-b9db-73c2ad5135a5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:27 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/standard_subscription/versions/3.3.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9zdGFuZGFyZF9zdWJzY3JpcHRpb24vdmVyc2lvbnMvMy4zLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/softnas/artifacttypes/vmimage/offers/softnas-cloud/skus/standard_subscription/versions/3.3.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29mdG5hcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvZnRuYXMtY2xvdWQvc2t1cy9zdGFuZGFyZF9zdWJzY3JpcHRpb24vdmVyc2lvbnMvMy4zLjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"softnas\",\r\n \"name\": \"standard_subscription\",\r\n \"product\": \"softnas-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_subscription/Versions/3.3.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"softnas\",\r\n \"name\": \"standard_subscription\",\r\n \"product\": \"softnas-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.3.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas/ArtifactTypes/VMImage/Offers/softnas-cloud/Skus/standard_subscription/Versions/3.3.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "504" @@ -92817,7 +94792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3ad24c5-d3d3-4f34-a717-d87ea5527cf1" + "3b5c399e-4b8a-46f7-bd3d-541774593712" ], "Cache-Control": [ "no-cache" @@ -92827,31 +94802,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12256" + "13111" ], "x-ms-correlation-request-id": [ - "97433fe6-1675-42c6-8a09-67c1273bcd40" + "bd7b1d74-0ba7-4e13-8912-366bbc31ef09" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:97433fe6-1675-42c6-8a09-67c1273bcd40" + "WESTUS:20150813T074907Z:bd7b1d74-0ba7-4e13-8912-366bbc31ef09" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "234" @@ -92869,7 +94844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3e7352d-72b5-4270-b7da-2ac5111af86c" + "5f035d19-4368-4b6e-a53a-9603eda24fa1" ], "Cache-Control": [ "no-cache" @@ -92879,31 +94854,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12255" + "13110" ], "x-ms-correlation-request-id": [ - "dda30089-65a5-422f-84b3-79556267c71b" + "9037bc0f-7533-405d-947e-e7a74f723071" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:dda30089-65a5-422f-84b3-79556267c71b" + "WESTUS:20150813T074907Z:9037bc0f-7533-405d-947e-e7a74f723071" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha_cloud_basic_plan\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_basic_plan\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha_cloud_free_plan\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_free_plan\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha_cloud_premium_plan\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_premium_plan\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha_cloud_standard_plan\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_standard_plan\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha_cloud_basic_plan\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_basic_plan\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha_cloud_free_plan\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_free_plan\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha_cloud_premium_plan\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_premium_plan\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha_cloud_standard_plan\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_standard_plan\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1087" @@ -92921,7 +94896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab964ab5-3666-4b0c-bf8a-b78fb7c9d89d" + "cbc9152c-42a0-4a43-b5bf-6d0addc27f7f" ], "Cache-Control": [ "no-cache" @@ -92931,31 +94906,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12254" + "13109" ], "x-ms-correlation-request-id": [ - "a05a416e-c76c-46d5-ac16-fec6bb45f30c" + "c9e30143-965f-42d4-9c02-32b563fc9761" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212728Z:a05a416e-c76c-46d5-ac16-fec6bb45f30c" + "WESTUS:20150813T074907Z:c9e30143-965f-42d4-9c02-32b563fc9761" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_basic_plan/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX2Jhc2ljX3BsYW4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_basic_plan/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX2Jhc2ljX3BsYW4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_basic_plan/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_basic_plan/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "271" @@ -92973,7 +94948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1188d744-20f7-4251-9358-f2f2cd3ff34d" + "f253e7ad-fff4-405d-bcef-8fd52833240b" ], "Cache-Control": [ "no-cache" @@ -92983,31 +94958,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12253" + "13108" ], "x-ms-correlation-request-id": [ - "ba77fbb4-d43c-46be-8446-690cd8b593c2" + "43d482c6-d276-4132-923b-6a1824ed3e18" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:ba77fbb4-d43c-46be-8446-690cd8b593c2" + "WESTUS:20150813T074907Z:43d482c6-d276-4132-923b-6a1824ed3e18" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_basic_plan/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX2Jhc2ljX3BsYW4vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_basic_plan/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX2Jhc2ljX3BsYW4vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"soha\",\r\n \"name\": \"soha_cloud_basic_plan\",\r\n \"product\": \"soha-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_basic_plan/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"soha\",\r\n \"name\": \"soha_cloud_basic_plan\",\r\n \"product\": \"soha-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_basic_plan/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "492" @@ -93025,7 +95000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f100bdf-3d2e-40fd-80dd-877765b9ab3b" + "9476251a-f9f6-4102-9602-e35d53dafd39" ], "Cache-Control": [ "no-cache" @@ -93035,31 +95010,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12252" + "13107" ], "x-ms-correlation-request-id": [ - "ac304868-f90a-44e2-87c5-9c9be9599071" + "b8fb33b9-af15-4f6b-9855-70436d26d450" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:ac304868-f90a-44e2-87c5-9c9be9599071" + "WESTUS:20150813T074907Z:b8fb33b9-af15-4f6b-9855-70436d26d450" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_free_plan/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX2ZyZWVfcGxhbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_free_plan/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX2ZyZWVfcGxhbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_free_plan/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_free_plan/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "270" @@ -93077,7 +95052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36c6808e-8d10-43d8-bc2a-517af6783fa6" + "2e1085be-2667-46e7-8fc6-1552979aea5b" ], "Cache-Control": [ "no-cache" @@ -93087,31 +95062,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12251" + "13106" ], "x-ms-correlation-request-id": [ - "c6fd016f-95d2-4d56-bc21-1527db06aeb8" + "988677f9-0cc0-44c6-bb86-f70c9f713730" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:c6fd016f-95d2-4d56-bc21-1527db06aeb8" + "WESTUS:20150813T074907Z:988677f9-0cc0-44c6-bb86-f70c9f713730" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_free_plan/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX2ZyZWVfcGxhbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_free_plan/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX2ZyZWVfcGxhbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"soha\",\r\n \"name\": \"soha_cloud_free_plan\",\r\n \"product\": \"soha-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_free_plan/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"soha\",\r\n \"name\": \"soha_cloud_free_plan\",\r\n \"product\": \"soha-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_free_plan/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "490" @@ -93129,7 +95104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c3f77e7-47b4-44fe-8439-df1e541e252e" + "82ed51bc-e2ea-4b3c-a77a-e39077670948" ], "Cache-Control": [ "no-cache" @@ -93139,31 +95114,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12250" + "13105" ], "x-ms-correlation-request-id": [ - "884bfafc-ba8f-4332-b8d4-ee0a3b992d56" + "d5f17317-a229-481d-a7be-4b3ed2976ee9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:884bfafc-ba8f-4332-b8d4-ee0a3b992d56" + "WESTUS:20150813T074907Z:d5f17317-a229-481d-a7be-4b3ed2976ee9" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_premium_plan/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX3ByZW1pdW1fcGxhbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_premium_plan/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX3ByZW1pdW1fcGxhbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_premium_plan/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_premium_plan/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "273" @@ -93181,7 +95156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97692492-6925-460b-9004-40191c9821b0" + "1e4d2abb-67d8-4f9b-963a-f8d438b059d7" ], "Cache-Control": [ "no-cache" @@ -93191,31 +95166,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12249" + "13104" ], "x-ms-correlation-request-id": [ - "9ef2546e-f0f5-48fc-99af-a84d9cb7ba5e" + "f54c0483-f28c-4af7-b09f-5ec3e1f0c6ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:9ef2546e-f0f5-48fc-99af-a84d9cb7ba5e" + "WESTUS:20150813T074908Z:f54c0483-f28c-4af7-b09f-5ec3e1f0c6ba" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_premium_plan/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX3ByZW1pdW1fcGxhbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_premium_plan/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX3ByZW1pdW1fcGxhbi92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"soha\",\r\n \"name\": \"soha_cloud_premium_plan\",\r\n \"product\": \"soha-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_premium_plan/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"soha\",\r\n \"name\": \"soha_cloud_premium_plan\",\r\n \"product\": \"soha-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_premium_plan/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "496" @@ -93233,7 +95208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28c0b029-8f53-4042-86b9-19d47b2c96ff" + "e71c982d-c428-4766-a5e1-93ea1b61d654" ], "Cache-Control": [ "no-cache" @@ -93243,31 +95218,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12248" + "13103" ], "x-ms-correlation-request-id": [ - "dc65baa0-f633-4813-aa4d-86a162ff4030" + "3612f3c6-93bc-4dd3-845c-50fba0c71749" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:dc65baa0-f633-4813-aa4d-86a162ff4030" + "WESTUS:20150813T074908Z:3612f3c6-93bc-4dd3-845c-50fba0c71749" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_standard_plan/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX3N0YW5kYXJkX3BsYW4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_standard_plan/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX3N0YW5kYXJkX3BsYW4vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_standard_plan/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_standard_plan/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "274" @@ -93285,7 +95260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c58529fa-5cb0-40fa-afc3-806bf5fdbdbb" + "ee851517-986e-4b66-8f51-c8e7f44a0ff0" ], "Cache-Control": [ "no-cache" @@ -93295,31 +95270,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12247" + "13102" ], "x-ms-correlation-request-id": [ - "9b29e8ab-d1db-4326-8c8c-ded14a85dcc0" + "ace63573-82fe-48ce-9b6d-d679e75d368c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:9b29e8ab-d1db-4326-8c8c-ded14a85dcc0" + "WESTUS:20150813T074908Z:ace63573-82fe-48ce-9b6d-d679e75d368c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_standard_plan/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX3N0YW5kYXJkX3BsYW4vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/soha/artifacttypes/vmimage/offers/soha-cloud/skus/soha_cloud_standard_plan/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29oYS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvaGEtY2xvdWQvc2t1cy9zb2hhX2Nsb3VkX3N0YW5kYXJkX3BsYW4vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"soha\",\r\n \"name\": \"soha_cloud_standard_plan\",\r\n \"product\": \"soha-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_standard_plan/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"soha\",\r\n \"name\": \"soha_cloud_standard_plan\",\r\n \"product\": \"soha-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_standard_plan/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "498" @@ -93337,7 +95312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d420cea2-4dcd-45ce-acb4-2697f7d99318" + "dd9da7e4-bae8-4f94-b033-0868b35dc6e1" ], "Cache-Control": [ "no-cache" @@ -93347,31 +95322,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12246" + "13101" ], "x-ms-correlation-request-id": [ - "d21c0326-2c38-48b1-a7e4-5215220bbe95" + "c2b88e6a-4f9f-40c4-b6e1-72fba75f5eee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:d21c0326-2c38-48b1-a7e4-5215220bbe95" + "WESTUS:20150813T074908Z:c2b88e6a-4f9f-40c4-b6e1-72fba75f5eee" ], "Date": [ - "Wed, 05 Aug 2015 21:27:28 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/solanolabs/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29sYW5vbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/solanolabs/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29sYW5vbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solano-ci-private-beta\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solano-ci-private-beta\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -93389,7 +95364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68d373f3-4f38-4ea0-b348-1d174be04c41" + "53ddb85d-e828-42e5-9566-9520f0e8e7f2" ], "Cache-Control": [ "no-cache" @@ -93399,31 +95374,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12245" + "13100" ], "x-ms-correlation-request-id": [ - "2ea6c9e0-f984-46bb-b037-200948aaa290" + "ae1406ab-a30d-47ae-932b-6442c3ce704c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:2ea6c9e0-f984-46bb-b037-200948aaa290" + "WESTUS:20150813T074908Z:ae1406ab-a30d-47ae-932b-6442c3ce704c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/solanolabs/artifacttypes/vmimage/offers/solano-ci-private-beta/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29sYW5vbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvbGFuby1jaS1wcml2YXRlLWJldGEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/solanolabs/artifacttypes/vmimage/offers/solano-ci-private-beta/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29sYW5vbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvbGFuby1jaS1wcml2YXRlLWJldGEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20150603\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta/Skus/20150603\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"20150603\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta/Skus/20150603\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -93441,7 +95416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0d4ca2b-fae4-472e-a5ba-cc96abe5722b" + "f3b9a274-01b7-4d16-bdbc-fdea41655166" ], "Cache-Control": [ "no-cache" @@ -93451,31 +95426,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12244" + "13099" ], "x-ms-correlation-request-id": [ - "27447e92-0f0c-4e05-8f8c-7af123c0761e" + "29d78d1d-2e2f-4aaf-9ebd-aa8628ee48d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212729Z:27447e92-0f0c-4e05-8f8c-7af123c0761e" + "WESTUS:20150813T074908Z:29d78d1d-2e2f-4aaf-9ebd-aa8628ee48d6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/solanolabs/artifacttypes/vmimage/offers/solano-ci-private-beta/skus/20150603/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29sYW5vbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvbGFuby1jaS1wcml2YXRlLWJldGEvc2t1cy8yMDE1MDYwMy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/solanolabs/artifacttypes/vmimage/offers/solano-ci-private-beta/skus/20150603/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29sYW5vbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvbGFuby1jaS1wcml2YXRlLWJldGEvc2t1cy8yMDE1MDYwMy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta/Skus/20150603/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta/Skus/20150603/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -93493,7 +95468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03e31fad-5352-463c-958f-b4a3cc327b89" + "515c9037-6111-483e-b837-52feeba26ca5" ], "Cache-Control": [ "no-cache" @@ -93503,31 +95478,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12243" + "13098" ], "x-ms-correlation-request-id": [ - "60c94b4b-85c4-4e60-b4ca-14f0c1825b8a" + "3422e69c-9058-4146-a86f-bd3e958cdc1e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:60c94b4b-85c4-4e60-b4ca-14f0c1825b8a" + "WESTUS:20150813T074908Z:3422e69c-9058-4146-a86f-bd3e958cdc1e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/solanolabs/artifacttypes/vmimage/offers/solano-ci-private-beta/skus/20150603/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29sYW5vbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvbGFuby1jaS1wcml2YXRlLWJldGEvc2t1cy8yMDE1MDYwMy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/solanolabs/artifacttypes/vmimage/offers/solano-ci-private-beta/skus/20150603/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc29sYW5vbGFicy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NvbGFuby1jaS1wcml2YXRlLWJldGEvc2t1cy8yMDE1MDYwMy92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"solanolabs\",\r\n \"name\": \"20150603\",\r\n \"product\": \"solano-ci-private-beta\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta/Skus/20150603/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"solanolabs\",\r\n \"name\": \"20150603\",\r\n \"product\": \"solano-ci-private-beta\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta/Skus/20150603/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "502" @@ -93545,7 +95520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a234ba5-aa54-4241-afe1-23d2b24bf413" + "426e7ab5-3024-4e94-95cc-8768cf3acd87" ], "Cache-Control": [ "no-cache" @@ -93555,31 +95530,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12242" + "13097" ], "x-ms-correlation-request-id": [ - "f537448f-316f-4ba2-bfd6-ae652276e8f1" + "26f6cd31-fef4-401c-9422-630b139b95bf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:f537448f-316f-4ba2-bfd6-ae652276e8f1" + "WESTUS:20150813T074908Z:26f6cd31-fef4-401c-9422-630b139b95bf" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/spacecurve/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhY2VjdXJ2ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/spacecurve/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhY2VjdXJ2ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve-quickstart\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve-quickstart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "262" @@ -93597,7 +95572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97638bed-19dc-4028-b102-569ccde05456" + "fffc4f5a-9a4c-42e4-bfa0-c457af1e7499" ], "Cache-Control": [ "no-cache" @@ -93607,31 +95582,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12241" + "13096" ], "x-ms-correlation-request-id": [ - "9febdd35-d3ba-4e74-b009-06629fbadb7a" + "26af3539-bc39-4b06-86dc-c7f9d59bf266" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:9febdd35-d3ba-4e74-b009-06629fbadb7a" + "WESTUS:20150813T074908Z:26af3539-bc39-4b06-86dc-c7f9d59bf266" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/spacecurve/artifacttypes/vmimage/offers/spacecurve-quickstart/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhY2VjdXJ2ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwYWNlY3VydmUtcXVpY2tzdGFydC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/spacecurve/artifacttypes/vmimage/offers/spacecurve-quickstart/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhY2VjdXJ2ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwYWNlY3VydmUtcXVpY2tzdGFydC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sc-qs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart/Skus/sc-qs\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sc-qs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart/Skus/sc-qs\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -93649,7 +95624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b08cf5e1-e035-4c2f-a90b-91c84e7f8d9e" + "fed2ef5f-36ee-4594-bcc3-45ebc4687fd6" ], "Cache-Control": [ "no-cache" @@ -93659,31 +95634,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12240" + "13095" ], "x-ms-correlation-request-id": [ - "52feceea-3d70-41f9-96fc-02af5f5ade1c" + "bca56c43-bf2a-4d96-813d-3f5b73a5986f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:52feceea-3d70-41f9-96fc-02af5f5ade1c" + "WESTUS:20150813T074908Z:bca56c43-bf2a-4d96-813d-3f5b73a5986f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/spacecurve/artifacttypes/vmimage/offers/spacecurve-quickstart/skus/sc-qs/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhY2VjdXJ2ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwYWNlY3VydmUtcXVpY2tzdGFydC9za3VzL3NjLXFzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/spacecurve/artifacttypes/vmimage/offers/spacecurve-quickstart/skus/sc-qs/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhY2VjdXJ2ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwYWNlY3VydmUtcXVpY2tzdGFydC9za3VzL3NjLXFzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart/Skus/sc-qs/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart/Skus/sc-qs/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -93701,7 +95676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3286b889-dd8f-4d0e-acf6-3f69d5a06424" + "cbaf8d5a-7977-40d1-9558-fa7bef210792" ], "Cache-Control": [ "no-cache" @@ -93711,31 +95686,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12239" + "13094" ], "x-ms-correlation-request-id": [ - "ec986fbd-9baa-4603-ac99-f8836e8e6bd1" + "b8d8dffb-bcdb-494c-b1e8-7f0771f3a6ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:ec986fbd-9baa-4603-ac99-f8836e8e6bd1" + "WESTUS:20150813T074908Z:b8d8dffb-bcdb-494c-b1e8-7f0771f3a6ec" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/spacecurve/artifacttypes/vmimage/offers/spacecurve-quickstart/skus/sc-qs/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhY2VjdXJ2ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwYWNlY3VydmUtcXVpY2tzdGFydC9za3VzL3NjLXFzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/spacecurve/artifacttypes/vmimage/offers/spacecurve-quickstart/skus/sc-qs/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhY2VjdXJ2ZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwYWNlY3VydmUtcXVpY2tzdGFydC9za3VzL3NjLXFzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"spacecurve\",\r\n \"name\": \"sc-qs\",\r\n \"product\": \"spacecurve-quickstart\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart/Skus/sc-qs/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"spacecurve\",\r\n \"name\": \"sc-qs\",\r\n \"product\": \"spacecurve-quickstart\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart/Skus/sc-qs/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "494" @@ -93753,7 +95728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57a4a0e0-b3f0-4713-bf7e-2be6f1e04b85" + "bac05a6b-3111-449f-a5ac-36215eec4d41" ], "Cache-Control": [ "no-cache" @@ -93763,28 +95738,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12238" + "13093" ], "x-ms-correlation-request-id": [ - "8e9035fb-d378-4a39-acff-3ff8e9f45613" + "7fb7f863-181d-48d1-b6b4-7ed10a4989d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:8e9035fb-d378-4a39-acff-3ff8e9f45613" + "WESTUS:20150813T074909Z:7fb7f863-181d-48d1-b6b4-7ed10a4989d2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/spagobi/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhZ29iaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/spagobi/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BhZ29iaS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -93805,7 +95780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fb809c2f-cb77-4480-9717-113e0fa13fbb" + "88411372-7a32-45fb-a93c-2f3d3bcaacf1" ], "Cache-Control": [ "no-cache" @@ -93815,31 +95790,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12237" + "13092" ], "x-ms-correlation-request-id": [ - "1fe70a71-a71a-4b16-9537-80d349f58025" + "eb95fcbe-8d8a-4629-8ae7-455013dc2443" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:1fe70a71-a71a-4b16-9537-80d349f58025" + "WESTUS:20150813T074909Z:eb95fcbe-8d8a-4629-8ae7-455013dc2443" ], "Date": [ - "Wed, 05 Aug 2015 21:27:29 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sphere3d/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BoZXJlM2QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sphere3d/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BoZXJlM2QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snapcloud-standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d/ArtifactTypes/VMImage/Offers/snapcloud-standard\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snapcloud-standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d/ArtifactTypes/VMImage/Offers/snapcloud-standard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "254" @@ -93857,7 +95832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3b36028-57ee-4fc4-bef0-e4653e85da9f" + "48417f08-249e-4441-aa58-7735c68a516b" ], "Cache-Control": [ "no-cache" @@ -93867,31 +95842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12236" + "13091" ], "x-ms-correlation-request-id": [ - "16f2f87b-f4ab-404d-8476-0d09db9f97e9" + "815c5fd0-2451-465e-b855-36d417b921c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:16f2f87b-f4ab-404d-8476-0d09db9f97e9" + "WESTUS:20150813T074909Z:815c5fd0-2451-465e-b855-36d417b921c8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sphere3d/artifacttypes/vmimage/offers/snapcloud-standard/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BoZXJlM2QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zbmFwY2xvdWQtc3RhbmRhcmQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sphere3d/artifacttypes/vmimage/offers/snapcloud-standard/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BoZXJlM2QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zbmFwY2xvdWQtc3RhbmRhcmQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snapcloud-standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d/ArtifactTypes/VMImage/Offers/snapcloud-standard/Skus/snapcloud-standard\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snapcloud-standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d/ArtifactTypes/VMImage/Offers/snapcloud-standard/Skus/snapcloud-standard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "278" @@ -93909,7 +95884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46440bc8-2763-413f-b71d-1cdca2f6c7e0" + "4c419d42-a6e4-400b-9ef7-79748a9b5ae0" ], "Cache-Control": [ "no-cache" @@ -93919,31 +95894,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12235" + "13090" ], "x-ms-correlation-request-id": [ - "b8488944-b181-4a6a-9639-c32f39cfb86b" + "50eaa73c-9f99-4512-8edb-5742e328ad34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212730Z:b8488944-b181-4a6a-9639-c32f39cfb86b" + "WESTUS:20150813T074909Z:50eaa73c-9f99-4512-8edb-5742e328ad34" ], "Date": [ - "Wed, 05 Aug 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sphere3d/artifacttypes/vmimage/offers/snapcloud-standard/skus/snapcloud-standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BoZXJlM2QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zbmFwY2xvdWQtc3RhbmRhcmQvc2t1cy9zbmFwY2xvdWQtc3RhbmRhcmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sphere3d/artifacttypes/vmimage/offers/snapcloud-standard/skus/snapcloud-standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BoZXJlM2QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zbmFwY2xvdWQtc3RhbmRhcmQvc2t1cy9zbmFwY2xvdWQtc3RhbmRhcmQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.6.169\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d/ArtifactTypes/VMImage/Offers/snapcloud-standard/Skus/snapcloud-standard/Versions/7.6.169\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.6.169\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d/ArtifactTypes/VMImage/Offers/snapcloud-standard/Skus/snapcloud-standard/Versions/7.6.169\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "284" @@ -93961,7 +95936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3818544b-ecf3-4119-bae9-195220816718" + "4b9bb68b-6eef-4046-8962-c376d920ed46" ], "Cache-Control": [ "no-cache" @@ -93971,31 +95946,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12234" + "13089" ], "x-ms-correlation-request-id": [ - "2f02deee-14e9-4516-8626-27b122f2b6f3" + "cbb37bb1-f041-4750-9789-9f37411097a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212731Z:2f02deee-14e9-4516-8626-27b122f2b6f3" + "WESTUS:20150813T074909Z:cbb37bb1-f041-4750-9789-9f37411097a3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 07:49:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sphere3d/artifacttypes/vmimage/offers/snapcloud-standard/skus/snapcloud-standard/versions/7.6.169?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BoZXJlM2QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zbmFwY2xvdWQtc3RhbmRhcmQvc2t1cy9zbmFwY2xvdWQtc3RhbmRhcmQvdmVyc2lvbnMvNy42LjE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sphere3d/artifacttypes/vmimage/offers/snapcloud-standard/skus/snapcloud-standard/versions/7.6.169?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3BoZXJlM2QvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zbmFwY2xvdWQtc3RhbmRhcmQvc2t1cy9zbmFwY2xvdWQtc3RhbmRhcmQvdmVyc2lvbnMvNy42LjE2OT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sphere3d\",\r\n \"name\": \"snapcloud-standard\",\r\n \"product\": \"snapcloud-standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.6.169\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d/ArtifactTypes/VMImage/Offers/snapcloud-standard/Skus/snapcloud-standard/Versions/7.6.169\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sphere3d\",\r\n \"name\": \"snapcloud-standard\",\r\n \"product\": \"snapcloud-standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.6.169\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d/ArtifactTypes/VMImage/Offers/snapcloud-standard/Skus/snapcloud-standard/Versions/7.6.169\"\r\n}", "ResponseHeaders": { "Content-Length": [ "514" @@ -94013,7 +95988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46b2c9e8-330f-4203-82f0-046074adee72" + "a2195909-f96a-4137-8272-c74860f3b2d3" ], "Cache-Control": [ "no-cache" @@ -94023,31 +95998,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12233" + "13088" ], "x-ms-correlation-request-id": [ - "de3bcbbe-951e-4398-8e14-afda2b446cca" + "442e9d49-1345-49b6-8c10-0462f08c6ba9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212731Z:de3bcbbe-951e-4398-8e14-afda2b446cca" + "WESTUS:20150813T074909Z:442e9d49-1345-49b6-8c10-0462f08c6ba9" ], "Date": [ - "Wed, 05 Aug 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 07:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stackato-platform-as-a-service/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2thdG8tcGxhdGZvcm0tYXMtYS1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stackato-platform-as-a-service/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2thdG8tcGxhdGZvcm0tYXMtYS1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activestate-stackato\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service/ArtifactTypes/VMImage/Offers/activestate-stackato\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activestate-stackato\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service/ArtifactTypes/VMImage/Offers/activestate-stackato\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -94065,7 +96040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9163b040-33e1-43e0-a025-dec97d63636b" + "0176baf0-f4aa-4f76-b52a-a8ac7a294c5a" ], "Cache-Control": [ "no-cache" @@ -94075,31 +96050,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12232" + "13087" ], "x-ms-correlation-request-id": [ - "4f6f320d-70f6-4e74-976f-eee7f139f579" + "d4a11f38-9092-45ea-8fb2-dea9218fa5dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212731Z:4f6f320d-70f6-4e74-976f-eee7f139f579" + "WESTUS:20150813T074909Z:d4a11f38-9092-45ea-8fb2-dea9218fa5dd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 07:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stackato-platform-as-a-service/artifacttypes/vmimage/offers/activestate-stackato/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2thdG8tcGxhdGZvcm0tYXMtYS1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlc3RhdGUtc3RhY2thdG8vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stackato-platform-as-a-service/artifacttypes/vmimage/offers/activestate-stackato/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2thdG8tcGxhdGZvcm0tYXMtYS1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlc3RhdGUtc3RhY2thdG8vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato36\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service/ArtifactTypes/VMImage/Offers/activestate-stackato/Skus/stackato36\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato36\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service/ArtifactTypes/VMImage/Offers/activestate-stackato/Skus/stackato36\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "286" @@ -94117,7 +96092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cfc2871-94f8-4af6-b073-b120bcc2cb57" + "7819ce6d-89e0-46d0-8014-a2c8e19e8dfc" ], "Cache-Control": [ "no-cache" @@ -94127,31 +96102,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12231" + "13086" ], "x-ms-correlation-request-id": [ - "a0f3c485-d8b0-404b-b9ff-4996d9625626" + "e9f15e17-e656-4976-94da-7da63ec66cca" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212731Z:a0f3c485-d8b0-404b-b9ff-4996d9625626" + "WESTUS:20150813T074909Z:e9f15e17-e656-4976-94da-7da63ec66cca" ], "Date": [ - "Wed, 05 Aug 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 07:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stackato-platform-as-a-service/artifacttypes/vmimage/offers/activestate-stackato/skus/stackato36/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2thdG8tcGxhdGZvcm0tYXMtYS1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlc3RhdGUtc3RhY2thdG8vc2t1cy9zdGFja2F0bzM2L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stackato-platform-as-a-service/artifacttypes/vmimage/offers/activestate-stackato/skus/stackato36/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2thdG8tcGxhdGZvcm0tYXMtYS1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlc3RhdGUtc3RhY2thdG8vc2t1cy9zdGFja2F0bzM2L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service/ArtifactTypes/VMImage/Offers/activestate-stackato/Skus/stackato36/Versions/3.6.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service/ArtifactTypes/VMImage/Offers/activestate-stackato/Skus/stackato36/Versions/3.6.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "296" @@ -94169,7 +96144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5f30e75-b1b2-4045-9282-c3fadf8a25a1" + "78bb1787-04d9-4a33-aa24-1bb819f2d45e" ], "Cache-Control": [ "no-cache" @@ -94179,31 +96154,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12230" + "13085" ], "x-ms-correlation-request-id": [ - "9cac6fef-636d-427c-b14f-4aeef0d2e22a" + "052e1225-4050-4ccc-b59c-a1d380c37f34" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212731Z:9cac6fef-636d-427c-b14f-4aeef0d2e22a" + "WESTUS:20150813T074910Z:052e1225-4050-4ccc-b59c-a1d380c37f34" ], "Date": [ - "Wed, 05 Aug 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 07:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stackato-platform-as-a-service/artifacttypes/vmimage/offers/activestate-stackato/skus/stackato36/versions/3.6.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2thdG8tcGxhdGZvcm0tYXMtYS1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlc3RhdGUtc3RhY2thdG8vc2t1cy9zdGFja2F0bzM2L3ZlcnNpb25zLzMuNi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stackato-platform-as-a-service/artifacttypes/vmimage/offers/activestate-stackato/skus/stackato36/versions/3.6.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2thdG8tcGxhdGZvcm0tYXMtYS1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYWN0aXZlc3RhdGUtc3RhY2thdG8vc2t1cy9zdGFja2F0bzM2L3ZlcnNpb25zLzMuNi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"stackato-platform-as-a-service\",\r\n \"name\": \"stackato36\",\r\n \"product\": \"activestate-stackato\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service/ArtifactTypes/VMImage/Offers/activestate-stackato/Skus/stackato36/Versions/3.6.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"stackato-platform-as-a-service\",\r\n \"name\": \"stackato36\",\r\n \"product\": \"activestate-stackato\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.6.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service/ArtifactTypes/VMImage/Offers/activestate-stackato/Skus/stackato36/Versions/3.6.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "542" @@ -94221,7 +96196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d9a1607-5e23-4431-8add-194400e26723" + "647018ad-4f45-4024-9ef7-cb4202aa0d51" ], "Cache-Control": [ "no-cache" @@ -94231,31 +96206,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12229" + "13084" ], "x-ms-correlation-request-id": [ - "7b53dbc1-b0b8-4d4f-874a-14ddc9c5e823" + "435cd067-1341-4e7a-9a0e-e1c51eb44a8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212731Z:7b53dbc1-b0b8-4d4f-874a-14ddc9c5e823" + "WESTUS:20150813T074910Z:435cd067-1341-4e7a-9a0e-e1c51eb44a8f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:30 GMT" + "Thu, 13 Aug 2015 07:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stackstorm/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2tzdG9ybS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stackstorm/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2tzdG9ybS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm-2015-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm-2015-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "254" @@ -94273,7 +96248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fac42927-40c3-4356-80e8-65ae0a021322" + "1fb9c80a-222d-46fc-b91b-86c4ca7f6ba2" ], "Cache-Control": [ "no-cache" @@ -94283,31 +96258,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12228" + "13083" ], "x-ms-correlation-request-id": [ - "71769d8e-36a1-4782-8299-4a443a0d7a50" + "1e5543fc-bfe0-4a09-951f-40ed47d8a186" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212731Z:71769d8e-36a1-4782-8299-4a443a0d7a50" + "WESTUS:20150813T074910Z:1e5543fc-bfe0-4a09-951f-40ed47d8a186" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stackstorm/artifacttypes/vmimage/offers/stackstorm-2015-1/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2tzdG9ybS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YWNrc3Rvcm0tMjAxNS0xL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stackstorm/artifacttypes/vmimage/offers/stackstorm-2015-1/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2tzdG9ybS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YWNrc3Rvcm0tMjAxNS0xL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scu-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1/Skus/scu-1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scu-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1/Skus/scu-1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "253" @@ -94325,7 +96300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f23ba222-4b4a-4a5e-a18f-768feac56496" + "db35878a-e4b0-4ae9-a630-356dfc62259e" ], "Cache-Control": [ "no-cache" @@ -94335,31 +96310,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12227" + "13082" ], "x-ms-correlation-request-id": [ - "8beec8df-2283-43b8-b6df-5da8bd08c7c2" + "68c2edc2-aaae-4c02-8d87-d6c615ca24b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212731Z:8beec8df-2283-43b8-b6df-5da8bd08c7c2" + "WESTUS:20150813T074910Z:68c2edc2-aaae-4c02-8d87-d6c615ca24b8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stackstorm/artifacttypes/vmimage/offers/stackstorm-2015-1/skus/scu-1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2tzdG9ybS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YWNrc3Rvcm0tMjAxNS0xL3NrdXMvc2N1LTEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stackstorm/artifacttypes/vmimage/offers/stackstorm-2015-1/skus/scu-1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2tzdG9ybS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YWNrc3Rvcm0tMjAxNS0xL3NrdXMvc2N1LTEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1/Skus/scu-1/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1/Skus/scu-1/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "268" @@ -94377,7 +96352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbbb8162-c5a4-4168-a687-14420dbf7488" + "24fd948c-7700-460c-98ea-e590dc6fe4a6" ], "Cache-Control": [ "no-cache" @@ -94387,31 +96362,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12226" + "13081" ], "x-ms-correlation-request-id": [ - "023d3586-0b81-49e0-ae50-1eabf921b3f5" + "c34c7e61-11fe-46ed-bf26-6dfa248cb7d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:023d3586-0b81-49e0-ae50-1eabf921b3f5" + "WESTUS:20150813T074910Z:c34c7e61-11fe-46ed-bf26-6dfa248cb7d0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stackstorm/artifacttypes/vmimage/offers/stackstorm-2015-1/skus/scu-1/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2tzdG9ybS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YWNrc3Rvcm0tMjAxNS0xL3NrdXMvc2N1LTEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stackstorm/artifacttypes/vmimage/offers/stackstorm-2015-1/skus/scu-1/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhY2tzdG9ybS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N0YWNrc3Rvcm0tMjAxNS0xL3NrdXMvc2N1LTEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"stackstorm\",\r\n \"name\": \"scu-1\",\r\n \"product\": \"stackstorm-2015-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1/Skus/scu-1/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"stackstorm\",\r\n \"name\": \"scu-1\",\r\n \"product\": \"stackstorm-2015-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1/Skus/scu-1/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "486" @@ -94429,7 +96404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae48b995-919a-40a9-93b3-39cfd1494d8a" + "329b3a0e-1b51-4c0b-9a38-1e04f562848c" ], "Cache-Control": [ "no-cache" @@ -94439,31 +96414,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12225" + "13080" ], "x-ms-correlation-request-id": [ - "12eb874c-3528-472a-86fd-c8afc82fd22b" + "ef410796-4954-4d4e-9a45-621b2736e4d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:12eb874c-3528-472a-86fd-c8afc82fd22b" + "WESTUS:20150813T074910Z:ef410796-4954-4d4e-9a45-621b2736e4d0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindvirtualsan\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindvtl\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvtl\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindvirtualsan\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindvtl\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvtl\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "491" @@ -94481,7 +96456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "152a5a50-a2f0-446f-917d-f18434e86666" + "412ce18f-fa82-4bb1-9d3b-71fb5b9fccff" ], "Cache-Control": [ "no-cache" @@ -94491,31 +96466,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12224" + "13079" ], "x-ms-correlation-request-id": [ - "a195c0ba-5c02-47e6-963d-b6c117a6c300" + "e0b881a8-afbf-4fe1-b00f-3c565251a1cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:a195c0ba-5c02-47e6-963d-b6c117a6c300" + "WESTUS:20150813T074910Z:e0b881a8-afbf-4fe1-b00f-3c565251a1cd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindbyol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindbyol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindperhour\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindperhour\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindbyol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindbyol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindperhour\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindperhour\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "535" @@ -94533,7 +96508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cba6ad35-4b01-4a3e-ab16-fd1a97835373" + "ef23e90a-cf3f-4cc5-8684-3d3901522cff" ], "Cache-Control": [ "no-cache" @@ -94543,31 +96518,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12223" + "13078" ], "x-ms-correlation-request-id": [ - "8d15acc3-47a7-4b62-a4dc-ad9ec4fa6755" + "311042dc-7263-4417-992b-39f7b07dfdce" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:8d15acc3-47a7-4b62-a4dc-ad9ec4fa6755" + "WESTUS:20150813T074910Z:311042dc-7263-4417-992b-39f7b07dfdce" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus/starwindbyol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cy9zdGFyd2luZGJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus/starwindbyol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cy9zdGFyd2luZGJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.7929\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindbyol/Versions/8.0.7929\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.7929\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindbyol/Versions/8.0.7929\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -94585,7 +96560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d683f05-f423-4577-ac8b-ac63c8ab4b75" + "c1053a24-0c0a-4658-9121-7dc4b17d65ec" ], "Cache-Control": [ "no-cache" @@ -94595,31 +96570,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12222" + "13077" ], "x-ms-correlation-request-id": [ - "3aae4650-c4d4-4e2a-9a03-3bc28f2f61ad" + "97aa680b-7d8d-442f-90e6-3a14d7191f6b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:3aae4650-c4d4-4e2a-9a03-3bc28f2f61ad" + "WESTUS:20150813T074910Z:97aa680b-7d8d-442f-90e6-3a14d7191f6b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus/starwindbyol/versions/8.0.7929?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cy9zdGFyd2luZGJ5b2wvdmVyc2lvbnMvOC4wLjc5Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus/starwindbyol/versions/8.0.7929?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cy9zdGFyd2luZGJ5b2wvdmVyc2lvbnMvOC4wLjc5Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"starwind\",\r\n \"name\": \"starwindbyol\",\r\n \"product\": \"starwindvirtualsan\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.7929\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindbyol/Versions/8.0.7929\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"starwind\",\r\n \"name\": \"starwindbyol\",\r\n \"product\": \"starwindvirtualsan\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.7929\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindbyol/Versions/8.0.7929\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -94637,7 +96612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b795d27a-3f8c-4ec1-b955-f558154af554" + "6a15cf15-e71a-4352-806b-69a737f29dc5" ], "Cache-Control": [ "no-cache" @@ -94647,31 +96622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12221" + "13076" ], "x-ms-correlation-request-id": [ - "b40715a4-8163-45a8-ac90-33c0759e0bd0" + "a4b674c3-a6ee-4f63-9f47-07eff013d92f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:b40715a4-8163-45a8-ac90-33c0759e0bd0" + "WESTUS:20150813T074910Z:a4b674c3-a6ee-4f63-9f47-07eff013d92f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus/starwindperhour/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cy9zdGFyd2luZHBlcmhvdXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus/starwindperhour/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cy9zdGFyd2luZHBlcmhvdXIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.1.7929\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindperhour/Versions/8.1.7929\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.1.7929\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindperhour/Versions/8.1.7929\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "283" @@ -94689,7 +96664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80f2018a-0f4c-42f5-861d-10b3d677ee1a" + "ca1b691e-7df3-4bbf-b90c-ff4474619db7" ], "Cache-Control": [ "no-cache" @@ -94699,31 +96674,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12220" + "13075" ], "x-ms-correlation-request-id": [ - "9efcf59a-2e18-47ca-b616-407a77115533" + "9f2b17f4-ae51-41ae-8a7d-64de41d177c3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:9efcf59a-2e18-47ca-b616-407a77115533" + "WESTUS:20150813T074911Z:9f2b17f4-ae51-41ae-8a7d-64de41d177c3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus/starwindperhour/versions/8.1.7929?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cy9zdGFyd2luZHBlcmhvdXIvdmVyc2lvbnMvOC4xLjc5Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvirtualsan/skus/starwindperhour/versions/8.1.7929?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZpcnR1YWxzYW4vc2t1cy9zdGFyd2luZHBlcmhvdXIvdmVyc2lvbnMvOC4xLjc5Mjk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"starwind\",\r\n \"name\": \"starwindperhour\",\r\n \"product\": \"starwindvirtualsan\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.1.7929\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindperhour/Versions/8.1.7929\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"starwind\",\r\n \"name\": \"starwindperhour\",\r\n \"product\": \"starwindvirtualsan\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.1.7929\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvirtualsan/Skus/starwindperhour/Versions/8.1.7929\"\r\n}", "ResponseHeaders": { "Content-Length": [ "512" @@ -94741,7 +96716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff8e3b0b-81e5-43df-8117-e3aec8a70481" + "f53dfaca-d1ec-4e26-aba9-12ec54e719e0" ], "Cache-Control": [ "no-cache" @@ -94751,31 +96726,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12219" + "13074" ], "x-ms-correlation-request-id": [ - "df6a0256-497a-46b2-9621-c6f7d9a5525c" + "cab15a6f-3c02-4338-b147-25bfbf365f2b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:df6a0256-497a-46b2-9621-c6f7d9a5525c" + "WESTUS:20150813T074911Z:cab15a6f-3c02-4338-b147-25bfbf365f2b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:31 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvtl/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZ0bC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvtl/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZ0bC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindvtl\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvtl/Skus/starwindvtl\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwindvtl\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvtl/Skus/starwindvtl\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -94793,7 +96768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e696ec7-4a92-4829-9d3e-2333720557bf" + "c61fd2b3-1317-45ba-a593-a2c0384ca4b4" ], "Cache-Control": [ "no-cache" @@ -94803,31 +96778,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12218" + "13073" ], "x-ms-correlation-request-id": [ - "63dc3050-99a3-440f-a94e-7ce01d617e03" + "597b3268-83ea-44e2-9bc8-0c68bf95e7e9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:63dc3050-99a3-440f-a94e-7ce01d617e03" + "WESTUS:20150813T074911Z:597b3268-83ea-44e2-9bc8-0c68bf95e7e9" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvtl/skus/starwindvtl/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZ0bC9za3VzL3N0YXJ3aW5kdnRsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvtl/skus/starwindvtl/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZ0bC9za3VzL3N0YXJ3aW5kdnRsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.7929\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvtl/Skus/starwindvtl/Versions/8.0.7929\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.7929\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvtl/Skus/starwindvtl/Versions/8.0.7929\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -94845,7 +96820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9be9ea7-cc71-40c9-b41e-0a67f24053f8" + "462ac65c-0256-48b7-9af1-888b335b37c8" ], "Cache-Control": [ "no-cache" @@ -94855,31 +96830,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12217" + "13072" ], "x-ms-correlation-request-id": [ - "bbca6ff8-c9f0-41ae-8a01-0044db9cabdd" + "588a3d65-b62c-4994-8826-6520f42c3dee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212732Z:bbca6ff8-c9f0-41ae-8a01-0044db9cabdd" + "WESTUS:20150813T074911Z:588a3d65-b62c-4994-8826-6520f42c3dee" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvtl/skus/starwindvtl/versions/8.0.7929?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZ0bC9za3VzL3N0YXJ3aW5kdnRsL3ZlcnNpb25zLzguMC43OTI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/starwind/artifacttypes/vmimage/offers/starwindvtl/skus/starwindvtl/versions/8.0.7929?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RhcndpbmQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdGFyd2luZHZ0bC9za3VzL3N0YXJ3aW5kdnRsL3ZlcnNpb25zLzguMC43OTI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"starwind\",\r\n \"name\": \"starwindvtl\",\r\n \"product\": \"starwindvtl\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.7929\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvtl/Skus/starwindvtl/Versions/8.0.7929\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"starwind\",\r\n \"name\": \"starwindvtl\",\r\n \"product\": \"starwindvtl\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.7929\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind/ArtifactTypes/VMImage/Offers/starwindvtl/Skus/starwindvtl/Versions/8.0.7929\"\r\n}", "ResponseHeaders": { "Content-Length": [ "490" @@ -94897,7 +96872,111 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "158e7f80-fe79-4250-b54c-ba994c39f9c3" + "b2b3211d-66b8-4f13-80fd-cfe1e9ac437e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13071" + ], + "x-ms-correlation-request-id": [ + "1cdaeaff-56f0-4477-a08f-f2bc06ce553f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074911Z:1cdaeaff-56f0-4477-a08f-f2bc06ce553f" + ], + "Date": [ + "Thu, 13 Aug 2015 07:49:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive_carbon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "251" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7c6039f-b416-4d11-a48a-f1628d86ce17" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13070" + ], + "x-ms-correlation-request-id": [ + "a027aba5-c236-40ce-9ac0-eb50cedb6fe4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074911Z:a027aba5-c236-40ce-9ac0-eb50cedb6fe4" + ], + "Date": [ + "Thu, 13 Aug 2015 07:49:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive_carbon_10_users\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_10_users\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive_carbon_15plus_users\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_15plus_users\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive_carbon_5_users\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_5_users\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "873" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8c56f991-7c85-4a2f-928d-e7881a70c985" ], "Cache-Control": [ "no-cache" @@ -94907,34 +96986,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12216" + "13069" ], "x-ms-correlation-request-id": [ - "f664779b-9aed-4501-99dc-840eb29faed3" + "940aff69-2e58-4e7e-b900-174aa93b1bd1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:f664779b-9aed-4501-99dc-840eb29faed3" + "WESTUS:20150813T074911Z:940aff69-2e58-4e7e-b900-174aa93b1bd1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_10_users/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fMTBfdXNlcnMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive_carbon\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_10_users/Versions/1.3.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "251" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94949,7 +97028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac60703d-987e-4e9a-9d67-76ecbf6bd84f" + "101f4ce3-196d-43f3-893b-8e19cc8e2b64" ], "Cache-Control": [ "no-cache" @@ -94959,34 +97038,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12215" + "13068" ], "x-ms-correlation-request-id": [ - "535b945b-bd74-41f2-84ca-14150d081f12" + "dabe5a90-4a23-4321-a71c-5018963e42ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:535b945b-bd74-41f2-84ca-14150d081f12" + "WESTUS:20150813T074911Z:dabe5a90-4a23-4321-a71c-5018963e42ac" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_10_users/versions/1.3.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fMTBfdXNlcnMvdmVyc2lvbnMvMS4zLjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive_carbon_10_users\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_10_users\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive_carbon_15plus_users\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_15plus_users\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive_carbon_5_users\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_5_users\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"steelhive\",\r\n \"name\": \"steelhive_carbon_10_users\",\r\n \"product\": \"steelhive_carbon\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_10_users/Versions/1.3.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "873" + "522" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95001,7 +97080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f12fe78d-2c97-46dc-8ef8-a8ba0515a1a8" + "7b702b1a-52a5-471d-847b-9ee128592226" ], "Cache-Control": [ "no-cache" @@ -95011,34 +97090,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12214" + "13067" ], "x-ms-correlation-request-id": [ - "87f4f73b-70c0-4152-8577-5238a8e6d296" + "cc1d8371-5b62-49ff-9007-5e554aea6db1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:87f4f73b-70c0-4152-8577-5238a8e6d296" + "WESTUS:20150813T074911Z:cc1d8371-5b62-49ff-9007-5e554aea6db1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_10_users/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fMTBfdXNlcnMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_15plus_users/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fMTVwbHVzX3VzZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_10_users/Versions/1.3.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_15plus_users/Versions/1.3.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "286" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95053,7 +97132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60015995-1165-4535-8e89-6067a9557b73" + "f33044c7-11f3-45fd-a0c5-cde7b470d917" ], "Cache-Control": [ "no-cache" @@ -95063,34 +97142,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12213" + "13066" ], "x-ms-correlation-request-id": [ - "51eeb63b-a68a-4df4-801b-1262b157d7ec" + "9c118981-47c9-4587-9460-7ed5c98bec40" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:51eeb63b-a68a-4df4-801b-1262b157d7ec" + "WESTUS:20150813T074911Z:9c118981-47c9-4587-9460-7ed5c98bec40" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_10_users/versions/1.3.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fMTBfdXNlcnMvdmVyc2lvbnMvMS4zLjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_15plus_users/versions/1.3.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fMTVwbHVzX3VzZXJzL3ZlcnNpb25zLzEuMy4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"steelhive\",\r\n \"name\": \"steelhive_carbon_10_users\",\r\n \"product\": \"steelhive_carbon\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_10_users/Versions/1.3.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"steelhive\",\r\n \"name\": \"steelhive_carbon_15plus_users\",\r\n \"product\": \"steelhive_carbon\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_15plus_users/Versions/1.3.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "530" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95105,7 +97184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0632d0c6-7772-4276-99fa-a949d8cfff00" + "bbf11e1d-62c2-4fe0-895f-d514f483f08d" ], "Cache-Control": [ "no-cache" @@ -95115,34 +97194,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12212" + "13065" ], "x-ms-correlation-request-id": [ - "abbfbee7-202e-4d82-8e38-4de32a72413d" + "519c645e-36c4-44aa-b100-998c276275b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:abbfbee7-202e-4d82-8e38-4de32a72413d" + "WESTUS:20150813T074911Z:519c645e-36c4-44aa-b100-998c276275b0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_15plus_users/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fMTVwbHVzX3VzZXJzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_5_users/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fNV91c2Vycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_15plus_users/Versions/1.3.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_5_users/Versions/1.3.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "290" + "285" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95157,7 +97236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ec87f0d-7a31-4332-a8fe-c739dd2fdd6d" + "f8cc7a65-8dd4-47c7-bf39-1031ce109511" ], "Cache-Control": [ "no-cache" @@ -95167,34 +97246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12211" + "13064" ], "x-ms-correlation-request-id": [ - "bbd8ab34-8cea-4353-8b4f-513cab9d0ee5" + "ab678f8a-de86-4407-ae03-97c50b23d1c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:bbd8ab34-8cea-4353-8b4f-513cab9d0ee5" + "WESTUS:20150813T074912Z:ab678f8a-de86-4407-ae03-97c50b23d1c6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_15plus_users/versions/1.3.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fMTVwbHVzX3VzZXJzL3ZlcnNpb25zLzEuMy4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_5_users/versions/1.3.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fNV91c2Vycy92ZXJzaW9ucy8xLjMuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"steelhive\",\r\n \"name\": \"steelhive_carbon_15plus_users\",\r\n \"product\": \"steelhive_carbon\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_15plus_users/Versions/1.3.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"steelhive\",\r\n \"name\": \"steelhive_carbon_5_users\",\r\n \"product\": \"steelhive_carbon\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_5_users/Versions/1.3.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "530" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95209,7 +97288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14791718-757a-4d57-aa1f-91e61c536bc3" + "566a7003-9f96-42e6-9dcc-4e1e7f29e318" ], "Cache-Control": [ "no-cache" @@ -95219,34 +97298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12210" + "13063" ], "x-ms-correlation-request-id": [ - "c2b3033a-b682-4202-986f-9f00f31fc7f4" + "68564ba8-32b3-4815-8bf7-1aa8dad7e444" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:c2b3033a-b682-4202-986f-9f00f31fc7f4" + "WESTUS:20150813T074912Z:68564ba8-32b3-4815-8bf7-1aa8dad7e444" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_5_users/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fNV91c2Vycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stormshield/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Rvcm1zaGllbGQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_5_users/Versions/1.3.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield-network-security-for-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield/ArtifactTypes/VMImage/Offers/stormshield-network-security-for-cloud\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "285" + "297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95261,7 +97340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b1b485d-511e-4ed6-9db9-0f675524c8e4" + "4dcf9a77-f6a3-4248-9837-59c9d9cada5f" ], "Cache-Control": [ "no-cache" @@ -95271,34 +97350,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12209" + "13062" ], "x-ms-correlation-request-id": [ - "6303f051-8c6c-42e4-a1fe-9866a6ff0604" + "a02d328e-5ab2-4c1e-91fe-005a295f6478" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:6303f051-8c6c-42e4-a1fe-9866a6ff0604" + "WESTUS:20150813T074912Z:a02d328e-5ab2-4c1e-91fe-005a295f6478" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/steelhive/artifacttypes/vmimage/offers/steelhive_carbon/skus/steelhive_carbon_5_users/versions/1.3.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RlZWxoaXZlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3RlZWxoaXZlX2NhcmJvbi9za3VzL3N0ZWVsaGl2ZV9jYXJib25fNV91c2Vycy92ZXJzaW9ucy8xLjMuMj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stormshield/artifacttypes/vmimage/offers/stormshield-network-security-for-cloud/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Rvcm1zaGllbGQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdG9ybXNoaWVsZC1uZXR3b3JrLXNlY3VyaXR5LWZvci1jbG91ZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"steelhive\",\r\n \"name\": \"steelhive_carbon_5_users\",\r\n \"product\": \"steelhive_carbon\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.3.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive/ArtifactTypes/VMImage/Offers/steelhive_carbon/Skus/steelhive_carbon_5_users/Versions/1.3.2\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol-single-instance\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield/ArtifactTypes/VMImage/Offers/stormshield-network-security-for-cloud/Skus/byol-single-instance\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "520" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95313,7 +97392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee936b9a-6d45-4e80-b42e-aca914442452" + "e458e420-face-455a-b27d-d67906a46d7e" ], "Cache-Control": [ "no-cache" @@ -95323,34 +97402,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12208" + "13061" ], "x-ms-correlation-request-id": [ - "45bf1ad8-95a8-4e95-b0fc-09758e91fc64" + "fe0e6b8f-89be-43a4-a014-8f82ecd2846c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:45bf1ad8-95a8-4e95-b0fc-09758e91fc64" + "WESTUS:20150813T074912Z:fe0e6b8f-89be-43a4-a014-8f82ecd2846c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:32 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stormshield/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Rvcm1zaGllbGQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stormshield/artifacttypes/vmimage/offers/stormshield-network-security-for-cloud/skus/byol-single-instance/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Rvcm1zaGllbGQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdG9ybXNoaWVsZC1uZXR3b3JrLXNlY3VyaXR5LWZvci1jbG91ZC9za3VzL2J5b2wtc2luZ2xlLWluc3RhbmNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield-network-security-for-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield/ArtifactTypes/VMImage/Offers/stormshield-network-security-for-cloud\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield/ArtifactTypes/VMImage/Offers/stormshield-network-security-for-cloud/Skus/byol-single-instance/Versions/2.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "297" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95365,7 +97444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c26be8b9-e49c-403c-9930-574686d72ad1" + "0d915f0a-d049-4392-b32f-8d00324b5cd6" ], "Cache-Control": [ "no-cache" @@ -95375,34 +97454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12207" + "13060" ], "x-ms-correlation-request-id": [ - "2d8b2460-bf6f-4342-81be-c2264ef09d19" + "146298bd-f32c-40df-a6da-7c177354411e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:2d8b2460-bf6f-4342-81be-c2264ef09d19" + "WESTUS:20150813T074912Z:146298bd-f32c-40df-a6da-7c177354411e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stormshield/artifacttypes/vmimage/offers/stormshield-network-security-for-cloud/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Rvcm1zaGllbGQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdG9ybXNoaWVsZC1uZXR3b3JrLXNlY3VyaXR5LWZvci1jbG91ZC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stormshield/artifacttypes/vmimage/offers/stormshield-network-security-for-cloud/skus/byol-single-instance/versions/2.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Rvcm1zaGllbGQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdG9ybXNoaWVsZC1uZXR3b3JrLXNlY3VyaXR5LWZvci1jbG91ZC9za3VzL2J5b2wtc2luZ2xlLWluc3RhbmNlL3ZlcnNpb25zLzIuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"byol-single-instance\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield/ArtifactTypes/VMImage/Offers/stormshield-network-security-for-cloud/Skus/byol-single-instance\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"stormshield\",\r\n \"name\": \"byol-single-instance\",\r\n \"product\": \"stormshield-network-security-for-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield/ArtifactTypes/VMImage/Offers/stormshield-network-security-for-cloud/Skus/byol-single-instance/Versions/2.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "305" + "560" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95417,7 +97496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27bdc076-5510-4c79-af05-9515306a6db9" + "a870559e-b703-4020-849d-f9a62e102203" ], "Cache-Control": [ "no-cache" @@ -95427,34 +97506,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12206" + "13059" ], "x-ms-correlation-request-id": [ - "65f929b2-db20-4120-b3c8-610e9a2e8b61" + "96a85f4b-d4dd-402f-b585-e1bd7070dfbe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212733Z:65f929b2-db20-4120-b3c8-610e9a2e8b61" + "WESTUS:20150813T074912Z:96a85f4b-d4dd-402f-b585-e1bd7070dfbe" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stormshield/artifacttypes/vmimage/offers/stormshield-network-security-for-cloud/skus/byol-single-instance/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Rvcm1zaGllbGQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdG9ybXNoaWVsZC1uZXR3b3JrLXNlY3VyaXR5LWZvci1jbG91ZC9za3VzL2J5b2wtc2luZ2xlLWluc3RhbmNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/stratalux/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RyYXRhbHV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield/ArtifactTypes/VMImage/Offers/stormshield-network-security-for-cloud/Skus/byol-single-instance/Versions/2.1.0\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "305" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95469,7 +97548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8957d47e-c013-4216-9779-2c4ad8b87998" + "8195eaa8-8894-4e12-9785-7419e69e536c" ], "Cache-Control": [ "no-cache" @@ -95479,34 +97558,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12205" + "13058" ], "x-ms-correlation-request-id": [ - "eede39b1-3041-4ceb-b1d0-c403309bb023" + "b92e4a17-7c76-4eb9-93bd-d1506e550a5c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:eede39b1-3041-4ceb-b1d0-c403309bb023" + "WESTUS:20150813T074912Z:b92e4a17-7c76-4eb9-93bd-d1506e550a5c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stormshield/artifacttypes/vmimage/offers/stormshield-network-security-for-cloud/skus/byol-single-instance/versions/2.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Rvcm1zaGllbGQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9zdG9ybXNoaWVsZC1uZXR3b3JrLXNlY3VyaXR5LWZvci1jbG91ZC9za3VzL2J5b2wtc2luZ2xlLWluc3RhbmNlL3ZlcnNpb25zLzIuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sunview-software/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Vudmlldy1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"stormshield\",\r\n \"name\": \"byol-single-instance\",\r\n \"product\": \"stormshield-network-security-for-cloud\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield/ArtifactTypes/VMImage/Offers/stormshield-network-security-for-cloud/Skus/byol-single-instance/Versions/2.1.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview_changegear_change_management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software/ArtifactTypes/VMImage/Offers/sunview_changegear_change_management\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "560" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95521,7 +97600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0da116fb-7d96-4c53-a341-18529cc166b7" + "3b457347-9650-4547-bd90-0cc0dbcad115" ], "Cache-Control": [ "no-cache" @@ -95531,34 +97610,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12204" + "13057" ], "x-ms-correlation-request-id": [ - "3127b564-48d8-4d03-b1e5-93359892191a" + "b457ae76-0fe5-4035-ba9f-d672636aed49" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:3127b564-48d8-4d03-b1e5-93359892191a" + "WESTUS:20150813T074912Z:b457ae76-0fe5-4035-ba9f-d672636aed49" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/stratalux/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3RyYXRhbHV4L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sunview-software/artifacttypes/vmimage/offers/sunview_changegear_change_management/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Vudmlldy1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview_changegear_change_management_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software/ArtifactTypes/VMImage/Offers/sunview_changegear_change_management/Skus/sunview_changegear_change_management_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "350" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95573,7 +97652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "054fa74c-13b2-4f08-9f02-6a26a5147ce2" + "63ac690e-f1c5-458b-8565-8a1d56c4fe2d" ], "Cache-Control": [ "no-cache" @@ -95583,34 +97662,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12203" + "13056" ], "x-ms-correlation-request-id": [ - "20da8f21-9537-4e64-bdcf-156ff92b5a8e" + "4cf0121c-4b09-4e30-87ad-3ec37e5bfd96" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:20da8f21-9537-4e64-bdcf-156ff92b5a8e" + "WESTUS:20150813T074912Z:4cf0121c-4b09-4e30-87ad-3ec37e5bfd96" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sunview-software/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Vudmlldy1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sunview-software/artifacttypes/vmimage/offers/sunview_changegear_change_management/skus/sunview_changegear_change_management_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Vudmlldy1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudC9za3VzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudF9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview_changegear_change_management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software/ArtifactTypes/VMImage/Offers/sunview_changegear_change_management\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software/ArtifactTypes/VMImage/Offers/sunview_changegear_change_management/Skus/sunview_changegear_change_management_byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "298" + "329" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95625,7 +97704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df17fd07-e9e8-420e-a0eb-56df5a8633b9" + "dccef6b5-4051-419c-bbf8-3923757eace4" ], "Cache-Control": [ "no-cache" @@ -95635,34 +97714,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12202" + "13055" ], "x-ms-correlation-request-id": [ - "110edf8f-2ed8-4b6c-91f7-06ee77f3770e" + "f8792c96-dd5f-4982-8b22-c866d33844f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:110edf8f-2ed8-4b6c-91f7-06ee77f3770e" + "WESTUS:20150813T074912Z:f8792c96-dd5f-4982-8b22-c866d33844f4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sunview-software/artifacttypes/vmimage/offers/sunview_changegear_change_management/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Vudmlldy1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/sunview-software/artifacttypes/vmimage/offers/sunview_changegear_change_management/skus/sunview_changegear_change_management_byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Vudmlldy1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudC9za3VzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudF9ieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview_changegear_change_management_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software/ArtifactTypes/VMImage/Offers/sunview_changegear_change_management/Skus/sunview_changegear_change_management_byol\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sunview-software\",\r\n \"name\": \"sunview_changegear_change_management_byol\",\r\n \"product\": \"sunview_changegear_change_management\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software/ArtifactTypes/VMImage/Offers/sunview_changegear_change_management/Skus/sunview_changegear_change_management_byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "350" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95677,7 +97756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a04e71c-36f1-46fc-9c9e-b97fc45f8d41" + "0e26d3d5-567f-4e46-89bc-6e026c4de350" ], "Cache-Control": [ "no-cache" @@ -95687,34 +97766,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12201" + "13054" ], "x-ms-correlation-request-id": [ - "57731a08-94d4-4e1e-90a0-5fc91e39e6ba" + "ebd67693-ab85-42ce-bece-6176cd044478" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:57731a08-94d4-4e1e-90a0-5fc91e39e6ba" + "WESTUS:20150813T074913Z:ebd67693-ab85-42ce-bece-6176cd044478" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sunview-software/artifacttypes/vmimage/offers/sunview_changegear_change_management/skus/sunview_changegear_change_management_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Vudmlldy1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudC9za3VzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudF9ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software/ArtifactTypes/VMImage/Offers/sunview_changegear_change_management/Skus/sunview_changegear_change_management_byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openSUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES-HPC\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES-HPC-Priority\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES-Priority\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES-SAPCAL\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "329" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95729,7 +97808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "605bdd07-569f-479d-afd2-10d83f8130e3" + "9606dc55-5812-41e7-a35a-728b22299479" ], "Cache-Control": [ "no-cache" @@ -95739,34 +97818,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12200" + "13053" ], "x-ms-correlation-request-id": [ - "4ee9ce2e-9f4d-45a0-b475-7724c6ebe7dc" + "e2b4da08-4f9b-4ed8-86f3-5b43ad0e385e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:4ee9ce2e-9f4d-45a0-b475-7724c6ebe7dc" + "WESTUS:20150813T074913Z:e2b4da08-4f9b-4ed8-86f3-5b43ad0e385e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/sunview-software/artifacttypes/vmimage/offers/sunview_changegear_change_management/skus/sunview_changegear_change_management_byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvc3Vudmlldy1zb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudC9za3VzL3N1bnZpZXdfY2hhbmdlZ2Vhcl9jaGFuZ2VfbWFuYWdlbWVudF9ieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"sunview-software\",\r\n \"name\": \"sunview_changegear_change_management_byol\",\r\n \"product\": \"sunview_changegear_change_management\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software/ArtifactTypes/VMImage/Offers/sunview_changegear_change_management/Skus/sunview_changegear_change_management_byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "610" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95781,7 +97860,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ad29a9e-d604-4656-8d3c-8e276da95215" + "bf593c5e-8b78-45d2-8697-4f9b5daf79c7" ], "Cache-Control": [ "no-cache" @@ -95791,34 +97870,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12199" + "13052" ], "x-ms-correlation-request-id": [ - "c47fb14a-250f-4ef2-bfb9-9aaaac68714a" + "8dbd3fc2-a638-49f6-9ff0-c32c577eba0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:c47fb14a-250f-4ef2-bfb9-9aaaac68714a" + "WESTUS:20150813T074913Z:8dbd3fc2-a638-49f6-9ff0-c32c577eba0f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:33 GMT" + "Thu, 13 Aug 2015 07:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openSUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES-HPC\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES-HPC-Priority\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES-Priority\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SLES-SAPCAL\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.1/Versions/2015.01.05\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1391" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95833,7 +97912,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab199697-d03f-4d43-9f3c-d24fdd7f7f04" + "dc9f2ba3-ea66-43bd-a55c-b74c1a4a82e8" ], "Cache-Control": [ "no-cache" @@ -95843,34 +97922,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12198" + "13051" ], "x-ms-correlation-request-id": [ - "78a39adf-155d-4695-89cd-d5e7e05c34ca" + "e450387c-5392-4cb0-a6d9-027f15022555" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:78a39adf-155d-4695-89cd-d5e7e05c34ca" + "WESTUS:20150813T074913Z:e450387c-5392-4cb0-a6d9-027f15022555" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.1/versions/2015.01.05?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMS92ZXJzaW9ucy8yMDE1LjAxLjA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"13.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.1/Versions/2015.01.05\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "469" + "361" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95885,7 +97964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f1db3054-cf9d-47aa-ba57-8fd7c5a4db98" + "8e5dc88e-c8b0-4505-9ab5-efdb821d1c8e" ], "Cache-Control": [ "no-cache" @@ -95895,34 +97974,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12197" + "13050" ], "x-ms-correlation-request-id": [ - "946be9b9-f6ce-4da2-af3f-fb98e40725e8" + "f2707674-e9d0-4af0-87b2-b1c9a96398a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212734Z:946be9b9-f6ce-4da2-af3f-fb98e40725e8" + "WESTUS:20150813T074913Z:f2707674-e9d0-4af0-87b2-b1c9a96398a0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.1/Versions/2015.01.05\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2014.12.16\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2/Versions/2014.12.16\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2/Versions/2015.05.12\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "262" + "521" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95937,7 +98016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3a24aa5-28d2-4a4a-b67d-db01806f46c5" + "8f831b0c-d601-461a-8fca-a0a9bc44304c" ], "Cache-Control": [ "no-cache" @@ -95947,31 +98026,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12196" + "13049" ], "x-ms-correlation-request-id": [ - "2fd143c5-0c53-4386-a85b-dcaf1f2bcc78" + "cddc16e2-2a63-40bc-8c82-953110954b7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:2fd143c5-0c53-4386-a85b-dcaf1f2bcc78" + "WESTUS:20150813T074913Z:cddc16e2-2a63-40bc-8c82-953110954b7e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.1/versions/2015.01.05?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMS92ZXJzaW9ucy8yMDE1LjAxLjA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.2/versions/2014.12.16?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMi92ZXJzaW9ucy8yMDE0LjEyLjE2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.1/Versions/2015.01.05\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2014.12.16\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2/Versions/2014.12.16\"\r\n}", "ResponseHeaders": { "Content-Length": [ "361" @@ -95989,7 +98068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "657f9f78-f842-452f-b590-57cf276fc7f6" + "8f70fce0-bb1c-412c-a18c-7185a6311951" ], "Cache-Control": [ "no-cache" @@ -95999,34 +98078,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12195" + "13048" ], "x-ms-correlation-request-id": [ - "75f02593-9ec7-447f-b286-da8edcf60607" + "9cb5de52-988a-4efe-9ea2-b8aae758abb5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:75f02593-9ec7-447f-b286-da8edcf60607" + "WESTUS:20150813T074913Z:9cb5de52-988a-4efe-9ea2-b8aae758abb5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.2/versions/2015.05.12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMi92ZXJzaW9ucy8yMDE1LjA1LjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2014.12.16\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2/Versions/2014.12.16\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2/Versions/2015.05.12\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2/Versions/2015.05.12\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "521" + "361" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96041,7 +98120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb55c76d-c655-4cab-aa65-5336495f648b" + "c78fc068-bc7c-4b72-9bbf-4988e1654c05" ], "Cache-Control": [ "no-cache" @@ -96051,34 +98130,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12194" + "13047" ], "x-ms-correlation-request-id": [ - "9ba39a68-de7a-4b6b-bb1c-036eaa082846" + "3fb415d5-36b7-42dc-a538-34f19c2c1475" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:9ba39a68-de7a-4b6b-bb1c-036eaa082846" + "WESTUS:20150813T074914Z:3fb415d5-36b7-42dc-a538-34f19c2c1475" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.2/versions/2014.12.16?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMi92ZXJzaW9ucy8yMDE0LjEyLjE2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2014.12.16\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2/Versions/2014.12.16\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "361" + "694" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96093,7 +98172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d72e1fda-1062-4bdd-80a9-699677b5d66d" + "2d484277-5f2f-460d-830c-8ab54c896496" ], "Cache-Control": [ "no-cache" @@ -96103,34 +98182,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12193" + "13046" ], "x-ms-correlation-request-id": [ - "39520f2c-200f-477b-840e-de47b1c5b093" + "d50e2179-62a7-4887-a442-750673108ec5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:39520f2c-200f-477b-840e-de47b1c5b093" + "WESTUS:20150813T074914Z:d50e2179-62a7-4887-a442-750673108ec5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE/skus/13.2/versions/2015.05.12?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL29wZW5TVVNFL3NrdXMvMTMuMi92ZXJzaW9ucy8yMDE1LjA1LjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP3/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE/Skus/13.2/Versions/2015.05.12\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.01.27\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.03.30\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "361" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96145,7 +98224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3db0c5dd-59f8-4158-9fac-896a30df5803" + "7bbf3362-c73d-422e-b747-e6418da33d65" ], "Cache-Control": [ "no-cache" @@ -96155,34 +98234,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12192" + "13045" ], "x-ms-correlation-request-id": [ - "743f9ff1-33e9-436a-ae9d-d6ffe9447a84" + "e63a6bf4-d115-4c44-b0e9-7585425eee5c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:743f9ff1-33e9-436a-ae9d-d6ffe9447a84" + "WESTUS:20150813T074914Z:e63a6bf4-d115-4c44-b0e9-7585425eee5c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP3/versions/2015.01.27?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMS4yNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.01.27\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96197,7 +98276,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b43e7df-be15-4783-bc73-97024da82595" + "f16f70b2-112a-4178-88ee-e86ade0a7170" ], "Cache-Control": [ "no-cache" @@ -96207,34 +98286,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12191" + "13044" ], "x-ms-correlation-request-id": [ - "3cd3de9b-7da8-422d-875f-393ce6ee997d" + "c901a7d3-8634-4026-8f49-8d99a830de4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:3cd3de9b-7da8-422d-875f-393ce6ee997d" + "WESTUS:20150813T074914Z:c901a7d3-8634-4026-8f49-8d99a830de4e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP3/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP3/versions/2015.03.30?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMy4zMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.01.05\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.01.27\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.03.30\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.03.30\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "774" + "359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96249,7 +98328,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a45fae77-8cee-4add-b590-b88ca9c27b95" + "a144b389-f586-49d9-8af4-72feddffbfbd" ], "Cache-Control": [ "no-cache" @@ -96259,34 +98338,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12190" + "13043" ], "x-ms-correlation-request-id": [ - "87f4732b-0c93-4fd7-b6dc-4f03ddaa0421" + "a0ef438c-145b-4944-8e27-dceb17f839e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:87f4732b-0c93-4fd7-b6dc-4f03ddaa0421" + "WESTUS:20150813T074914Z:a0ef438c-145b-4944-8e27-dceb17f839e1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP3/versions/2015.01.05?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMS4wNT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.01.05\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2015.07.14\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "359" + "260" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96301,7 +98380,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d967ad1-6258-4ee3-81fa-4063766008ac" + "89a22e9f-9ada-439a-be66-c6bc25511b2e" ], "Cache-Control": [ "no-cache" @@ -96311,31 +98390,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12189" + "13042" ], "x-ms-correlation-request-id": [ - "02dba9ba-8369-4f18-bb1f-0c29661e080d" + "b8d12bbf-2eda-4256-b6fa-8e5a4375b955" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:02dba9ba-8369-4f18-bb1f-0c29661e080d" + "WESTUS:20150813T074914Z:b8d12bbf-2eda-4256-b6fa-8e5a4375b955" ], "Date": [ - "Wed, 05 Aug 2015 21:27:34 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP3/versions/2015.01.27?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMS4yNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2015.07.14?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDQvdmVyc2lvbnMvMjAxNS4wNy4xND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.01.27\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2015.07.14\"\r\n}", "ResponseHeaders": { "Content-Length": [ "359" @@ -96353,7 +98432,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b7cfcd6f-82ec-4130-bd24-60bf7d3a2014" + "c589980b-c789-48ef-a935-029d315b753a" ], "Cache-Control": [ "no-cache" @@ -96363,34 +98442,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12188" + "13041" ], "x-ms-correlation-request-id": [ - "75576c13-3ee7-4041-974a-3842a31119e1" + "ee88cd5c-2bca-4dcb-886e-cc7b9791eca0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:75576c13-3ee7-4041-974a-3842a31119e1" + "WESTUS:20150813T074914Z:ee88cd5c-2bca-4dcb-886e-cc7b9791eca0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP3/versions/2015.03.30?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMy4zMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP3/Versions/2015.03.30\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.01.05\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.02.13\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.02.13\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.03.30\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.05.12\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "359" + "1015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96405,7 +98484,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "414af20f-2fa9-4da3-9a49-ec9f7f27bda6" + "aa31e4fb-5d5d-4bc5-87f9-e8cc5a506385" ], "Cache-Control": [ "no-cache" @@ -96415,34 +98494,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12187" + "13040" ], "x-ms-correlation-request-id": [ - "5ce15d8e-a220-486a-9129-6acc24fc7417" + "fa535505-6135-4e32-b44d-7103fbb7df0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212735Z:5ce15d8e-a220-486a-9129-6acc24fc7417" + "WESTUS:20150813T074914Z:fa535505-6135-4e32-b44d-7103fbb7df0f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions/2015.01.05?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAxLjA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2015.07.14\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.01.05\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "260" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96457,7 +98536,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "501516de-e9c6-4217-a8b4-5277bd225286" + "d51010fb-0cc0-4a2b-9585-fbf6718459c9" ], "Cache-Control": [ "no-cache" @@ -96467,34 +98546,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12186" + "13039" ], "x-ms-correlation-request-id": [ - "41d80bc7-335e-4df6-84d7-1ba8995fee77" + "3d89ae1d-83a6-495a-b5e6-62bcd3f7670e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:41d80bc7-335e-4df6-84d7-1ba8995fee77" + "WESTUS:20150813T074914Z:3d89ae1d-83a6-495a-b5e6-62bcd3f7670e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2015.07.14?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMS1TUDQvdmVyc2lvbnMvMjAxNS4wNy4xND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions/2015.02.13?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAyLjEzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2015.07.14\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.02.13\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.02.13\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "359" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96509,7 +98588,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ca2c547-0df2-4cf9-8802-e98b94d938cb" + "9ff74d8b-ce21-45d4-9bea-97427734e0b7" ], "Cache-Control": [ "no-cache" @@ -96519,34 +98598,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12185" + "13038" ], "x-ms-correlation-request-id": [ - "84c1873f-db15-4eb5-b875-c18ca7ccc612" + "f5e52062-4b96-4227-bc95-c264fa8a5c7a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:84c1873f-db15-4eb5-b875-c18ca7ccc612" + "WESTUS:20150813T074914Z:f5e52062-4b96-4227-bc95-c264fa8a5c7a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions/2015.03.30?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAzLjMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.01.05\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.02.13\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.02.13\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.03.30\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.05.12\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.03.30\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1015" + "355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96561,7 +98640,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "376fc42b-3785-4e4a-a64a-347aeac884b1" + "7559a03d-c768-4232-9b91-9cfad885f0a7" ], "Cache-Control": [ "no-cache" @@ -96571,31 +98650,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12184" + "13037" ], "x-ms-correlation-request-id": [ - "2beec066-b8d1-414d-9dae-e010a012ffb1" + "cb292e53-50c7-417f-aa13-746669db2828" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:2beec066-b8d1-414d-9dae-e010a012ffb1" + "WESTUS:20150813T074914Z:cb292e53-50c7-417f-aa13-746669db2828" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions/2015.01.05?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAxLjA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions/2015.05.12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjA1LjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.01.05\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.05.12\"\r\n}", "ResponseHeaders": { "Content-Length": [ "355" @@ -96613,7 +98692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "960a00ca-2fe9-46e1-a463-f8e0c8258f68" + "3b5c3b7f-aeaa-4748-90d4-ca85e9f480a5" ], "Cache-Control": [ "no-cache" @@ -96623,34 +98702,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12183" + "13036" ], "x-ms-correlation-request-id": [ - "de2f6929-f0b7-4766-9707-c10148e92b24" + "b70c22c6-290f-46c5-b89b-f2d9c0be8be3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:de2f6929-f0b7-4766-9707-c10148e92b24" + "WESTUS:20150813T074914Z:b70c22c6-290f-46c5-b89b-f2d9c0be8be3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions/2015.02.13?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAyLjEzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.02.13\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.02.13\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "355" + "232" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96665,7 +98744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c020f37-edb2-4371-9f42-8a4f49f63a1f" + "991feead-bb87-4736-b0f9-f0074bdfc3b5" ], "Cache-Control": [ "no-cache" @@ -96675,34 +98754,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12182" + "13035" ], "x-ms-correlation-request-id": [ - "b6b91c67-dfa1-44e0-a0a8-c87b7fab6d1b" + "4589e67e-972a-4352-91cd-1550e26c9683" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:b6b91c67-dfa1-44e0-a0a8-c87b7fab6d1b" + "WESTUS:20150813T074915Z:4589e67e-972a-4352-91cd-1550e26c9683" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions/2015.03.30?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAzLjMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDL3NrdXMvMTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.03.30\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12/Versions/2015.07.08\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "355" + "260" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96717,7 +98796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1daaf737-993b-4ffa-9d6d-0cc7a581be87" + "6ed92c1c-0a05-4366-aaaa-2827f3c0458e" ], "Cache-Control": [ "no-cache" @@ -96727,34 +98806,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12181" + "13034" ], "x-ms-correlation-request-id": [ - "0d1036d1-816e-4550-bb37-73c6132dc0c6" + "21b775bd-e51f-4d3e-8d5c-84a45740d8ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:0d1036d1-816e-4550-bb37-73c6132dc0c6" + "WESTUS:20150813T074915Z:21b775bd-e51f-4d3e-8d5c-84a45740d8ad" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12/versions/2015.05.12?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjA1LjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12/versions/2015.07.08?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDL3NrdXMvMTIvdmVyc2lvbnMvMjAxNS4wNy4wOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12/Versions/2015.05.12\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12/Versions/2015.07.08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "355" + "359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96769,7 +98848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10937f2a-a325-490c-9249-952bcd3b7948" + "aa0c88ae-ddba-4798-b529-aba6491b32d9" ], "Cache-Control": [ "no-cache" @@ -96779,34 +98858,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12180" + "13033" ], "x-ms-correlation-request-id": [ - "765fad3d-4ae3-4c71-b467-3d373ba9ab2b" + "33e64fbe-709b-4b7d-9e07-b122be1eb267" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:765fad3d-4ae3-4c71-b467-3d373ba9ab2b" + "WESTUS:20150813T074915Z:33e64fbe-709b-4b7d-9e07-b122be1eb267" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDLVByaW9yaXR5L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "232" + "241" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96821,7 +98900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "383247ea-4c7b-4ff9-a60d-28453052c319" + "cac1b3a1-c52e-47e3-a44e-b835c969bcf1" ], "Cache-Control": [ "no-cache" @@ -96831,34 +98910,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12179" + "13032" ], "x-ms-correlation-request-id": [ - "2417c661-7a62-431e-b94d-273d2b67ae2c" + "29db6a79-bb4c-4805-ba72-bc2a94e99818" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:2417c661-7a62-431e-b94d-273d2b67ae2c" + "WESTUS:20150813T074915Z:29db6a79-bb4c-4805-ba72-bc2a94e99818" ], "Date": [ - "Wed, 05 Aug 2015 21:27:35 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDL3NrdXMvMTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDLVByaW9yaXR5L3NrdXMvMTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12/Versions/2015.07.08\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12/Versions/2015.07.08\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "260" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96873,7 +98952,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f3ad89e-c24e-454a-945f-e0b294f61f0a" + "511d0e93-57ad-4f83-9711-8521b0f78e80" ], "Cache-Control": [ "no-cache" @@ -96883,34 +98962,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12178" + "13031" ], "x-ms-correlation-request-id": [ - "b014c880-ac7d-4fc8-beed-030aa687928b" + "f3f7d7bd-f99a-4df2-b556-f4acd213356e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:b014c880-ac7d-4fc8-beed-030aa687928b" + "WESTUS:20150813T074915Z:f3f7d7bd-f99a-4df2-b556-f4acd213356e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12/versions/2015.07.08?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDL3NrdXMvMTIvdmVyc2lvbnMvMjAxNS4wNy4wOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12/versions/2015.07.08?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDLVByaW9yaXR5L3NrdXMvMTIvdmVyc2lvbnMvMjAxNS4wNy4wOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12/Versions/2015.07.08\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12/Versions/2015.07.08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "359" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96925,7 +99004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81310b81-ed42-4725-81bc-5edf69ac4c75" + "ae471e23-2d17-49db-819c-543408a90f64" ], "Cache-Control": [ "no-cache" @@ -96935,34 +99014,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12177" + "13030" ], "x-ms-correlation-request-id": [ - "1a1e1ae1-0b08-4542-a408-0310e2b11a15" + "5e402633-0cb0-447d-9374-3b0db387dec0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212736Z:1a1e1ae1-0b08-4542-a408-0310e2b11a15" + "WESTUS:20150813T074915Z:5e402633-0cb0-447d-9374-3b0db387dec0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDLVByaW9yaXR5L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "241" + "721" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96977,7 +99056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54ca3419-2070-4af8-b97d-58f89d33648f" + "30cd4e4d-3610-4363-a87a-c4c2b29a0679" ], "Cache-Control": [ "no-cache" @@ -96987,34 +99066,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12176" + "13029" ], "x-ms-correlation-request-id": [ - "d357f3ef-da91-47ff-a36a-138111b0c8ea" + "627660df-9c28-460c-a498-b54eaef6429e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:d357f3ef-da91-47ff-a36a-138111b0c8ea" + "WESTUS:20150813T074915Z:627660df-9c28-460c-a498-b54eaef6429e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDLVByaW9yaXR5L3NrdXMvMTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP3/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12/Versions/2015.07.08\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2015.01.27\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2015.03.30\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "269" + "535" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97029,7 +99108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e63b6249-deae-45a9-ac40-0ea92d7384cd" + "bf6d9dc9-2fad-412f-a929-8d7ac636d49f" ], "Cache-Control": [ "no-cache" @@ -97039,31 +99118,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12175" + "13028" ], "x-ms-correlation-request-id": [ - "da6772e2-daa0-403f-a4eb-a119b1317389" + "143c7790-b186-4d07-b449-9315f4aaff3d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:da6772e2-daa0-403f-a4eb-a119b1317389" + "WESTUS:20150813T074915Z:143c7790-b186-4d07-b449-9315f4aaff3d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12/versions/2015.07.08?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtSFBDLVByaW9yaXR5L3NrdXMvMTIvdmVyc2lvbnMvMjAxNS4wNy4wOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP3/versions/2015.01.27?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMS4yNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12/Versions/2015.07.08\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2015.01.27\"\r\n}", "ResponseHeaders": { "Content-Length": [ "368" @@ -97081,7 +99160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef386720-bdd9-4228-a41e-82fd7fea7ad5" + "8567fcfe-9060-4589-bde0-f49612ba1a18" ], "Cache-Control": [ "no-cache" @@ -97091,34 +99170,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12174" + "13027" ], "x-ms-correlation-request-id": [ - "caaf764f-f8fe-4fe8-9456-3eb1c97a326d" + "ffa8bc6e-5a80-49be-9c35-e57522754247" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:caaf764f-f8fe-4fe8-9456-3eb1c97a326d" + "WESTUS:20150813T074915Z:ffa8bc6e-5a80-49be-9c35-e57522754247" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP3/versions/2015.03.30?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMy4zMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2015.03.30\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "721" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97133,7 +99212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f343b2dc-74a0-477c-bc8b-4eab4e79d7b5" + "eca04a62-d2bd-4e66-a65f-f99b091fdd92" ], "Cache-Control": [ "no-cache" @@ -97143,34 +99222,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12173" + "13026" ], "x-ms-correlation-request-id": [ - "e8908089-4f69-488d-adcd-c39f5f80354c" + "00136076-8d9d-4cbc-9bc1-3f24eb444a04" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:e8908089-4f69-488d-adcd-c39f5f80354c" + "WESTUS:20150813T074915Z:00136076-8d9d-4cbc-9bc1-3f24eb444a04" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP3/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2014.11.06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2014.11.06\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2015.01.27\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2015.03.30\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2015.07.14\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "801" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97185,7 +99264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a8eb3e31-b23c-4391-9a52-c43079bb941b" + "41955138-1f49-4247-8cbc-34e001185bb1" ], "Cache-Control": [ "no-cache" @@ -97195,31 +99274,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12172" + "13025" ], "x-ms-correlation-request-id": [ - "6c06f9ca-43ae-4df6-a42f-375a78dcf838" + "b311279f-0659-4cf3-a253-7dae66e0cfa5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:6c06f9ca-43ae-4df6-a42f-375a78dcf838" + "WESTUS:20150813T074915Z:b311279f-0659-4cf3-a253-7dae66e0cfa5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP3/versions/2014.11.06?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNC4xMS4wNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2015.07.14?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDQvdmVyc2lvbnMvMjAxNS4wNy4xND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2014.11.06\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2014.11.06\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2015.07.14\"\r\n}", "ResponseHeaders": { "Content-Length": [ "368" @@ -97237,7 +99316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e672fa4-3cfe-44ed-badd-78acd962d563" + "dc09fbc2-7d6b-4b9c-bcf6-20dd7a7bae95" ], "Cache-Control": [ "no-cache" @@ -97247,34 +99326,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12171" + "13024" ], "x-ms-correlation-request-id": [ - "28f0579a-67cd-44db-8ef2-1e9a871f213b" + "e125fb24-91e8-4e46-a94b-22963669a9a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:28f0579a-67cd-44db-8ef2-1e9a871f213b" + "WESTUS:20150813T074916Z:e125fb24-91e8-4e46-a94b-22963669a9a0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP3/versions/2015.01.27?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMS4yNz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2015.01.27\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.01.05\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.02.13\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.02.13\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.03.30\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.05.12\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "368" + "1051" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97289,7 +99368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10cad11a-f595-4084-884b-c9b58c176b26" + "6200ff61-76fa-4fbc-ba3d-a255213a4798" ], "Cache-Control": [ "no-cache" @@ -97299,34 +99378,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12170" + "13023" ], "x-ms-correlation-request-id": [ - "91b63fb8-ff4b-4c6f-8630-b50f6b0511f5" + "be24cad8-47ed-4d30-a24d-def6d07caa52" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:91b63fb8-ff4b-4c6f-8630-b50f6b0511f5" + "WESTUS:20150813T074916Z:be24cad8-47ed-4d30-a24d-def6d07caa52" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP3/versions/2015.03.30?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDMvdmVyc2lvbnMvMjAxNS4wMy4zMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions/2015.01.05?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAxLjA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP3/Versions/2015.03.30\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.01.05\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "368" + "364" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97341,7 +99420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d86aa70d-8225-488c-9471-493d02900c22" + "70b254da-4e22-4212-840d-b8a7ec9baaad" ], "Cache-Control": [ "no-cache" @@ -97351,34 +99430,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12169" + "13022" ], "x-ms-correlation-request-id": [ - "a2bd9c50-1c1b-4002-a02d-de3227c5ed4d" + "fa6cb1de-24d0-4388-9cb5-b61b37718125" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:a2bd9c50-1c1b-4002-a02d-de3227c5ed4d" + "WESTUS:20150813T074916Z:fa6cb1de-24d0-4388-9cb5-b61b37718125" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions/2015.02.13?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAyLjEzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2015.07.14\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.02.13\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.02.13\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "269" + "364" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97393,7 +99472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69a35527-916e-45ff-8c78-484edd05118b" + "d826db1c-f513-4b28-9a08-226701e47c40" ], "Cache-Control": [ "no-cache" @@ -97403,34 +99482,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12168" + "13021" ], "x-ms-correlation-request-id": [ - "76c64333-1add-42f5-ae4f-799d2df86ffc" + "818f6b01-e9ef-4edf-905b-150a9851e3cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:76c64333-1add-42f5-ae4f-799d2df86ffc" + "WESTUS:20150813T074916Z:818f6b01-e9ef-4edf-905b-150a9851e3cd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:36 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2015.07.14?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMS1TUDQvdmVyc2lvbnMvMjAxNS4wNy4xND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions/2015.03.30?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAzLjMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.07.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2015.07.14\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.03.30\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "368" + "364" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97445,7 +99524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0d96c22-19f7-4e19-9bf8-71df741ea8b2" + "7ca34986-3430-4598-8a7c-d61da9dc8289" ], "Cache-Control": [ "no-cache" @@ -97455,34 +99534,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12167" + "13020" ], "x-ms-correlation-request-id": [ - "4bcacc9a-c093-4ca8-8a54-c090c3e3a53c" + "ac55a8cf-4433-458c-a43e-84fc9b096714" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212737Z:4bcacc9a-c093-4ca8-8a54-c090c3e3a53c" + "WESTUS:20150813T074916Z:ac55a8cf-4433-458c-a43e-84fc9b096714" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions/2015.05.12?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjA1LjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.01.05\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.02.13\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.02.13\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.03.30\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.05.12\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.05.12\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1051" + "364" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97497,7 +99576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51733900-63c9-4313-b835-eeb7ded050ee" + "c57be08f-ff94-4cf2-8bd8-8e99e6d6977b" ], "Cache-Control": [ "no-cache" @@ -97507,34 +99586,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12166" + "13019" ], "x-ms-correlation-request-id": [ - "8e63acc4-bf22-4ded-bb34-84da21707edc" + "c32bb63c-2b61-416c-96a9-eb4d5188a4f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:8e63acc4-bf22-4ded-bb34-84da21707edc" + "WESTUS:20150813T074916Z:c32bb63c-2b61-416c-96a9-eb4d5188a4f4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions/2015.01.05?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAxLjA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.01.05\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "364" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97549,7 +99628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c1d85db-56e8-462c-8548-8ff47f4d3ac2" + "127a2e76-259e-42e0-8b68-652b4d427e3e" ], "Cache-Control": [ "no-cache" @@ -97559,34 +99638,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12165" + "13018" ], "x-ms-correlation-request-id": [ - "74596239-2162-449e-8327-2f764b8ffb3e" + "a52a4b00-3cbe-4718-accd-b8c8dd072a69" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:74596239-2162-449e-8327-2f764b8ffb3e" + "WESTUS:20150813T074916Z:a52a4b00-3cbe-4718-accd-b8c8dd072a69" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions/2015.02.13?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAyLjEzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP3/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXMvMTEtU1AzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.02.13\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.02.13\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP3/Versions/2015.01.27\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "364" + "267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97601,7 +99680,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b36193d-74fa-4e5e-bfa1-c4e7bd97199a" + "f2d4ad8b-bc73-46c3-a06c-5db09e42df4f" ], "Cache-Control": [ "no-cache" @@ -97611,34 +99690,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12164" + "13017" ], "x-ms-correlation-request-id": [ - "3e82b84f-ffd6-4312-92fe-ba6f52813743" + "37bef1b2-03c7-451b-8889-2fa8a35daf2c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:3e82b84f-ffd6-4312-92fe-ba6f52813743" + "WESTUS:20150813T074916Z:37bef1b2-03c7-451b-8889-2fa8a35daf2c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions/2015.03.30?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjAzLjMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP3/versions/2015.01.27?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXMvMTEtU1AzL3ZlcnNpb25zLzIwMTUuMDEuMjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.03.30\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.03.30\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP3/Versions/2015.01.27\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "364" + "366" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97653,7 +99732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "520d341b-d54c-4ab3-ad67-e4a6c06f96b7" + "92d27dca-0987-40e4-a204-74289e727dd1" ], "Cache-Control": [ "no-cache" @@ -97663,34 +99742,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12163" + "13016" ], "x-ms-correlation-request-id": [ - "4e2b0560-e816-46ec-9b70-c92bdbf565c3" + "7f94be02-5f74-4490-9f40-e717b4b876dd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:4e2b0560-e816-46ec-9b70-c92bdbf565c3" + "WESTUS:20150813T074916Z:7f94be02-5f74-4490-9f40-e717b4b876dd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12/versions/2015.05.12?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtUHJpb3JpdHkvc2t1cy8xMi92ZXJzaW9ucy8yMDE1LjA1LjEyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP4/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXMvMTEtU1A0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.05.12\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12/Versions/2015.05.12\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "364" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97705,7 +99784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8da50e59-1637-4d00-ac37-252a4e3d6df6" + "68c6ad5e-61ce-4a1e-8dac-594d156d8cf6" ], "Cache-Control": [ "no-cache" @@ -97715,34 +99794,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12162" + "13015" ], "x-ms-correlation-request-id": [ - "bcf8c942-c3f5-4ca5-af8b-e9547d6693f7" + "f5be4b60-02c4-47bc-a25e-cabdba03b553" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:bcf8c942-c3f5-4ca5-af8b-e9547d6693f7" + "WESTUS:20150813T074916Z:f5be4b60-02c4-47bc-a25e-cabdba03b553" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Symantec/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU3ltYW50ZWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "483" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97757,7 +99836,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01d15b77-323d-43ac-9b9c-4f0605d98535" + "5252668b-361d-460a-836f-3efeabd023ec" ], "Cache-Control": [ "no-cache" @@ -97767,34 +99846,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12161" + "13014" ], "x-ms-correlation-request-id": [ - "692a065c-6ba8-4b23-b6e7-98d08920e0db" + "b9465cb8-eacd-47e2-af40-93e0885534c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:692a065c-6ba8-4b23-b6e7-98d08920e0db" + "WESTUS:20150813T074916Z:b9465cb8-eacd-47e2-af40-93e0885534c2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP3/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXMvMTEtU1AzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Symantec.QA/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU3ltYW50ZWMuUUEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP3/Versions/2015.01.05\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP3/Versions/2015.01.27\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "531" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97809,7 +99888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8801704-e63a-4927-b87f-18f6ed94269c" + "e33e6710-8909-4d36-934b-d0af8d2c4f94" ], "Cache-Control": [ "no-cache" @@ -97819,34 +99898,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12160" + "13013" ], "x-ms-correlation-request-id": [ - "c602fd7e-79ba-42e2-a8f1-73499081e720" + "afcb7633-8e53-4974-be3d-edb06de89d74" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:c602fd7e-79ba-42e2-a8f1-73499081e720" + "WESTUS:20150813T074917Z:afcb7633-8e53-4974-be3d-edb06de89d74" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP3/versions/2015.01.05?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXMvMTEtU1AzL3ZlcnNpb25zLzIwMTUuMDEuMDU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Symantec.staging/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU3ltYW50ZWMuc3RhZ2luZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.05\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP3/Versions/2015.01.05\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "366" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97861,7 +99940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc125639-1890-40e9-8b1f-20773fe20277" + "7225fb55-50db-4124-a375-a82f1fc63316" ], "Cache-Control": [ "no-cache" @@ -97871,34 +99950,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12159" + "13012" ], "x-ms-correlation-request-id": [ - "a29a6935-cce1-4f2d-8ece-1cbcbdc431bf" + "4509cce2-b66a-4d23-990a-7d1bdc6a6c91" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:a29a6935-cce1-4f2d-8ece-1cbcbdc431bf" + "WESTUS:20150813T074917Z:4509cce2-b66a-4d23-990a-7d1bdc6a6c91" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP3/versions/2015.01.27?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXMvMTEtU1AzL3ZlcnNpb25zLzIwMTUuMDEuMjc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Symantec.test/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU3ltYW50ZWMudGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2015.01.27\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP3/Versions/2015.01.27\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "366" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97913,7 +99992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d523422-5fc8-47c0-9db1-b50354111e0b" + "4608bbdb-e141-4290-807c-eb64641ccec3" ], "Cache-Control": [ "no-cache" @@ -97923,34 +100002,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12158" + "13011" ], "x-ms-correlation-request-id": [ - "b4e90849-bb7c-4510-ba0e-0e30be3290fc" + "2b8d6286-5ee6-4725-91cc-ba0c1482369b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:b4e90849-bb7c-4510-ba0e-0e30be3290fc" + "WESTUS:20150813T074917Z:2b8d6286-5ee6-4725-91cc-ba0c1482369b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:37 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP4/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU1VTRS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1NMRVMtU0FQQ0FML3NrdXMvMTEtU1A0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tactic/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFjdGljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic-workflow-v001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic/ArtifactTypes/VMImage/Offers/tactic-workflow-v001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "256" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97965,7 +100044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25aea50e-bb07-4ffb-afce-72e141ccc20d" + "3be15eea-35fe-4e33-9695-c5516c52d4c9" ], "Cache-Control": [ "no-cache" @@ -97975,34 +100054,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12157" + "13010" ], "x-ms-correlation-request-id": [ - "8aaa3fdc-f985-4fe2-826f-ab1f7712f486" + "79166eb7-99d7-40e1-8750-e448443f962e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212738Z:8aaa3fdc-f985-4fe2-826f-ab1f7712f486" + "WESTUS:20150813T074917Z:79166eb7-99d7-40e1-8750-e448443f962e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Symantec/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU3ltYW50ZWMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tactic/artifacttypes/vmimage/offers/tactic-workflow-v001/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFjdGljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFjdGljLXdvcmtmbG93LXYwMDEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic-workflow-v001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic/ArtifactTypes/VMImage/Offers/tactic-workflow-v001/Skus/tactic-workflow-v001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98017,7 +100096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eff68c84-44d0-494f-a7c5-b1e329f6f393" + "ec297474-a14f-4363-8ddb-ed17a1e83d03" ], "Cache-Control": [ "no-cache" @@ -98027,34 +100106,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12156" + "13009" ], "x-ms-correlation-request-id": [ - "c5cd1022-cc2f-4951-ae9a-9fc1b56861a0" + "0f010682-59ec-4e81-9129-02c48caab8b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:c5cd1022-cc2f-4951-ae9a-9fc1b56861a0" + "WESTUS:20150813T074917Z:0f010682-59ec-4e81-9129-02c48caab8b1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Symantec.QA/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU3ltYW50ZWMuUUEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tactic/artifacttypes/vmimage/offers/tactic-workflow-v001/skus/tactic-workflow-v001/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFjdGljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFjdGljLXdvcmtmbG93LXYwMDEvc2t1cy90YWN0aWMtd29ya2Zsb3ctdjAwMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic/ArtifactTypes/VMImage/Offers/tactic-workflow-v001/Skus/tactic-workflow-v001/Versions/1.0.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98069,7 +100148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b59969f0-a63c-46fd-bedf-49891579e57f" + "f0938aca-d57e-47b3-a5f0-1c4a50bbd10e" ], "Cache-Control": [ "no-cache" @@ -98079,34 +100158,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12155" + "13008" ], "x-ms-correlation-request-id": [ - "4d7467c1-7232-4fca-aa98-5d2015d317a1" + "fa294cac-9c1c-483a-a6f0-8d6ec19fdbba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:4d7467c1-7232-4fca-aa98-5d2015d317a1" + "WESTUS:20150813T074917Z:fa294cac-9c1c-483a-a6f0-8d6ec19fdbba" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Symantec.staging/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU3ltYW50ZWMuc3RhZ2luZy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tactic/artifacttypes/vmimage/offers/tactic-workflow-v001/skus/tactic-workflow-v001/versions/1.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFjdGljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFjdGljLXdvcmtmbG93LXYwMDEvc2t1cy90YWN0aWMtd29ya2Zsb3ctdjAwMS92ZXJzaW9ucy8xLjAuMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"tactic\",\r\n \"name\": \"tactic-workflow-v001\",\r\n \"product\": \"tactic-workflow-v001\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic/ArtifactTypes/VMImage/Offers/tactic-workflow-v001/Skus/tactic-workflow-v001/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98121,7 +100200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1c40fc1-c34a-4ddc-a402-85a85d56bf8b" + "95bdec41-3b51-482d-a15e-588ab89e997f" ], "Cache-Control": [ "no-cache" @@ -98131,34 +100210,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12154" + "13007" ], "x-ms-correlation-request-id": [ - "f8e565ae-4cf2-400c-bb36-b086d0753bcb" + "9d4d290c-7ec0-405f-b06e-787162cd4098" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:f8e565ae-4cf2-400c-bb36-b086d0753bcb" + "WESTUS:20150813T074917Z:9d4d290c-7ec0-405f-b06e-787162cd4098" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Symantec.test/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvU3ltYW50ZWMudGVzdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/targit/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFyZ2l0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit-decision-suite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit/ArtifactTypes/VMImage/Offers/targit-decision-suite\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98173,7 +100252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a4c55a3-5aa2-40b0-a9c5-0eb48bb983f5" + "042a56dd-3ceb-4b28-8033-0a078fc736c2" ], "Cache-Control": [ "no-cache" @@ -98183,34 +100262,86 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12153" + "13006" ], "x-ms-correlation-request-id": [ - "40ad3ba9-d085-403e-b196-5d4e9bfe85fa" + "5c05da89-c12e-4b6c-9048-5ebd8eadfbe5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:40ad3ba9-d085-403e-b196-5d4e9bfe85fa" + "WESTUS:20150813T074917Z:5c05da89-c12e-4b6c-9048-5ebd8eadfbe5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tactic/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFjdGljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/targit/artifacttypes/vmimage/offers/targit-decision-suite/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFyZ2l0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFyZ2l0LWRlY2lzaW9uLXN1aXRlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic-workflow-v001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic/ArtifactTypes/VMImage/Offers/tactic-workflow-v001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit-2014-byol-sql2014std\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit/ArtifactTypes/VMImage/Offers/targit-decision-suite/Skus/targit-2014-byol-sql2014std\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "256" + "297" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "541dde2b-872f-4585-89a4-f518ad3e70ab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "13005" + ], + "x-ms-correlation-request-id": [ + "8d0f93a6-4f97-4c29-9910-d7e1cdf8ba2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T074918Z:8d0f93a6-4f97-4c29-9910-d7e1cdf8ba2b" + ], + "Date": [ + "Thu, 13 Aug 2015 07:49:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/targit/artifacttypes/vmimage/offers/targit-decision-suite/skus/targit-2014-byol-sql2014std/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFyZ2l0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFyZ2l0LWRlY2lzaW9uLXN1aXRlL3NrdXMvdGFyZ2l0LTIwMTQtYnlvbC1zcWwyMDE0c3RkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit/ArtifactTypes/VMImage/Offers/targit-decision-suite/Skus/targit-2014-byol-sql2014std/Versions/1.0.1\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98225,7 +100356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52e2ce1c-c058-42f6-a54b-7d4ff6c9eec3" + "dbbe9870-2be2-4a5c-9b0e-fdaaad55864e" ], "Cache-Control": [ "no-cache" @@ -98235,34 +100366,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12152" + "13004" ], "x-ms-correlation-request-id": [ - "afc828dc-da71-4b12-bde7-aa87d637a343" + "5b9a5c30-56ab-48e5-8eaf-f250761bd45c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:afc828dc-da71-4b12-bde7-aa87d637a343" + "WESTUS:20150813T074918Z:5b9a5c30-56ab-48e5-8eaf-f250761bd45c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tactic/artifacttypes/vmimage/offers/tactic-workflow-v001/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFjdGljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFjdGljLXdvcmtmbG93LXYwMDEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/targit/artifacttypes/vmimage/offers/targit-decision-suite/skus/targit-2014-byol-sql2014std/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFyZ2l0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFyZ2l0LWRlY2lzaW9uLXN1aXRlL3NrdXMvdGFyZ2l0LTIwMTQtYnlvbC1zcWwyMDE0c3RkL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic-workflow-v001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic/ArtifactTypes/VMImage/Offers/tactic-workflow-v001/Skus/tactic-workflow-v001\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"targit\",\r\n \"name\": \"targit-2014-byol-sql2014std\",\r\n \"product\": \"targit-decision-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit/ArtifactTypes/VMImage/Offers/targit-decision-suite/Skus/targit-2014-byol-sql2014std/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "282" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98277,7 +100408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "add4af7f-17f0-4c54-8659-8416202d366d" + "d48c5ab9-edee-4580-b464-14a0a44cbaf4" ], "Cache-Control": [ "no-cache" @@ -98287,34 +100418,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12151" + "13003" ], "x-ms-correlation-request-id": [ - "9f24f8e4-5261-4c93-8a1f-754791522731" + "bffd7146-a2fe-4ed5-a8da-80debde770af" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:9f24f8e4-5261-4c93-8a1f-754791522731" + "WESTUS:20150813T074918Z:bffd7146-a2fe-4ed5-a8da-80debde770af" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tactic/artifacttypes/vmimage/offers/tactic-workflow-v001/skus/tactic-workflow-v001/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFjdGljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFjdGljLXdvcmtmbG93LXYwMDEvc2t1cy90YWN0aWMtd29ya2Zsb3ctdjAwMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tavendo/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGF2ZW5kby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic/ArtifactTypes/VMImage/Offers/tactic-workflow-v001/Skus/tactic-workflow-v001/Versions/1.0.3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"crossbar_on_azure_ubuntu1404\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "282" + "273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98329,7 +100460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f218cba-0ab1-49a0-8f05-ee0bca67ead6" + "855383ca-2e76-444d-b4ed-35c42abe686b" ], "Cache-Control": [ "no-cache" @@ -98339,34 +100470,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12150" + "13002" ], "x-ms-correlation-request-id": [ - "167c123c-d846-49d2-afaa-270346661509" + "8d146921-f786-4947-8388-ca17c076459b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:167c123c-d846-49d2-afaa-270346661509" + "WESTUS:20150813T074918Z:8d146921-f786-4947-8388-ca17c076459b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tactic/artifacttypes/vmimage/offers/tactic-workflow-v001/skus/tactic-workflow-v001/versions/1.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFjdGljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFjdGljLXdvcmtmbG93LXYwMDEvc2t1cy90YWN0aWMtd29ya2Zsb3ctdjAwMS92ZXJzaW9ucy8xLjAuMz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tavendo/artifacttypes/vmimage/offers/crossbar_on_azure_ubuntu1404/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGF2ZW5kby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nyb3NzYmFyX29uX2F6dXJlX3VidW50dTE0MDQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"tactic\",\r\n \"name\": \"tactic-workflow-v001\",\r\n \"product\": \"tactic-workflow-v001\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic/ArtifactTypes/VMImage/Offers/tactic-workflow-v001/Skus/tactic-workflow-v001/Versions/1.0.3\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404/Skus/free\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "514" + "259" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98381,7 +100512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "164b8999-7dd9-4c64-b064-14dd354172f7" + "21b0d1ac-fe1c-4b9e-9f9c-c488217e2905" ], "Cache-Control": [ "no-cache" @@ -98391,34 +100522,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12149" + "13001" ], "x-ms-correlation-request-id": [ - "7720d644-f1ad-4a1a-a867-09c105f95c60" + "0cb41149-aaca-426a-8798-8378e19703b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:7720d644-f1ad-4a1a-a867-09c105f95c60" + "WESTUS:20150813T074918Z:0cb41149-aaca-426a-8798-8378e19703b7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/targit/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFyZ2l0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tavendo/artifacttypes/vmimage/offers/crossbar_on_azure_ubuntu1404/skus/free/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGF2ZW5kby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nyb3NzYmFyX29uX2F6dXJlX3VidW50dTE0MDQvc2t1cy9mcmVlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit-decision-suite\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit/ArtifactTypes/VMImage/Offers/targit-decision-suite\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404/Skus/free/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "258" + "275" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98433,7 +100564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f189dcd-f4f7-465f-8bb7-79db1351b443" + "297f0235-b5fa-47ec-9ddf-dad48b6c8bc1" ], "Cache-Control": [ "no-cache" @@ -98443,34 +100574,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12148" + "13000" ], "x-ms-correlation-request-id": [ - "0a2e87c9-26bc-4912-9eb8-c6e873ea8253" + "91da1ddf-4f30-4529-acf1-404c0e33e469" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212739Z:0a2e87c9-26bc-4912-9eb8-c6e873ea8253" + "WESTUS:20150813T074918Z:91da1ddf-4f30-4529-acf1-404c0e33e469" ], "Date": [ - "Wed, 05 Aug 2015 21:27:38 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/targit/artifacttypes/vmimage/offers/targit-decision-suite/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFyZ2l0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFyZ2l0LWRlY2lzaW9uLXN1aXRlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tavendo/artifacttypes/vmimage/offers/crossbar_on_azure_ubuntu1404/skus/free/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGF2ZW5kby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nyb3NzYmFyX29uX2F6dXJlX3VidW50dTE0MDQvc2t1cy9mcmVlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit-2014-byol-sql2014std\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit/ArtifactTypes/VMImage/Offers/targit-decision-suite/Skus/targit-2014-byol-sql2014std\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"tavendo\",\r\n \"name\": \"free\",\r\n \"product\": \"crossbar_on_azure_ubuntu1404\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404/Skus/free/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "297" + "500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98485,7 +100616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fd44f88-d912-4251-b11b-5232fa63cb97" + "82ec32d0-7ec9-4e1b-8778-2de6ad59e8fa" ], "Cache-Control": [ "no-cache" @@ -98495,34 +100626,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12147" + "12999" ], "x-ms-correlation-request-id": [ - "d89fb087-a196-4554-b37b-4676061308b4" + "2d81f313-b4a9-49ba-b619-8371633f2e00" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212740Z:d89fb087-a196-4554-b37b-4676061308b4" + "WESTUS:20150813T074918Z:2d81f313-b4a9-49ba-b619-8371633f2e00" ], "Date": [ - "Wed, 05 Aug 2015 21:27:39 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/targit/artifacttypes/vmimage/offers/targit-decision-suite/skus/targit-2014-byol-sql2014std/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFyZ2l0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFyZ2l0LWRlY2lzaW9uLXN1aXRlL3NrdXMvdGFyZ2l0LTIwMTQtYnlvbC1zcWwyMDE0c3RkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/techdivision/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVjaGRpdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit/ArtifactTypes/VMImage/Offers/targit-decision-suite/Skus/targit-2014-byol-sql2014std/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appserver-io-pe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision/ArtifactTypes/VMImage/Offers/appserver-io-pe\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "290" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98537,7 +100668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43ffe19c-8095-4727-b57e-f6c9cb11d1aa" + "2584ddc1-c4fd-4c82-9b49-3e03d92bd107" ], "Cache-Control": [ "no-cache" @@ -98547,34 +100678,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12146" + "12998" ], "x-ms-correlation-request-id": [ - "987210a5-cff3-4971-b0ac-851cadc8d1fc" + "9950c39a-8e90-4c85-87e1-1dfebb36768b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212740Z:987210a5-cff3-4971-b0ac-851cadc8d1fc" + "WESTUS:20150813T074918Z:9950c39a-8e90-4c85-87e1-1dfebb36768b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:39 GMT" + "Thu, 13 Aug 2015 07:49:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/targit/artifacttypes/vmimage/offers/targit-decision-suite/skus/targit-2014-byol-sql2014std/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGFyZ2l0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdGFyZ2l0LWRlY2lzaW9uLXN1aXRlL3NrdXMvdGFyZ2l0LTIwMTQtYnlvbC1zcWwyMDE0c3RkL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/techdivision/artifacttypes/vmimage/offers/appserver-io-pe/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVjaGRpdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXBwc2VydmVyLWlvLXBlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"targit\",\r\n \"name\": \"targit-2014-byol-sql2014std\",\r\n \"product\": \"targit-decision-suite\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit/ArtifactTypes/VMImage/Offers/targit-decision-suite/Skus/targit-2014-byol-sql2014std/Versions/1.0.1\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appserver-io-pe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision/ArtifactTypes/VMImage/Offers/appserver-io-pe/Skus/appserver-io-pe\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "532" + "273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98589,7 +100720,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91e3fd4d-dfce-4910-b4e8-496436218f7e" + "b36af460-3758-47b5-bd97-f30383ea046f" ], "Cache-Control": [ "no-cache" @@ -98599,34 +100730,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12145" + "12997" ], "x-ms-correlation-request-id": [ - "711b96ae-431c-4f3b-910f-9c8f8f4fc5ac" + "a77ecb5b-2ceb-4a99-85ba-9e4b06580e0e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212740Z:711b96ae-431c-4f3b-910f-9c8f8f4fc5ac" + "WESTUS:20150813T074918Z:a77ecb5b-2ceb-4a99-85ba-9e4b06580e0e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:39 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tavendo/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGF2ZW5kby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/techdivision/artifacttypes/vmimage/offers/appserver-io-pe/skus/appserver-io-pe/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVjaGRpdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXBwc2VydmVyLWlvLXBlL3NrdXMvYXBwc2VydmVyLWlvLXBlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"crossbar_on_azure_ubuntu1404\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision/ArtifactTypes/VMImage/Offers/appserver-io-pe/Skus/appserver-io-pe/Versions/1.0.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "273" + "278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98641,7 +100772,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1f97a9b-3b1e-4183-a340-8fedd0b1c674" + "6338b31b-6be8-4f4e-9852-deae0b6a436c" ], "Cache-Control": [ "no-cache" @@ -98651,34 +100782,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12144" + "12996" ], "x-ms-correlation-request-id": [ - "27ab336d-6c16-4daf-915c-4316262720ca" + "21fddfd3-d0dd-4de7-a308-4d4476af22df" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212740Z:27ab336d-6c16-4daf-915c-4316262720ca" + "WESTUS:20150813T074918Z:21fddfd3-d0dd-4de7-a308-4d4476af22df" ], "Date": [ - "Wed, 05 Aug 2015 21:27:39 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tavendo/artifacttypes/vmimage/offers/crossbar_on_azure_ubuntu1404/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGF2ZW5kby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nyb3NzYmFyX29uX2F6dXJlX3VidW50dTE0MDQvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/techdivision/artifacttypes/vmimage/offers/appserver-io-pe/skus/appserver-io-pe/versions/1.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVjaGRpdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXBwc2VydmVyLWlvLXBlL3NrdXMvYXBwc2VydmVyLWlvLXBlL3ZlcnNpb25zLzEuMC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404/Skus/free\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"techdivision\",\r\n \"name\": \"appserver-io-pe\",\r\n \"product\": \"appserver-io-pe\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision/ArtifactTypes/VMImage/Offers/appserver-io-pe/Skus/appserver-io-pe/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "259" + "506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98693,7 +100824,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c69be90b-9a71-41b0-8b17-949a23b7a9c3" + "d45469dc-ed86-4b07-96b9-fb0286e8affe" ], "Cache-Control": [ "no-cache" @@ -98703,34 +100834,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12143" + "12995" ], "x-ms-correlation-request-id": [ - "ccde124d-247f-4771-8a7e-332faa8d3ce8" + "e7157b04-0f1a-4dc9-94fc-990bb94d369d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212740Z:ccde124d-247f-4771-8a7e-332faa8d3ce8" + "WESTUS:20150813T074919Z:e7157b04-0f1a-4dc9-94fc-990bb94d369d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:39 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tavendo/artifacttypes/vmimage/offers/crossbar_on_azure_ubuntu1404/skus/free/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGF2ZW5kby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nyb3NzYmFyX29uX2F6dXJlX3VidW50dTE0MDQvc2t1cy9mcmVlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/telepat/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVsZXBhdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404/Skus/free/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat/ArtifactTypes/VMImage/Offers/free\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "275" + "225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98745,7 +100876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85c6a4bf-9db7-4cc8-9759-7fbff5776546" + "780de6ee-ea8a-4ade-9643-194c668848a7" ], "Cache-Control": [ "no-cache" @@ -98755,34 +100886,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12142" + "12994" ], "x-ms-correlation-request-id": [ - "496bba3b-b09b-431a-bd27-257086f4b344" + "64fa50d7-d540-4b4f-83f9-1a13d3f637b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212740Z:496bba3b-b09b-431a-bd27-257086f4b344" + "WESTUS:20150813T074919Z:64fa50d7-d540-4b4f-83f9-1a13d3f637b4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:39 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tavendo/artifacttypes/vmimage/offers/crossbar_on_azure_ubuntu1404/skus/free/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGF2ZW5kby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Nyb3NzYmFyX29uX2F6dXJlX3VidW50dTE0MDQvc2t1cy9mcmVlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/telepat/artifacttypes/vmimage/offers/free/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVsZXBhdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ZyZWUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"tavendo\",\r\n \"name\": \"free\",\r\n \"product\": \"crossbar_on_azure_ubuntu1404\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404/Skus/free/Versions/1.0.0\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat/ArtifactTypes/VMImage/Offers/free/Skus/free\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "500" + "235" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98797,7 +100928,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17bdd3c3-5b63-473c-81c7-932489b28b1e" + "495523c2-80c3-47f6-88d4-27fb7a89d844" ], "Cache-Control": [ "no-cache" @@ -98807,34 +100938,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12141" + "12993" ], "x-ms-correlation-request-id": [ - "78d04eb9-7258-45c6-82ff-4b42d266c0bf" + "ad2471df-53e4-45ce-8173-27132f44c907" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212740Z:78d04eb9-7258-45c6-82ff-4b42d266c0bf" + "WESTUS:20150813T074919Z:ad2471df-53e4-45ce-8173-27132f44c907" ], "Date": [ - "Wed, 05 Aug 2015 21:27:39 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/techdivision/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVjaGRpdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/telepat/artifacttypes/vmimage/offers/free/skus/free/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVsZXBhdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ZyZWUvc2t1cy9mcmVlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appserver-io-pe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision/ArtifactTypes/VMImage/Offers/appserver-io-pe\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat/ArtifactTypes/VMImage/Offers/free/Skus/free/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "252" + "251" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98849,7 +100980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "284e7022-2599-419f-8d79-03721b0b7f8b" + "fa6bce40-488c-41f8-a4ae-34a26d498d0c" ], "Cache-Control": [ "no-cache" @@ -98859,34 +100990,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12140" + "12992" ], "x-ms-correlation-request-id": [ - "a5473afd-791e-4813-bb93-0a4a58813d86" + "7d730c12-af29-4f15-b0d1-16943490f333" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212740Z:a5473afd-791e-4813-bb93-0a4a58813d86" + "WESTUS:20150813T074919Z:7d730c12-af29-4f15-b0d1-16943490f333" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/techdivision/artifacttypes/vmimage/offers/appserver-io-pe/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVjaGRpdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXBwc2VydmVyLWlvLXBlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/telepat/artifacttypes/vmimage/offers/free/skus/free/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVsZXBhdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ZyZWUvc2t1cy9mcmVlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appserver-io-pe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision/ArtifactTypes/VMImage/Offers/appserver-io-pe/Skus/appserver-io-pe\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"telepat\",\r\n \"name\": \"free\",\r\n \"product\": \"free\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat/ArtifactTypes/VMImage/Offers/free/Skus/free/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "273" + "452" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98901,7 +101032,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e80d5a5-67ae-4ae1-a078-7b78f41a33c2" + "0ee4e0cf-1ba2-45cb-be20-9651e82978d9" ], "Cache-Control": [ "no-cache" @@ -98911,34 +101042,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12139" + "12991" ], "x-ms-correlation-request-id": [ - "d98428a3-a854-42ac-b096-165aa90ac466" + "244d8794-cc86-49f2-a2fe-cb311e291d45" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:d98428a3-a854-42ac-b096-165aa90ac466" + "WESTUS:20150813T074919Z:244d8794-cc86-49f2-a2fe-cb311e291d45" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/techdivision/artifacttypes/vmimage/offers/appserver-io-pe/skus/appserver-io-pe/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVjaGRpdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXBwc2VydmVyLWlvLXBlL3NrdXMvYXBwc2VydmVyLWlvLXBlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tenable/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVuYWJsZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision/ArtifactTypes/VMImage/Offers/appserver-io-pe/Skus/appserver-io-pe/Versions/1.0.3\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "278" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98953,7 +101084,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08d27757-2845-4969-9346-3e4cdb22f066" + "7d9f3bf9-3896-4d73-be26-a4fae664ac25" ], "Cache-Control": [ "no-cache" @@ -98963,34 +101094,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12138" + "12990" ], "x-ms-correlation-request-id": [ - "62e0e078-f6d2-45fe-9822-99b44c5f0a89" + "e9f12802-15d5-411f-92d0-21f5bd7a3e62" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:62e0e078-f6d2-45fe-9822-99b44c5f0a89" + "WESTUS:20150813T074919Z:e9f12802-15d5-411f-92d0-21f5bd7a3e62" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/techdivision/artifacttypes/vmimage/offers/appserver-io-pe/skus/appserver-io-pe/versions/1.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVjaGRpdmlzaW9uL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvYXBwc2VydmVyLWlvLXBlL3NrdXMvYXBwc2VydmVyLWlvLXBlL3ZlcnNpb25zLzEuMC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tentity/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVudGl0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"techdivision\",\r\n \"name\": \"appserver-io-pe\",\r\n \"product\": \"appserver-io-pe\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision/ArtifactTypes/VMImage/Offers/appserver-io-pe/Skus/appserver-io-pe/Versions/1.0.3\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websql-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity/ArtifactTypes/VMImage/Offers/websql-server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "506" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99005,7 +101136,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36ee0192-a60d-419a-be6a-e190c582f475" + "9ef3f133-7cd6-4c96-99b9-4a92b179edf4" ], "Cache-Control": [ "no-cache" @@ -99015,34 +101146,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12137" + "12989" ], "x-ms-correlation-request-id": [ - "9a6f210d-3e34-46be-9cf3-aefaed1bece3" + "d38b5924-3e88-4d2b-ba90-808d9d6afd8d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:9a6f210d-3e34-46be-9cf3-aefaed1bece3" + "WESTUS:20150813T074919Z:d38b5924-3e88-4d2b-ba90-808d9d6afd8d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/telepat/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVsZXBhdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tentity/artifacttypes/vmimage/offers/websql-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVudGl0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYnNxbC1zZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat/ArtifactTypes/VMImage/Offers/free\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websql-server-x64-hourly\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity/ArtifactTypes/VMImage/Offers/websql-server/Skus/websql-server-x64-hourly\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "225" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99057,7 +101188,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63ebe9fb-c119-4697-ba3c-69ec83047784" + "b97d657a-ac0b-4334-b842-3ad4659162a6" ], "Cache-Control": [ "no-cache" @@ -99067,34 +101198,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12136" + "12988" ], "x-ms-correlation-request-id": [ - "494ef800-058c-4352-aea5-508378992cc0" + "1e7d5766-f9da-4461-9ca5-bfb34420374e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:494ef800-058c-4352-aea5-508378992cc0" + "WESTUS:20150813T074919Z:1e7d5766-f9da-4461-9ca5-bfb34420374e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/telepat/artifacttypes/vmimage/offers/free/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVsZXBhdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ZyZWUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tentity/artifacttypes/vmimage/offers/websql-server/skus/websql-server-x64-hourly/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVudGl0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYnNxbC1zZXJ2ZXIvc2t1cy93ZWJzcWwtc2VydmVyLXg2NC1ob3VybHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"free\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat/ArtifactTypes/VMImage/Offers/free/Skus/free\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity/ArtifactTypes/VMImage/Offers/websql-server/Skus/websql-server-x64-hourly/Versions/1.0.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "235" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99109,7 +101240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6202462a-2314-413b-a5b9-a4d607e8e9d5" + "1727d07b-e689-4489-a018-84f5cf599019" ], "Cache-Control": [ "no-cache" @@ -99119,34 +101250,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12135" + "12987" ], "x-ms-correlation-request-id": [ - "f1f40eb9-aa7e-4cf2-a4d4-1d6052a6a860" + "c518867c-5240-49d8-a931-c94610f8bdd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:f1f40eb9-aa7e-4cf2-a4d4-1d6052a6a860" + "WESTUS:20150813T074919Z:c518867c-5240-49d8-a931-c94610f8bdd3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/telepat/artifacttypes/vmimage/offers/free/skus/free/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVsZXBhdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ZyZWUvc2t1cy9mcmVlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tentity/artifacttypes/vmimage/offers/websql-server/skus/websql-server-x64-hourly/versions/1.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVudGl0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYnNxbC1zZXJ2ZXIvc2t1cy93ZWJzcWwtc2VydmVyLXg2NC1ob3VybHkvdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat/ArtifactTypes/VMImage/Offers/free/Skus/free/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"tentity\",\r\n \"name\": \"websql-server-x64-hourly\",\r\n \"product\": \"websql-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity/ArtifactTypes/VMImage/Offers/websql-server/Skus/websql-server-x64-hourly/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "251" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99161,7 +101292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5002c71f-dc2c-40c7-b675-0d20dcc48624" + "62968d1f-3bd9-4df1-b9d5-d65bb622c4d5" ], "Cache-Control": [ "no-cache" @@ -99171,34 +101302,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12134" + "12986" ], "x-ms-correlation-request-id": [ - "ac527c5d-da2a-4c52-b676-bfaebc90ae0c" + "e28bd393-a725-43e4-a747-985dfe98af61" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:ac527c5d-da2a-4c52-b676-bfaebc90ae0c" + "WESTUS:20150813T074919Z:e28bd393-a725-43e4-a747-985dfe98af61" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/telepat/artifacttypes/vmimage/offers/free/skus/free/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVsZXBhdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ZyZWUvc2t1cy9mcmVlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Test.Barracuda.Azure.ConnectivityAgent/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVGVzdC5CYXJyYWN1ZGEuQXp1cmUuQ29ubmVjdGl2aXR5QWdlbnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"telepat\",\r\n \"name\": \"free\",\r\n \"product\": \"free\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat/ArtifactTypes/VMImage/Offers/free/Skus/free/Versions/1.0.0\"\r\n}", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "452" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99213,7 +101344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "557826b3-2415-4b90-a616-9ad13f994a6b" + "b623c12b-e45f-4269-9911-be19c9ff7ab8" ], "Cache-Control": [ "no-cache" @@ -99223,34 +101354,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12133" + "12985" ], "x-ms-correlation-request-id": [ - "340a2d63-1756-4252-8854-b3352107217a" + "c2e5e606-ffcf-4858-b96e-bc1a2e97cf43" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:340a2d63-1756-4252-8854-b3352107217a" + "WESTUS:20150813T074920Z:c2e5e606-ffcf-4858-b96e-bc1a2e97cf43" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tentity/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVudGl0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Test.Gemalto.SafeNet.ProtectV/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVGVzdC5HZW1hbHRvLlNhZmVOZXQuUHJvdGVjdFYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websql-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity/ArtifactTypes/VMImage/Offers/websql-server\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "243" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99265,7 +101396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd64e826-0204-4905-9b56-96ae26473cc4" + "2457a11c-c66f-4221-9772-9eade8a87971" ], "Cache-Control": [ "no-cache" @@ -99275,34 +101406,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12132" + "12984" ], "x-ms-correlation-request-id": [ - "a44075f3-a38d-405d-9d14-03e74491bead" + "c50928e9-4ec8-4390-9454-1e76577e7b6b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:a44075f3-a38d-405d-9d14-03e74491bead" + "WESTUS:20150813T074920Z:c50928e9-4ec8-4390-9454-1e76577e7b6b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tentity/artifacttypes/vmimage/offers/websql-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVudGl0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYnNxbC1zZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Test.TrendMicro.DeepSecurity/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVGVzdC5UcmVuZE1pY3JvLkRlZXBTZWN1cml0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websql-server-x64-hourly\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity/ArtifactTypes/VMImage/Offers/websql-server/Skus/websql-server-x64-hourly\"\r\n }\r\n]", + "ResponseBody": "[]", "ResponseHeaders": { "Content-Length": [ - "284" + "2" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99317,7 +101448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "602df9a3-c5d0-4dae-9b72-7c0769d23844" + "2980b331-5fce-4a4c-8443-4d4ff7b1fc37" ], "Cache-Control": [ "no-cache" @@ -99327,34 +101458,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12131" + "12983" ], "x-ms-correlation-request-id": [ - "0e9c9b7d-f4ef-4a63-b913-6babe179b42f" + "001d99e1-6a3e-40ca-bf50-71b0981ac5b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:0e9c9b7d-f4ef-4a63-b913-6babe179b42f" + "WESTUS:20150813T074920Z:001d99e1-6a3e-40ca-bf50-71b0981ac5b1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tentity/artifacttypes/vmimage/offers/websql-server/skus/websql-server-x64-hourly/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVudGl0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYnNxbC1zZXJ2ZXIvc2t1cy93ZWJzcWwtc2VydmVyLXg2NC1ob3VybHkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity/ArtifactTypes/VMImage/Offers/websql-server/Skus/websql-server-x64-hourly/Versions/1.0.3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline-single-vm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline7-2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline7-2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "280" + "507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99369,7 +101500,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f1ce56f-2733-4be8-ab35-04fc30027e8c" + "2a4c897b-50ce-4462-83de-bde4ce927dcf" ], "Cache-Control": [ "no-cache" @@ -99379,34 +101510,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12130" + "12982" ], "x-ms-correlation-request-id": [ - "45925143-5415-4ce2-b2fc-eebe012a3c36" + "c5bed490-efe6-4fe6-b6fd-3b20b5d039f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212741Z:45925143-5415-4ce2-b2fc-eebe012a3c36" + "WESTUS:20150813T074920Z:c5bed490-efe6-4fe6-b6fd-3b20b5d039f8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:40 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tentity/artifacttypes/vmimage/offers/websql-server/skus/websql-server-x64-hourly/versions/1.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGVudGl0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dlYnNxbC1zZXJ2ZXIvc2t1cy93ZWJzcWwtc2VydmVyLXg2NC1ob3VybHkvdmVyc2lvbnMvMS4wLjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"tentity\",\r\n \"name\": \"websql-server-x64-hourly\",\r\n \"product\": \"websql-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity/ArtifactTypes/VMImage/Offers/websql-server/Skus/websql-server-x64-hourly/Versions/1.0.3\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline-single-vm-linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline-single-vm-windows\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-windows\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "512" + "597" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99421,7 +101552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "823428cf-9abd-429d-9b4e-1b52cc0eaf18" + "92766786-5bfe-4dc4-8830-53ed69bde204" ], "Cache-Control": [ "no-cache" @@ -99431,34 +101562,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12129" + "12981" ], "x-ms-correlation-request-id": [ - "599996bc-ed29-4dc7-a709-b0f87a98e0c3" + "b8683006-75d1-4f0d-8d8a-8c9df74b9b7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212742Z:599996bc-ed29-4dc7-a709-b0f87a98e0c3" + "WESTUS:20150813T074920Z:b8683006-75d1-4f0d-8d8a-8c9df74b9b7d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:41 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Test.Barracuda.Azure.ConnectivityAgent/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVGVzdC5CYXJyYWN1ZGEuQXp1cmUuQ29ubmVjdGl2aXR5QWdlbnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus/deadline-single-vm-linux/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzL2RlYWRsaW5lLXNpbmdsZS12bS1saW51eC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-linux/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99473,7 +101604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82e49774-19d3-4c81-91a3-272228e89b8d" + "82e81bd6-f388-4de8-b9db-1840edb676f1" ], "Cache-Control": [ "no-cache" @@ -99483,34 +101614,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12128" + "12980" ], "x-ms-correlation-request-id": [ - "3fe2f964-b602-4534-a444-f26c8512017d" + "2a535644-e7e0-4e31-a489-f889b7cc8a5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212742Z:3fe2f964-b602-4534-a444-f26c8512017d" + "WESTUS:20150813T074920Z:2a535644-e7e0-4e31-a489-f889b7cc8a5f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:41 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Test.Gemalto.SafeNet.ProtectV/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVGVzdC5HZW1hbHRvLlNhZmVOZXQuUHJvdGVjdFYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus/deadline-single-vm-linux/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzL2RlYWRsaW5lLXNpbmdsZS12bS1saW51eC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"thinkboxsoftware\",\r\n \"name\": \"deadline-single-vm-linux\",\r\n \"product\": \"deadline-single-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-linux/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99525,7 +101656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c412fa9f-2e0f-426c-b99e-bf8b85270a4e" + "d5f9491e-5b6e-4ab5-8c51-f983a2a6f8d2" ], "Cache-Control": [ "no-cache" @@ -99535,34 +101666,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12127" + "12979" ], "x-ms-correlation-request-id": [ - "89ed3498-1092-4f10-9022-02ad88e4d6c4" + "1832d16e-e8eb-4759-8131-be089cfbd000" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212742Z:89ed3498-1092-4f10-9022-02ad88e4d6c4" + "WESTUS:20150813T074920Z:1832d16e-e8eb-4759-8131-be089cfbd000" ], "Date": [ - "Wed, 05 Aug 2015 21:27:41 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Test.TrendMicro.DeepSecurity/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVGVzdC5UcmVuZE1pY3JvLkRlZXBTZWN1cml0eS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus/deadline-single-vm-windows/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzL2RlYWRsaW5lLXNpbmdsZS12bS13aW5kb3dzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-windows/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99577,7 +101708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ef70568-c860-43cc-a77a-4d6055c29287" + "4a3b0586-8197-4aa9-8d42-803e028a9653" ], "Cache-Control": [ "no-cache" @@ -99587,34 +101718,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12126" + "12978" ], "x-ms-correlation-request-id": [ - "373ccb7a-08b7-4c1b-b45f-734ac165b0ff" + "a30146bc-2871-4168-9602-38654e127b64" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212742Z:373ccb7a-08b7-4c1b-b45f-734ac165b0ff" + "WESTUS:20150813T074920Z:a30146bc-2871-4168-9602-38654e127b64" ], "Date": [ - "Wed, 05 Aug 2015 21:27:41 GMT" + "Thu, 13 Aug 2015 07:49:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus/deadline-single-vm-windows/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzL2RlYWRsaW5lLXNpbmdsZS12bS13aW5kb3dzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline-single-vm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"thinkboxsoftware\",\r\n \"name\": \"deadline-single-vm-windows\",\r\n \"product\": \"deadline-single-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-windows/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "262" + "544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99629,7 +101760,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4937ad6a-f646-4f50-b2e1-20b707577ec2" + "75374b0c-7a64-42c3-bf02-0a7dcc153a03" ], "Cache-Control": [ "no-cache" @@ -99639,34 +101770,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12125" + "12977" ], "x-ms-correlation-request-id": [ - "f99ded95-2004-4b29-b412-eba8de8091f1" + "54069396-264d-49b7-840a-5abb95b16004" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212742Z:f99ded95-2004-4b29-b412-eba8de8091f1" + "WESTUS:20150813T074920Z:54069396-264d-49b7-840a-5abb95b16004" ], "Date": [ - "Wed, 05 Aug 2015 21:27:41 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline7-2/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lNy0yL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline-single-vm-linux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline-single-vm-windows\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-windows\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline-repository-7-2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline7-2/Skus/deadline-repository-7-2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"deadline-slave-7-2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline7-2/Skus/deadline-slave-7-2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "597" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99681,7 +101812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af5e6ff6-ae02-421e-8ab1-1f82742d3adf" + "60c4785f-4d9b-45f4-8556-27bf6213e4b6" ], "Cache-Control": [ "no-cache" @@ -99691,34 +101822,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12124" + "12976" ], "x-ms-correlation-request-id": [ - "bc56e0a9-4e61-4bff-aca2-847c6051db74" + "5d4b6a83-621a-438a-bd94-b7eb722c416e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212742Z:bc56e0a9-4e61-4bff-aca2-847c6051db74" + "WESTUS:20150813T074920Z:5d4b6a83-621a-438a-bd94-b7eb722c416e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:41 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus/deadline-single-vm-linux/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzL2RlYWRsaW5lLXNpbmdsZS12bS1saW51eC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline7-2/skus/deadline-repository-7-2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lNy0yL3NrdXMvZGVhZGxpbmUtcmVwb3NpdG9yeS03LTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-linux/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline7-2/Skus/deadline-repository-7-2/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "294" + "286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99733,7 +101864,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "959e5f5b-5adc-4dc4-a23f-ccb079d0845f" + "47bd69c7-cda3-4675-b2f0-4c3fd1bf4322" ], "Cache-Control": [ "no-cache" @@ -99743,34 +101874,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12123" + "12975" ], "x-ms-correlation-request-id": [ - "83f1e487-70fc-4f0b-864e-fbc4be80c233" + "7b7cc190-60e5-40aa-9f00-67216d81e165" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:83f1e487-70fc-4f0b-864e-fbc4be80c233" + "WESTUS:20150813T074921Z:7b7cc190-60e5-40aa-9f00-67216d81e165" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus/deadline-single-vm-linux/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzL2RlYWRsaW5lLXNpbmdsZS12bS1saW51eC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline7-2/skus/deadline-repository-7-2/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lNy0yL3NrdXMvZGVhZGxpbmUtcmVwb3NpdG9yeS03LTIvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"thinkboxsoftware\",\r\n \"name\": \"deadline-single-vm-linux\",\r\n \"product\": \"deadline-single-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-linux/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"thinkboxsoftware\",\r\n \"name\": \"deadline-repository-7-2\",\r\n \"product\": \"deadline7-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline7-2/Skus/deadline-repository-7-2/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "538" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99785,7 +101916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21b9368a-99a0-4314-8cfc-e8365d827540" + "8041713b-65e4-4781-832a-d97bc8f0fb35" ], "Cache-Control": [ "no-cache" @@ -99795,34 +101926,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12122" + "12974" ], "x-ms-correlation-request-id": [ - "2f284331-591c-425a-8833-c21047840b9c" + "4b331678-bfad-4f6b-b505-c8be9dcc5ec7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:2f284331-591c-425a-8833-c21047840b9c" + "WESTUS:20150813T074921Z:4b331678-bfad-4f6b-b505-c8be9dcc5ec7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus/deadline-single-vm-windows/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzL2RlYWRsaW5lLXNpbmdsZS12bS13aW5kb3dzL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline7-2/skus/deadline-slave-7-2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lNy0yL3NrdXMvZGVhZGxpbmUtc2xhdmUtNy0yL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-windows/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline7-2/Skus/deadline-slave-7-2/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "296" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99837,7 +101968,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2fc14d7-8891-47c5-8e29-e616c1fc7c77" + "7af814bb-676e-4899-acd8-4f94c1d92c50" ], "Cache-Control": [ "no-cache" @@ -99847,34 +101978,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12121" + "12973" ], "x-ms-correlation-request-id": [ - "070b7e0b-a1e5-4a43-ad42-5153c3d3f9f3" + "43ee11a0-4e96-4fc5-a416-f106be3bb137" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:070b7e0b-a1e5-4a43-ad42-5153c3d3f9f3" + "WESTUS:20150813T074921Z:43ee11a0-4e96-4fc5-a416-f106be3bb137" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline-single-vm/skus/deadline-single-vm-windows/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lLXNpbmdsZS12bS9za3VzL2RlYWRsaW5lLXNpbmdsZS12bS13aW5kb3dzL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/thinkboxsoftware/artifacttypes/vmimage/offers/deadline7-2/skus/deadline-slave-7-2/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdGhpbmtib3hzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RlYWRsaW5lNy0yL3NrdXMvZGVhZGxpbmUtc2xhdmUtNy0yL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"thinkboxsoftware\",\r\n \"name\": \"deadline-single-vm-windows\",\r\n \"product\": \"deadline-single-vm\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-windows/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"thinkboxsoftware\",\r\n \"name\": \"deadline-slave-7-2\",\r\n \"product\": \"deadline7-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline7-2/Skus/deadline-slave-7-2/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "544" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99889,7 +102020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "931d760f-e7f4-47c2-a545-54129d72f981" + "28c16eca-c651-4d86-b7d1-cfb058e4170c" ], "Cache-Control": [ "no-cache" @@ -99899,31 +102030,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12120" + "12972" ], "x-ms-correlation-request-id": [ - "ffb31194-748d-47f2-beb5-3843db1bf05a" + "d05c61cc-eb9e-4bc6-b568-3c13419dd4cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:ffb31194-748d-47f2-beb5-3843db1bf05a" + "WESTUS:20150813T074921Z:d05c61cc-eb9e-4bc6-b568-3c13419dd4cd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk-demonstration\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk-itsm-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk-demonstration\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk-itsm-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "753" @@ -99941,7 +102072,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70b8b5f4-dbc5-4cbe-819c-8ae3cde55307" + "71a9a823-3def-4d31-9f16-8cc34d00e5fe" ], "Cache-Control": [ "no-cache" @@ -99951,31 +102082,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12119" + "12971" ], "x-ms-correlation-request-id": [ - "81c5378d-12f0-4814-bddf-d517cb56f8b1" + "2fd2af75-0811-4eb9-a215-896179a9a836" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:81c5378d-12f0-4814-bddf-d517cb56f8b1" + "WESTUS:20150813T074921Z:2fd2af75-0811-4eb9-a215-896179a9a836" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-demonstration/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2stZGVtb25zdHJhdGlvbi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-demonstration/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2stZGVtb25zdHJhdGlvbi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"demonstration_account\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration/Skus/demonstration_account\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"demonstration_account\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration/Skus/demonstration_account\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "286" @@ -99993,7 +102124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56143021-d4c5-4cae-8600-16fd8511de1b" + "058a05db-d47f-4121-ba2b-8116db7625da" ], "Cache-Control": [ "no-cache" @@ -100003,31 +102134,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12118" + "12970" ], "x-ms-correlation-request-id": [ - "f0640d24-992b-4ce3-95ac-b791ee488ca5" + "afac3182-a042-40f5-bce3-1ba13b3387ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:f0640d24-992b-4ce3-95ac-b791ee488ca5" + "WESTUS:20150813T074921Z:afac3182-a042-40f5-bce3-1ba13b3387ee" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-demonstration/skus/demonstration_account/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2stZGVtb25zdHJhdGlvbi9za3VzL2RlbW9uc3RyYXRpb25fYWNjb3VudC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-demonstration/skus/demonstration_account/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2stZGVtb25zdHJhdGlvbi9za3VzL2RlbW9uc3RyYXRpb25fYWNjb3VudC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration/Skus/demonstration_account/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration/Skus/demonstration_account/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "285" @@ -100045,7 +102176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba164096-b01e-45b3-a705-ce80bff488c6" + "08495a16-d12f-414d-a54a-346c212dfadc" ], "Cache-Control": [ "no-cache" @@ -100055,31 +102186,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12117" + "12969" ], "x-ms-correlation-request-id": [ - "1828cae4-a538-4d8a-9464-d44d9b9cdbe9" + "d77eb7fe-4bea-40cd-a502-c3c5545e8ca3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:1828cae4-a538-4d8a-9464-d44d9b9cdbe9" + "WESTUS:20150813T074921Z:d77eb7fe-4bea-40cd-a502-c3c5545e8ca3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-demonstration/skus/demonstration_account/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2stZGVtb25zdHJhdGlvbi9za3VzL2RlbW9uc3RyYXRpb25fYWNjb3VudC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-demonstration/skus/demonstration_account/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2stZGVtb25zdHJhdGlvbi9za3VzL2RlbW9uc3RyYXRpb25fYWNjb3VudC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"demonstration_account\",\r\n \"product\": \"topdesk-demonstration\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration/Skus/demonstration_account/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"demonstration_account\",\r\n \"product\": \"topdesk-demonstration\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration/Skus/demonstration_account/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "522" @@ -100097,7 +102228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3680169-f6c3-4a0f-85b7-8b9427fe83f2" + "c14cb9eb-8ba5-4940-aa0d-c71c29368c7e" ], "Cache-Control": [ "no-cache" @@ -100107,31 +102238,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12116" + "12968" ], "x-ms-correlation-request-id": [ - "d5147b62-0c09-4c1b-85c2-b27af094959b" + "5ee7c781-872e-48fe-a312-5fa201a332b0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:d5147b62-0c09-4c1b-85c2-b27af094959b" + "WESTUS:20150813T074921Z:5ee7c781-872e-48fe-a312-5fa201a332b0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"100_operator_license\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/100_operator_license\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10_operator_license\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/10_operator_license\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"50_operator_license\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/50_operator_license\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5_operator_license\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/5_operator_license\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"100_operator_license\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/100_operator_license\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"10_operator_license\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/10_operator_license\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"50_operator_license\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/50_operator_license\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5_operator_license\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/5_operator_license\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1119" @@ -100149,7 +102280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7994f0fa-dbb7-4339-8098-82334602e744" + "62c5a5d4-fbe3-48cd-9e01-ee72884b064c" ], "Cache-Control": [ "no-cache" @@ -100159,31 +102290,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12115" + "12967" ], "x-ms-correlation-request-id": [ - "7aea1e15-988d-49cb-8e5a-a37f14408d53" + "e0e4e69e-9205-448b-9340-ea995de7c96a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:7aea1e15-988d-49cb-8e5a-a37f14408d53" + "WESTUS:20150813T074921Z:e0e4e69e-9205-448b-9340-ea995de7c96a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/100_operator_license/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzEwMF9vcGVyYXRvcl9saWNlbnNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/100_operator_license/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzEwMF9vcGVyYXRvcl9saWNlbnNlL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/100_operator_license/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/100_operator_license/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "284" @@ -100201,7 +102332,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31b524c8-cb16-4cae-97b2-af13b445fe19" + "52751a80-56fd-4068-b24f-103bc0876d20" ], "Cache-Control": [ "no-cache" @@ -100211,31 +102342,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12114" + "12966" ], "x-ms-correlation-request-id": [ - "900eb122-4e7e-40c0-9942-48a0aef26bbe" + "c5af3e62-af52-4580-886e-3517d45492a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:900eb122-4e7e-40c0-9942-48a0aef26bbe" + "WESTUS:20150813T074921Z:c5af3e62-af52-4580-886e-3517d45492a4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/100_operator_license/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzEwMF9vcGVyYXRvcl9saWNlbnNlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/100_operator_license/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzEwMF9vcGVyYXRvcl9saWNlbnNlL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"100_operator_license\",\r\n \"product\": \"topdesk-itsm-software\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/100_operator_license/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"100_operator_license\",\r\n \"product\": \"topdesk-itsm-software\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/100_operator_license/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "562" @@ -100253,7 +102384,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc9cae50-6f75-44fb-8c52-9a9d344e0576" + "36474b58-8b49-4b31-943a-fff3997f780f" ], "Cache-Control": [ "no-cache" @@ -100263,31 +102394,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12113" + "12965" ], "x-ms-correlation-request-id": [ - "52ab30d8-c0d6-45df-ac54-f7934a716ebf" + "ceaf701a-7756-46d0-8373-d564fdd694cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212743Z:52ab30d8-c0d6-45df-ac54-f7934a716ebf" + "WESTUS:20150813T074922Z:ceaf701a-7756-46d0-8373-d564fdd694cf" ], "Date": [ - "Wed, 05 Aug 2015 21:27:42 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/10_operator_license/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzEwX29wZXJhdG9yX2xpY2Vuc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/10_operator_license/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzEwX29wZXJhdG9yX2xpY2Vuc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/10_operator_license/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/10_operator_license/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "283" @@ -100305,7 +102436,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8944432-df29-4b20-9ab3-a35ece7fa7a3" + "ed714145-a485-4bb7-8533-e1fdbeac1418" ], "Cache-Control": [ "no-cache" @@ -100315,31 +102446,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12112" + "12964" ], "x-ms-correlation-request-id": [ - "c2ba835c-26d4-43ac-8455-c392f830ba19" + "ca347e65-a747-486e-b10f-d4491057dddd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:c2ba835c-26d4-43ac-8455-c392f830ba19" + "WESTUS:20150813T074922Z:ca347e65-a747-486e-b10f-d4491057dddd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/10_operator_license/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzEwX29wZXJhdG9yX2xpY2Vuc2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/10_operator_license/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzEwX29wZXJhdG9yX2xpY2Vuc2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"10_operator_license\",\r\n \"product\": \"topdesk-itsm-software\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/10_operator_license/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"10_operator_license\",\r\n \"product\": \"topdesk-itsm-software\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/10_operator_license/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "560" @@ -100357,7 +102488,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dde0a5a1-1035-4935-8509-74df0c73e5c5" + "be04932d-1f0f-482b-bd88-3ae0833d96bf" ], "Cache-Control": [ "no-cache" @@ -100367,31 +102498,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12111" + "12963" ], "x-ms-correlation-request-id": [ - "38a18826-145e-4950-ae2f-3fbe0075a3a6" + "366a2ce5-5730-4af3-8ae7-033a18f7209f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:38a18826-145e-4950-ae2f-3fbe0075a3a6" + "WESTUS:20150813T074922Z:366a2ce5-5730-4af3-8ae7-033a18f7209f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/50_operator_license/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzUwX29wZXJhdG9yX2xpY2Vuc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/50_operator_license/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzUwX29wZXJhdG9yX2xpY2Vuc2UvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/50_operator_license/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/50_operator_license/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "283" @@ -100409,7 +102540,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba882313-c50a-4238-9761-2accfdfd26d1" + "60642434-e1ce-40c5-a665-d4d772e42ccf" ], "Cache-Control": [ "no-cache" @@ -100419,31 +102550,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12110" + "12962" ], "x-ms-correlation-request-id": [ - "d60437e4-05d5-44d3-bf38-ed4a0bfc32d7" + "0e799bbe-0443-4fb4-8668-1ae781f0d774" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:d60437e4-05d5-44d3-bf38-ed4a0bfc32d7" + "WESTUS:20150813T074922Z:0e799bbe-0443-4fb4-8668-1ae781f0d774" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/50_operator_license/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzUwX29wZXJhdG9yX2xpY2Vuc2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/50_operator_license/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzUwX29wZXJhdG9yX2xpY2Vuc2UvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"50_operator_license\",\r\n \"product\": \"topdesk-itsm-software\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/50_operator_license/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"50_operator_license\",\r\n \"product\": \"topdesk-itsm-software\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/50_operator_license/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "560" @@ -100461,7 +102592,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d78c3b6c-6128-46b7-8386-fbb145df1e46" + "216fdc98-5708-49b2-9208-023e668e9fed" ], "Cache-Control": [ "no-cache" @@ -100471,31 +102602,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12109" + "12961" ], "x-ms-correlation-request-id": [ - "26cc75f9-0fad-4dd7-b1c1-3a1e88c849b5" + "31606641-dca8-4ca8-9c6e-f8ca9cd12f54" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:26cc75f9-0fad-4dd7-b1c1-3a1e88c849b5" + "WESTUS:20150813T074922Z:31606641-dca8-4ca8-9c6e-f8ca9cd12f54" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/5_operator_license/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzVfb3BlcmF0b3JfbGljZW5zZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/5_operator_license/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzVfb3BlcmF0b3JfbGljZW5zZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/5_operator_license/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/5_operator_license/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "282" @@ -100513,7 +102644,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "101f190c-2ddd-45ee-8187-09e47c7cd7e0" + "25c6f03f-e24f-4865-8ddb-20c96ef00054" ], "Cache-Control": [ "no-cache" @@ -100523,31 +102654,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12108" + "12960" ], "x-ms-correlation-request-id": [ - "5e6a5d83-52d4-4650-b02a-eada09499276" + "55c34871-abae-464b-8fd1-0e8f3c785bc5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:5e6a5d83-52d4-4650-b02a-eada09499276" + "WESTUS:20150813T074922Z:55c34871-abae-464b-8fd1-0e8f3c785bc5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/5_operator_license/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzVfb3BlcmF0b3JfbGljZW5zZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk-itsm-software/skus/5_operator_license/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2staXRzbS1zb2Z0d2FyZS9za3VzLzVfb3BlcmF0b3JfbGljZW5zZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"5_operator_license\",\r\n \"product\": \"topdesk-itsm-software\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/5_operator_license/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"5_operator_license\",\r\n \"product\": \"topdesk-itsm-software\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/5_operator_license/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "558" @@ -100565,7 +102696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9a16039-2e22-48a6-b620-cf78f0ffa162" + "b6c50f9e-7f34-467a-adf0-87f608df555e" ], "Cache-Control": [ "no-cache" @@ -100575,31 +102706,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12107" + "12959" ], "x-ms-correlation-request-id": [ - "f4e8d798-e7f6-41d6-afa4-4c1257394431" + "3a739da0-4f61-41c9-8327-4b3651da03cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:f4e8d798-e7f6-41d6-afa4-4c1257394431" + "WESTUS:20150813T074922Z:3a739da0-4f61-41c9-8327-4b3651da03cc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk_byol/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2tfYnlvbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk_byol/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2tfYnlvbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk_service_management_byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol/Skus/topdesk_service_management_byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk_service_management_byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol/Skus/topdesk_service_management_byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "297" @@ -100617,7 +102748,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2e44748-933d-4ff9-9279-232ca680709a" + "cdcbed89-7f35-447c-aa63-a32476adcb7c" ], "Cache-Control": [ "no-cache" @@ -100627,31 +102758,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12106" + "12958" ], "x-ms-correlation-request-id": [ - "bdc9bf33-3791-4edc-8d95-9921a7648a06" + "a82652d5-af6a-44e5-962e-cb4932ab5f0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:bdc9bf33-3791-4edc-8d95-9921a7648a06" + "WESTUS:20150813T074922Z:a82652d5-af6a-44e5-962e-cb4932ab5f0a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk_byol/skus/topdesk_service_management_byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2tfYnlvbC9za3VzL3RvcGRlc2tfc2VydmljZV9tYW5hZ2VtZW50X2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk_byol/skus/topdesk_service_management_byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2tfYnlvbC9za3VzL3RvcGRlc2tfc2VydmljZV9tYW5hZ2VtZW50X2J5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol/Skus/topdesk_service_management_byol/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol/Skus/topdesk_service_management_byol/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "286" @@ -100669,7 +102800,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "671a0708-d3a5-4a49-8122-1e2cb400db49" + "70f54036-d655-4ec7-8484-2d5998f7f197" ], "Cache-Control": [ "no-cache" @@ -100679,31 +102810,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12105" + "12957" ], "x-ms-correlation-request-id": [ - "624cfc35-4492-4210-9b35-607d337b438c" + "bdfe4d12-ba74-4561-94dd-5d2ba4cccf4a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:624cfc35-4492-4210-9b35-607d337b438c" + "WESTUS:20150813T074922Z:bdfe4d12-ba74-4561-94dd-5d2ba4cccf4a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk_byol/skus/topdesk_service_management_byol/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2tfYnlvbC9za3VzL3RvcGRlc2tfc2VydmljZV9tYW5hZ2VtZW50X2J5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/topdesk/artifacttypes/vmimage/offers/topdesk_byol/skus/topdesk_service_management_byol/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9wZGVzay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3RvcGRlc2tfYnlvbC9za3VzL3RvcGRlc2tfc2VydmljZV9tYW5hZ2VtZW50X2J5b2wvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"topdesk_service_management_byol\",\r\n \"product\": \"topdesk_byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol/Skus/topdesk_service_management_byol/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"topdesk\",\r\n \"name\": \"topdesk_service_management_byol\",\r\n \"product\": \"topdesk_byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol/Skus/topdesk_service_management_byol/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "566" @@ -100721,7 +102852,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a22ff221-3f30-4a0e-b4c4-c9103b5bd677" + "7c211786-239d-4755-87e6-39197521320d" ], "Cache-Control": [ "no-cache" @@ -100731,31 +102862,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12104" + "12956" ], "x-ms-correlation-request-id": [ - "03e843e8-65d7-4275-80dc-324688ade968" + "26423012-bf0e-41d9-81f3-a11822b3befb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:03e843e8-65d7-4275-80dc-324688ade968" + "WESTUS:20150813T074922Z:26423012-bf0e-41d9-81f3-a11822b3befb" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/torusware/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9ydXN3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/torusware/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9ydXN3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"speedus-lite-ubuntu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware/ArtifactTypes/VMImage/Offers/speedus-lite-ubuntu\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"speedus-lite-ubuntu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware/ArtifactTypes/VMImage/Offers/speedus-lite-ubuntu\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -100773,7 +102904,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7efc77e7-6fd5-4355-b344-0353ac428d45" + "c4dfd82b-305c-4e45-9b54-fb9ddf256d82" ], "Cache-Control": [ "no-cache" @@ -100783,31 +102914,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12103" + "12955" ], "x-ms-correlation-request-id": [ - "9a0d15b9-d5bc-4d0e-ac0a-c88a80bc61e7" + "81b4732d-6a13-4522-9191-c0837d93091f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:9a0d15b9-d5bc-4d0e-ac0a-c88a80bc61e7" + "WESTUS:20150813T074922Z:81b4732d-6a13-4522-9191-c0837d93091f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/torusware/artifacttypes/vmimage/offers/speedus-lite-ubuntu/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9ydXN3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3BlZWR1cy1saXRlLXVidW50dS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/torusware/artifacttypes/vmimage/offers/speedus-lite-ubuntu/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9ydXN3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3BlZWR1cy1saXRlLXVidW50dS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"speedus_lite_free-ubuntu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware/ArtifactTypes/VMImage/Offers/speedus-lite-ubuntu/Skus/speedus_lite_free-ubuntu\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"speedus_lite_free-ubuntu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware/ArtifactTypes/VMImage/Offers/speedus-lite-ubuntu/Skus/speedus_lite_free-ubuntu\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "292" @@ -100825,7 +102956,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "595ddea6-1d2c-4ca9-aa02-8539feec2121" + "b0db2fc0-f8c0-4552-9249-a5c136f9530e" ], "Cache-Control": [ "no-cache" @@ -100835,31 +102966,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12102" + "12954" ], "x-ms-correlation-request-id": [ - "d3c5a87d-54ab-450e-930f-81ea645d3982" + "4259bcb3-0661-4a7b-a667-bf5e5d62fe43" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212744Z:d3c5a87d-54ab-450e-930f-81ea645d3982" + "WESTUS:20150813T074923Z:4259bcb3-0661-4a7b-a667-bf5e5d62fe43" ], "Date": [ - "Wed, 05 Aug 2015 21:27:44 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/torusware/artifacttypes/vmimage/offers/speedus-lite-ubuntu/skus/speedus_lite_free-ubuntu/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9ydXN3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3BlZWR1cy1saXRlLXVidW50dS9za3VzL3NwZWVkdXNfbGl0ZV9mcmVlLXVidW50dS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/torusware/artifacttypes/vmimage/offers/speedus-lite-ubuntu/skus/speedus_lite_free-ubuntu/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9ydXN3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3BlZWR1cy1saXRlLXVidW50dS9za3VzL3NwZWVkdXNfbGl0ZV9mcmVlLXVidW50dS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware/ArtifactTypes/VMImage/Offers/speedus-lite-ubuntu/Skus/speedus_lite_free-ubuntu/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware/ArtifactTypes/VMImage/Offers/speedus-lite-ubuntu/Skus/speedus_lite_free-ubuntu/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "288" @@ -100877,7 +103008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d108710-5b61-44ff-9e80-cc08df514fb2" + "b3f426e5-ad44-4b06-b070-be4845d95f25" ], "Cache-Control": [ "no-cache" @@ -100887,31 +103018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12101" + "12953" ], "x-ms-correlation-request-id": [ - "ed23005a-acf3-4a52-bf57-f7b1bfdd0943" + "cdc046a2-890d-48cf-94bf-fe2e1ea18bdf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:ed23005a-acf3-4a52-bf57-f7b1bfdd0943" + "WESTUS:20150813T074923Z:cdc046a2-890d-48cf-94bf-fe2e1ea18bdf" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/torusware/artifacttypes/vmimage/offers/speedus-lite-ubuntu/skus/speedus_lite_free-ubuntu/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9ydXN3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3BlZWR1cy1saXRlLXVidW50dS9za3VzL3NwZWVkdXNfbGl0ZV9mcmVlLXVidW50dS92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/torusware/artifacttypes/vmimage/offers/speedus-lite-ubuntu/skus/speedus_lite_free-ubuntu/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdG9ydXN3YXJlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc3BlZWR1cy1saXRlLXVidW50dS9za3VzL3NwZWVkdXNfbGl0ZV9mcmVlLXVidW50dS92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"torusware\",\r\n \"name\": \"speedus_lite_free-ubuntu\",\r\n \"product\": \"speedus-lite-ubuntu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware/ArtifactTypes/VMImage/Offers/speedus-lite-ubuntu/Skus/speedus_lite_free-ubuntu/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"torusware\",\r\n \"name\": \"speedus_lite_free-ubuntu\",\r\n \"product\": \"speedus-lite-ubuntu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware/ArtifactTypes/VMImage/Offers/speedus-lite-ubuntu/Skus/speedus_lite_free-ubuntu/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -100929,7 +103060,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00835f0b-05da-4719-8741-14ea87a2b311" + "c74ad9c4-7461-482d-89fb-0936abe9f398" ], "Cache-Control": [ "no-cache" @@ -100939,31 +103070,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12100" + "12952" ], "x-ms-correlation-request-id": [ - "92afbcbf-2ba5-4e0c-a834-319979bc42b1" + "015ab277-fda2-45b6-9dfe-670ddd9f87d3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:92afbcbf-2ba5-4e0c-a834-319979bc42b1" + "WESTUS:20150813T074923Z:015ab277-fda2-45b6-9dfe-670ddd9f87d3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/transvault/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJhbnN2YXVsdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/transvault/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJhbnN2YXVsdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sprint_3_0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault/ArtifactTypes/VMImage/Offers/sprint_3_0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sprint_3_0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault/ArtifactTypes/VMImage/Offers/sprint_3_0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "240" @@ -100981,7 +103112,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d78d68d-14b7-40ae-bf2f-e32a324fb174" + "2b225be1-7c1a-4bb8-89d9-657a566e0023" ], "Cache-Control": [ "no-cache" @@ -100991,31 +103122,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12099" + "12951" ], "x-ms-correlation-request-id": [ - "b9a07731-13d6-4602-a1c8-9a3dd3a4365e" + "09887ea8-7b16-462d-9e98-b36dcbbd03f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:b9a07731-13d6-4602-a1c8-9a3dd3a4365e" + "WESTUS:20150813T074923Z:09887ea8-7b16-462d-9e98-b36dcbbd03f5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/transvault/artifacttypes/vmimage/offers/sprint_3_0/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJhbnN2YXVsdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwcmludF8zXzAvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/transvault/artifacttypes/vmimage/offers/sprint_3_0/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJhbnN2YXVsdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwcmludF8zXzAvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sprint_3_0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault/ArtifactTypes/VMImage/Offers/sprint_3_0/Skus/sprint_3_0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sprint_3_0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault/ArtifactTypes/VMImage/Offers/sprint_3_0/Skus/sprint_3_0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "256" @@ -101033,7 +103164,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "daf08891-bab6-494e-b1eb-3afc9707dafd" + "cabee7e6-ac8d-4ca3-a4b0-5ce37b5db407" ], "Cache-Control": [ "no-cache" @@ -101043,31 +103174,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12098" + "12950" ], "x-ms-correlation-request-id": [ - "b496051a-003e-4dfc-b28f-d0d5168b4174" + "088a4290-76cd-4814-83a7-db18040388bc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:b496051a-003e-4dfc-b28f-d0d5168b4174" + "WESTUS:20150813T074923Z:088a4290-76cd-4814-83a7-db18040388bc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/transvault/artifacttypes/vmimage/offers/sprint_3_0/skus/sprint_3_0/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJhbnN2YXVsdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwcmludF8zXzAvc2t1cy9zcHJpbnRfM18wL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/transvault/artifacttypes/vmimage/offers/sprint_3_0/skus/sprint_3_0/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJhbnN2YXVsdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwcmludF8zXzAvc2t1cy9zcHJpbnRfM18wL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault/ArtifactTypes/VMImage/Offers/sprint_3_0/Skus/sprint_3_0/Versions/1.0.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault/ArtifactTypes/VMImage/Offers/sprint_3_0/Skus/sprint_3_0/Versions/1.0.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "266" @@ -101085,7 +103216,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85cdce9e-2c07-41bf-8cf9-4b0588235638" + "aeebf32e-a5d5-4ed5-9d75-e77ccf5067cb" ], "Cache-Control": [ "no-cache" @@ -101095,31 +103226,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12097" + "12949" ], "x-ms-correlation-request-id": [ - "6b6a6bb6-68d5-4a2f-b80b-ba698e3aec75" + "99370c68-e12e-4d81-97c2-30744d76d7fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:6b6a6bb6-68d5-4a2f-b80b-ba698e3aec75" + "WESTUS:20150813T074923Z:99370c68-e12e-4d81-97c2-30744d76d7fb" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/transvault/artifacttypes/vmimage/offers/sprint_3_0/skus/sprint_3_0/versions/1.0.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJhbnN2YXVsdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwcmludF8zXzAvc2t1cy9zcHJpbnRfM18wL3ZlcnNpb25zLzEuMC40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/transvault/artifacttypes/vmimage/offers/sprint_3_0/skus/sprint_3_0/versions/1.0.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJhbnN2YXVsdC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3NwcmludF8zXzAvc2t1cy9zcHJpbnRfM18wL3ZlcnNpb25zLzEuMC40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"transvault\",\r\n \"name\": \"sprint_3_0\",\r\n \"product\": \"sprint_3_0\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault/ArtifactTypes/VMImage/Offers/sprint_3_0/Skus/sprint_3_0/Versions/1.0.4\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"transvault\",\r\n \"name\": \"sprint_3_0\",\r\n \"product\": \"sprint_3_0\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault/ArtifactTypes/VMImage/Offers/sprint_3_0/Skus/sprint_3_0/Versions/1.0.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -101137,7 +103268,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5454206-c455-4d0b-9a73-b4da045abd07" + "a0d1647b-ea6e-41a9-934c-794779a8756d" ], "Cache-Control": [ "no-cache" @@ -101147,31 +103278,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12096" + "12948" ], "x-ms-correlation-request-id": [ - "aa5973ad-1244-4c77-bd9d-32c42267b31e" + "7dc79afb-a0bb-44d0-acde-69e77388b6ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:aa5973ad-1244-4c77-bd9d-32c42267b31e" + "WESTUS:20150813T074923Z:7dc79afb-a0bb-44d0-acde-69e77388b6ee" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"interscan-messaging-security-va\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/interscan-messaging-security-va\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wfbs-90sp1-std-adv\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"interscan-messaging-security-va\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/interscan-messaging-security-va\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wfbs-90sp1-std-adv\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "535" @@ -101189,7 +103320,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "826e4b7c-def3-4157-b9c4-786e286e49f9" + "44d76345-2096-4932-b912-88c8e2c6e678" ], "Cache-Control": [ "no-cache" @@ -101199,31 +103330,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12095" + "12947" ], "x-ms-correlation-request-id": [ - "9c697950-1820-4ba9-aa99-7e45530ae0af" + "5849a69c-2c37-4c94-be2c-1e8bd60d75ba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:9c697950-1820-4ba9-aa99-7e45530ae0af" + "WESTUS:20150813T074923Z:5849a69c-2c37-4c94-be2c-1e8bd60d75ba" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/interscan-messaging-security-va/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ludGVyc2Nhbi1tZXNzYWdpbmctc2VjdXJpdHktdmEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/interscan-messaging-security-va/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ludGVyc2Nhbi1tZXNzYWdpbmctc2VjdXJpdHktdmEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imsva90\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/interscan-messaging-security-va/Skus/imsva90\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imsva90\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/interscan-messaging-security-va/Skus/imsva90\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "271" @@ -101241,7 +103372,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a135eb2b-cd5c-4b88-9b0d-fe0b2c334572" + "1262f744-6c0f-48b1-872f-eb313b96453c" ], "Cache-Control": [ "no-cache" @@ -101251,31 +103382,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12094" + "12946" ], "x-ms-correlation-request-id": [ - "97b7a7b4-9a87-4563-a255-6a1fb60888c6" + "222578d3-cca6-438d-b3cc-fb7db3bdd997" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:97b7a7b4-9a87-4563-a255-6a1fb60888c6" + "WESTUS:20150813T074923Z:222578d3-cca6-438d-b3cc-fb7db3bdd997" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/interscan-messaging-security-va/skus/imsva90/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ludGVyc2Nhbi1tZXNzYWdpbmctc2VjdXJpdHktdmEvc2t1cy9pbXN2YTkwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/interscan-messaging-security-va/skus/imsva90/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ludGVyc2Nhbi1tZXNzYWdpbmctc2VjdXJpdHktdmEvc2t1cy9pbXN2YTkwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.1383\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/interscan-messaging-security-va/Skus/imsva90/Versions/9.0.1383\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.1383\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/interscan-messaging-security-va/Skus/imsva90/Versions/9.0.1383\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "290" @@ -101293,7 +103424,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b8c0e01-4a9a-43fe-ada8-c4409f80455f" + "2ebef9c8-9de8-46c2-864d-a546ff14fc06" ], "Cache-Control": [ "no-cache" @@ -101303,31 +103434,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12093" + "12945" ], "x-ms-correlation-request-id": [ - "17ebb2ee-e0e9-44f4-b1af-15e1a1a92fa6" + "d1471a6d-c283-403b-8238-6ca888c93787" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:17ebb2ee-e0e9-44f4-b1af-15e1a1a92fa6" + "WESTUS:20150813T074923Z:d1471a6d-c283-403b-8238-6ca888c93787" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/interscan-messaging-security-va/skus/imsva90/versions/9.0.1383?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ludGVyc2Nhbi1tZXNzYWdpbmctc2VjdXJpdHktdmEvc2t1cy9pbXN2YTkwL3ZlcnNpb25zLzkuMC4xMzgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/interscan-messaging-security-va/skus/imsva90/versions/9.0.1383?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ludGVyc2Nhbi1tZXNzYWdpbmctc2VjdXJpdHktdmEvc2t1cy9pbXN2YTkwL3ZlcnNpb25zLzkuMC4xMzgzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"trendmicro\",\r\n \"name\": \"imsva90\",\r\n \"product\": \"interscan-messaging-security-va\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.1383\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/interscan-messaging-security-va/Skus/imsva90/Versions/9.0.1383\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"trendmicro\",\r\n \"name\": \"imsva90\",\r\n \"product\": \"interscan-messaging-security-va\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"9.0.1383\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/interscan-messaging-security-va/Skus/imsva90/Versions/9.0.1383\"\r\n}", "ResponseHeaders": { "Content-Length": [ "524" @@ -101345,7 +103476,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fcf5518-a420-47e7-9f44-d90deb8811de" + "36e9c5cb-fde2-4ada-9f5a-e29724643245" ], "Cache-Control": [ "no-cache" @@ -101355,31 +103486,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12092" + "12944" ], "x-ms-correlation-request-id": [ - "5880e43e-5aad-4c82-9167-a2615d2eb3de" + "2d202e0b-ac6a-441b-a862-18f5a2525f65" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212745Z:5880e43e-5aad-4c82-9167-a2615d2eb3de" + "WESTUS:20150813T074924Z:2d202e0b-ac6a-441b-a862-18f5a2525f65" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wfbs90sp1advanced\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1advanced\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wfbs90sp1standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1standard\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wfbs90sp1advanced\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1advanced\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wfbs90sp1standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1standard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "553" @@ -101397,7 +103528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "614a67ca-fd19-4405-8073-ef392c6c443f" + "26e58c06-b761-4cf6-b8ec-fb830a1d93ee" ], "Cache-Control": [ "no-cache" @@ -101407,31 +103538,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12091" + "12943" ], "x-ms-correlation-request-id": [ - "9624a467-7e7e-4bda-998f-5228b2fb46bc" + "d95fc36a-0111-476f-85f9-57b4a449cfdb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:9624a467-7e7e-4bda-998f-5228b2fb46bc" + "WESTUS:20150813T074924Z:d95fc36a-0111-476f-85f9-57b4a449cfdb" ], "Date": [ - "Wed, 05 Aug 2015 21:27:45 GMT" + "Thu, 13 Aug 2015 07:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus/wfbs90sp1advanced/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzL3dmYnM5MHNwMWFkdmFuY2VkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus/wfbs90sp1advanced/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzL3dmYnM5MHNwMWFkdmFuY2VkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.0.2501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1advanced/Versions/19.0.2501\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.0.2501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1advanced/Versions/19.0.2501\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "289" @@ -101449,7 +103580,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02219f9b-b981-47a2-a327-a05867a2e50f" + "e703bc0e-f002-4ecb-a839-6cc86ae5e353" ], "Cache-Control": [ "no-cache" @@ -101459,31 +103590,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12090" + "12942" ], "x-ms-correlation-request-id": [ - "5a524925-aca9-453f-bd1e-509f98cb4d7f" + "a9adba7f-2025-4ee2-b77b-4603e2fe437b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:5a524925-aca9-453f-bd1e-509f98cb4d7f" + "WESTUS:20150813T074924Z:a9adba7f-2025-4ee2-b77b-4603e2fe437b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus/wfbs90sp1advanced/versions/19.0.2501?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzL3dmYnM5MHNwMWFkdmFuY2VkL3ZlcnNpb25zLzE5LjAuMjUwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus/wfbs90sp1advanced/versions/19.0.2501?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzL3dmYnM5MHNwMWFkdmFuY2VkL3ZlcnNpb25zLzE5LjAuMjUwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"trendmicro\",\r\n \"name\": \"wfbs90sp1advanced\",\r\n \"product\": \"wfbs-90sp1-std-adv\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"19.0.2501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1advanced/Versions/19.0.2501\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"trendmicro\",\r\n \"name\": \"wfbs90sp1advanced\",\r\n \"product\": \"wfbs-90sp1-std-adv\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"19.0.2501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1advanced/Versions/19.0.2501\"\r\n}", "ResponseHeaders": { "Content-Length": [ "522" @@ -101501,7 +103632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33b7a646-88b1-4972-88ed-f77caee1a0e7" + "948ad67b-b46c-4d0f-93c4-08972ee741c1" ], "Cache-Control": [ "no-cache" @@ -101511,31 +103642,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12089" + "12941" ], "x-ms-correlation-request-id": [ - "7f6e2230-bc22-4504-9d4f-28c404e719e3" + "e24329f0-2d80-46cb-a0ac-60c3dc3bdebc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:7f6e2230-bc22-4504-9d4f-28c404e719e3" + "WESTUS:20150813T074924Z:e24329f0-2d80-46cb-a0ac-60c3dc3bdebc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus/wfbs90sp1standard/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzL3dmYnM5MHNwMXN0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus/wfbs90sp1standard/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzL3dmYnM5MHNwMXN0YW5kYXJkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.0.2501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1standard/Versions/19.0.2501\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"19.0.2501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1standard/Versions/19.0.2501\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "289" @@ -101553,7 +103684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ae9e3cc-3afc-49e9-a90d-28b4fb64fe2c" + "c26c9166-d8bb-40bd-ae52-db70beee8005" ], "Cache-Control": [ "no-cache" @@ -101563,31 +103694,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12088" + "12940" ], "x-ms-correlation-request-id": [ - "f790d466-cafd-4b7f-aabb-a442ae1dfcb6" + "a79048d2-1230-4450-8364-3f92cb591774" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:f790d466-cafd-4b7f-aabb-a442ae1dfcb6" + "WESTUS:20150813T074924Z:a79048d2-1230-4450-8364-3f92cb591774" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus/wfbs90sp1standard/versions/19.0.2501?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzL3dmYnM5MHNwMXN0YW5kYXJkL3ZlcnNpb25zLzE5LjAuMjUwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/trendmicro/artifacttypes/vmimage/offers/wfbs-90sp1-std-adv/skus/wfbs90sp1standard/versions/19.0.2501?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHJlbmRtaWNyby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dmYnMtOTBzcDEtc3RkLWFkdi9za3VzL3dmYnM5MHNwMXN0YW5kYXJkL3ZlcnNpb25zLzE5LjAuMjUwMT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"trendmicro\",\r\n \"name\": \"wfbs90sp1standard\",\r\n \"product\": \"wfbs-90sp1-std-adv\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"19.0.2501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1standard/Versions/19.0.2501\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"trendmicro\",\r\n \"name\": \"wfbs90sp1standard\",\r\n \"product\": \"wfbs-90sp1-std-adv\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"19.0.2501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro/ArtifactTypes/VMImage/Offers/wfbs-90sp1-std-adv/Skus/wfbs90sp1standard/Versions/19.0.2501\"\r\n}", "ResponseHeaders": { "Content-Length": [ "522" @@ -101605,7 +103736,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a6954d4-4279-457e-99bd-1e32982cbbf3" + "4f05dc80-f7dc-4031-8001-c9e3553ff62f" ], "Cache-Control": [ "no-cache" @@ -101615,28 +103746,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12087" + "12939" ], "x-ms-correlation-request-id": [ - "7710070a-faf5-43ca-96af-496970b5762f" + "053d74c1-9a34-48ce-b3a6-1d11bf958591" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:7710070a-faf5-43ca-96af-496970b5762f" + "WESTUS:20150813T074924Z:053d74c1-9a34-48ce-b3a6-1d11bf958591" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/TrendMicro.DeepSecurity/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVHJlbmRNaWNyby5EZWVwU2VjdXJpdHkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/TrendMicro.DeepSecurity/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVHJlbmRNaWNyby5EZWVwU2VjdXJpdHkvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -101657,7 +103788,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19bbb712-01d0-4b06-93d0-bd12fb3a101f" + "e0c969c1-585a-4e38-88f6-209fab54d4d6" ], "Cache-Control": [ "no-cache" @@ -101667,28 +103798,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12086" + "12938" ], "x-ms-correlation-request-id": [ - "d542e867-9118-4c4d-a225-af78aa62525e" + "2e0eb8c4-6be9-427b-b9cb-fb9411d2d3cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:d542e867-9118-4c4d-a225-af78aa62525e" + "WESTUS:20150813T074924Z:2e0eb8c4-6be9-427b-b9cb-fb9411d2d3cf" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/TrendMicro.DeepSecurity.Test2/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVHJlbmRNaWNyby5EZWVwU2VjdXJpdHkuVGVzdDIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/TrendMicro.DeepSecurity.Test2/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVHJlbmRNaWNyby5EZWVwU2VjdXJpdHkuVGVzdDIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -101709,7 +103840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7592cbf4-9ff3-4d08-adbf-974fa2a584ec" + "c595a2f5-4f0b-4b38-8e7b-74a971140330" ], "Cache-Control": [ "no-cache" @@ -101719,28 +103850,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12085" + "12937" ], "x-ms-correlation-request-id": [ - "234613e0-053e-4e28-ae73-3f9f8f386cc8" + "ee960bf3-ac6c-4eb4-bb47-0e3bac523c71" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:234613e0-053e-4e28-ae73-3f9f8f386cc8" + "WESTUS:20150813T074924Z:ee960bf3-ac6c-4eb4-bb47-0e3bac523c71" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/TrendMicro.PortalProtect/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVHJlbmRNaWNyby5Qb3J0YWxQcm90ZWN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/TrendMicro.PortalProtect/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVHJlbmRNaWNyby5Qb3J0YWxQcm90ZWN0L2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -101761,7 +103892,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b22e0a0-e452-487f-a856-9ca846db7b9f" + "04eedcb1-3949-427c-8553-6bed615e8a85" ], "Cache-Control": [ "no-cache" @@ -101771,28 +103902,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12084" + "12936" ], "x-ms-correlation-request-id": [ - "fcba6e47-abc3-4ddd-bc0b-79decb3abcab" + "ad3f981b-6dd1-46a0-99dc-edc0bcea277e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:fcba6e47-abc3-4ddd-bc0b-79decb3abcab" + "WESTUS:20150813T074925Z:ad3f981b-6dd1-46a0-99dc-edc0bcea277e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/tsa-public-service/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHNhLXB1YmxpYy1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/tsa-public-service/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHNhLXB1YmxpYy1zZXJ2aWNlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -101813,7 +103944,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0439cb1b-d8d1-4f32-841d-8ebb4b08d637" + "d7f5cc4a-2751-42a5-af84-e1513fcb8e14" ], "Cache-Control": [ "no-cache" @@ -101823,31 +103954,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12083" + "12935" ], "x-ms-correlation-request-id": [ - "c99f600c-db4a-4a23-89b3-9caf0d3df5a2" + "00a80413-4cdf-4cba-8854-6dc2416df90f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:c99f600c-db4a-4a23-89b3-9caf0d3df5a2" + "WESTUS:20150813T074925Z:00a80413-4cdf-4cba-8854-6dc2416df90f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/typesafe/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHlwZXNhZmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/typesafe/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHlwZXNhZmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe-reactive-maps-demo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe/ArtifactTypes/VMImage/Offers/typesafe-reactive-maps-demo\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe-reactive-maps-demo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe/ArtifactTypes/VMImage/Offers/typesafe-reactive-maps-demo\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "272" @@ -101865,7 +103996,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59478c4b-c537-47e5-84f4-85186c5c9137" + "9f8fc2a5-45ff-4a59-b415-8a61835df4ec" ], "Cache-Control": [ "no-cache" @@ -101875,31 +104006,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12082" + "12934" ], "x-ms-correlation-request-id": [ - "bec66fc6-c128-448b-b509-11843cbf65bb" + "0d283861-a99d-47db-b705-5d7565055760" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212746Z:bec66fc6-c128-448b-b509-11843cbf65bb" + "WESTUS:20150813T074925Z:0d283861-a99d-47db-b705-5d7565055760" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/typesafe/artifacttypes/vmimage/offers/typesafe-reactive-maps-demo/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHlwZXNhZmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/typesafe/artifacttypes/vmimage/offers/typesafe-reactive-maps-demo/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHlwZXNhZmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe-reactive-maps-demo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe/ArtifactTypes/VMImage/Offers/typesafe-reactive-maps-demo/Skus/typesafe-reactive-maps-demo\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe-reactive-maps-demo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe/ArtifactTypes/VMImage/Offers/typesafe-reactive-maps-demo/Skus/typesafe-reactive-maps-demo\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "305" @@ -101917,7 +104048,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca76ffa5-5cfd-422a-8ffc-d02d3df908a4" + "7f4c0429-6dbc-4a84-a663-db904bf094a2" ], "Cache-Control": [ "no-cache" @@ -101927,31 +104058,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12081" + "12933" ], "x-ms-correlation-request-id": [ - "4f79dd38-0087-4c72-a960-61fe376eecd8" + "514d5f66-0d17-4cbf-a1b6-7a00fabad858" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:4f79dd38-0087-4c72-a960-61fe376eecd8" + "WESTUS:20150813T074925Z:514d5f66-0d17-4cbf-a1b6-7a00fabad858" ], "Date": [ - "Wed, 05 Aug 2015 21:27:46 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/typesafe/artifacttypes/vmimage/offers/typesafe-reactive-maps-demo/skus/typesafe-reactive-maps-demo/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHlwZXNhZmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vc2t1cy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/typesafe/artifacttypes/vmimage/offers/typesafe-reactive-maps-demo/skus/typesafe-reactive-maps-demo/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHlwZXNhZmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vc2t1cy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe/ArtifactTypes/VMImage/Offers/typesafe-reactive-maps-demo/Skus/typesafe-reactive-maps-demo/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe/ArtifactTypes/VMImage/Offers/typesafe-reactive-maps-demo/Skus/typesafe-reactive-maps-demo/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "298" @@ -101969,7 +104100,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c779a5d1-7bc0-4579-8b9f-0b2e0bf86cbc" + "9a6bb107-55d0-4f33-b8ae-2fd4659f2e7e" ], "Cache-Control": [ "no-cache" @@ -101979,31 +104110,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12080" + "12932" ], "x-ms-correlation-request-id": [ - "d07561fc-398c-4c6f-9c62-d0e38a72885d" + "dfe35142-8c8d-4bff-88e5-1ed432ff7701" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:d07561fc-398c-4c6f-9c62-d0e38a72885d" + "WESTUS:20150813T074925Z:dfe35142-8c8d-4bff-88e5-1ed432ff7701" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/typesafe/artifacttypes/vmimage/offers/typesafe-reactive-maps-demo/skus/typesafe-reactive-maps-demo/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHlwZXNhZmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vc2t1cy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/typesafe/artifacttypes/vmimage/offers/typesafe-reactive-maps-demo/skus/typesafe-reactive-maps-demo/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdHlwZXNhZmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vc2t1cy90eXBlc2FmZS1yZWFjdGl2ZS1tYXBzLWRlbW8vdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"typesafe\",\r\n \"name\": \"typesafe-reactive-maps-demo\",\r\n \"product\": \"typesafe-reactive-maps-demo\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe/ArtifactTypes/VMImage/Offers/typesafe-reactive-maps-demo/Skus/typesafe-reactive-maps-demo/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"typesafe\",\r\n \"name\": \"typesafe-reactive-maps-demo\",\r\n \"product\": \"typesafe-reactive-maps-demo\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe/ArtifactTypes/VMImage/Offers/typesafe-reactive-maps-demo/Skus/typesafe-reactive-maps-demo/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "546" @@ -102021,7 +104152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19e64a90-692b-46b0-ba85-efdd5f2608de" + "88afcf4b-eb3c-4794-bbb3-e035d81b7573" ], "Cache-Control": [ "no-cache" @@ -102031,31 +104162,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12079" + "12931" ], "x-ms-correlation-request-id": [ - "99eab715-05de-45a4-aa50-49d66775ff80" + "39b4109d-fe94-4773-bb4a-469668a318b8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:99eab715-05de-45a4-aa50-49d66775ff80" + "WESTUS:20150813T074925Z:39b4109d-fe94-4773-bb4a-469668a318b8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ubercloud/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdWJlcmNsb3VkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ubercloud/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdWJlcmNsb3VkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openfoam-v2dot3-centos-v6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud/ArtifactTypes/VMImage/Offers/openfoam-v2dot3-centos-v6\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openfoam-v2dot3-centos-v6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud/ArtifactTypes/VMImage/Offers/openfoam-v2dot3-centos-v6\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -102073,7 +104204,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa763bae-f9dd-4d79-906f-b00ca2079747" + "e3fda4be-589a-4516-9d4e-aa2b777cdcd5" ], "Cache-Control": [ "no-cache" @@ -102083,31 +104214,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12078" + "12930" ], "x-ms-correlation-request-id": [ - "198f1100-477a-4dc9-8383-3c7fdafe1c52" + "294d74b5-8f4d-4317-8a1f-945f2cb4efe5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:198f1100-477a-4dc9-8383-3c7fdafe1c52" + "WESTUS:20150813T074925Z:294d74b5-8f4d-4317-8a1f-945f2cb4efe5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ubercloud/artifacttypes/vmimage/offers/openfoam-v2dot3-centos-v6/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdWJlcmNsb3VkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3BlbmZvYW0tdjJkb3QzLWNlbnRvcy12Ni9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ubercloud/artifacttypes/vmimage/offers/openfoam-v2dot3-centos-v6/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdWJlcmNsb3VkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3BlbmZvYW0tdjJkb3QzLWNlbnRvcy12Ni9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trial\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud/ArtifactTypes/VMImage/Offers/openfoam-v2dot3-centos-v6/Skus/trial\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trial\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud/ArtifactTypes/VMImage/Offers/openfoam-v2dot3-centos-v6/Skus/trial\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -102125,7 +104256,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09ce8ef6-8f3f-4046-b5d3-c386db868c8f" + "f8409025-6d13-4f96-99f3-a957b314ef93" ], "Cache-Control": [ "no-cache" @@ -102135,31 +104266,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12077" + "12929" ], "x-ms-correlation-request-id": [ - "0d3a9a2b-f107-45f3-ab12-3f4017529ef5" + "54f275f1-c308-44ca-bcbb-deb3390be1ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:0d3a9a2b-f107-45f3-ab12-3f4017529ef5" + "WESTUS:20150813T074925Z:54f275f1-c308-44ca-bcbb-deb3390be1ef" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ubercloud/artifacttypes/vmimage/offers/openfoam-v2dot3-centos-v6/skus/trial/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdWJlcmNsb3VkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3BlbmZvYW0tdjJkb3QzLWNlbnRvcy12Ni9za3VzL3RyaWFsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ubercloud/artifacttypes/vmimage/offers/openfoam-v2dot3-centos-v6/skus/trial/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdWJlcmNsb3VkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3BlbmZvYW0tdjJkb3QzLWNlbnRvcy12Ni9za3VzL3RyaWFsL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud/ArtifactTypes/VMImage/Offers/openfoam-v2dot3-centos-v6/Skus/trial/Versions/1.0.1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud/ArtifactTypes/VMImage/Offers/openfoam-v2dot3-centos-v6/Skus/trial/Versions/1.0.1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "275" @@ -102177,7 +104308,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0dd47cbd-02fb-4043-b185-2f4d144759b6" + "c18b2a06-22aa-438b-aed3-be959fd81d3f" ], "Cache-Control": [ "no-cache" @@ -102187,31 +104318,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12076" + "12928" ], "x-ms-correlation-request-id": [ - "5a2b8698-55e5-4f28-852e-ac7d102f03c5" + "528a56bc-c420-4441-9a93-e1492c67eb8c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:5a2b8698-55e5-4f28-852e-ac7d102f03c5" + "WESTUS:20150813T074925Z:528a56bc-c420-4441-9a93-e1492c67eb8c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/ubercloud/artifacttypes/vmimage/offers/openfoam-v2dot3-centos-v6/skus/trial/versions/1.0.1?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdWJlcmNsb3VkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3BlbmZvYW0tdjJkb3QzLWNlbnRvcy12Ni9za3VzL3RyaWFsL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/ubercloud/artifacttypes/vmimage/offers/openfoam-v2dot3-centos-v6/skus/trial/versions/1.0.1?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdWJlcmNsb3VkL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvb3BlbmZvYW0tdjJkb3QzLWNlbnRvcy12Ni9za3VzL3RyaWFsL3ZlcnNpb25zLzEuMC4xP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"ubercloud\",\r\n \"name\": \"trial\",\r\n \"product\": \"openfoam-v2dot3-centos-v6\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud/ArtifactTypes/VMImage/Offers/openfoam-v2dot3-centos-v6/Skus/trial/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"ubercloud\",\r\n \"name\": \"trial\",\r\n \"product\": \"openfoam-v2dot3-centos-v6\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud/ArtifactTypes/VMImage/Offers/openfoam-v2dot3-centos-v6/Skus/trial/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "500" @@ -102229,7 +104360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "451b6311-7bb6-4b32-a4d4-ec2128079a83" + "16da36d6-6671-4e5e-8988-4886d7ea1755" ], "Cache-Control": [ "no-cache" @@ -102239,31 +104370,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12075" + "12927" ], "x-ms-correlation-request-id": [ - "1ba92401-b628-438e-9eeb-cd38924fb176" + "89e83b97-5169-4382-a99e-4a78dda585d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:1ba92401-b628-438e-9eeb-cd38924fb176" + "WESTUS:20150813T074925Z:89e83b97-5169-4382-a99e-4a78dda585d9" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/usp/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdXNwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/usp/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdXNwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"unified-streaming-vod-standard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"unified-streaming-vod-standard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "273" @@ -102281,7 +104412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abbe0646-d5d1-4066-8173-7391a9f0e607" + "bd6ab0cc-4f5c-44e0-90d3-a61788f041eb" ], "Cache-Control": [ "no-cache" @@ -102291,31 +104422,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12074" + "12926" ], "x-ms-correlation-request-id": [ - "9b4a15f8-4af3-4e70-a5a2-0b6ba22dd612" + "7815f199-455a-484e-8a78-7c664c84faf1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:9b4a15f8-4af3-4e70-a5a2-0b6ba22dd612" + "WESTUS:20150813T074926Z:7815f199-455a-484e-8a78-7c664c84faf1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/usp/artifacttypes/vmimage/offers/unified-streaming-vod-standard/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdXNwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdW5pZmllZC1zdHJlYW1pbmctdm9kLXN0YW5kYXJkL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/usp/artifacttypes/vmimage/offers/unified-streaming-vod-standard/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdXNwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdW5pZmllZC1zdHJlYW1pbmctdm9kLXN0YW5kYXJkL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp-vod\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard/Skus/usp-vod\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp-vod\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard/Skus/usp-vod\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "263" @@ -102333,7 +104464,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b71f83dd-7540-46d6-ab9c-e7bdac16d4c4" + "03f6112c-d6ae-4fe4-8423-0000c94d1295" ], "Cache-Control": [ "no-cache" @@ -102343,31 +104474,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12073" + "12925" ], "x-ms-correlation-request-id": [ - "1c887955-4991-4e79-9b4f-ad6480fc4776" + "21b3064f-4a33-47b3-8628-8a896c6ca2fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:1c887955-4991-4e79-9b4f-ad6480fc4776" + "WESTUS:20150813T074926Z:21b3064f-4a33-47b3-8628-8a896c6ca2fe" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/usp/artifacttypes/vmimage/offers/unified-streaming-vod-standard/skus/usp-vod/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdXNwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdW5pZmllZC1zdHJlYW1pbmctdm9kLXN0YW5kYXJkL3NrdXMvdXNwLXZvZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/usp/artifacttypes/vmimage/offers/unified-streaming-vod-standard/skus/usp-vod/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdXNwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdW5pZmllZC1zdHJlYW1pbmctdm9kLXN0YW5kYXJkL3NrdXMvdXNwLXZvZC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard/Skus/usp-vod/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard/Skus/usp-vod/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -102385,7 +104516,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a373e48b-b1f0-49f5-b81d-e27414732628" + "09d86268-9c3a-4ad3-a887-69ac8195d0e3" ], "Cache-Control": [ "no-cache" @@ -102395,31 +104526,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12072" + "12924" ], "x-ms-correlation-request-id": [ - "f5c574a0-de0b-46fc-ae67-24a2dab141e2" + "0216defb-7fc0-4840-99da-60e1b49a556c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212747Z:f5c574a0-de0b-46fc-ae67-24a2dab141e2" + "WESTUS:20150813T074926Z:0216defb-7fc0-4840-99da-60e1b49a556c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/usp/artifacttypes/vmimage/offers/unified-streaming-vod-standard/skus/usp-vod/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdXNwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdW5pZmllZC1zdHJlYW1pbmctdm9kLXN0YW5kYXJkL3NrdXMvdXNwLXZvZC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/usp/artifacttypes/vmimage/offers/unified-streaming-vod-standard/skus/usp-vod/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdXNwL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdW5pZmllZC1zdHJlYW1pbmctdm9kLXN0YW5kYXJkL3NrdXMvdXNwLXZvZC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"usp\",\r\n \"name\": \"usp-vod\",\r\n \"product\": \"unified-streaming-vod-standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard/Skus/usp-vod/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"usp\",\r\n \"name\": \"usp-vod\",\r\n \"product\": \"unified-streaming-vod-standard\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard/Skus/usp-vod/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "502" @@ -102437,7 +104568,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "925fcc4a-b811-42e7-99af-607bdf29d263" + "a0bee119-82b2-4684-b6db-24387ed31126" ], "Cache-Control": [ "no-cache" @@ -102447,31 +104578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12071" + "12923" ], "x-ms-correlation-request-id": [ - "b4a7002a-7ba7-4a4f-a1e4-04f6f04996f4" + "3736cab7-a671-4e9f-aea2-ec8705c8996d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:b4a7002a-7ba7-4a4f-a1e4-04f6f04996f4" + "WESTUS:20150813T074926Z:3736cab7-a671-4e9f-aea2-ec8705c8996d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:47 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/veeam/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmVlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/veeam/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmVlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeamcloudconnect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam/ArtifactTypes/VMImage/Offers/veeamcloudconnect\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeamcloudconnect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam/ArtifactTypes/VMImage/Offers/veeamcloudconnect\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "249" @@ -102489,7 +104620,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96bcdf58-f394-4525-bd25-27656eb7fd13" + "b6625987-61d2-4420-a242-98e9b72fdbbe" ], "Cache-Control": [ "no-cache" @@ -102499,31 +104630,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12070" + "12922" ], "x-ms-correlation-request-id": [ - "088c9aac-ae38-49aa-bfd2-fecde57c70fc" + "41160033-f3e0-4b60-8ad2-2119bd5c256b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:088c9aac-ae38-49aa-bfd2-fecde57c70fc" + "WESTUS:20150813T074926Z:41160033-f3e0-4b60-8ad2-2119bd5c256b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/veeam/artifacttypes/vmimage/offers/veeamcloudconnect/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmVlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92ZWVhbWNsb3VkY29ubmVjdC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/veeam/artifacttypes/vmimage/offers/veeamcloudconnect/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmVlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92ZWVhbWNsb3VkY29ubmVjdC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeambackup\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam/ArtifactTypes/VMImage/Offers/veeamcloudconnect/Skus/veeambackup\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeambackup\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam/ArtifactTypes/VMImage/Offers/veeamcloudconnect/Skus/veeambackup\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -102541,7 +104672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e6e2e42-b0ee-4273-90ac-cfe7d064be0f" + "cbb561a3-2ef5-4e75-b3ac-6ec7f48ba330" ], "Cache-Control": [ "no-cache" @@ -102551,31 +104682,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12069" + "12921" ], "x-ms-correlation-request-id": [ - "77327ca6-8668-4b49-bf5c-6608675333cf" + "2c7017b5-f771-4473-9127-4b1dfc3b9c62" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:77327ca6-8668-4b49-bf5c-6608675333cf" + "WESTUS:20150813T074926Z:2c7017b5-f771-4473-9127-4b1dfc3b9c62" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/veeam/artifacttypes/vmimage/offers/veeamcloudconnect/skus/veeambackup/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmVlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92ZWVhbWNsb3VkY29ubmVjdC9za3VzL3ZlZWFtYmFja3VwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/veeam/artifacttypes/vmimage/offers/veeamcloudconnect/skus/veeambackup/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmVlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92ZWVhbWNsb3VkY29ubmVjdC9za3VzL3ZlZWFtYmFja3VwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam/ArtifactTypes/VMImage/Offers/veeamcloudconnect/Skus/veeambackup/Versions/1.0.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam/ArtifactTypes/VMImage/Offers/veeamcloudconnect/Skus/veeambackup/Versions/1.0.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "269" @@ -102593,7 +104724,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10252a83-3e43-4c4b-8c5e-be711c19e04f" + "4b67073e-464f-4c26-bac1-6a0ee3dd5394" ], "Cache-Control": [ "no-cache" @@ -102603,31 +104734,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12068" + "12920" ], "x-ms-correlation-request-id": [ - "945e0e34-2d72-40e3-949a-e93744961c62" + "566a2d29-6a8a-4817-9c7e-5b2c99c41f23" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:945e0e34-2d72-40e3-949a-e93744961c62" + "WESTUS:20150813T074926Z:566a2d29-6a8a-4817-9c7e-5b2c99c41f23" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/veeam/artifacttypes/vmimage/offers/veeamcloudconnect/skus/veeambackup/versions/1.0.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmVlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92ZWVhbWNsb3VkY29ubmVjdC9za3VzL3ZlZWFtYmFja3VwL3ZlcnNpb25zLzEuMC40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/veeam/artifacttypes/vmimage/offers/veeamcloudconnect/skus/veeambackup/versions/1.0.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmVlYW0vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy92ZWVhbWNsb3VkY29ubmVjdC9za3VzL3ZlZWFtYmFja3VwL3ZlcnNpb25zLzEuMC40P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"veeam\",\r\n \"name\": \"veeambackup\",\r\n \"product\": \"veeamcloudconnect\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam/ArtifactTypes/VMImage/Offers/veeamcloudconnect/Skus/veeambackup/Versions/1.0.4\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"veeam\",\r\n \"name\": \"veeambackup\",\r\n \"product\": \"veeamcloudconnect\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam/ArtifactTypes/VMImage/Offers/veeamcloudconnect/Skus/veeambackup/Versions/1.0.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ "490" @@ -102645,7 +104776,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e89d9bab-1288-4f1f-9509-62362fe68405" + "603f016e-64de-464d-82c7-a0eef95aef3f" ], "Cache-Control": [ "no-cache" @@ -102655,31 +104786,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12067" + "12919" ], "x-ms-correlation-request-id": [ - "9e5a8205-7e7f-46c4-9027-9457c472491f" + "e5be0c71-491b-4f17-a25f-bc8aeedcea8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:9e5a8205-7e7f-46c4-9027-9457c472491f" + "WESTUS:20150813T074926Z:e5be0c71-491b-4f17-a25f-bc8aeedcea8f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine-content-management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine-content-management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "275" @@ -102697,7 +104828,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4694366a-00f4-46a9-8308-dedc31ca22fd" + "2640526a-bb74-4c54-812b-e2d8c52ff325" ], "Cache-Control": [ "no-cache" @@ -102707,31 +104838,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12066" + "12918" ], "x-ms-correlation-request-id": [ - "654ef97d-9560-4fc0-88df-fbd755a22406" + "2186811b-5a83-4d5d-a2bd-5179d6d71f24" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:654ef97d-9560-4fc0-88df-fbd755a22406" + "WESTUS:20150813T074926Z:2186811b-5a83-4d5d-a2bd-5179d6d71f24" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"developer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midsized_team\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/midsized_team\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"developer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/developer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midsized_team\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/midsized_team\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "547" @@ -102749,7 +104880,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d3e5e27-d1fd-4892-9149-a43af22a4624" + "6aa349f2-e328-48cc-ae2d-45d299a03b42" ], "Cache-Control": [ "no-cache" @@ -102759,31 +104890,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12065" + "12917" ], "x-ms-correlation-request-id": [ - "a859191e-fe29-4485-92f2-5cdc9d5e6713" + "c0370f92-4020-485c-96a6-f692671c9f5b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:a859191e-fe29-4485-92f2-5cdc9d5e6713" + "WESTUS:20150813T074926Z:c0370f92-4020-485c-96a6-f692671c9f5b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus/developer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzL2RldmVsb3Blci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus/developer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzL2RldmVsb3Blci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.14942\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/developer/Versions/4.3.14942\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.14942\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/developer/Versions/4.3.14942\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "290" @@ -102801,7 +104932,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fc1c431-dee4-44c1-a323-53f3ae4b587f" + "46b58abf-08dc-4428-a494-4d9b7da8f9c4" ], "Cache-Control": [ "no-cache" @@ -102811,31 +104942,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12064" + "12916" ], "x-ms-correlation-request-id": [ - "79b7d8fe-b184-43d3-b173-c3bbc1069c2e" + "3a1a937b-9883-4c34-a2ce-9b23d2e92fb7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:79b7d8fe-b184-43d3-b173-c3bbc1069c2e" + "WESTUS:20150813T074926Z:3a1a937b-9883-4c34-a2ce-9b23d2e92fb7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus/developer/versions/4.3.14942?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzL2RldmVsb3Blci92ZXJzaW9ucy80LjMuMTQ5NDI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus/developer/versions/4.3.14942?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzL2RldmVsb3Blci92ZXJzaW9ucy80LjMuMTQ5NDI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vidispine\",\r\n \"name\": \"developer\",\r\n \"product\": \"vidispine-content-management\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.14942\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/developer/Versions/4.3.14942\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vidispine\",\r\n \"name\": \"developer\",\r\n \"product\": \"vidispine-content-management\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.14942\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/developer/Versions/4.3.14942\"\r\n}", "ResponseHeaders": { "Content-Length": [ "522" @@ -102853,7 +104984,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5016097-aaba-4159-85df-af5129b89dc4" + "8e4974cc-4292-49d3-9763-6f5aaa45a5ff" ], "Cache-Control": [ "no-cache" @@ -102863,31 +104994,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12063" + "12915" ], "x-ms-correlation-request-id": [ - "27752dd4-5393-48ee-af43-68aa96535911" + "8dae9a81-2f12-4dbd-ac7e-cdf62df67234" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:27752dd4-5393-48ee-af43-68aa96535911" + "WESTUS:20150813T074927Z:8dae9a81-2f12-4dbd-ac7e-cdf62df67234" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus/midsized_team/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzL21pZHNpemVkX3RlYW0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus/midsized_team/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzL21pZHNpemVkX3RlYW0vdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.14942\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/midsized_team/Versions/4.3.14942\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.14942\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/midsized_team/Versions/4.3.14942\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "294" @@ -102905,7 +105036,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d9b8505b-1fd2-4fb4-88d7-d1293af4859f" + "4ae57aa4-c3da-43ec-9af3-a3c67756ac4c" ], "Cache-Control": [ "no-cache" @@ -102915,31 +105046,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12062" + "12914" ], "x-ms-correlation-request-id": [ - "b6dbb174-0ca1-40dd-bce8-87e97cb642b1" + "ef9a43de-437d-4a14-9b18-ff6b73a9f0d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212748Z:b6dbb174-0ca1-40dd-bce8-87e97cb642b1" + "WESTUS:20150813T074927Z:ef9a43de-437d-4a14-9b18-ff6b73a9f0d8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus/midsized_team/versions/4.3.14942?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzL21pZHNpemVkX3RlYW0vdmVyc2lvbnMvNC4zLjE0OTQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidispine/artifacttypes/vmimage/offers/vidispine-content-management/skus/midsized_team/versions/4.3.14942?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXNwaW5lL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlkaXNwaW5lLWNvbnRlbnQtbWFuYWdlbWVudC9za3VzL21pZHNpemVkX3RlYW0vdmVyc2lvbnMvNC4zLjE0OTQyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vidispine\",\r\n \"name\": \"midsized_team\",\r\n \"product\": \"vidispine-content-management\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.14942\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/midsized_team/Versions/4.3.14942\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vidispine\",\r\n \"name\": \"midsized_team\",\r\n \"product\": \"vidispine-content-management\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.3.14942\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine/ArtifactTypes/VMImage/Offers/vidispine-content-management/Skus/midsized_team/Versions/4.3.14942\"\r\n}", "ResponseHeaders": { "Content-Length": [ "530" @@ -102957,7 +105088,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33560566-6db3-4134-90d3-0d66bab3f30b" + "f770c426-4cd2-41b6-8c61-a679027950c2" ], "Cache-Control": [ "no-cache" @@ -102967,31 +105098,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12061" + "12913" ], "x-ms-correlation-request-id": [ - "3047bec3-7af0-462d-8254-865a7450d497" + "6a432640-cae1-4e70-8923-d71825296605" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212749Z:3047bec3-7af0-462d-8254-865a7450d497" + "WESTUS:20150813T074927Z:6a432640-cae1-4e70-8923-d71825296605" ], "Date": [ - "Wed, 05 Aug 2015 21:27:48 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidizmo/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXptby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidizmo/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXptby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprisetube-video-streaming-premium-portal\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo/ArtifactTypes/VMImage/Offers/enterprisetube-video-streaming-premium-portal\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"enterprisetube-video-streaming-premium-portal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo/ArtifactTypes/VMImage/Offers/enterprisetube-video-streaming-premium-portal\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "307" @@ -103009,7 +105140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed5c454d-7031-4405-9724-f0849a422ec6" + "374f7f78-a06d-4429-a0ee-e5459d01b7b7" ], "Cache-Control": [ "no-cache" @@ -103019,31 +105150,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12060" + "12912" ], "x-ms-correlation-request-id": [ - "7c2a85f8-7ddb-4809-a70a-a4d87f98390d" + "39c0d2b0-523f-4739-abdd-7c896d86d930" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212749Z:7c2a85f8-7ddb-4809-a70a-a4d87f98390d" + "WESTUS:20150813T074927Z:39c0d2b0-523f-4739-abdd-7c896d86d930" ], "Date": [ - "Wed, 05 Aug 2015 21:27:49 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidizmo/artifacttypes/vmimage/offers/enterprisetube-video-streaming-premium-portal/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXptby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2V0dWJlLXZpZGVvLXN0cmVhbWluZy1wcmVtaXVtLXBvcnRhbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidizmo/artifacttypes/vmimage/offers/enterprisetube-video-streaming-premium-portal/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXptby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2V0dWJlLXZpZGVvLXN0cmVhbWluZy1wcmVtaXVtLXBvcnRhbC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vdzmo-azr-ent-prm-1000\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo/ArtifactTypes/VMImage/Offers/enterprisetube-video-streaming-premium-portal/Skus/vdzmo-azr-ent-prm-1000\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vdzmo-azr-ent-prm-1000\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo/ArtifactTypes/VMImage/Offers/enterprisetube-video-streaming-premium-portal/Skus/vdzmo-azr-ent-prm-1000\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "312" @@ -103061,7 +105192,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a02f5a61-e1c7-4635-9a26-7d641eb70c75" + "822b2e1c-d624-40e5-8245-dd008bf9df02" ], "Cache-Control": [ "no-cache" @@ -103071,31 +105202,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12059" + "12911" ], "x-ms-correlation-request-id": [ - "eb44a1f2-3b0f-4719-a4b8-6ddc66a48f06" + "50234bf1-59c5-491c-bae2-29bb6ae57091" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212749Z:eb44a1f2-3b0f-4719-a4b8-6ddc66a48f06" + "WESTUS:20150813T074927Z:50234bf1-59c5-491c-bae2-29bb6ae57091" ], "Date": [ - "Wed, 05 Aug 2015 21:27:49 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidizmo/artifacttypes/vmimage/offers/enterprisetube-video-streaming-premium-portal/skus/vdzmo-azr-ent-prm-1000/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXptby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2V0dWJlLXZpZGVvLXN0cmVhbWluZy1wcmVtaXVtLXBvcnRhbC9za3VzL3Zkem1vLWF6ci1lbnQtcHJtLTEwMDAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidizmo/artifacttypes/vmimage/offers/enterprisetube-video-streaming-premium-portal/skus/vdzmo-azr-ent-prm-1000/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXptby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2V0dWJlLXZpZGVvLXN0cmVhbWluZy1wcmVtaXVtLXBvcnRhbC9za3VzL3Zkem1vLWF6ci1lbnQtcHJtLTEwMDAvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.8.15\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo/ArtifactTypes/VMImage/Offers/enterprisetube-video-streaming-premium-portal/Skus/vdzmo-azr-ent-prm-1000/Versions/4.8.15\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.8.15\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo/ArtifactTypes/VMImage/Offers/enterprisetube-video-streaming-premium-portal/Skus/vdzmo-azr-ent-prm-1000/Versions/4.8.15\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "312" @@ -103113,7 +105244,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2e7eca5-58d7-4c99-8e0b-beb7e5400736" + "013e284f-058f-41f7-9e98-b0f9aca60dbc" ], "Cache-Control": [ "no-cache" @@ -103123,31 +105254,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12058" + "12910" ], "x-ms-correlation-request-id": [ - "d05d4eae-dd70-46d9-8ac5-576ffa7023c7" + "4319c2c3-c32a-43de-93a1-0b5a9a56858b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212749Z:d05d4eae-dd70-46d9-8ac5-576ffa7023c7" + "WESTUS:20150813T074927Z:4319c2c3-c32a-43de-93a1-0b5a9a56858b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:49 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vidizmo/artifacttypes/vmimage/offers/enterprisetube-video-streaming-premium-portal/skus/vdzmo-azr-ent-prm-1000/versions/4.8.15?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXptby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2V0dWJlLXZpZGVvLXN0cmVhbWluZy1wcmVtaXVtLXBvcnRhbC9za3VzL3Zkem1vLWF6ci1lbnQtcHJtLTEwMDAvdmVyc2lvbnMvNC44LjE1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vidizmo/artifacttypes/vmimage/offers/enterprisetube-video-streaming-premium-portal/skus/vdzmo-azr-ent-prm-1000/versions/4.8.15?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlkaXptby9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2VudGVycHJpc2V0dWJlLXZpZGVvLXN0cmVhbWluZy1wcmVtaXVtLXBvcnRhbC9za3VzL3Zkem1vLWF6ci1lbnQtcHJtLTEwMDAvdmVyc2lvbnMvNC44LjE1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vidizmo\",\r\n \"name\": \"vdzmo-azr-ent-prm-1000\",\r\n \"product\": \"enterprisetube-video-streaming-premium-portal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.8.15\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo/ArtifactTypes/VMImage/Offers/enterprisetube-video-streaming-premium-portal/Skus/vdzmo-azr-ent-prm-1000/Versions/4.8.15\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vidizmo\",\r\n \"name\": \"vdzmo-azr-ent-prm-1000\",\r\n \"product\": \"enterprisetube-video-streaming-premium-portal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.8.15\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo/ArtifactTypes/VMImage/Offers/enterprisetube-video-streaming-premium-portal/Skus/vdzmo-azr-ent-prm-1000/Versions/4.8.15\"\r\n}", "ResponseHeaders": { "Content-Length": [ "574" @@ -103165,7 +105296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de98c848-a135-4b51-a0ed-beaff7042103" + "0e3c32ca-f450-45c2-8cb7-b3f23122309a" ], "Cache-Control": [ "no-cache" @@ -103175,31 +105306,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12057" + "12909" ], "x-ms-correlation-request-id": [ - "91478496-8c0e-4755-b117-a222c45a7a66" + "f3363887-c129-4c4e-bf53-c74ede32b316" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212749Z:91478496-8c0e-4755-b117-a222c45a7a66" + "WESTUS:20150813T074927Z:f3363887-c129-4c4e-bf53-c74ede32b316" ], "Date": [ - "Wed, 05 Aug 2015 21:27:49 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"viaworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"viaworks-online-2_5-beta\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"viaworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"viaworks-online-2_5-beta\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "505" @@ -103217,7 +105348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8380d99a-cc60-454d-8797-e837011493a8" + "c6938d87-2bfe-4230-9512-0c4a076e2f2a" ], "Cache-Control": [ "no-cache" @@ -103227,31 +105358,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12056" + "12908" ], "x-ms-correlation-request-id": [ - "10bc41a6-de0c-41df-9758-a6eb0cf127f8" + "09d45278-47d1-45f9-927a-9990f997884f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212749Z:10bc41a6-de0c-41df-9758-a6eb0cf127f8" + "WESTUS:20150813T074927Z:09d45278-47d1-45f9-927a-9990f997884f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:49 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"viaworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks/Skus/viaworks\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"viaworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks/Skus/viaworks\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "252" @@ -103269,7 +105400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "942397b0-2ca2-4c01-b3a0-de112757caf8" + "371f1c8d-a254-4b28-b873-74f579d278a0" ], "Cache-Control": [ "no-cache" @@ -103279,31 +105410,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12055" + "12907" ], "x-ms-correlation-request-id": [ - "62e8dbb3-f7d1-4057-839c-cf38bd00f014" + "6f77c865-73f1-4bfe-b2c8-3559fdaff958" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212749Z:62e8dbb3-f7d1-4057-839c-cf38bd00f014" + "WESTUS:20150813T074927Z:6f77c865-73f1-4bfe-b2c8-3559fdaff958" ], "Date": [ - "Wed, 05 Aug 2015 21:27:49 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks/skus/viaworks/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mvc2t1cy92aWF3b3Jrcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks/skus/viaworks/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mvc2t1cy92aWF3b3Jrcy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks/Skus/viaworks/Versions/1.0.4\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks/Skus/viaworks/Versions/1.0.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -103321,7 +105452,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "450c6933-6bbb-47ac-ae35-6911c62893ea" + "71467882-c8e0-4a3d-a981-53dfce5dfc54" ], "Cache-Control": [ "no-cache" @@ -103331,31 +105462,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12054" + "12906" ], "x-ms-correlation-request-id": [ - "3088a3d3-a008-4fd2-b81e-54da28b65528" + "0c0f1fb2-bdfa-4332-8cad-91f445001fd6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212749Z:3088a3d3-a008-4fd2-b81e-54da28b65528" + "WESTUS:20150813T074928Z:0c0f1fb2-bdfa-4332-8cad-91f445001fd6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:49 GMT" + "Thu, 13 Aug 2015 07:49:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks/skus/viaworks/versions/1.0.4?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mvc2t1cy92aWF3b3Jrcy92ZXJzaW9ucy8xLjAuND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks/skus/viaworks/versions/1.0.4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mvc2t1cy92aWF3b3Jrcy92ZXJzaW9ucy8xLjAuND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"virtualworks\",\r\n \"name\": \"viaworks\",\r\n \"product\": \"viaworks\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks/Skus/viaworks/Versions/1.0.4\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"virtualworks\",\r\n \"name\": \"viaworks\",\r\n \"product\": \"viaworks\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.4\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks/Skus/viaworks/Versions/1.0.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ "480" @@ -103373,7 +105504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4698b1b-aae8-4d81-93e3-7af137be9968" + "7fab2a0a-5055-49e9-bcea-1c1d12a6aae3" ], "Cache-Control": [ "no-cache" @@ -103383,31 +105514,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12053" + "12905" ], "x-ms-correlation-request-id": [ - "79b256ee-689b-4d3c-ad5e-4132636c7d4d" + "e5bd3ce5-3ee5-42dc-93b2-2d73355a84cc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:79b256ee-689b-4d3c-ad5e-4132636c7d4d" + "WESTUS:20150813T074928Z:e5bd3ce5-3ee5-42dc-93b2-2d73355a84cc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:49 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks-online-2_5-beta/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mtb25saW5lLTJfNS1iZXRhL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks-online-2_5-beta/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mtb25saW5lLTJfNS1iZXRhL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"viaworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta/Skus/viaworks\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"viaworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta/Skus/viaworks\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "268" @@ -103425,7 +105556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd546b8b-d082-4a51-a385-c4cc19af5354" + "0fdd3c62-4f32-46f4-b934-729000e958ad" ], "Cache-Control": [ "no-cache" @@ -103435,31 +105566,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12052" + "12904" ], "x-ms-correlation-request-id": [ - "0e6af69a-6ff5-46fd-a5c8-944667fd20e7" + "823dfac7-41ad-4091-be92-80e1fa8135ae" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:0e6af69a-6ff5-46fd-a5c8-944667fd20e7" + "WESTUS:20150813T074928Z:823dfac7-41ad-4091-be92-80e1fa8135ae" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks-online-2_5-beta/skus/viaworks/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mtb25saW5lLTJfNS1iZXRhL3NrdXMvdmlhd29ya3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks-online-2_5-beta/skus/viaworks/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mtb25saW5lLTJfNS1iZXRhL3NrdXMvdmlhd29ya3MvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta/Skus/viaworks/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta/Skus/viaworks/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -103477,7 +105608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5132b55d-6732-40b2-a074-388150c4b6c9" + "63b6a1fa-612b-4c4c-9107-2ba9dc827314" ], "Cache-Control": [ "no-cache" @@ -103487,31 +105618,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12051" + "12903" ], "x-ms-correlation-request-id": [ - "c0927c59-72a5-48c8-81cc-5f4fa82e683b" + "9a672fd9-81f5-4254-b502-b9fad51d4de1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:c0927c59-72a5-48c8-81cc-5f4fa82e683b" + "WESTUS:20150813T074928Z:9a672fd9-81f5-4254-b502-b9fad51d4de1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks-online-2_5-beta/skus/viaworks/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mtb25saW5lLTJfNS1iZXRhL3NrdXMvdmlhd29ya3MvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/virtualworks/artifacttypes/vmimage/offers/viaworks-online-2_5-beta/skus/viaworks/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlydHVhbHdvcmtzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvdmlhd29ya3Mtb25saW5lLTJfNS1iZXRhL3NrdXMvdmlhd29ya3MvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"virtualworks\",\r\n \"name\": \"viaworks\",\r\n \"product\": \"viaworks-online-2_5-beta\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta/Skus/viaworks/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"virtualworks\",\r\n \"name\": \"viaworks\",\r\n \"product\": \"viaworks-online-2_5-beta\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta/Skus/viaworks/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "512" @@ -103529,7 +105660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e557029-2d4b-4e54-ab2b-19a620dde7af" + "7ae1ff33-2d88-4c2f-bc1d-3ba837301676" ], "Cache-Control": [ "no-cache" @@ -103539,31 +105670,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12050" + "12902" ], "x-ms-correlation-request-id": [ - "587d4d94-96ef-4b24-b2e4-fac33c70efef" + "30ba295a-55dc-42a3-aaab-71d04c168bf7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:587d4d94-96ef-4b24-b2e4-fac33c70efef" + "WESTUS:20150813T074928Z:30ba295a-55dc-42a3-aaab-71d04c168bf7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_move\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_move\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "509" @@ -103581,7 +105712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5c2d53b-8930-4ae4-b28b-4aa5f5f23bbe" + "710ca858-c23a-4d68-8a5a-ee3c1e65db1b" ], "Cache-Control": [ "no-cache" @@ -103591,31 +105722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12049" + "12901" ], "x-ms-correlation-request-id": [ - "411152b9-bd97-427c-a5de-ec1d551f9a69" + "c85a2c56-ba7c-4481-b4ff-bc445030216c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:411152b9-bd97-427c-a5de-ec1d551f9a69" + "WESTUS:20150813T074928Z:c85a2c56-ba7c-4481-b4ff-bc445030216c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr_recovery_target_2008r2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2008r2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr_recovery_target_2012\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr_recovery_target_2012r2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012r2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr_repository\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_repository\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr_recovery_target_2008r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2008r2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr_recovery_target_2012\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr_recovery_target_2012r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012r2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_dr_repository\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_repository\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1243" @@ -103633,7 +105764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf42698e-5079-4c9d-8a48-d90bb4aed4fe" + "29b9b983-f2e4-4e9e-82f6-db04665858e5" ], "Cache-Control": [ "no-cache" @@ -103643,31 +105774,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12048" + "12900" ], "x-ms-correlation-request-id": [ - "80a80d52-15a4-489f-813a-fd0a1166e97c" + "9a7e4d43-272d-420c-96e2-50e6cd2846f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:80a80d52-15a4-489f-813a-fd0a1166e97c" + "WESTUS:20150813T074928Z:9a7e4d43-272d-420c-96e2-50e6cd2846f3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2008r2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMDhyMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2008r2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMDhyMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2008r2/Versions/7.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2008r2/Versions/7.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "303" @@ -103685,7 +105816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed6d192c-7fe4-41d1-8a83-69205044c7be" + "78129b97-4158-48c5-beb4-d80a116960d7" ], "Cache-Control": [ "no-cache" @@ -103695,31 +105826,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12047" + "12899" ], "x-ms-correlation-request-id": [ - "5b2e6dc1-c496-4d4f-ba0f-541716df69a9" + "1f6e09e6-5eca-4fa7-ad85-19b2945129f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:5b2e6dc1-c496-4d4f-ba0f-541716df69a9" + "WESTUS:20150813T074928Z:1f6e09e6-5eca-4fa7-ad85-19b2945129f5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2008r2/versions/7.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMDhyMi92ZXJzaW9ucy83LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2008r2/versions/7.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMDhyMi92ZXJzaW9ucy83LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_dr_recovery_target_2008r2\",\r\n \"product\": \"double_take_dr\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2008r2/Versions/7.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_dr_recovery_target_2008r2\",\r\n \"product\": \"double_take_dr\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2008r2/Versions/7.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "558" @@ -103737,7 +105868,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56407a6f-0079-4da3-b2d4-becfaf93aa80" + "c109d595-87c8-4c59-a8f2-d89c2af59cc3" ], "Cache-Control": [ "no-cache" @@ -103747,31 +105878,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12046" + "12898" ], "x-ms-correlation-request-id": [ - "4ec3ab03-0afc-4b5e-abaa-c77d3d36c6f9" + "7312f1cc-49ff-44ed-90bd-4f523bef1713" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:4ec3ab03-0afc-4b5e-abaa-c77d3d36c6f9" + "WESTUS:20150813T074928Z:7312f1cc-49ff-44ed-90bd-4f523bef1713" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2012/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2012/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMTIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012/Versions/7.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012/Versions/7.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "301" @@ -103789,7 +105920,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "038f1cba-d6fc-46f1-a611-1607ab282519" + "6286220d-6d99-4eb1-9eca-a60c1d5dda61" ], "Cache-Control": [ "no-cache" @@ -103799,31 +105930,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12045" + "12897" ], "x-ms-correlation-request-id": [ - "6e91cbcb-6f9b-41b8-9f2c-d3a266f43d6f" + "25a10ac4-8aa0-4f9c-b3f7-2c3a1e378fec" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:6e91cbcb-6f9b-41b8-9f2c-d3a266f43d6f" + "WESTUS:20150813T074929Z:25a10ac4-8aa0-4f9c-b3f7-2c3a1e378fec" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2012/versions/7.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMTIvdmVyc2lvbnMvNy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2012/versions/7.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMTIvdmVyc2lvbnMvNy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_dr_recovery_target_2012\",\r\n \"product\": \"double_take_dr\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012/Versions/7.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_dr_recovery_target_2012\",\r\n \"product\": \"double_take_dr\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012/Versions/7.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "554" @@ -103841,7 +105972,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2eddbad8-5b83-4618-b1dd-1c5ae2908554" + "e3fd4919-4c7c-42b8-a6df-80b090aec2c7" ], "Cache-Control": [ "no-cache" @@ -103851,31 +105982,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12044" + "12896" ], "x-ms-correlation-request-id": [ - "1ff480fc-21f7-4dc6-9f27-92c77fc6ee26" + "6853e46b-f2a8-4165-abbe-c39711645786" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212750Z:1ff480fc-21f7-4dc6-9f27-92c77fc6ee26" + "WESTUS:20150813T074929Z:6853e46b-f2a8-4165-abbe-c39711645786" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2012r2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMTJyMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2012r2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMTJyMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012r2/Versions/7.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012r2/Versions/7.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "303" @@ -103893,7 +106024,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de60009f-bcf6-4d08-9249-c952ea9d4f00" + "82f46991-c10e-4091-9463-01d60e4472f0" ], "Cache-Control": [ "no-cache" @@ -103903,31 +106034,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12043" + "12895" ], "x-ms-correlation-request-id": [ - "01b36a0a-b98d-4a78-98f2-25fd4a7d4ad6" + "f7fba9f5-5237-4eda-ba08-e2cd841aaf41" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:01b36a0a-b98d-4a78-98f2-25fd4a7d4ad6" + "WESTUS:20150813T074929Z:f7fba9f5-5237-4eda-ba08-e2cd841aaf41" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2012r2/versions/7.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMTJyMi92ZXJzaW9ucy83LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_recovery_target_2012r2/versions/7.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVjb3ZlcnlfdGFyZ2V0XzIwMTJyMi92ZXJzaW9ucy83LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_dr_recovery_target_2012r2\",\r\n \"product\": \"double_take_dr\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012r2/Versions/7.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_dr_recovery_target_2012r2\",\r\n \"product\": \"double_take_dr\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_recovery_target_2012r2/Versions/7.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "558" @@ -103945,7 +106076,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f10374ef-c623-404b-bd28-a21ed012109c" + "999cd52c-57af-4222-9443-89050e8ebd02" ], "Cache-Control": [ "no-cache" @@ -103955,31 +106086,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12042" + "12894" ], "x-ms-correlation-request-id": [ - "51f75cf6-33ad-4c1f-a03a-e43aa11fae9d" + "ef952e33-9861-4116-b747-3c271e0c4c20" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:51f75cf6-33ad-4c1f-a03a-e43aa11fae9d" + "WESTUS:20150813T074929Z:ef952e33-9861-4116-b747-3c271e0c4c20" ], "Date": [ - "Wed, 05 Aug 2015 21:27:50 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_repository/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVwb3NpdG9yeS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_repository/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVwb3NpdG9yeS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_repository/Versions/7.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_repository/Versions/7.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "291" @@ -103997,7 +106128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6dc5ca7e-21d9-4768-b0dc-9ce421441619" + "1fde7794-900a-4fec-b5b1-4ec9769f0ed6" ], "Cache-Control": [ "no-cache" @@ -104007,31 +106138,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12041" + "12893" ], "x-ms-correlation-request-id": [ - "379c01c5-dadc-4980-a802-74c2253dc222" + "f65763de-e4e2-41e8-8b13-f09b3421db84" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:379c01c5-dadc-4980-a802-74c2253dc222" + "WESTUS:20150813T074929Z:f65763de-e4e2-41e8-8b13-f09b3421db84" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_repository/versions/7.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVwb3NpdG9yeS92ZXJzaW9ucy83LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_dr/skus/double_take_dr_repository/versions/7.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX2RyL3NrdXMvZG91YmxlX3Rha2VfZHJfcmVwb3NpdG9yeS92ZXJzaW9ucy83LjEuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_dr_repository\",\r\n \"product\": \"double_take_dr\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_repository/Versions/7.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_dr_repository\",\r\n \"product\": \"double_take_dr\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_dr/Skus/double_take_dr_repository/Versions/7.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "534" @@ -104049,7 +106180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a262da97-488d-4a7f-b46c-773a3c0ec1c8" + "eb880034-92a8-4496-a8a4-29001e95264c" ], "Cache-Control": [ "no-cache" @@ -104059,31 +106190,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12040" + "12892" ], "x-ms-correlation-request-id": [ - "bf60eb45-b929-46f7-ab12-0c3fbb0cbb67" + "049948ea-d3c5-4a87-b71e-ebd37830c54e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:bf60eb45-b929-46f7-ab12-0c3fbb0cbb67" + "WESTUS:20150813T074929Z:049948ea-d3c5-4a87-b71e-ebd37830c54e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_move_target_2008r2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2008r2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_move_target_2012\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_move_target_2012r2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012r2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_move_target_2008r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2008r2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_move_target_2012\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"double_take_move_target_2012r2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012r2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "914" @@ -104101,7 +106232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0ba4dce-5afa-4dcc-831d-d8061bfdedb8" + "6f8f1213-b123-49ac-b943-2a8c05db4daf" ], "Cache-Control": [ "no-cache" @@ -104111,31 +106242,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12039" + "12891" ], "x-ms-correlation-request-id": [ - "68369b56-ed9e-41fe-adcd-50044d13bd94" + "b4d6d128-80b6-4ca2-a3d8-2975dab96a6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:68369b56-ed9e-41fe-adcd-50044d13bd94" + "WESTUS:20150813T074929Z:b4d6d128-80b6-4ca2-a3d8-2975dab96a6e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2008r2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDA4cjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2008r2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDA4cjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2008r2/Versions/7.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2008r2/Versions/7.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "298" @@ -104153,7 +106284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b0dc20f-c542-4138-b242-67f11a60e442" + "3ef0520d-ee2d-4dde-8dd4-ee274c8d1c5b" ], "Cache-Control": [ "no-cache" @@ -104163,31 +106294,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12038" + "12890" ], "x-ms-correlation-request-id": [ - "c4771ce1-acd2-4854-a3d4-25b668bf25f1" + "2cdf85a8-3532-4e1f-91a7-ac0d59ca7576" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:c4771ce1-acd2-4854-a3d4-25b668bf25f1" + "WESTUS:20150813T074929Z:2cdf85a8-3532-4e1f-91a7-ac0d59ca7576" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2008r2/versions/7.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDA4cjIvdmVyc2lvbnMvNy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2008r2/versions/7.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDA4cjIvdmVyc2lvbnMvNy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_move_target_2008r2\",\r\n \"product\": \"double_take_move\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2008r2/Versions/7.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_move_target_2008r2\",\r\n \"product\": \"double_take_move\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2008r2/Versions/7.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "548" @@ -104205,7 +106336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0d6a82f-99ba-4b60-b6ed-a1aea7d33290" + "58541291-e698-4c62-a66b-ad28c3a13af5" ], "Cache-Control": [ "no-cache" @@ -104215,31 +106346,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12037" + "12889" ], "x-ms-correlation-request-id": [ - "048184c1-0d7b-4deb-a87a-ffc949076215" + "aa61b02a-22e9-4c53-aad5-e3762f8373fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:048184c1-0d7b-4deb-a87a-ffc949076215" + "WESTUS:20150813T074929Z:aa61b02a-22e9-4c53-aad5-e3762f8373fd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2012/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDEyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2012/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDEyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012/Versions/7.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012/Versions/7.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "296" @@ -104257,7 +106388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91b536bc-b28c-473b-b884-04eca353097d" + "513493c3-03b4-4dd1-b333-6f29689513f8" ], "Cache-Control": [ "no-cache" @@ -104267,31 +106398,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12036" + "12888" ], "x-ms-correlation-request-id": [ - "70ccd65f-4c12-4314-97ce-1bfe1a307f6f" + "335d3b66-a766-43c6-9e22-edad0c32bb22" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:70ccd65f-4c12-4314-97ce-1bfe1a307f6f" + "WESTUS:20150813T074929Z:335d3b66-a766-43c6-9e22-edad0c32bb22" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2012/versions/7.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDEyL3ZlcnNpb25zLzcuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2012/versions/7.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDEyL3ZlcnNpb25zLzcuMS4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_move_target_2012\",\r\n \"product\": \"double_take_move\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012/Versions/7.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_move_target_2012\",\r\n \"product\": \"double_take_move\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012/Versions/7.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "544" @@ -104309,7 +106440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35cbc49a-e160-423b-946a-d4dea7320d65" + "1ebae3d5-aad8-4942-9fd8-8cfe75e93dc0" ], "Cache-Control": [ "no-cache" @@ -104319,31 +106450,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12035" + "12887" ], "x-ms-correlation-request-id": [ - "d69d7526-7c69-4136-bd07-9e4a3ad25dee" + "8470b244-ff61-4a44-ba53-3da107837e01" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:d69d7526-7c69-4136-bd07-9e4a3ad25dee" + "WESTUS:20150813T074929Z:8470b244-ff61-4a44-ba53-3da107837e01" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2012r2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDEycjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2012r2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDEycjIvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012r2/Versions/7.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012r2/Versions/7.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "298" @@ -104361,7 +106492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93f64fb6-6caa-446f-bfca-8bcbc320c87f" + "ba8a36f5-de3b-40b3-9fed-be97407ad14e" ], "Cache-Control": [ "no-cache" @@ -104371,31 +106502,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12034" + "12886" ], "x-ms-correlation-request-id": [ - "601782c4-c79f-4176-b3c2-5d7449766176" + "ea448170-675e-4f34-bd2d-9866a7b5ec2f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:601782c4-c79f-4176-b3c2-5d7449766176" + "WESTUS:20150813T074929Z:ea448170-675e-4f34-bd2d-9866a7b5ec2f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2012r2/versions/7.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDEycjIvdmVyc2lvbnMvNy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vision_solutions/artifacttypes/vmimage/offers/double_take_move/skus/double_take_move_target_2012r2/versions/7.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdmlzaW9uX3NvbHV0aW9ucy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RvdWJsZV90YWtlX21vdmUvc2t1cy9kb3VibGVfdGFrZV9tb3ZlX3RhcmdldF8yMDEycjIvdmVyc2lvbnMvNy4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_move_target_2012r2\",\r\n \"product\": \"double_take_move\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012r2/Versions/7.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vision_solutions\",\r\n \"name\": \"double_take_move_target_2012r2\",\r\n \"product\": \"double_take_move\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions/ArtifactTypes/VMImage/Offers/double_take_move/Skus/double_take_move_target_2012r2/Versions/7.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "548" @@ -104413,7 +106544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b39a6ce3-a710-4d05-b0a5-1295acae527c" + "b8d851c0-8b02-445c-b704-c4cc34a82760" ], "Cache-Control": [ "no-cache" @@ -104423,28 +106554,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12033" + "12885" ], "x-ms-correlation-request-id": [ - "907312a1-17d4-4e2e-8e67-a9bd6e81a0bd" + "e1da90d0-13e5-4172-af93-312404a21f8f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212751Z:907312a1-17d4-4e2e-8e67-a9bd6e81a0bd" + "WESTUS:20150813T074930Z:e1da90d0-13e5-4172-af93-312404a21f8f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Vormetric/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVm9ybWV0cmljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Vormetric/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVm9ybWV0cmljL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -104465,7 +106596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3ee7080-4bcd-4835-a745-614c5e761f8d" + "a967cd07-492a-4968-a2b0-1255ff4e3b14" ], "Cache-Control": [ "no-cache" @@ -104475,28 +106606,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12032" + "12884" ], "x-ms-correlation-request-id": [ - "7607b163-253f-4e84-a1c0-a08e9741c11d" + "d6d6ea79-1bd0-4d35-a6e4-99af99d0ab14" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212752Z:7607b163-253f-4e84-a1c0-a08e9741c11d" + "WESTUS:20150813T074930Z:d6d6ea79-1bd0-4d35-a6e4-99af99d0ab14" ], "Date": [ - "Wed, 05 Aug 2015 21:27:51 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Vormetric.TestExt/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVm9ybWV0cmljLlRlc3RFeHQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Vormetric.TestExt/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVm9ybWV0cmljLlRlc3RFeHQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -104517,7 +106648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d2f3dbc-4be7-4a2f-9023-15504ae4cd3e" + "d89681ad-451e-4302-bb62-f8fc0227f2fa" ], "Cache-Control": [ "no-cache" @@ -104527,28 +106658,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12031" + "12883" ], "x-ms-correlation-request-id": [ - "451b75da-716d-4af3-a776-63965049d7d6" + "4819df96-55ce-4317-b78c-ef7d6883f3c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212752Z:451b75da-716d-4af3-a776-63965049d7d6" + "WESTUS:20150813T074930Z:4819df96-55ce-4317-b78c-ef7d6883f3c8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/Vormetric.VormetricTransparentEncryption/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVm9ybWV0cmljLlZvcm1ldHJpY1RyYW5zcGFyZW50RW5jcnlwdGlvbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/Vormetric.VormetricTransparentEncryption/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvVm9ybWV0cmljLlZvcm1ldHJpY1RyYW5zcGFyZW50RW5jcnlwdGlvbi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -104569,7 +106700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ee99a48-3d2c-4bd3-a7e9-2dc7790c7fc7" + "97934688-a28b-454b-8df4-76975c941a34" ], "Cache-Control": [ "no-cache" @@ -104579,31 +106710,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12030" + "12882" ], "x-ms-correlation-request-id": [ - "56c8e9b2-4fbf-4010-98d4-b13721a36a13" + "1d25d404-b7ff-48f9-a4c8-3c779872150c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212752Z:56c8e9b2-4fbf-4010-98d4-b13721a36a13" + "WESTUS:20150813T074930Z:1d25d404-b7ff-48f9-a4c8-3c779872150c" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"slashdb\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"slashdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "227" @@ -104621,7 +106752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bb67d0c-bb50-41ae-962a-7932843bfe11" + "de22f7f2-e8b5-4c24-98f0-01bc78c965eb" ], "Cache-Control": [ "no-cache" @@ -104631,31 +106762,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12029" + "12881" ], "x-ms-correlation-request-id": [ - "05228263-c93e-45cc-89ca-1184577cf100" + "e4290db5-8947-49f5-9b93-60e1b9497ccc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212752Z:05228263-c93e-45cc-89ca-1184577cf100" + "WESTUS:20150813T074930Z:e4290db5-8947-49f5-9b93-60e1b9497ccc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"slashdb-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"slashdb-unlimited\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-unlimited\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"slashdb-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"slashdb-unlimited\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-unlimited\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "509" @@ -104673,7 +106804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a541664b-a87c-4032-9c7d-c02c3cb666c4" + "b8ad52d9-dc7f-4b48-923a-409ab201ee98" ], "Cache-Control": [ "no-cache" @@ -104683,31 +106814,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12028" + "12880" ], "x-ms-correlation-request-id": [ - "d00cf9cc-4189-41b0-9a92-46a58589afce" + "8e0f8b83-19b7-439b-8e49-3c6a34e92756" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212752Z:d00cf9cc-4189-41b0-9a92-46a58589afce" + "WESTUS:20150813T074930Z:8e0f8b83-19b7-439b-8e49-3c6a34e92756" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus/slashdb-azure/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzL3NsYXNoZGItYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus/slashdb-azure/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzL3NsYXNoZGItYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-azure/Versions/0.8.14\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-azure/Versions/0.8.14\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "261" @@ -104725,7 +106856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd06a13a-2610-44d4-ad81-0f0aed40f024" + "a9a22b67-4acb-4330-84a1-eca7586bea62" ], "Cache-Control": [ "no-cache" @@ -104735,31 +106866,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12027" + "12879" ], "x-ms-correlation-request-id": [ - "830e7414-c1ff-4b42-ad55-888dac5919bd" + "72499080-7e34-4984-8371-13480777ab11" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212752Z:830e7414-c1ff-4b42-ad55-888dac5919bd" + "WESTUS:20150813T074930Z:72499080-7e34-4984-8371-13480777ab11" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus/slashdb-azure/versions/0.8.14?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzL3NsYXNoZGItYXp1cmUvdmVyc2lvbnMvMC44LjE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus/slashdb-azure/versions/0.8.14?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzL3NsYXNoZGItYXp1cmUvdmVyc2lvbnMvMC44LjE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vte\",\r\n \"name\": \"slashdb-azure\",\r\n \"product\": \"slashdb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-azure/Versions/0.8.14\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vte\",\r\n \"name\": \"slashdb-azure\",\r\n \"product\": \"slashdb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-azure/Versions/0.8.14\"\r\n}", "ResponseHeaders": { "Content-Length": [ "470" @@ -104777,7 +106908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "958dcb76-eb1d-48c7-92a1-7fd80e886321" + "a6a52f38-16ec-4c5f-bbd5-99599145b0a9" ], "Cache-Control": [ "no-cache" @@ -104787,31 +106918,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12026" + "12878" ], "x-ms-correlation-request-id": [ - "a4bde699-f3d5-40c9-b840-1448bf445b3b" + "0b36c862-4bcd-495c-b12b-7d9bd683ba48" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212752Z:a4bde699-f3d5-40c9-b840-1448bf445b3b" + "WESTUS:20150813T074930Z:0b36c862-4bcd-495c-b12b-7d9bd683ba48" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus/slashdb-unlimited/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzL3NsYXNoZGItdW5saW1pdGVkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus/slashdb-unlimited/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzL3NsYXNoZGItdW5saW1pdGVkL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-unlimited/Versions/0.8.14\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-unlimited/Versions/0.8.14\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "265" @@ -104829,7 +106960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01266e94-497e-40f0-bcfb-28273b96ecde" + "f1c1ae1b-2ba5-4130-8944-484ce88228d7" ], "Cache-Control": [ "no-cache" @@ -104839,31 +106970,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12025" + "12877" ], "x-ms-correlation-request-id": [ - "1813b252-4251-49b5-959f-7ecb364e9a4d" + "39cef7c0-d534-4e6b-b57d-5de861036eba" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212752Z:1813b252-4251-49b5-959f-7ecb364e9a4d" + "WESTUS:20150813T074930Z:39cef7c0-d534-4e6b-b57d-5de861036eba" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus/slashdb-unlimited/versions/0.8.14?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzL3NsYXNoZGItdW5saW1pdGVkL3ZlcnNpb25zLzAuOC4xND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/vte/artifacttypes/vmimage/offers/slashdb/skus/slashdb-unlimited/versions/0.8.14?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvdnRlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvc2xhc2hkYi9za3VzL3NsYXNoZGItdW5saW1pdGVkL3ZlcnNpb25zLzAuOC4xND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vte\",\r\n \"name\": \"slashdb-unlimited\",\r\n \"product\": \"slashdb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.14\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-unlimited/Versions/0.8.14\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"vte\",\r\n \"name\": \"slashdb-unlimited\",\r\n \"product\": \"slashdb\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"0.8.14\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte/ArtifactTypes/VMImage/Offers/slashdb/Skus/slashdb-unlimited/Versions/0.8.14\"\r\n}", "ResponseHeaders": { "Content-Length": [ "478" @@ -104881,7 +107012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1d55a4e-c1f8-4091-bec3-f4c3a2e3dffb" + "986e2b65-e536-49f1-af85-4c7bfcbd7fc0" ], "Cache-Control": [ "no-cache" @@ -104891,31 +107022,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12024" + "12876" ], "x-ms-correlation-request-id": [ - "1d6aa4b9-b5e5-4931-bd6d-659d2f0c7a5d" + "2b925b61-9176-4f62-ad53-6964ec8d3ec3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:1d6aa4b9-b5e5-4931-bd6d-659d2f0c7a5d" + "WESTUS:20150813T074931Z:2b925b61-9176-4f62-ad53-6964ec8d3ec3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/waratek/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2FyYXRlay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/waratek/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2FyYXRlay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek-locker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek/ArtifactTypes/VMImage/Offers/waratek-locker\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek-locker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek/ArtifactTypes/VMImage/Offers/waratek-locker\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "245" @@ -104933,7 +107064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b641bd9-ee9c-43a9-ad95-b33e11d14e0e" + "b75ffffa-8b53-422a-9709-ef551579f4c8" ], "Cache-Control": [ "no-cache" @@ -104943,31 +107074,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12023" + "12875" ], "x-ms-correlation-request-id": [ - "9da13a2a-d973-42a0-ada1-9e58d4858144" + "e092364d-8c9c-4f67-9139-ef43c148e784" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:9da13a2a-d973-42a0-ada1-9e58d4858144" + "WESTUS:20150813T074931Z:e092364d-8c9c-4f67-9139-ef43c148e784" ], "Date": [ - "Wed, 05 Aug 2015 21:27:52 GMT" + "Thu, 13 Aug 2015 07:49:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/waratek/artifacttypes/vmimage/offers/waratek-locker/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2FyYXRlay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcmF0ZWstbG9ja2VyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/waratek/artifacttypes/vmimage/offers/waratek-locker/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2FyYXRlay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcmF0ZWstbG9ja2VyL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tomcat7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek/ArtifactTypes/VMImage/Offers/waratek-locker/Skus/tomcat7\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tomcat7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek/ArtifactTypes/VMImage/Offers/waratek-locker/Skus/tomcat7\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "251" @@ -104985,7 +107116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17b07150-6b47-4120-bab8-4fc488950101" + "89166b6e-d04f-43a9-baeb-46ef7a237df1" ], "Cache-Control": [ "no-cache" @@ -104995,31 +107126,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12022" + "12874" ], "x-ms-correlation-request-id": [ - "cd829bcd-2b68-401d-9b54-1657e4aee731" + "508cb059-4b48-4934-a104-196e8936e32d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:cd829bcd-2b68-401d-9b54-1657e4aee731" + "WESTUS:20150813T074931Z:508cb059-4b48-4934-a104-196e8936e32d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/waratek/artifacttypes/vmimage/offers/waratek-locker/skus/tomcat7/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2FyYXRlay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcmF0ZWstbG9ja2VyL3NrdXMvdG9tY2F0Ny92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/waratek/artifacttypes/vmimage/offers/waratek-locker/skus/tomcat7/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2FyYXRlay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcmF0ZWstbG9ja2VyL3NrdXMvdG9tY2F0Ny92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek/ArtifactTypes/VMImage/Offers/waratek-locker/Skus/tomcat7/Versions/2.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek/ArtifactTypes/VMImage/Offers/waratek-locker/Skus/tomcat7/Versions/2.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "264" @@ -105037,7 +107168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e4df23d-2e0e-4dfb-827e-d56e9dd8c59c" + "b0c6aacf-8a5a-4d58-acc4-76225fd69a49" ], "Cache-Control": [ "no-cache" @@ -105047,31 +107178,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12021" + "12873" ], "x-ms-correlation-request-id": [ - "77d35794-e8f1-4a8c-9ad9-04360c572f76" + "5bd21838-512c-4b87-8d27-e248172def86" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:77d35794-e8f1-4a8c-9ad9-04360c572f76" + "WESTUS:20150813T074931Z:5bd21838-512c-4b87-8d27-e248172def86" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/waratek/artifacttypes/vmimage/offers/waratek-locker/skus/tomcat7/versions/2.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2FyYXRlay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcmF0ZWstbG9ja2VyL3NrdXMvdG9tY2F0Ny92ZXJzaW9ucy8yLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/waratek/artifacttypes/vmimage/offers/waratek-locker/skus/tomcat7/versions/2.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2FyYXRlay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3dhcmF0ZWstbG9ja2VyL3NrdXMvdG9tY2F0Ny92ZXJzaW9ucy8yLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"waratek\",\r\n \"name\": \"tomcat7\",\r\n \"product\": \"waratek-locker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek/ArtifactTypes/VMImage/Offers/waratek-locker/Skus/tomcat7/Versions/2.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"waratek\",\r\n \"name\": \"tomcat7\",\r\n \"product\": \"waratek-locker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek/ArtifactTypes/VMImage/Offers/waratek-locker/Skus/tomcat7/Versions/2.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "478" @@ -105089,7 +107220,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afe2b48d-6249-441b-bd6c-41de8970c3f0" + "1fd6a796-78d8-4f38-8c38-fa598e340fa1" ], "Cache-Control": [ "no-cache" @@ -105099,31 +107230,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12020" + "12872" ], "x-ms-correlation-request-id": [ - "bd36b0e5-9ace-4bcf-b9ed-489d86b9e49d" + "0100d6c5-eba7-4026-bda7-f0b634c65306" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:bd36b0e5-9ace-4bcf-b9ed-489d86b9e49d" + "WESTUS:20150813T074931Z:0100d6c5-eba7-4026-bda7-f0b634c65306" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/watchfulsoftware/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2F0Y2hmdWxzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/watchfulsoftware/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2F0Y2hmdWxzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rightswatch-single-instance\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware/ArtifactTypes/VMImage/Offers/rightswatch-single-instance\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rightswatch-single-instance\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware/ArtifactTypes/VMImage/Offers/rightswatch-single-instance\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "280" @@ -105141,7 +107272,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57ed031c-9837-4c3a-86b4-8aab2669bb6a" + "e85f3ac7-29ee-48c4-ad55-da4e73b7b60f" ], "Cache-Control": [ "no-cache" @@ -105151,31 +107282,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12019" + "12871" ], "x-ms-correlation-request-id": [ - "083db872-d03e-4b0b-87c1-e0547a82ea73" + "f50d9266-977f-4383-bf1a-d584e1b1b8c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:083db872-d03e-4b0b-87c1-e0547a82ea73" + "WESTUS:20150813T074931Z:f50d9266-977f-4383-bf1a-d584e1b1b8c1" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/watchfulsoftware/artifacttypes/vmimage/offers/rightswatch-single-instance/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2F0Y2hmdWxzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JpZ2h0c3dhdGNoLXNpbmdsZS1pbnN0YW5jZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/watchfulsoftware/artifacttypes/vmimage/offers/rightswatch-single-instance/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2F0Y2hmdWxzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JpZ2h0c3dhdGNoLXNpbmdsZS1pbnN0YW5jZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rightswatch-subscritpion-license-ae-1-100\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware/ArtifactTypes/VMImage/Offers/rightswatch-single-instance/Skus/rightswatch-subscritpion-license-ae-1-100\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rightswatch-subscritpion-license-ae-1-100\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware/ArtifactTypes/VMImage/Offers/rightswatch-single-instance/Skus/rightswatch-subscritpion-license-ae-1-100\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "341" @@ -105193,7 +107324,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1404c321-5d3f-46b3-bbc1-4f27f7e381b2" + "6f1aa050-8810-42ee-a8b9-5b1d4e0e309e" ], "Cache-Control": [ "no-cache" @@ -105203,31 +107334,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12018" + "12870" ], "x-ms-correlation-request-id": [ - "46949f6e-e629-4cce-9f4f-1eba4ccb8acc" + "eaca1fa1-eb16-40b2-a211-4d103f9af87d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:46949f6e-e629-4cce-9f4f-1eba4ccb8acc" + "WESTUS:20150813T074931Z:eaca1fa1-eb16-40b2-a211-4d103f9af87d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/watchfulsoftware/artifacttypes/vmimage/offers/rightswatch-single-instance/skus/rightswatch-subscritpion-license-ae-1-100/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2F0Y2hmdWxzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JpZ2h0c3dhdGNoLXNpbmdsZS1pbnN0YW5jZS9za3VzL3JpZ2h0c3dhdGNoLXN1YnNjcml0cGlvbi1saWNlbnNlLWFlLTEtMTAwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/watchfulsoftware/artifacttypes/vmimage/offers/rightswatch-single-instance/skus/rightswatch-subscritpion-license-ae-1-100/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2F0Y2hmdWxzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JpZ2h0c3dhdGNoLXNpbmdsZS1pbnN0YW5jZS9za3VzL3JpZ2h0c3dhdGNoLXN1YnNjcml0cGlvbi1saWNlbnNlLWFlLTEtMTAwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware/ArtifactTypes/VMImage/Offers/rightswatch-single-instance/Skus/rightswatch-subscritpion-license-ae-1-100/Versions/1.0.3\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware/ArtifactTypes/VMImage/Offers/rightswatch-single-instance/Skus/rightswatch-subscritpion-license-ae-1-100/Versions/1.0.3\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "320" @@ -105245,7 +107376,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98a41b6e-b6c6-47bd-a883-4fc9b8e12adf" + "90906b0d-049e-4ce7-95d7-a746b07b21a3" ], "Cache-Control": [ "no-cache" @@ -105255,31 +107386,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12017" + "12869" ], "x-ms-correlation-request-id": [ - "cae8178c-271e-421a-bd4f-01410652569e" + "56eedc2c-5930-49a9-9295-0c6b4395713e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:cae8178c-271e-421a-bd4f-01410652569e" + "WESTUS:20150813T074931Z:56eedc2c-5930-49a9-9295-0c6b4395713e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/watchfulsoftware/artifacttypes/vmimage/offers/rightswatch-single-instance/skus/rightswatch-subscritpion-license-ae-1-100/versions/1.0.3?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2F0Y2hmdWxzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JpZ2h0c3dhdGNoLXNpbmdsZS1pbnN0YW5jZS9za3VzL3JpZ2h0c3dhdGNoLXN1YnNjcml0cGlvbi1saWNlbnNlLWFlLTEtMTAwL3ZlcnNpb25zLzEuMC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/watchfulsoftware/artifacttypes/vmimage/offers/rightswatch-single-instance/skus/rightswatch-subscritpion-license-ae-1-100/versions/1.0.3?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2F0Y2hmdWxzb2Z0d2FyZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3JpZ2h0c3dhdGNoLXNpbmdsZS1pbnN0YW5jZS9za3VzL3JpZ2h0c3dhdGNoLXN1YnNjcml0cGlvbi1saWNlbnNlLWFlLTEtMTAwL3ZlcnNpb25zLzEuMC4zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"watchfulsoftware\",\r\n \"name\": \"rightswatch-subscritpion-license-ae-1-100\",\r\n \"product\": \"rightswatch-single-instance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware/ArtifactTypes/VMImage/Offers/rightswatch-single-instance/Skus/rightswatch-subscritpion-license-ae-1-100/Versions/1.0.3\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"watchfulsoftware\",\r\n \"name\": \"rightswatch-subscritpion-license-ae-1-100\",\r\n \"product\": \"rightswatch-single-instance\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware/ArtifactTypes/VMImage/Offers/rightswatch-single-instance/Skus/rightswatch-subscritpion-license-ae-1-100/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ "592" @@ -105297,7 +107428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46ac15e8-d7c5-4ca9-a137-07767ffb9e26" + "7c4a1d50-d96a-4ed4-a2d4-519b936dd241" ], "Cache-Control": [ "no-cache" @@ -105307,28 +107438,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12016" + "12868" ], "x-ms-correlation-request-id": [ - "465ecf93-98d7-4c55-b5fb-ecbdda305ba7" + "45fd4beb-dc12-4bd8-8cd5-3a07fdace976" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:465ecf93-98d7-4c55-b5fb-ecbdda305ba7" + "WESTUS:20150813T074931Z:45fd4beb-dc12-4bd8-8cd5-3a07fdace976" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/websense-apmailpe/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2Vic2Vuc2UtYXBtYWlscGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/websense-apmailpe/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd2Vic2Vuc2UtYXBtYWlscGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "[]", @@ -105349,7 +107480,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0265fbc2-deef-4e0a-9d4e-c3f6dbb615ec" + "98c01aa4-771c-460e-a486-e92271d8d7c1" ], "Cache-Control": [ "no-cache" @@ -105359,31 +107490,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12015" + "12867" ], "x-ms-correlation-request-id": [ - "8f0c1193-a869-488c-a1ee-2dd76abac0f9" + "8d219756-08d0-4584-b45f-475c2317dc38" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212753Z:8f0c1193-a869-488c-a1ee-2dd76abac0f9" + "WESTUS:20150813T074932Z:8d219756-08d0-4584-b45f-475c2317dc38" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer-centos\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer-ubuntu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer-windows\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer-centos\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer-ubuntu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer-windows\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "782" @@ -105401,7 +107532,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1366db8a-2199-46fe-87ac-f6da7d53cb1c" + "f4ef65aa-9ea2-4134-a900-583e1b7ece33" ], "Cache-Control": [ "no-cache" @@ -105411,31 +107542,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12014" + "12866" ], "x-ms-correlation-request-id": [ - "53b364f4-ac35-4d22-bf4a-20c3356bb258" + "e641a750-d698-47bc-92f0-c33ddb8328b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:53b364f4-ac35-4d22-bf4a-20c3356bb258" + "WESTUS:20150813T074932Z:e641a750-d698-47bc-92f0-c33ddb8328b7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-centos/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItY2VudG9zL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-centos/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItY2VudG9zL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos/Skus/nimble-streamer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos/Skus/nimble-streamer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -105453,7 +107584,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0208bb8e-09dc-4d07-8eb2-bac817a4ef26" + "5a42490b-8192-406c-b336-452428c705a6" ], "Cache-Control": [ "no-cache" @@ -105463,31 +107594,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12013" + "12865" ], "x-ms-correlation-request-id": [ - "0471de94-d576-42fc-866b-fa9361243202" + "be15be16-5f62-436e-90b9-113a24944a81" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:0471de94-d576-42fc-866b-fa9361243202" + "WESTUS:20150813T074932Z:be15be16-5f62-436e-90b9-113a24944a81" ], "Date": [ - "Wed, 05 Aug 2015 21:27:53 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-centos/skus/nimble-streamer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItY2VudG9zL3NrdXMvbmltYmxlLXN0cmVhbWVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-centos/skus/nimble-streamer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItY2VudG9zL3NrdXMvbmltYmxlLXN0cmVhbWVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos/Skus/nimble-streamer/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos/Skus/nimble-streamer/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "281" @@ -105505,7 +107636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c897f87-77b8-4ac9-80b8-7775859a5d67" + "533528c6-5f95-4181-b4c6-1eee6cc1cce5" ], "Cache-Control": [ "no-cache" @@ -105515,31 +107646,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12012" + "12864" ], "x-ms-correlation-request-id": [ - "0d13b7a3-1f98-4df8-b4cb-e30af3975003" + "e25d6ef0-6aef-4d3c-ac7d-f925bb1cbf0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:0d13b7a3-1f98-4df8-b4cb-e30af3975003" + "WESTUS:20150813T074932Z:e25d6ef0-6aef-4d3c-ac7d-f925bb1cbf0a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-centos/skus/nimble-streamer/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItY2VudG9zL3NrdXMvbmltYmxlLXN0cmVhbWVyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-centos/skus/nimble-streamer/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItY2VudG9zL3NrdXMvbmltYmxlLXN0cmVhbWVyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wmspanel\",\r\n \"name\": \"nimble-streamer\",\r\n \"product\": \"nimble-streamer-centos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos/Skus/nimble-streamer/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wmspanel\",\r\n \"name\": \"nimble-streamer\",\r\n \"product\": \"nimble-streamer-centos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos/Skus/nimble-streamer/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "512" @@ -105557,7 +107688,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47aa72e3-342c-4df2-9234-9d91ee5c59b7" + "b53af64d-b034-42a8-98e1-5cafba0ea1fb" ], "Cache-Control": [ "no-cache" @@ -105567,31 +107698,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12011" + "12863" ], "x-ms-correlation-request-id": [ - "1a83051d-6004-40d4-a1cf-bf0aa94f0607" + "093fa8fe-cc49-4f64-a328-eebdea808543" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:1a83051d-6004-40d4-a1cf-bf0aa94f0607" + "WESTUS:20150813T074932Z:093fa8fe-cc49-4f64-a328-eebdea808543" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-ubuntu/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItdWJ1bnR1L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-ubuntu/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItdWJ1bnR1L3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu/Skus/nimble-streamer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu/Skus/nimble-streamer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "276" @@ -105609,7 +107740,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29cb06d8-2c5a-4bac-9e91-7a347d4f0b85" + "f5f97941-6cf2-478c-b6c7-f3760d2cefc4" ], "Cache-Control": [ "no-cache" @@ -105619,31 +107750,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12010" + "12862" ], "x-ms-correlation-request-id": [ - "00b6ecf4-6724-459d-a999-58a5318897c0" + "e48ad4a9-2711-48b7-b863-2817728dc930" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:00b6ecf4-6724-459d-a999-58a5318897c0" + "WESTUS:20150813T074932Z:e48ad4a9-2711-48b7-b863-2817728dc930" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-ubuntu/skus/nimble-streamer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItdWJ1bnR1L3NrdXMvbmltYmxlLXN0cmVhbWVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-ubuntu/skus/nimble-streamer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItdWJ1bnR1L3NrdXMvbmltYmxlLXN0cmVhbWVyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu/Skus/nimble-streamer/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu/Skus/nimble-streamer/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "281" @@ -105661,7 +107792,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44c18c61-580f-46f8-aa00-3c4883341c3a" + "b2887614-bdd4-453b-8a4b-0b171ec7fbe3" ], "Cache-Control": [ "no-cache" @@ -105671,31 +107802,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12009" + "12861" ], "x-ms-correlation-request-id": [ - "00b99dcf-58e7-47d0-8fe7-1c6ad98e964e" + "d4bc02f8-7f59-4021-a62f-612d2ff328da" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:00b99dcf-58e7-47d0-8fe7-1c6ad98e964e" + "WESTUS:20150813T074932Z:d4bc02f8-7f59-4021-a62f-612d2ff328da" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-ubuntu/skus/nimble-streamer/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItdWJ1bnR1L3NrdXMvbmltYmxlLXN0cmVhbWVyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-ubuntu/skus/nimble-streamer/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItdWJ1bnR1L3NrdXMvbmltYmxlLXN0cmVhbWVyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wmspanel\",\r\n \"name\": \"nimble-streamer\",\r\n \"product\": \"nimble-streamer-ubuntu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu/Skus/nimble-streamer/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wmspanel\",\r\n \"name\": \"nimble-streamer\",\r\n \"product\": \"nimble-streamer-ubuntu\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu/Skus/nimble-streamer/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "512" @@ -105713,7 +107844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ab339ae-e4a4-450d-b6e3-1e2664f98535" + "fb9f8b7d-8bc5-42dd-aca5-de781cb862fd" ], "Cache-Control": [ "no-cache" @@ -105723,31 +107854,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12008" + "12860" ], "x-ms-correlation-request-id": [ - "cdbda613-f3fb-422f-9360-afad3ba1e8ce" + "c11a2a14-edf3-499b-a034-c29399b009ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:cdbda613-f3fb-422f-9360-afad3ba1e8ce" + "WESTUS:20150813T074932Z:c11a2a14-edf3-499b-a034-c29399b009ce" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-windows/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItd2luZG93cy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-windows/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItd2luZG93cy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows/Skus/nimble-streamer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nimble-streamer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows/Skus/nimble-streamer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -105765,7 +107896,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b549b54-28e7-4f14-9674-1838a6853a86" + "db230ced-ca9d-4fbf-84ca-b4c6b77c59e3" ], "Cache-Control": [ "no-cache" @@ -105775,31 +107906,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12007" + "12859" ], "x-ms-correlation-request-id": [ - "d439be5d-73f2-46cb-8cff-4f0d65b0a465" + "d7e9a6cf-93aa-483e-a348-1a48a2fc0080" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:d439be5d-73f2-46cb-8cff-4f0d65b0a465" + "WESTUS:20150813T074932Z:d7e9a6cf-93aa-483e-a348-1a48a2fc0080" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-windows/skus/nimble-streamer/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItd2luZG93cy9za3VzL25pbWJsZS1zdHJlYW1lci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-windows/skus/nimble-streamer/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItd2luZG93cy9za3VzL25pbWJsZS1zdHJlYW1lci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows/Skus/nimble-streamer/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows/Skus/nimble-streamer/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "282" @@ -105817,7 +107948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14f4f4c5-12df-4f55-baba-96bdd83d6a10" + "8275510d-5665-4733-97d2-2fea506bda21" ], "Cache-Control": [ "no-cache" @@ -105827,31 +107958,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12006" + "12858" ], "x-ms-correlation-request-id": [ - "1b79e02f-b222-46e8-b86e-3e371a74a6c9" + "1de803cd-b41f-4f8b-bc6e-c59456751ea2" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212754Z:1b79e02f-b222-46e8-b86e-3e371a74a6c9" + "WESTUS:20150813T074933Z:1de803cd-b41f-4f8b-bc6e-c59456751ea2" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-windows/skus/nimble-streamer/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItd2luZG93cy9za3VzL25pbWJsZS1zdHJlYW1lci92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wmspanel/artifacttypes/vmimage/offers/nimble-streamer-windows/skus/nimble-streamer/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd21zcGFuZWwvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9uaW1ibGUtc3RyZWFtZXItd2luZG93cy9za3VzL25pbWJsZS1zdHJlYW1lci92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wmspanel\",\r\n \"name\": \"nimble-streamer\",\r\n \"product\": \"nimble-streamer-windows\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows/Skus/nimble-streamer/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wmspanel\",\r\n \"name\": \"nimble-streamer\",\r\n \"product\": \"nimble-streamer-windows\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows/Skus/nimble-streamer/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "516" @@ -105869,7 +108000,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50134467-79b2-411d-81af-0f2434f842ab" + "573e0c1b-5532-4f6f-a0a6-f7ca3c7d7345" ], "Cache-Control": [ "no-cache" @@ -105879,31 +108010,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12005" + "12857" ], "x-ms-correlation-request-id": [ - "07c5f787-c81b-4cb8-b3fa-0795511d0666" + "6e1f2431-335a-4e12-975b-e672b6341cc4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:07c5f787-c81b-4cb8-b3fa-0795511d0666" + "WESTUS:20150813T074933Z:6e1f2431-335a-4e12-975b-e672b6341cc4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/workshare-technology/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd29ya3NoYXJlLXRlY2hub2xvZ3kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/workshare-technology/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd29ya3NoYXJlLXRlY2hub2xvZ3kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ws-prot-byol-protsvr-offer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology/ArtifactTypes/VMImage/Offers/ws-prot-byol-protsvr-offer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ws-prot-byol-protsvr-offer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology/ArtifactTypes/VMImage/Offers/ws-prot-byol-protsvr-offer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "282" @@ -105921,7 +108052,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8800f205-2e30-4fed-ba21-bdfe252da0f8" + "f2000528-aad0-4e33-a033-09262d099da2" ], "Cache-Control": [ "no-cache" @@ -105931,31 +108062,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12004" + "12856" ], "x-ms-correlation-request-id": [ - "5da29cd1-13dc-4b7e-9c9f-eca4e50857a6" + "7bf078fe-772c-40d9-8ac6-420f6feb4fb4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:5da29cd1-13dc-4b7e-9c9f-eca4e50857a6" + "WESTUS:20150813T074933Z:7bf078fe-772c-40d9-8ac6-420f6feb4fb4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/workshare-technology/artifacttypes/vmimage/offers/ws-prot-byol-protsvr-offer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd29ya3NoYXJlLXRlY2hub2xvZ3kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93cy1wcm90LWJ5b2wtcHJvdHN2ci1vZmZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/workshare-technology/artifacttypes/vmimage/offers/ws-prot-byol-protsvr-offer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd29ya3NoYXJlLXRlY2hub2xvZ3kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93cy1wcm90LWJ5b2wtcHJvdHN2ci1vZmZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ws-prot-byol-protsv\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology/ArtifactTypes/VMImage/Offers/ws-prot-byol-protsvr-offer/Skus/ws-prot-byol-protsv\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ws-prot-byol-protsv\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology/ArtifactTypes/VMImage/Offers/ws-prot-byol-protsvr-offer/Skus/ws-prot-byol-protsv\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "300" @@ -105973,7 +108104,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "180d9796-7516-470d-9313-27f065f83ab4" + "0fd9f385-0a57-4339-9b30-e30a37dac78b" ], "Cache-Control": [ "no-cache" @@ -105983,31 +108114,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12003" + "12855" ], "x-ms-correlation-request-id": [ - "2acfd51e-b782-4380-be09-bc2c8b1f486c" + "f4827549-8710-4e86-af49-890bbe47f480" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:2acfd51e-b782-4380-be09-bc2c8b1f486c" + "WESTUS:20150813T074933Z:f4827549-8710-4e86-af49-890bbe47f480" ], "Date": [ - "Wed, 05 Aug 2015 21:27:54 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/workshare-technology/artifacttypes/vmimage/offers/ws-prot-byol-protsvr-offer/skus/ws-prot-byol-protsv/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd29ya3NoYXJlLXRlY2hub2xvZ3kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93cy1wcm90LWJ5b2wtcHJvdHN2ci1vZmZlci9za3VzL3dzLXByb3QtYnlvbC1wcm90c3YvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/workshare-technology/artifacttypes/vmimage/offers/ws-prot-byol-protsvr-offer/skus/ws-prot-byol-protsv/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd29ya3NoYXJlLXRlY2hub2xvZ3kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93cy1wcm90LWJ5b2wtcHJvdHN2ci1vZmZlci9za3VzL3dzLXByb3QtYnlvbC1wcm90c3YvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.5.114\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology/ArtifactTypes/VMImage/Offers/ws-prot-byol-protsvr-offer/Skus/ws-prot-byol-protsv/Versions/3.5.114\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"3.5.114\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology/ArtifactTypes/VMImage/Offers/ws-prot-byol-protsvr-offer/Skus/ws-prot-byol-protsv/Versions/3.5.114\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "305" @@ -106025,7 +108156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59e6b792-66d1-41a5-a671-ac5da81d9e1a" + "a71f7319-3a0d-4b35-a85d-ea89775e40fc" ], "Cache-Control": [ "no-cache" @@ -106035,31 +108166,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12002" + "12854" ], "x-ms-correlation-request-id": [ - "6ef58d26-3d82-4463-b923-1257ba214b05" + "c898ffd2-1fb2-403c-95b1-a2c0bca76897" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:6ef58d26-3d82-4463-b923-1257ba214b05" + "WESTUS:20150813T074933Z:c898ffd2-1fb2-403c-95b1-a2c0bca76897" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/workshare-technology/artifacttypes/vmimage/offers/ws-prot-byol-protsvr-offer/skus/ws-prot-byol-protsv/versions/3.5.114?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd29ya3NoYXJlLXRlY2hub2xvZ3kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93cy1wcm90LWJ5b2wtcHJvdHN2ci1vZmZlci9za3VzL3dzLXByb3QtYnlvbC1wcm90c3YvdmVyc2lvbnMvMy41LjExND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/workshare-technology/artifacttypes/vmimage/offers/ws-prot-byol-protsvr-offer/skus/ws-prot-byol-protsv/versions/3.5.114?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd29ya3NoYXJlLXRlY2hub2xvZ3kvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93cy1wcm90LWJ5b2wtcHJvdHN2ci1vZmZlci9za3VzL3dzLXByb3QtYnlvbC1wcm90c3YvdmVyc2lvbnMvMy41LjExND9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"workshare-technology\",\r\n \"name\": \"ws-prot-byol-protsv\",\r\n \"product\": \"ws-prot-byol-protsvr-offer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.5.114\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology/ArtifactTypes/VMImage/Offers/ws-prot-byol-protsvr-offer/Skus/ws-prot-byol-protsv/Versions/3.5.114\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"workshare-technology\",\r\n \"name\": \"ws-prot-byol-protsv\",\r\n \"product\": \"ws-prot-byol-protsvr-offer\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"3.5.114\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology/ArtifactTypes/VMImage/Offers/ws-prot-byol-protsvr-offer/Skus/ws-prot-byol-protsv/Versions/3.5.114\"\r\n}", "ResponseHeaders": { "Content-Length": [ "558" @@ -106077,7 +108208,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e60bb16-891e-4580-a824-0379639793a3" + "8de7d80d-79dd-41c4-bc15-f28b5a15033b" ], "Cache-Control": [ "no-cache" @@ -106087,31 +108218,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12001" + "12853" ], "x-ms-correlation-request-id": [ - "3565690e-68d0-42ef-bbb9-f2600fb55ec7" + "c67a3f11-fa24-4621-a72a-192713b8261b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:3565690e-68d0-42ef-bbb9-f2600fb55ec7" + "WESTUS:20150813T074933Z:c67a3f11-fa24-4621-a72a-192713b8261b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowzastreamingengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowzastreamingengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "255" @@ -106129,7 +108260,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f6d2912-4f1a-4da2-9799-2f40b28b9f6b" + "151428a4-8133-4f3f-b170-50a9e89a9906" ], "Cache-Control": [ "no-cache" @@ -106139,31 +108270,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "12000" + "12852" ], "x-ms-correlation-request-id": [ - "f72a9fd1-bc5e-4f2b-9eaa-b749a02dc0b9" + "8cccc63f-c46e-415d-ac4a-95165f26ac0d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:f72a9fd1-bc5e-4f2b-9eaa-b749a02dc0b9" + "WESTUS:20150813T074933Z:8cccc63f-c46e-415d-ac4a-95165f26ac0d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std-linux-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std-linux-byol-4-2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol-4-2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std-windows-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std-windows-byol-4-2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol-4-2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std-linux-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std-linux-byol-4-2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol-4-2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std-windows-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"std-windows-byol-4-2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol-4-2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1091" @@ -106181,7 +108312,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ebcf79e8-859e-4be2-92b0-fb903bd566ae" + "60b0b6e2-1507-44c7-af90-17e0b8a0bc0b" ], "Cache-Control": [ "no-cache" @@ -106191,31 +108322,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "12851" ], "x-ms-correlation-request-id": [ - "342b9925-450d-4085-8005-4fbd5bf65fdb" + "382d1f9f-3799-4727-8824-635a60e8fbc0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:342b9925-450d-4085-8005-4fbd5bf65fdb" + "WESTUS:20150813T074933Z:382d1f9f-3799-4727-8824-635a60e8fbc0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-linux-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC1saW51eC1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-linux-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC1saW51eC1ieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol/Versions/4.1.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol/Versions/4.1.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "275" @@ -106233,7 +108364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5011ead5-b14a-4c20-860f-6b7cb4519989" + "ad6649cf-68d6-4f21-a76b-535e645991a4" ], "Cache-Control": [ "no-cache" @@ -106243,31 +108374,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "12850" ], "x-ms-correlation-request-id": [ - "d6ba2ef7-d8c5-4947-9c74-43b798145ff1" + "1fb02ee0-941e-4511-b2d9-7bd3305e7725" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:d6ba2ef7-d8c5-4947-9c74-43b798145ff1" + "WESTUS:20150813T074933Z:1fb02ee0-941e-4511-b2d9-7bd3305e7725" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-linux-byol/versions/4.1.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC1saW51eC1ieW9sL3ZlcnNpb25zLzQuMS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-linux-byol/versions/4.1.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC1saW51eC1ieW9sL3ZlcnNpb25zLzQuMS4yP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wowza\",\r\n \"name\": \"std-linux-byol\",\r\n \"product\": \"wowzastreamingengine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol/Versions/4.1.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wowza\",\r\n \"name\": \"std-linux-byol\",\r\n \"product\": \"wowzastreamingengine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol/Versions/4.1.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "500" @@ -106285,7 +108416,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5121b7be-51fe-42b6-bea9-24f69f48258d" + "ce4bb075-5b8d-47e0-818e-b00f069b089b" ], "Cache-Control": [ "no-cache" @@ -106295,31 +108426,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "12849" ], "x-ms-correlation-request-id": [ - "cbe085e8-2cd5-4af1-b686-2405ace4e9b9" + "5e442068-39f5-4820-84cd-5637e5a37d6a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:cbe085e8-2cd5-4af1-b686-2405ace4e9b9" + "WESTUS:20150813T074933Z:5e442068-39f5-4820-84cd-5637e5a37d6a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-linux-byol-4-2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC1saW51eC1ieW9sLTQtMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-linux-byol-4-2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC1saW51eC1ieW9sLTQtMi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol-4-2/Versions/4.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol-4-2/Versions/4.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -106337,7 +108468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddf642c3-4d1b-4f7a-b002-c3e3d0e61672" + "9b7e7a91-8832-45c9-ae75-95aec29331d1" ], "Cache-Control": [ "no-cache" @@ -106347,31 +108478,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "12848" ], "x-ms-correlation-request-id": [ - "ac32120a-76a8-4cdd-95ad-d10de62b057e" + "90cd5034-4869-4b2d-8de7-88ff943bd814" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212755Z:ac32120a-76a8-4cdd-95ad-d10de62b057e" + "WESTUS:20150813T074933Z:90cd5034-4869-4b2d-8de7-88ff943bd814" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-linux-byol-4-2/versions/4.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC1saW51eC1ieW9sLTQtMi92ZXJzaW9ucy80LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-linux-byol-4-2/versions/4.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC1saW51eC1ieW9sLTQtMi92ZXJzaW9ucy80LjIuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wowza\",\r\n \"name\": \"std-linux-byol-4-2\",\r\n \"product\": \"wowzastreamingengine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol-4-2/Versions/4.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wowza\",\r\n \"name\": \"std-linux-byol-4-2\",\r\n \"product\": \"wowzastreamingengine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-linux-byol-4-2/Versions/4.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -106389,7 +108520,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7146165d-a82d-4e2f-8012-bde05bc87209" + "0a2c1acb-7298-4ab7-8d0f-977c12e11bec" ], "Cache-Control": [ "no-cache" @@ -106399,31 +108530,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "12847" ], "x-ms-correlation-request-id": [ - "bed5b608-17eb-414f-a3a0-6be363c67318" + "4bf52b73-ac60-468f-b0dd-7162fce94305" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:bed5b608-17eb-414f-a3a0-6be363c67318" + "WESTUS:20150813T074934Z:4bf52b73-ac60-468f-b0dd-7162fce94305" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-windows-byol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC13aW5kb3dzLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-windows-byol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC13aW5kb3dzLWJ5b2wvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol/Versions/4.1.2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol/Versions/4.1.2\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "277" @@ -106441,7 +108572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0dce249-2f87-4b24-a665-9790bebef5ca" + "df3e4e0f-1c35-4fd3-b0f5-3acc306ac6b6" ], "Cache-Control": [ "no-cache" @@ -106451,31 +108582,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "12846" ], "x-ms-correlation-request-id": [ - "d1072344-1b52-4ed0-bb27-1dcd701508ca" + "bb2740af-6867-4420-b06e-70ce533f861e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:d1072344-1b52-4ed0-bb27-1dcd701508ca" + "WESTUS:20150813T074934Z:bb2740af-6867-4420-b06e-70ce533f861e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-windows-byol/versions/4.1.2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC13aW5kb3dzLWJ5b2wvdmVyc2lvbnMvNC4xLjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-windows-byol/versions/4.1.2?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC13aW5kb3dzLWJ5b2wvdmVyc2lvbnMvNC4xLjI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wowza\",\r\n \"name\": \"std-windows-byol\",\r\n \"product\": \"wowzastreamingengine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol/Versions/4.1.2\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wowza\",\r\n \"name\": \"std-windows-byol\",\r\n \"product\": \"wowzastreamingengine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.1.2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol/Versions/4.1.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ "506" @@ -106493,7 +108624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1604530f-a418-4bc8-9051-33318a191dcb" + "77a07e1e-b2ff-40de-9781-913482853a91" ], "Cache-Control": [ "no-cache" @@ -106503,31 +108634,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "12845" ], "x-ms-correlation-request-id": [ - "769d58d1-b728-42e6-82fd-82657b1b4a9e" + "e78c23cf-bee7-4b22-9b92-c08d24a771f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:769d58d1-b728-42e6-82fd-82657b1b4a9e" + "WESTUS:20150813T074934Z:e78c23cf-bee7-4b22-9b92-c08d24a771f3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:55 GMT" + "Thu, 13 Aug 2015 07:49:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-windows-byol-4-2/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC13aW5kb3dzLWJ5b2wtNC0yL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-windows-byol-4-2/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC13aW5kb3dzLWJ5b2wtNC0yL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol-4-2/Versions/4.2.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol-4-2/Versions/4.2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "281" @@ -106545,7 +108676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f38a2423-33b7-499a-be3e-2a5af2a2af4f" + "5096c58c-997a-4078-9a5c-5af2e0386346" ], "Cache-Control": [ "no-cache" @@ -106555,31 +108686,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "12844" ], "x-ms-correlation-request-id": [ - "d2bddb8e-dc61-45e9-8016-599156b9c1aa" + "4ee2199b-4518-485d-8ab0-e8f3685b20ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:d2bddb8e-dc61-45e9-8016-599156b9c1aa" + "WESTUS:20150813T074934Z:4ee2199b-4518-485d-8ab0-e8f3685b20ad" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-windows-byol-4-2/versions/4.2.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC13aW5kb3dzLWJ5b2wtNC0yL3ZlcnNpb25zLzQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/wowza/artifacttypes/vmimage/offers/wowzastreamingengine/skus/std-windows-byol-4-2/versions/4.2.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvd293emEvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy93b3d6YXN0cmVhbWluZ2VuZ2luZS9za3VzL3N0ZC13aW5kb3dzLWJ5b2wtNC0yL3ZlcnNpb25zLzQuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wowza\",\r\n \"name\": \"std-windows-byol-4-2\",\r\n \"product\": \"wowzastreamingengine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol-4-2/Versions/4.2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"wowza\",\r\n \"name\": \"std-windows-byol-4-2\",\r\n \"product\": \"wowzastreamingengine\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"4.2.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza/ArtifactTypes/VMImage/Offers/wowzastreamingengine/Skus/std-windows-byol-4-2/Versions/4.2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "514" @@ -106597,7 +108728,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f65685b-842f-414b-984d-342297cea0fc" + "ca34bdd9-298c-4e62-a48f-0c0aaf8a199c" ], "Cache-Control": [ "no-cache" @@ -106607,31 +108738,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "12843" ], "x-ms-correlation-request-id": [ - "d4c643b0-4375-46cc-b330-3b55199b7f22" + "9809b064-fc82-4c4c-89a3-2c5ac89f60cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:d4c643b0-4375-46cc-b330-3b55199b7f22" + "WESTUS:20150813T074934Z:9809b064-fc82-4c4c-89a3-2c5ac89f60cf" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xebialabs/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGViaWFsYWJzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xebialabs/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGViaWFsYWJzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs-xl-deploy\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs/ArtifactTypes/VMImage/Offers/xebialabs-xl-deploy\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs-xl-deploy\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs/ArtifactTypes/VMImage/Offers/xebialabs-xl-deploy\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "257" @@ -106649,7 +108780,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fbf000c7-5f2f-486a-a071-6910ba647174" + "89d2ade8-9f2a-4475-96d7-956b49948bcc" ], "Cache-Control": [ "no-cache" @@ -106659,31 +108790,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "12842" ], "x-ms-correlation-request-id": [ - "2d2bffed-0494-494f-9e00-011239d48750" + "a2958a17-7f09-4b25-a473-421ccc17cedc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:2d2bffed-0494-494f-9e00-011239d48750" + "WESTUS:20150813T074934Z:a2958a17-7f09-4b25-a473-421ccc17cedc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xebialabs/artifacttypes/vmimage/offers/xebialabs-xl-deploy/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGViaWFsYWJzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveGViaWFsYWJzLXhsLWRlcGxveS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xebialabs/artifacttypes/vmimage/offers/xebialabs-xl-deploy/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGViaWFsYWJzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveGViaWFsYWJzLXhsLWRlcGxveS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xl-deploy-linux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs/ArtifactTypes/VMImage/Offers/xebialabs-xl-deploy/Skus/xl-deploy-linux\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xl-deploy-linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs/ArtifactTypes/VMImage/Offers/xebialabs-xl-deploy/Skus/xl-deploy-linux\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "274" @@ -106701,7 +108832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9a4c714-9519-4475-adae-c46c27e1dfa3" + "91a7fdf2-010a-4c72-ac8b-9b1dbd772ba9" ], "Cache-Control": [ "no-cache" @@ -106711,31 +108842,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "12841" ], "x-ms-correlation-request-id": [ - "88dbf37d-15a7-40fe-89ae-3dacf2b7bf54" + "7ab0023d-7f4c-43c5-bd43-ac46a4aff8c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:88dbf37d-15a7-40fe-89ae-3dacf2b7bf54" + "WESTUS:20150813T074934Z:7ab0023d-7f4c-43c5-bd43-ac46a4aff8c9" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xebialabs/artifacttypes/vmimage/offers/xebialabs-xl-deploy/skus/xl-deploy-linux/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGViaWFsYWJzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveGViaWFsYWJzLXhsLWRlcGxveS9za3VzL3hsLWRlcGxveS1saW51eC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xebialabs/artifacttypes/vmimage/offers/xebialabs-xl-deploy/skus/xl-deploy-linux/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGViaWFsYWJzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveGViaWFsYWJzLXhsLWRlcGxveS9za3VzL3hsLWRlcGxveS1saW51eC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs/ArtifactTypes/VMImage/Offers/xebialabs-xl-deploy/Skus/xl-deploy-linux/Versions/5.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs/ArtifactTypes/VMImage/Offers/xebialabs-xl-deploy/Skus/xl-deploy-linux/Versions/5.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "279" @@ -106753,7 +108884,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f60e8d61-21fe-4706-a267-e6655d46f9fa" + "33c82169-eb69-4b63-98eb-ac5f4487211c" ], "Cache-Control": [ "no-cache" @@ -106763,31 +108894,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "12840" ], "x-ms-correlation-request-id": [ - "f3be2d2c-2c36-4876-9274-8c6ad8cb0ba2" + "96764946-bcd9-42bc-8ee6-45e83f01d92e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:f3be2d2c-2c36-4876-9274-8c6ad8cb0ba2" + "WESTUS:20150813T074934Z:96764946-bcd9-42bc-8ee6-45e83f01d92e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xebialabs/artifacttypes/vmimage/offers/xebialabs-xl-deploy/skus/xl-deploy-linux/versions/5.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGViaWFsYWJzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveGViaWFsYWJzLXhsLWRlcGxveS9za3VzL3hsLWRlcGxveS1saW51eC92ZXJzaW9ucy81LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xebialabs/artifacttypes/vmimage/offers/xebialabs-xl-deploy/skus/xl-deploy-linux/versions/5.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGViaWFsYWJzL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveGViaWFsYWJzLXhsLWRlcGxveS9za3VzL3hsLWRlcGxveS1saW51eC92ZXJzaW9ucy81LjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"xebialabs\",\r\n \"name\": \"xl-deploy-linux\",\r\n \"product\": \"xebialabs-xl-deploy\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs/ArtifactTypes/VMImage/Offers/xebialabs-xl-deploy/Skus/xl-deploy-linux/Versions/5.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"xebialabs\",\r\n \"name\": \"xl-deploy-linux\",\r\n \"product\": \"xebialabs-xl-deploy\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs/ArtifactTypes/VMImage/Offers/xebialabs-xl-deploy/Skus/xl-deploy-linux/Versions/5.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "508" @@ -106805,7 +108936,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2e0edd5-0c58-4007-b9eb-0e84b65b6835" + "090fb4ec-a32f-402f-a597-6e9c31ae93de" ], "Cache-Control": [ "no-cache" @@ -106815,31 +108946,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "12839" ], "x-ms-correlation-request-id": [ - "3f4adb2a-167d-47d4-8d6a-f74d037c3f9c" + "d1057fd6-1c52-4720-a296-a6a122e7322b" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:3f4adb2a-167d-47d4-8d6a-f74d037c3f9c" + "WESTUS:20150813T074934Z:d1057fd6-1c52-4720-a296-a6a122e7322b" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xfinityinc/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGZpbml0eWluYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xfinityinc/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGZpbml0eWluYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"d3view-v5\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"d3view-v5\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "238" @@ -106857,7 +108988,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "715e793f-29d5-41f6-bffb-023754ba37cf" + "365cf35a-d64d-479e-b1b1-199e1b08aab6" ], "Cache-Control": [ "no-cache" @@ -106867,31 +108998,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "12838" ], "x-ms-correlation-request-id": [ - "f1478535-e493-4eeb-86be-36929157e580" + "0df3e42f-f3b2-4788-bb8d-70f8e51e9e48" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212756Z:f1478535-e493-4eeb-86be-36929157e580" + "WESTUS:20150813T074934Z:0df3e42f-f3b2-4788-bb8d-70f8e51e9e48" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xfinityinc/artifacttypes/vmimage/offers/d3view-v5/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGZpbml0eWluYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Qzdmlldy12NS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xfinityinc/artifacttypes/vmimage/offers/d3view-v5/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGZpbml0eWluYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Qzdmlldy12NS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"d3view-v5-hosted\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5/Skus/d3view-v5-hosted\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"d3view-v5-hosted\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5/Skus/d3view-v5-hosted\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -106909,7 +109040,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "20835419-529b-407c-8302-c1a59ee38ab7" + "2f690ae9-3561-4876-b80f-60ad8cbdc65f" ], "Cache-Control": [ "no-cache" @@ -106919,31 +109050,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "12837" ], "x-ms-correlation-request-id": [ - "a5b25a91-9b66-42da-a87d-03ea11e0e38a" + "cc33a2fb-c5bd-48e1-a8cb-6c0bf01d41ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:a5b25a91-9b66-42da-a87d-03ea11e0e38a" + "WESTUS:20150813T074935Z:cc33a2fb-c5bd-48e1-a8cb-6c0bf01d41ac" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xfinityinc/artifacttypes/vmimage/offers/d3view-v5/skus/d3view-v5-hosted/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGZpbml0eWluYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Qzdmlldy12NS9za3VzL2Qzdmlldy12NS1ob3N0ZWQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xfinityinc/artifacttypes/vmimage/offers/d3view-v5/skus/d3view-v5-hosted/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGZpbml0eWluYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Qzdmlldy12NS9za3VzL2Qzdmlldy12NS1ob3N0ZWQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5/Skus/d3view-v5-hosted/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5/Skus/d3view-v5-hosted/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "271" @@ -106961,7 +109092,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36472f50-2ca1-433b-ab4e-6cb0fa9d5428" + "2a60c1d5-5b25-404c-b5ed-6e3130dd4075" ], "Cache-Control": [ "no-cache" @@ -106971,31 +109102,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "12836" ], "x-ms-correlation-request-id": [ - "40a1917b-d96b-4cfc-9489-dfefd44571b5" + "7249459d-4305-46f8-a18b-588d3838a9f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:40a1917b-d96b-4cfc-9489-dfefd44571b5" + "WESTUS:20150813T074935Z:7249459d-4305-46f8-a18b-588d3838a9f3" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xfinityinc/artifacttypes/vmimage/offers/d3view-v5/skus/d3view-v5-hosted/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGZpbml0eWluYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Qzdmlldy12NS9za3VzL2Qzdmlldy12NS1ob3N0ZWQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xfinityinc/artifacttypes/vmimage/offers/d3view-v5/skus/d3view-v5-hosted/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveGZpbml0eWluYy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2Qzdmlldy12NS9za3VzL2Qzdmlldy12NS1ob3N0ZWQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"xfinityinc\",\r\n \"name\": \"d3view-v5-hosted\",\r\n \"product\": \"d3view-v5\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5/Skus/d3view-v5-hosted/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"xfinityinc\",\r\n \"name\": \"d3view-v5-hosted\",\r\n \"product\": \"d3view-v5\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5/Skus/d3view-v5-hosted/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "492" @@ -107013,7 +109144,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1f89ca6-dde7-4ad8-8ae7-b1cf9beb77a3" + "2be9a2d3-5a25-4b1f-854d-4b9d81a0d39e" ], "Cache-Control": [ "no-cache" @@ -107023,31 +109154,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "12835" ], "x-ms-correlation-request-id": [ - "cc6c4000-ce76-4232-8b84-128aeeb32c37" + "4a4ac2b9-5c0e-432e-84e7-4847085a0957" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:cc6c4000-ce76-4232-8b84-128aeeb32c37" + "WESTUS:20150813T074935Z:4a4ac2b9-5c0e-432e-84e7-4847085a0957" ], "Date": [ - "Wed, 05 Aug 2015 21:27:56 GMT" + "Thu, 13 Aug 2015 07:49:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xmpro/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveG1wcm8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xmpro/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveG1wcm8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro-evaluation\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro-evaluation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "247" @@ -107065,7 +109196,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fe773d6-b81a-417e-9714-15bb4d1c0f93" + "24ff172b-8f68-4770-bdae-2aa13cd7e8d1" ], "Cache-Control": [ "no-cache" @@ -107075,31 +109206,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "12834" ], "x-ms-correlation-request-id": [ - "3cbccfcf-76fc-4e88-81f0-2ee9fe58e834" + "ae6e5a79-14df-45fb-a7d2-2f7348e6698a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:3cbccfcf-76fc-4e88-81f0-2ee9fe58e834" + "WESTUS:20150813T074935Z:ae6e5a79-14df-45fb-a7d2-2f7348e6698a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xmpro/artifacttypes/vmimage/offers/xmpro-evaluation/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveG1wcm8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94bXByby1ldmFsdWF0aW9uL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xmpro/artifacttypes/vmimage/offers/xmpro-evaluation/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveG1wcm8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94bXByby1ldmFsdWF0aW9uL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bpm\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation/Skus/bpm\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bpm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation/Skus/bpm\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "243" @@ -107117,7 +109248,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc2219d6-d68d-40db-8d20-4b4df01bf8e4" + "ad030c94-45e5-4bce-9386-4de2ca196177" ], "Cache-Control": [ "no-cache" @@ -107127,31 +109258,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "12833" ], "x-ms-correlation-request-id": [ - "78d00a70-468a-4d13-8b84-fe52a131b745" + "d3fca087-3b25-4d66-a9d6-1b2b0dbf9b7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:78d00a70-468a-4d13-8b84-fe52a131b745" + "WESTUS:20150813T074935Z:d3fca087-3b25-4d66-a9d6-1b2b0dbf9b7e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xmpro/artifacttypes/vmimage/offers/xmpro-evaluation/skus/bpm/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveG1wcm8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94bXByby1ldmFsdWF0aW9uL3NrdXMvYnBtL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xmpro/artifacttypes/vmimage/offers/xmpro-evaluation/skus/bpm/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveG1wcm8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94bXByby1ldmFsdWF0aW9uL3NrdXMvYnBtL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation/Skus/bpm/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation/Skus/bpm/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "260" @@ -107169,7 +109300,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f25907b-9403-4f80-a8fa-f31d565a9ffb" + "4f784556-4a0b-4844-a07a-d769c9baf2f3" ], "Cache-Control": [ "no-cache" @@ -107179,31 +109310,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "12832" ], "x-ms-correlation-request-id": [ - "406d775d-7655-4121-86e2-74426bfbd7b6" + "fa791310-7d44-4288-af38-edf772957669" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:406d775d-7655-4121-86e2-74426bfbd7b6" + "WESTUS:20150813T074935Z:fa791310-7d44-4288-af38-edf772957669" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xmpro/artifacttypes/vmimage/offers/xmpro-evaluation/skus/bpm/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveG1wcm8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94bXByby1ldmFsdWF0aW9uL3NrdXMvYnBtL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xmpro/artifacttypes/vmimage/offers/xmpro-evaluation/skus/bpm/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveG1wcm8vYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy94bXByby1ldmFsdWF0aW9uL3NrdXMvYnBtL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"xmpro\",\r\n \"name\": \"bpm\",\r\n \"product\": \"xmpro-evaluation\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation/Skus/bpm/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"xmpro\",\r\n \"name\": \"bpm\",\r\n \"product\": \"xmpro-evaluation\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation/Skus/bpm/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "472" @@ -107221,7 +109352,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61645d01-72ee-4ab1-ae15-e3fd011e8d13" + "1e774fb6-a1cc-4e5f-b1c7-64e635962fcb" ], "Cache-Control": [ "no-cache" @@ -107231,31 +109362,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "12831" ], "x-ms-correlation-request-id": [ - "f429f947-3ab9-430c-b738-50a1f3bd5124" + "331d2a1b-e111-4d04-a50b-fbdd73bdbada" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:f429f947-3ab9-430c-b738-50a1f3bd5124" + "WESTUS:20150813T074935Z:331d2a1b-e111-4d04-a50b-fbdd73bdbada" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xtremedata/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveHRyZW1lZGF0YS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xtremedata/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveHRyZW1lZGF0YS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dbx\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata/ArtifactTypes/VMImage/Offers/dbx\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dbx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata/ArtifactTypes/VMImage/Offers/dbx\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "226" @@ -107273,7 +109404,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d737434e-8228-4fa0-b180-c244f96ecb9a" + "03512e80-fdc0-4bd6-97b0-e04e14069b41" ], "Cache-Control": [ "no-cache" @@ -107283,31 +109414,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "12830" ], "x-ms-correlation-request-id": [ - "318dbc55-4892-4a5b-85b6-d744df2a9195" + "0f1e756e-4fbd-4354-8c13-d60aa0c592fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:318dbc55-4892-4a5b-85b6-d744df2a9195" + "WESTUS:20150813T074935Z:0f1e756e-4fbd-4354-8c13-d60aa0c592fc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xtremedata/artifacttypes/vmimage/offers/dbx/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveHRyZW1lZGF0YS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RieC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xtremedata/artifacttypes/vmimage/offers/dbx/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveHRyZW1lZGF0YS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RieC9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dbx2014001\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata/ArtifactTypes/VMImage/Offers/dbx/Skus/dbx2014001\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dbx2014001\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata/ArtifactTypes/VMImage/Offers/dbx/Skus/dbx2014001\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "249" @@ -107325,7 +109456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1de97f7-f504-41ee-a886-1e0f457475b0" + "615fac63-ca1f-40fe-a92b-d767c5150b69" ], "Cache-Control": [ "no-cache" @@ -107335,31 +109466,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "12829" ], "x-ms-correlation-request-id": [ - "cf1380a3-a081-42a4-8ecd-47ca1037034c" + "3e33aaad-3ad4-43fe-b56e-fb504f6d9fbf" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:cf1380a3-a081-42a4-8ecd-47ca1037034c" + "WESTUS:20150813T074935Z:3e33aaad-3ad4-43fe-b56e-fb504f6d9fbf" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xtremedata/artifacttypes/vmimage/offers/dbx/skus/dbx2014001/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveHRyZW1lZGF0YS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RieC9za3VzL2RieDIwMTQwMDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xtremedata/artifacttypes/vmimage/offers/dbx/skus/dbx2014001/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveHRyZW1lZGF0YS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RieC9za3VzL2RieDIwMTQwMDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata/ArtifactTypes/VMImage/Offers/dbx/Skus/dbx2014001/Versions/1.1.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata/ArtifactTypes/VMImage/Offers/dbx/Skus/dbx2014001/Versions/1.1.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "259" @@ -107377,7 +109508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c4e873e-d0c8-4f49-b016-5fd8e4d8f315" + "3748382b-79c8-4d83-a299-439ef32e59b0" ], "Cache-Control": [ "no-cache" @@ -107387,31 +109518,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "12828" ], "x-ms-correlation-request-id": [ - "4c94a53f-984d-4787-958b-877153eb97cd" + "72b65408-b8d5-48f5-96c1-6ec9caab5c88" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212757Z:4c94a53f-984d-4787-958b-877153eb97cd" + "WESTUS:20150813T074935Z:72b65408-b8d5-48f5-96c1-6ec9caab5c88" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/xtremedata/artifacttypes/vmimage/offers/dbx/skus/dbx2014001/versions/1.1.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveHRyZW1lZGF0YS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RieC9za3VzL2RieDIwMTQwMDEvdmVyc2lvbnMvMS4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/xtremedata/artifacttypes/vmimage/offers/dbx/skus/dbx2014001/versions/1.1.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveHRyZW1lZGF0YS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2RieC9za3VzL2RieDIwMTQwMDEvdmVyc2lvbnMvMS4xLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"xtremedata\",\r\n \"name\": \"dbx2014001\",\r\n \"product\": \"dbx\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata/ArtifactTypes/VMImage/Offers/dbx/Skus/dbx2014001/Versions/1.1.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"xtremedata\",\r\n \"name\": \"dbx2014001\",\r\n \"product\": \"dbx\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.1.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata/ArtifactTypes/VMImage/Offers/dbx/Skus/dbx2014001/Versions/1.1.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "468" @@ -107429,7 +109560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "989a7098-281b-471e-aabb-e5eaf3943a45" + "bb726866-9a93-448c-be78-c88900e1840a" ], "Cache-Control": [ "no-cache" @@ -107439,31 +109570,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "12827" ], "x-ms-correlation-request-id": [ - "af6754e4-7863-4dac-a97a-6c27f3e90e82" + "5db99bd5-3b0d-44c6-a5e8-db7b49754c73" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:af6754e4-7863-4dac-a97a-6c27f3e90e82" + "WESTUS:20150813T074935Z:5db99bd5-3b0d-44c6-a5e8-db7b49754c73" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/yellowfin/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveWVsbG93ZmluL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/yellowfin/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveWVsbG93ZmluL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin-for-azure-byol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin/ArtifactTypes/VMImage/Offers/yellowfin-for-azure-byol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin-for-azure-byol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin/ArtifactTypes/VMImage/Offers/yellowfin-for-azure-byol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "267" @@ -107481,7 +109612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "619a0e61-8f1d-4a0e-b6d0-425ecf7e196b" + "c4822b18-8f09-4197-a3f4-c2cdaf5dc132" ], "Cache-Control": [ "no-cache" @@ -107491,31 +109622,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "12826" ], "x-ms-correlation-request-id": [ - "d346184e-093e-495e-b10f-2b884a2c147e" + "eb3fc5c9-a465-4a9a-b43d-843d18c207c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:d346184e-093e-495e-b10f-2b884a2c147e" + "WESTUS:20150813T074936Z:eb3fc5c9-a465-4a9a-b43d-843d18c207c8" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/yellowfin/artifacttypes/vmimage/offers/yellowfin-for-azure-byol/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveWVsbG93ZmluL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveWVsbG93ZmluLWZvci1henVyZS1ieW9sL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/yellowfin/artifacttypes/vmimage/offers/yellowfin-for-azure-byol/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveWVsbG93ZmluL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveWVsbG93ZmluLWZvci1henVyZS1ieW9sL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfinforazurebyol\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin/ArtifactTypes/VMImage/Offers/yellowfin-for-azure-byol/Skus/yellowfinforazurebyol\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfinforazurebyol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin/ArtifactTypes/VMImage/Offers/yellowfin-for-azure-byol/Skus/yellowfinforazurebyol\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "291" @@ -107533,7 +109664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fdfe4b8f-72bd-4138-86b9-3b7bffef7bb1" + "56056b5e-fcc0-4837-90cc-b7c1d56912f4" ], "Cache-Control": [ "no-cache" @@ -107543,31 +109674,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "12825" ], "x-ms-correlation-request-id": [ - "5c492f03-21e2-401a-868d-b089ed13abe7" + "d8ea16a7-442c-4c68-baab-a1783a04910a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:5c492f03-21e2-401a-868d-b089ed13abe7" + "WESTUS:20150813T074936Z:d8ea16a7-442c-4c68-baab-a1783a04910a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:57 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/yellowfin/artifacttypes/vmimage/offers/yellowfin-for-azure-byol/skus/yellowfinforazurebyol/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveWVsbG93ZmluL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveWVsbG93ZmluLWZvci1henVyZS1ieW9sL3NrdXMveWVsbG93ZmluZm9yYXp1cmVieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/yellowfin/artifacttypes/vmimage/offers/yellowfin-for-azure-byol/skus/yellowfinforazurebyol/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveWVsbG93ZmluL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveWVsbG93ZmluLWZvci1henVyZS1ieW9sL3NrdXMveWVsbG93ZmluZm9yYXp1cmVieW9sL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin/ArtifactTypes/VMImage/Offers/yellowfin-for-azure-byol/Skus/yellowfinforazurebyol/Versions/7.1.501\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin/ArtifactTypes/VMImage/Offers/yellowfin-for-azure-byol/Skus/yellowfinforazurebyol/Versions/7.1.501\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "294" @@ -107585,7 +109716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35fd420f-ba36-402e-a637-c8315216568c" + "a7b980d2-2e48-469a-9e0f-003d3c34440f" ], "Cache-Control": [ "no-cache" @@ -107595,31 +109726,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "12824" ], "x-ms-correlation-request-id": [ - "b7b74a86-1f6c-4a4d-9665-61cdbb521828" + "3976ffd5-ab2e-4df1-8233-4f374f992e83" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:b7b74a86-1f6c-4a4d-9665-61cdbb521828" + "WESTUS:20150813T074936Z:3976ffd5-ab2e-4df1-8233-4f374f992e83" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/yellowfin/artifacttypes/vmimage/offers/yellowfin-for-azure-byol/skus/yellowfinforazurebyol/versions/7.1.501?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveWVsbG93ZmluL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveWVsbG93ZmluLWZvci1henVyZS1ieW9sL3NrdXMveWVsbG93ZmluZm9yYXp1cmVieW9sL3ZlcnNpb25zLzcuMS41MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/yellowfin/artifacttypes/vmimage/offers/yellowfin-for-azure-byol/skus/yellowfinforazurebyol/versions/7.1.501?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveWVsbG93ZmluL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMveWVsbG93ZmluLWZvci1henVyZS1ieW9sL3NrdXMveWVsbG93ZmluZm9yYXp1cmVieW9sL3ZlcnNpb25zLzcuMS41MDE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"yellowfin\",\r\n \"name\": \"yellowfinforazurebyol\",\r\n \"product\": \"yellowfin-for-azure-byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.501\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin/ArtifactTypes/VMImage/Offers/yellowfin-for-azure-byol/Skus/yellowfinforazurebyol/Versions/7.1.501\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"yellowfin\",\r\n \"name\": \"yellowfinforazurebyol\",\r\n \"product\": \"yellowfin-for-azure-byol\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"7.1.501\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin/ArtifactTypes/VMImage/Offers/yellowfin-for-azure-byol/Skus/yellowfinforazurebyol/Versions/7.1.501\"\r\n}", "ResponseHeaders": { "Content-Length": [ "534" @@ -107637,7 +109768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "488a4874-c011-49ac-b5b0-7cd5ce3cb422" + "febc18f6-2a63-4ddc-96f2-7346bf6f7410" ], "Cache-Control": [ "no-cache" @@ -107647,31 +109778,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "12823" ], "x-ms-correlation-request-id": [ - "52d22985-176c-44de-9e8b-2c751478b204" + "3f299699-b574-4dc8-b6a3-1da31ef4b4c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:52d22985-176c-44de-9e8b-2c751478b204" + "WESTUS:20150813T074936Z:3f299699-b574-4dc8-b6a3-1da31ef4b4c4" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"herefordshire-enterprise-platform-drupal-7\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/herefordshire-enterprise-platform-drupal-7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xenofile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"herefordshire-enterprise-platform-drupal-7\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/herefordshire-enterprise-platform-drupal-7\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xenofile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "549" @@ -107689,7 +109820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "127e5626-ac58-467b-b616-05e723beee68" + "c98e6077-2072-47cc-b1a5-b894d7b3d7ac" ], "Cache-Control": [ "no-cache" @@ -107699,31 +109830,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "12822" ], "x-ms-correlation-request-id": [ - "e8a07fa1-d110-42f5-81f1-00d7c7d2d1bb" + "24e25472-0b67-44b0-8e4c-35457943456f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:e8a07fa1-d110-42f5-81f1-00d7c7d2d1bb" + "WESTUS:20150813T074936Z:24e25472-0b67-44b0-8e4c-35457943456f" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/herefordshire-enterprise-platform-drupal-7/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hlcmVmb3Jkc2hpcmUtZW50ZXJwcmlzZS1wbGF0Zm9ybS1kcnVwYWwtNy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/herefordshire-enterprise-platform-drupal-7/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hlcmVmb3Jkc2hpcmUtZW50ZXJwcmlzZS1wbGF0Zm9ybS1kcnVwYWwtNy9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"herefordshire-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/herefordshire-enterprise-platform-drupal-7/Skus/herefordshire-1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"herefordshire-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/herefordshire-enterprise-platform-drupal-7/Skus/herefordshire-1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "304" @@ -107741,7 +109872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72dacb40-82a8-4be9-8460-7282b3799d02" + "d6f00a40-adfb-4d31-b607-9d6d8d2ee750" ], "Cache-Control": [ "no-cache" @@ -107751,31 +109882,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "12821" ], "x-ms-correlation-request-id": [ - "e93e8d91-7b2d-476b-a3f0-3cf5e0fa9153" + "253af2b8-758d-4414-b8bc-14e5269a550d" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:e93e8d91-7b2d-476b-a3f0-3cf5e0fa9153" + "WESTUS:20150813T074936Z:253af2b8-758d-4414-b8bc-14e5269a550d" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/herefordshire-enterprise-platform-drupal-7/skus/herefordshire-1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hlcmVmb3Jkc2hpcmUtZW50ZXJwcmlzZS1wbGF0Zm9ybS1kcnVwYWwtNy9za3VzL2hlcmVmb3Jkc2hpcmUtMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/herefordshire-enterprise-platform-drupal-7/skus/herefordshire-1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hlcmVmb3Jkc2hpcmUtZW50ZXJwcmlzZS1wbGF0Zm9ybS1kcnVwYWwtNy9za3VzL2hlcmVmb3Jkc2hpcmUtMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/herefordshire-enterprise-platform-drupal-7/Skus/herefordshire-1/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/herefordshire-enterprise-platform-drupal-7/Skus/herefordshire-1/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "309" @@ -107793,7 +109924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5beb7758-a346-40cb-9ed5-fc9e5acb21bb" + "eedde279-a342-4a6d-a39a-d26c96ba4635" ], "Cache-Control": [ "no-cache" @@ -107803,31 +109934,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "12820" ], "x-ms-correlation-request-id": [ - "4aad65d4-1a46-48d6-b790-f660bf9b27f6" + "828f3bc1-052f-4e09-818f-e4b6da242731" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:4aad65d4-1a46-48d6-b790-f660bf9b27f6" + "WESTUS:20150813T074936Z:828f3bc1-052f-4e09-818f-e4b6da242731" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/herefordshire-enterprise-platform-drupal-7/skus/herefordshire-1/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hlcmVmb3Jkc2hpcmUtZW50ZXJwcmlzZS1wbGF0Zm9ybS1kcnVwYWwtNy9za3VzL2hlcmVmb3Jkc2hpcmUtMS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/herefordshire-enterprise-platform-drupal-7/skus/herefordshire-1/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2hlcmVmb3Jkc2hpcmUtZW50ZXJwcmlzZS1wbGF0Zm9ybS1kcnVwYWwtNy9za3VzL2hlcmVmb3Jkc2hpcmUtMS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"your-shop-online\",\r\n \"name\": \"herefordshire-1\",\r\n \"product\": \"herefordshire-enterprise-platform-drupal-7\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/herefordshire-enterprise-platform-drupal-7/Skus/herefordshire-1/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"your-shop-online\",\r\n \"name\": \"herefordshire-1\",\r\n \"product\": \"herefordshire-enterprise-platform-drupal-7\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/herefordshire-enterprise-platform-drupal-7/Skus/herefordshire-1/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "568" @@ -107845,7 +109976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "216f8612-8a12-4b32-b2f8-1f12cb7b182c" + "0fb338f7-d88e-4ea7-81db-d8695d766a14" ], "Cache-Control": [ "no-cache" @@ -107855,31 +109986,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "12819" ], "x-ms-correlation-request-id": [ - "1228657b-5590-4d93-851e-2c0532ff54b5" + "f56af9c3-c2d6-4b9f-a978-c5c56d2e8fd6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212758Z:1228657b-5590-4d93-851e-2c0532ff54b5" + "WESTUS:20150813T074936Z:f56af9c3-c2d6-4b9f-a978-c5c56d2e8fd6" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/xenofile/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3hlbm9maWxlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/xenofile/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3hlbm9maWxlL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xenofile-basic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile/Skus/xenofile-basic\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xenofile-basic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile/Skus/xenofile-basic\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "268" @@ -107897,7 +110028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9bc225cb-b54b-49c0-ab82-984d6271fd95" + "57a99578-cccc-4961-be5d-d67647f1152b" ], "Cache-Control": [ "no-cache" @@ -107907,31 +110038,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "12818" ], "x-ms-correlation-request-id": [ - "d54051b0-2831-4ef9-a4b6-8bd226c7a58f" + "b51d5263-a15a-4fbc-b3b3-89e97d5acf7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:d54051b0-2831-4ef9-a4b6-8bd226c7a58f" + "WESTUS:20150813T074937Z:b51d5263-a15a-4fbc-b3b3-89e97d5acf7e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/xenofile/skus/xenofile-basic/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3hlbm9maWxlL3NrdXMveGVub2ZpbGUtYmFzaWMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/xenofile/skus/xenofile-basic/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3hlbm9maWxlL3NrdXMveGVub2ZpbGUtYmFzaWMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile/Skus/xenofile-basic/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile/Skus/xenofile-basic/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "274" @@ -107949,7 +110080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b45feac-826f-49c2-b782-cd84cae1b86b" + "f8f68223-ab45-47ae-a71c-3be926cd0f3a" ], "Cache-Control": [ "no-cache" @@ -107959,31 +110090,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "12817" ], "x-ms-correlation-request-id": [ - "8c732791-db7f-4b10-aaa7-f26103ded4ec" + "46d65992-45d8-46c6-882a-b286af567144" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:8c732791-db7f-4b10-aaa7-f26103ded4ec" + "WESTUS:20150813T074937Z:46d65992-45d8-46c6-882a-b286af567144" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/xenofile/skus/xenofile-basic/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3hlbm9maWxlL3NrdXMveGVub2ZpbGUtYmFzaWMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/your-shop-online/artifacttypes/vmimage/offers/xenofile/skus/xenofile-basic/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMveW91ci1zaG9wLW9ubGluZS9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3hlbm9maWxlL3NrdXMveGVub2ZpbGUtYmFzaWMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"your-shop-online\",\r\n \"name\": \"xenofile-basic\",\r\n \"product\": \"xenofile\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile/Skus/xenofile-basic/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"your-shop-online\",\r\n \"name\": \"xenofile-basic\",\r\n \"product\": \"xenofile\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile/Skus/xenofile-basic/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "498" @@ -108001,7 +110132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1fea6d5-a830-4362-9ff3-49528e870fd4" + "c05f6f27-5c09-4675-a3cb-e3d115f51916" ], "Cache-Control": [ "no-cache" @@ -108011,31 +110142,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "12816" ], "x-ms-correlation-request-id": [ - "347737d3-9755-4d7f-be66-eddee6228ac0" + "94e0e310-649f-453d-8816-6ea51613b2a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:347737d3-9755-4d7f-be66-eddee6228ac0" + "WESTUS:20150813T074937Z:94e0e310-649f-453d-8816-6ea51613b2a7" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zementis/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVtZW50aXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zementis/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVtZW50aXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adapa-scoring-enging-4-1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis/ArtifactTypes/VMImage/Offers/adapa-scoring-enging-4-1\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adapa-scoring-enging-4-1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis/ArtifactTypes/VMImage/Offers/adapa-scoring-enging-4-1\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "266" @@ -108053,7 +110184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d8e350a-8192-4815-a1ca-c9c146bd1d30" + "6de11e10-4abb-4881-95b8-c5c40d2983fc" ], "Cache-Control": [ "no-cache" @@ -108063,31 +110194,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "12815" ], "x-ms-correlation-request-id": [ - "613ba6af-d0cf-4b1f-9e90-206456e08df5" + "485a1cfe-4efa-494a-a112-3fecc60a38bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:613ba6af-d0cf-4b1f-9e90-206456e08df5" + "WESTUS:20150813T074937Z:485a1cfe-4efa-494a-a112-3fecc60a38bd" ], "Date": [ - "Wed, 05 Aug 2015 21:27:58 GMT" + "Thu, 13 Aug 2015 07:49:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zementis/artifacttypes/vmimage/offers/adapa-scoring-enging-4-1/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVtZW50aXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZGFwYS1zY29yaW5nLWVuZ2luZy00LTEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zementis/artifacttypes/vmimage/offers/adapa-scoring-enging-4-1/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVtZW50aXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZGFwYS1zY29yaW5nLWVuZ2luZy00LTEvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis-adapa-4-1-azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis/ArtifactTypes/VMImage/Offers/adapa-scoring-enging-4-1/Skus/zementis-adapa-4-1-azure\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis-adapa-4-1-azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis/ArtifactTypes/VMImage/Offers/adapa-scoring-enging-4-1/Skus/zementis-adapa-4-1-azure\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "296" @@ -108105,7 +110236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2becf5a1-54e2-4cc6-9935-724d13229c64" + "78a55c1d-9426-4344-bb54-fcfbb291b712" ], "Cache-Control": [ "no-cache" @@ -108115,31 +110246,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "12814" ], "x-ms-correlation-request-id": [ - "e9718085-cb22-414c-8d09-646de3e696aa" + "7321a523-9765-4715-bcc7-bae02dfe461a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:e9718085-cb22-414c-8d09-646de3e696aa" + "WESTUS:20150813T074937Z:7321a523-9765-4715-bcc7-bae02dfe461a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zementis/artifacttypes/vmimage/offers/adapa-scoring-enging-4-1/skus/zementis-adapa-4-1-azure/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVtZW50aXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZGFwYS1zY29yaW5nLWVuZ2luZy00LTEvc2t1cy96ZW1lbnRpcy1hZGFwYS00LTEtYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zementis/artifacttypes/vmimage/offers/adapa-scoring-enging-4-1/skus/zementis-adapa-4-1-azure/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVtZW50aXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZGFwYS1zY29yaW5nLWVuZ2luZy00LTEvc2t1cy96ZW1lbnRpcy1hZGFwYS00LTEtYXp1cmUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis/ArtifactTypes/VMImage/Offers/adapa-scoring-enging-4-1/Skus/zementis-adapa-4-1-azure/Versions/1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis/ArtifactTypes/VMImage/Offers/adapa-scoring-enging-4-1/Skus/zementis-adapa-4-1-azure/Versions/1.0.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "292" @@ -108157,7 +110288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22809d8a-7841-45bf-84f9-05ebbabf2eb0" + "1896aacf-5708-4190-b304-a005f42f6855" ], "Cache-Control": [ "no-cache" @@ -108167,31 +110298,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "12813" ], "x-ms-correlation-request-id": [ - "dc0e39e1-9a0d-4601-b92f-5ffac3a9316d" + "75927bea-56b6-4f21-898c-de276e3f4a2e" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:dc0e39e1-9a0d-4601-b92f-5ffac3a9316d" + "WESTUS:20150813T074937Z:75927bea-56b6-4f21-898c-de276e3f4a2e" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zementis/artifacttypes/vmimage/offers/adapa-scoring-enging-4-1/skus/zementis-adapa-4-1-azure/versions/1.0.0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVtZW50aXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZGFwYS1zY29yaW5nLWVuZ2luZy00LTEvc2t1cy96ZW1lbnRpcy1hZGFwYS00LTEtYXp1cmUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zementis/artifacttypes/vmimage/offers/adapa-scoring-enging-4-1/skus/zementis-adapa-4-1-azure/versions/1.0.0?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVtZW50aXMvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hZGFwYS1zY29yaW5nLWVuZ2luZy00LTEvc2t1cy96ZW1lbnRpcy1hZGFwYS00LTEtYXp1cmUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"zementis\",\r\n \"name\": \"zementis-adapa-4-1-azure\",\r\n \"product\": \"adapa-scoring-enging-4-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis/ArtifactTypes/VMImage/Offers/adapa-scoring-enging-4-1/Skus/zementis-adapa-4-1-azure/Versions/1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"zementis\",\r\n \"name\": \"zementis-adapa-4-1-azure\",\r\n \"product\": \"adapa-scoring-enging-4-1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis/ArtifactTypes/VMImage/Offers/adapa-scoring-enging-4-1/Skus/zementis-adapa-4-1-azure/Versions/1.0.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "534" @@ -108209,7 +110340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1c3f60c-cfbb-48f5-81ae-cfee6fc1ef27" + "9ec9c5fa-3501-4108-9f15-75439dad7321" ], "Cache-Control": [ "no-cache" @@ -108219,31 +110350,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "12812" ], "x-ms-correlation-request-id": [ - "7d548d24-1229-480f-9a83-de778d436cf2" + "d83f8805-5728-4e25-9eb6-9ed59b69f741" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:7d548d24-1229-480f-9a83-de778d436cf2" + "WESTUS:20150813T074937Z:d83f8805-5728-4e25-9eb6-9ed59b69f741" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"php-zend-server\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"php-zend-server\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "244" @@ -108261,7 +110392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22fd5e76-8346-4d20-87c0-2a9e2a9c022e" + "9272d4d5-e4a3-4057-8319-a85196fc57f6" ], "Cache-Control": [ "no-cache" @@ -108271,31 +110402,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "12811" ], "x-ms-correlation-request-id": [ - "555f4bd9-c9d8-4b5a-86ea-0d3d8c432437" + "18d994dc-b8a2-43f0-8343-d71511b78817" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:555f4bd9-c9d8-4b5a-86ea-0d3d8c432437" + "WESTUS:20150813T074937Z:18d994dc-b8a2-43f0-8343-d71511b78817" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zs-d-00-u-php5_6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-d-00-u-php5_6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zs-e-00-u-php5_6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-e-00-u-php5_6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zs-p-00-u-php5_6\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-p-00-u-php5_6\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zs-d-00-u-php5_6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-d-00-u-php5_6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zs-e-00-u-php5_6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-e-00-u-php5_6\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zs-p-00-u-php5_6\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-p-00-u-php5_6\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "795" @@ -108313,7 +110444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca262b8f-ebc2-45b0-84e6-aea1f8878604" + "1a654c82-086e-4559-8fbc-c1e42e97d3e0" ], "Cache-Control": [ "no-cache" @@ -108323,31 +110454,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "12810" ], "x-ms-correlation-request-id": [ - "e8b3bcec-1d4a-4d3a-9b98-c412cafb9fad" + "14a003b4-61bf-4b15-a243-acffe751a90a" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:e8b3bcec-1d4a-4d3a-9b98-c412cafb9fad" + "WESTUS:20150813T074937Z:14a003b4-61bf-4b15-a243-acffe751a90a" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-d-00-u-php5_6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLWQtMDAtdS1waHA1XzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-d-00-u-php5_6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLWQtMDAtdS1waHA1XzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-d-00-u-php5_6/Versions/8.0.20\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-d-00-u-php5_6/Versions/8.0.20\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "273" @@ -108365,7 +110496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca7e1897-bcee-421c-9d21-2e959d667eea" + "f28fd153-33ec-4408-aabc-46d700743234" ], "Cache-Control": [ "no-cache" @@ -108375,31 +110506,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "12809" ], "x-ms-correlation-request-id": [ - "851d6a2a-9c23-415b-977d-b5b04dac1a06" + "a9872df5-bede-4576-89e4-cb476f46d3fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212759Z:851d6a2a-9c23-415b-977d-b5b04dac1a06" + "WESTUS:20150813T074938Z:a9872df5-bede-4576-89e4-cb476f46d3fc" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-d-00-u-php5_6/versions/8.0.20?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLWQtMDAtdS1waHA1XzYvdmVyc2lvbnMvOC4wLjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-d-00-u-php5_6/versions/8.0.20?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLWQtMDAtdS1waHA1XzYvdmVyc2lvbnMvOC4wLjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"zend\",\r\n \"name\": \"zs-d-00-u-php5_6\",\r\n \"product\": \"php-zend-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-d-00-u-php5_6/Versions/8.0.20\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"zend\",\r\n \"name\": \"zs-d-00-u-php5_6\",\r\n \"product\": \"php-zend-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-d-00-u-php5_6/Versions/8.0.20\"\r\n}", "ResponseHeaders": { "Content-Length": [ "494" @@ -108417,7 +110548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7781e8d-52c6-4fe1-91b2-13d6a50f5349" + "275159c3-5f44-4e91-a963-11eb7375cbfa" ], "Cache-Control": [ "no-cache" @@ -108427,31 +110558,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "12808" ], "x-ms-correlation-request-id": [ - "21954324-2f81-4252-828e-712c4ea2fcc3" + "cc7e7002-96a3-477e-a8cb-3f4c5659f7a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212800Z:21954324-2f81-4252-828e-712c4ea2fcc3" + "WESTUS:20150813T074938Z:cc7e7002-96a3-477e-a8cb-3f4c5659f7a0" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-e-00-u-php5_6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLWUtMDAtdS1waHA1XzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-e-00-u-php5_6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLWUtMDAtdS1waHA1XzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-e-00-u-php5_6/Versions/8.0.20\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-e-00-u-php5_6/Versions/8.0.20\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "273" @@ -108469,7 +110600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd9e3466-3038-4f36-bdfd-6fa248d2c535" + "daa36fcc-6139-4179-ae26-1cf05dd6d5e3" ], "Cache-Control": [ "no-cache" @@ -108479,31 +110610,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "12807" ], "x-ms-correlation-request-id": [ - "5c2ef582-76da-4626-b8d3-e8be708cf32c" + "ebfeabb9-cbba-4669-92cd-232d483fc585" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212800Z:5c2ef582-76da-4626-b8d3-e8be708cf32c" + "WESTUS:20150813T074938Z:ebfeabb9-cbba-4669-92cd-232d483fc585" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-e-00-u-php5_6/versions/8.0.20?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLWUtMDAtdS1waHA1XzYvdmVyc2lvbnMvOC4wLjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-e-00-u-php5_6/versions/8.0.20?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLWUtMDAtdS1waHA1XzYvdmVyc2lvbnMvOC4wLjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"zend\",\r\n \"name\": \"zs-e-00-u-php5_6\",\r\n \"product\": \"php-zend-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-e-00-u-php5_6/Versions/8.0.20\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"zend\",\r\n \"name\": \"zs-e-00-u-php5_6\",\r\n \"product\": \"php-zend-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-e-00-u-php5_6/Versions/8.0.20\"\r\n}", "ResponseHeaders": { "Content-Length": [ "494" @@ -108521,7 +110652,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3e07fee-a339-408e-8d08-f7fa543739b2" + "720a4533-7540-4028-ac89-62c9bb196c0d" ], "Cache-Control": [ "no-cache" @@ -108531,31 +110662,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "12806" ], "x-ms-correlation-request-id": [ - "565912cd-57b0-4662-a4d8-0ce0f9086ac9" + "210cb9e3-80a8-48e6-9654-f61f0ccf14d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212800Z:565912cd-57b0-4662-a4d8-0ce0f9086ac9" + "WESTUS:20150813T074938Z:210cb9e3-80a8-48e6-9654-f61f0ccf14d5" ], "Date": [ - "Wed, 05 Aug 2015 21:27:59 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-p-00-u-php5_6/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLXAtMDAtdS1waHA1XzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-p-00-u-php5_6/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLXAtMDAtdS1waHA1XzYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-p-00-u-php5_6/Versions/8.0.20\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-p-00-u-php5_6/Versions/8.0.20\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "273" @@ -108573,7 +110704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47f2e228-9378-4eec-93a8-0551af70a695" + "88225c8b-6140-4f8c-aee4-65ff8732065a" ], "Cache-Control": [ "no-cache" @@ -108583,31 +110714,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "12805" ], "x-ms-correlation-request-id": [ - "750a7dd5-c22a-4bbe-81cc-0f3430986862" + "2b17de96-2f49-4eb6-9976-7480d5ec91d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212800Z:750a7dd5-c22a-4bbe-81cc-0f3430986862" + "WESTUS:20150813T074938Z:2b17de96-2f49-4eb6-9976-7480d5ec91d6" ], "Date": [ - "Wed, 05 Aug 2015 21:28:00 GMT" + "Thu, 13 Aug 2015 07:49:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-p-00-u-php5_6/versions/8.0.20?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLXAtMDAtdS1waHA1XzYvdmVyc2lvbnMvOC4wLjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers/php-zend-server/skus/zs-p-00-u-php5_6/versions/8.0.20?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL3BocC16ZW5kLXNlcnZlci9za3VzL3pzLXAtMDAtdS1waHA1XzYvdmVyc2lvbnMvOC4wLjIwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"zend\",\r\n \"name\": \"zs-p-00-u-php5_6\",\r\n \"product\": \"php-zend-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-p-00-u-php5_6/Versions/8.0.20\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"zend\",\r\n \"name\": \"zs-p-00-u-php5_6\",\r\n \"product\": \"php-zend-server\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"8.0.20\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend/ArtifactTypes/VMImage/Offers/php-zend-server/Skus/zs-p-00-u-php5_6/Versions/8.0.20\"\r\n}", "ResponseHeaders": { "Content-Length": [ "494" @@ -108625,7 +110756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "894d2809-6b9c-4a49-a4f5-cc5c928a7d9c" + "3f97a329-a0b8-4b9e-aada-a4aae0e2fcb4" ], "Cache-Control": [ "no-cache" @@ -108635,25 +110766,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "12804" ], "x-ms-correlation-request-id": [ - "9aca7a16-3597-47b5-bae6-8c8448d54551" + "686831a7-cd6b-4bfa-b510-082caad89124" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212800Z:9aca7a16-3597-47b5-bae6-8c8448d54551" + "WESTUS:20150813T074938Z:686831a7-cd6b-4bfa-b510-082caad89124" ], "Date": [ - "Wed, 05 Aug 2015 21:28:00 GMT" + "Thu, 13 Aug 2015 07:49:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Compute/virtualMachines/vmcrptestps4425?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Compute/virtualMachines/vmcrptestps1356?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"vnp360-single\",\r\n \"publisher\": \"4psa\",\r\n \"product\": \"voipnow\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"4psa\",\r\n \"offer\": \"voipnow\",\r\n \"sku\": \"vnp360-single\",\r\n \"version\": \"3.6.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4425.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps4425\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps4425\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"vnp360-single\",\r\n \"publisher\": \"4psa\",\r\n \"product\": \"voipnow\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"4psa\",\r\n \"offer\": \"voipnow\",\r\n \"sku\": \"vnp360-single\",\r\n \"version\": \"3.6.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1356.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps1356\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1356/providers/Microsoft.Network/networkInterfaces/niccrptestps1356\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps1356\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -108662,7 +110793,7 @@ "1147" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourcePurchaseValidationFailed\",\r\n \"message\": \"User failed validation to purchase resources. Error message: 'Legal terms have not been accepted for this item on this subscription. To accept legal terms, please go to the Azure portal (http://go.microsoft.com/fwlink/?LinkId=534873) and configure programmatic deployment for the Marketplace item or create it there for the first time'\"\r\n }\r\n}", @@ -108683,13 +110814,13 @@ "gateway" ], "x-ms-request-id": [ - "4016a237-6af1-4f0c-b5fa-0664f13cea2c" + "0aa61c2a-ea0d-41cc-8574-3e18e7b3806f" ], "x-ms-correlation-request-id": [ - "4016a237-6af1-4f0c-b5fa-0664f13cea2c" + "0aa61c2a-ea0d-41cc-8574-3e18e7b3806f" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212801Z:4016a237-6af1-4f0c-b5fa-0664f13cea2c" + "WESTUS:20150813T074939Z:0aa61c2a-ea0d-41cc-8574-3e18e7b3806f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108698,14 +110829,14 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:28:01 GMT" + "Thu, 13 Aug 2015 07:49:38 GMT" ] }, "StatusCode": 400 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1356?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -108728,16 +110859,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-request-id": [ - "165bef44-ec3b-4c27-9432-c2390b7ff599" + "8d25aead-23d0-4c4e-bd80-950e4dccefcb" ], "x-ms-correlation-request-id": [ - "165bef44-ec3b-4c27-9432-c2390b7ff599" + "8d25aead-23d0-4c4e-bd80-950e4dccefcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212802Z:165bef44-ec3b-4c27-9432-c2390b7ff599" + "WESTUS:20150813T074939Z:8d25aead-23d0-4c4e-bd80-950e4dccefcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108746,17 +110877,17 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:28:02 GMT" + "Thu, 13 Aug 2015 07:49:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpVMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -108782,16 +110913,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14677" + "14951" ], "x-ms-request-id": [ - "95d4d757-d592-48d0-b3e0-4ab6410749ad" + "04e467cc-5f49-4bd8-a239-063eb429c536" ], "x-ms-correlation-request-id": [ - "95d4d757-d592-48d0-b3e0-4ab6410749ad" + "04e467cc-5f49-4bd8-a239-063eb429c536" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212802Z:95d4d757-d592-48d0-b3e0-4ab6410749ad" + "WESTUS:20150813T074939Z:04e467cc-5f49-4bd8-a239-063eb429c536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108800,17 +110931,17 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:28:02 GMT" + "Thu, 13 Aug 2015 07:49:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpVMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -108836,16 +110967,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14676" + "14950" ], "x-ms-request-id": [ - "5685ba45-53d7-456f-b1d6-17c5aa9f7d6e" + "d6303009-9503-495d-a24c-fd381290c9e6" ], "x-ms-correlation-request-id": [ - "5685ba45-53d7-456f-b1d6-17c5aa9f7d6e" + "d6303009-9503-495d-a24c-fd381290c9e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212817Z:5685ba45-53d7-456f-b1d6-17c5aa9f7d6e" + "WESTUS:20150813T074954Z:d6303009-9503-495d-a24c-fd381290c9e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108854,17 +110985,17 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:28:17 GMT" + "Thu, 13 Aug 2015 07:49:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpVMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -108890,16 +111021,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14675" + "14959" ], "x-ms-request-id": [ - "a110ff31-06a3-463b-9ad9-102c8834375d" + "cb8b5b04-07ea-4e59-9751-51aacc014013" ], "x-ms-correlation-request-id": [ - "a110ff31-06a3-463b-9ad9-102c8834375d" + "cb8b5b04-07ea-4e59-9751-51aacc014013" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212832Z:a110ff31-06a3-463b-9ad9-102c8834375d" + "WESTUS:20150813T075009Z:cb8b5b04-07ea-4e59-9751-51aacc014013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108908,17 +111039,17 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:28:31 GMT" + "Thu, 13 Aug 2015 07:50:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpVMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -108944,16 +111075,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14674" + "14958" ], "x-ms-request-id": [ - "254fa7a0-eff4-474e-ba3d-49a4ef11c4ec" + "93ffa490-36b5-4e5c-8111-281372ae942c" ], "x-ms-correlation-request-id": [ - "254fa7a0-eff4-474e-ba3d-49a4ef11c4ec" + "93ffa490-36b5-4e5c-8111-281372ae942c" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212847Z:254fa7a0-eff4-474e-ba3d-49a4ef11c4ec" + "WESTUS:20150813T075024Z:93ffa490-36b5-4e5c-8111-281372ae942c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108962,17 +111093,17 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:28:46 GMT" + "Thu, 13 Aug 2015 07:50:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpVMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -108998,16 +111129,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14673" + "14957" ], "x-ms-request-id": [ - "40858de7-e407-439e-91f6-c5b8c9dff694" + "0d395992-52bc-4cc3-8d98-86f9729e3053" ], "x-ms-correlation-request-id": [ - "40858de7-e407-439e-91f6-c5b8c9dff694" + "0d395992-52bc-4cc3-8d98-86f9729e3053" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212902Z:40858de7-e407-439e-91f6-c5b8c9dff694" + "WESTUS:20150813T075039Z:0d395992-52bc-4cc3-8d98-86f9729e3053" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109016,17 +111147,17 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:29:02 GMT" + "Thu, 13 Aug 2015 07:50:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpVMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -109052,16 +111183,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14672" + "14956" ], "x-ms-request-id": [ - "02be1c4f-0836-4fa4-9b63-3a61ebd22d9b" + "35edffe5-0a39-4adb-9b9f-6e4acef9a094" ], "x-ms-correlation-request-id": [ - "02be1c4f-0836-4fa4-9b63-3a61ebd22d9b" + "35edffe5-0a39-4adb-9b9f-6e4acef9a094" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212917Z:02be1c4f-0836-4fa4-9b63-3a61ebd22d9b" + "WESTUS:20150813T075054Z:35edffe5-0a39-4adb-9b9f-6e4acef9a094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109070,17 +111201,17 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:29:17 GMT" + "Thu, 13 Aug 2015 07:50:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpVMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -109106,16 +111237,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" + "14955" ], "x-ms-request-id": [ - "f8761f67-ed37-4ea1-a65f-ae73f7ae2753" + "5dc8eda2-df72-4acb-b008-2acaa53e6295" ], "x-ms-correlation-request-id": [ - "f8761f67-ed37-4ea1-a65f-ae73f7ae2753" + "5dc8eda2-df72-4acb-b008-2acaa53e6295" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212932Z:f8761f67-ed37-4ea1-a65f-ae73f7ae2753" + "WESTUS:20150813T075110Z:5dc8eda2-df72-4acb-b008-2acaa53e6295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109124,17 +111255,17 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:29:31 GMT" + "Thu, 13 Aug 2015 07:51:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpVMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -109157,16 +111288,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14670" + "14954" ], "x-ms-request-id": [ - "7d4b254f-0fcb-48d2-b280-531d41971a83" + "3221fa44-4861-4e16-92dd-7b43f14ae323" ], "x-ms-correlation-request-id": [ - "7d4b254f-0fcb-48d2-b280-531d41971a83" + "3221fa44-4861-4e16-92dd-7b43f14ae323" ], "x-ms-routing-request-id": [ - "WESTUS:20150805T212947Z:7d4b254f-0fcb-48d2-b280-531d41971a83" + "WESTUS:20150813T075125Z:3221fa44-4861-4e16-92dd-7b43f14ae323" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109175,7 +111306,7 @@ "no-cache" ], "Date": [ - "Wed, 05 Aug 2015 21:29:47 GMT" + "Thu, 13 Aug 2015 07:51:24 GMT" ] }, "StatusCode": 200 @@ -109183,11 +111314,11 @@ ], "Names": { "Test-VirtualMachinePlan2": [ - "crptestps4425" + "crptestps1356" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineSizeAndUsage.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineSizeAndUsage.json index f352621a37aa..8ee514946273 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineSizeAndUsage.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineSizeAndUsage.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg92?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "d8c0337f-de41-4076-87ee-0b4cf096c7e8" + ], + "x-ms-correlation-request-id": [ + "d8c0337f-de41-4076-87ee-0b4cf096c7e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T075216Z:d8c0337f-de41-4076-87ee-0b4cf096c7e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 07:52:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8769?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14969" ], "x-ms-request-id": [ - "7b59d0d9-53d8-4ec9-bb84-f0e1c4e947f7" + "f22d1615-e2a0-4d2b-842f-d13a85cd4dc9" ], "x-ms-correlation-request-id": [ - "7b59d0d9-53d8-4ec9-bb84-f0e1c4e947f7" + "f22d1615-e2a0-4d2b-842f-d13a85cd4dc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213905Z:7b59d0d9-53d8-4ec9-bb84-f0e1c4e947f7" + "WESTUS:20150813T075216Z:f22d1615-e2a0-4d2b-842f-d13a85cd4dc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:39:05 GMT" + "Thu, 13 Aug 2015 07:52:15 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg92?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8769?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14952" ], "x-ms-request-id": [ - "e6f1a9ee-594d-4ad8-a74b-6ec6536eb84e" + "a579a34f-4f8d-478a-b216-52a0463d58c4" ], "x-ms-correlation-request-id": [ - "e6f1a9ee-594d-4ad8-a74b-6ec6536eb84e" + "a579a34f-4f8d-478a-b216-52a0463d58c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214520Z:e6f1a9ee-594d-4ad8-a74b-6ec6536eb84e" + "WESTUS:20150813T080024Z:a579a34f-4f8d-478a-b216-52a0463d58c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:45:20 GMT" + "Thu, 13 Aug 2015 08:00:24 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg92?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8769?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92\",\r\n \"name\": \"pstestrg92\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769\",\r\n \"name\": \"crptestps8769\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-request-id": [ - "a5b6049b-0a59-4015-9238-f03842f757b8" + "b279e9f4-9692-49ef-b3f2-d3d4ddd39c93" ], "x-ms-correlation-request-id": [ - "a5b6049b-0a59-4015-9238-f03842f757b8" + "b279e9f4-9692-49ef-b3f2-d3d4ddd39c93" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213906Z:a5b6049b-0a59-4015-9238-f03842f757b8" + "WESTUS:20150813T075216Z:b279e9f4-9692-49ef-b3f2-d3d4ddd39c93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:39:06 GMT" + "Thu, 13 Aug 2015 07:52:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14968" ], "x-ms-request-id": [ - "8518b866-a581-4464-abb1-9d979f72d7bc" + "24c2d1e5-571a-42de-a744-c673c98b66aa" ], "x-ms-correlation-request-id": [ - "8518b866-a581-4464-abb1-9d979f72d7bc" + "24c2d1e5-571a-42de-a744-c673c98b66aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213906Z:8518b866-a581-4464-abb1-9d979f72d7bc" + "WESTUS:20150813T075216Z:24c2d1e5-571a-42de-a744-c673c98b66aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:39:06 GMT" + "Thu, 13 Aug 2015 07:52:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg92/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8769/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:df3a782e-38e0-472d-96d2-e3a83a9be78f" + "westus:f3c2fcf2-a7f2-4765-a7b7-9a0a32349eb2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14953" ], "x-ms-correlation-request-id": [ - "228dda5c-d8aa-4ca9-ae69-5166a08df9be" + "ce1a6be1-fe56-4b93-9694-b0cd294a2ea8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213907Z:228dda5c-d8aa-4ca9-ae69-5166a08df9be" + "WESTUS:20150813T075217Z:ce1a6be1-fe56-4b93-9694-b0cd294a2ea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,31 +292,31 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:39:06 GMT" + "Thu, 13 Aug 2015 07:52:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/availabilitySets/asetpstestrg92?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNldHBzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/availabilitySets/asetcrptestps8769?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNldGNycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"asetpstestrg92\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"asetcrptestps8769\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "93" + "96" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/availabilitySets/asetpstestrg92\",\r\n \"name\": \"asetpstestrg92\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/availabilitySets/asetcrptestps8769\",\r\n \"name\": \"asetcrptestps8769\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "368" + "377" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,8 +330,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "19d21c93-bf2c-48e8-872c-dd1a3ad13fc5" + "fc8b659f-490e-4268-855f-73558f10d464" ], "Cache-Control": [ "no-cache" @@ -293,34 +344,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "5f8bfcba-89c6-44c9-830e-b26ad65ec792" + "3e9ff049-0314-406f-b5c7-d5139a2ef2e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213909Z:5f8bfcba-89c6-44c9-830e-b26ad65ec792" + "WESTUS:20150813T075218Z:3e9ff049-0314-406f-b5c7-d5139a2ef2e6" ], "Date": [ - "Tue, 28 Apr 2015 21:39:09 GMT" + "Thu, 13 Aug 2015 07:52:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/availabilitySets/asetpstestrg92?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNldHBzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/availabilitySets/asetcrptestps8769?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNldGNycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/availabilitySets/asetpstestrg92\",\r\n \"name\": \"asetpstestrg92\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/availabilitySets/asetcrptestps8769\",\r\n \"name\": \"asetcrptestps8769\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "396" + "405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,8 +385,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "4bf1a60a-1819-456a-b880-dc96bb38ee27" + "8d43e032-75d6-4ea0-a5bf-e4442b91fe65" ], "Cache-Control": [ "no-cache" @@ -345,23 +399,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14943" ], "x-ms-correlation-request-id": [ - "b0192b17-bdd3-49d1-b665-ddc1ad510866" + "2bfae53e-8e8c-4923-9cd0-4e0ded93abed" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213910Z:b0192b17-bdd3-49d1-b665-ddc1ad510866" + "WESTUS:20150813T075218Z:2bfae53e-8e8c-4923-9cd0-4e0ded93abed" ], "Date": [ - "Tue, 28 Apr 2015 21:39:09 GMT" + "Thu, 13 Aug 2015 07:52:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualnetworks/vnetpstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0cHN0ZXN0cmc5Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc2OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -369,10 +423,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps8769' under resource group 'crptestps8769' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,13 +441,13 @@ "gateway" ], "x-ms-request-id": [ - "c0adaaba-4e05-41fd-9de3-cc5125aa22aa" + "c4aece31-10f2-463f-95d9-da0c656474f8" ], "x-ms-correlation-request-id": [ - "c0adaaba-4e05-41fd-9de3-cc5125aa22aa" + "c4aece31-10f2-463f-95d9-da0c656474f8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213901Z:c0adaaba-4e05-41fd-9de3-cc5125aa22aa" + "WESTUS:20150813T075219Z:c4aece31-10f2-463f-95d9-da0c656474f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -402,14 +456,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:39:01 GMT" + "Thu, 13 Aug 2015 07:52:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualnetworks/vnetpstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0cHN0ZXN0cmc5Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc2OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -417,10 +471,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92\",\r\n \"etag\": \"W/\\\"88455298-7f03-4724-a2f1-7fcef50b1c9d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92/subnets/subnetpstestrg92\",\r\n \"etag\": \"W/\\\"88455298-7f03-4724-a2f1-7fcef50b1c9d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769\",\r\n \"etag\": \"W/\\\"f9720699-99fb-49fb-a541-927303e923e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a90551b-476b-4a15-a2fb-50417060cf56\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769/subnets/subnetcrptestps8769\",\r\n \"etag\": \"W/\\\"f9720699-99fb-49fb-a541-927303e923e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "946" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,7 +486,7 @@ "no-cache" ], "x-ms-request-id": [ - "7469a062-4723-492a-b714-c608aa836af3" + "b470b3ac-7a8e-42dc-9273-2b347bc75655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,30 +495,30 @@ "no-cache" ], "ETag": [ - "W/\"88455298-7f03-4724-a2f1-7fcef50b1c9d\"" + "W/\"f9720699-99fb-49fb-a541-927303e923e8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14833" ], "x-ms-correlation-request-id": [ - "05488fb8-1e42-456a-ac0d-0138b8a5f28f" + "f84e5a18-f0f8-493d-8723-0a21573d8eb4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213912Z:05488fb8-1e42-456a-ac0d-0138b8a5f28f" + "WESTUS:20150813T075219Z:f84e5a18-f0f8-493d-8723-0a21573d8eb4" ], "Date": [ - "Tue, 28 Apr 2015 21:39:12 GMT" + "Thu, 13 Aug 2015 07:52:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualnetworks/vnetpstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0cHN0ZXN0cmc5Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc2OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -472,10 +526,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92\",\r\n \"etag\": \"W/\\\"88455298-7f03-4724-a2f1-7fcef50b1c9d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92/subnets/subnetpstestrg92\",\r\n \"etag\": \"W/\\\"88455298-7f03-4724-a2f1-7fcef50b1c9d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769\",\r\n \"etag\": \"W/\\\"f9720699-99fb-49fb-a541-927303e923e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a90551b-476b-4a15-a2fb-50417060cf56\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769/subnets/subnetcrptestps8769\",\r\n \"etag\": \"W/\\\"f9720699-99fb-49fb-a541-927303e923e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "946" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -487,7 +541,7 @@ "no-cache" ], "x-ms-request-id": [ - "b62bab10-61e8-4adf-a3b9-d09f4a3be1e4" + "2220cf54-a5be-4caa-a29f-6fcbaf553de8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,47 +550,47 @@ "no-cache" ], "ETag": [ - "W/\"88455298-7f03-4724-a2f1-7fcef50b1c9d\"" + "W/\"f9720699-99fb-49fb-a541-927303e923e8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14832" ], "x-ms-correlation-request-id": [ - "ce3deee9-07fc-49f6-bf13-5cd473ad9860" + "a20e8653-adfd-4fd6-a109-595db2c4d448" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213912Z:ce3deee9-07fc-49f6-bf13-5cd473ad9860" + "WESTUS:20150813T075220Z:a20e8653-adfd-4fd6-a109-595db2c4d448" ], "Date": [ - "Tue, 28 Apr 2015 21:39:12 GMT" + "Thu, 13 Aug 2015 07:52:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualnetworks/vnetpstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0cHN0ZXN0cmc5Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODc2OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg92\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg92\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps8769\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps8769\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "496" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92\",\r\n \"etag\": \"W/\\\"20a216cc-837d-4f23-ae0a-86b005c53015\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92/subnets/subnetpstestrg92\",\r\n \"etag\": \"W/\\\"20a216cc-837d-4f23-ae0a-86b005c53015\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769\",\r\n \"etag\": \"W/\\\"e5836b16-a834-4eef-8472-2d92adf4846f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0a90551b-476b-4a15-a2fb-50417060cf56\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769/subnets/subnetcrptestps8769\",\r\n \"etag\": \"W/\\\"e5836b16-a834-4eef-8472-2d92adf4846f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "944" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -551,10 +605,10 @@ "10" ], "x-ms-request-id": [ - "49712024-6ad1-4448-9daa-bb0297b04065" + "8d8084bd-8ca9-46ea-9465-8a3ea11d4605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/49712024-6ad1-4448-9daa-bb0297b04065?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/8d8084bd-8ca9-46ea-9465-8a3ea11d4605?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,78 +621,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "1fcbcc24-2cdd-45b6-996b-66a99269166b" + "6103725d-e4f0-4920-afd4-5a9330b4bf7a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213902Z:1fcbcc24-2cdd-45b6-996b-66a99269166b" + "WESTUS:20150813T075219Z:6103725d-e4f0-4920-afd4-5a9330b4bf7a" ], "Date": [ - "Tue, 28 Apr 2015 21:39:01 GMT" + "Thu, 13 Aug 2015 07:52:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/49712024-6ad1-4448-9daa-bb0297b04065?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDk3MTIwMjQtNmFkMS00NDQ4LTlkYWEtYmIwMjk3YjA0MDY1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c3730308-2380-433a-84e3-37478a8aa080" - ], - "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": [ - "31997" - ], - "x-ms-correlation-request-id": [ - "dff8653f-db5d-4467-a20e-525c7cb815b9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T213902Z:dff8653f-db5d-4467-a20e-525c7cb815b9" - ], - "Date": [ - "Tue, 28 Apr 2015 21:39:02 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/49712024-6ad1-4448-9daa-bb0297b04065?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDk3MTIwMjQtNmFkMS00NDQ4LTlkYWEtYmIwMjk3YjA0MDY1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/8d8084bd-8ca9-46ea-9465-8a3ea11d4605?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ4MDg0YmQtOGNhOS00NmVhLTk0NjUtOGEzZWExMWQ0NjA1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -664,7 +663,7 @@ "no-cache" ], "x-ms-request-id": [ - "f1bd2bbf-76c5-4a3a-a0a7-cc3078507c74" + "4134df59-62d1-4a63-bfb1-d7a17be0c0e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -677,23 +676,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14834" ], "x-ms-correlation-request-id": [ - "c85729d4-5558-4e65-8ff3-f2313832977d" + "6cfc3243-a6df-47c2-8b5a-c437f9a89996" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213912Z:c85729d4-5558-4e65-8ff3-f2313832977d" + "WESTUS:20150813T075219Z:6cfc3243-a6df-47c2-8b5a-c437f9a89996" ], "Date": [ - "Tue, 28 Apr 2015 21:39:11 GMT" + "Thu, 13 Aug 2015 07:52:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwcHN0ZXN0cmc5Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc2OS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,10 +700,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps8769' under resource group 'crptestps8769' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -719,13 +718,13 @@ "gateway" ], "x-ms-request-id": [ - "e4f34259-aced-4f22-8cfb-a0c64e65c41f" + "227248ec-fce7-4cad-a68f-d28259885f26" ], "x-ms-correlation-request-id": [ - "e4f34259-aced-4f22-8cfb-a0c64e65c41f" + "227248ec-fce7-4cad-a68f-d28259885f26" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213912Z:e4f34259-aced-4f22-8cfb-a0c64e65c41f" + "WESTUS:20150813T075220Z:227248ec-fce7-4cad-a68f-d28259885f26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,14 +733,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:39:12 GMT" + "Thu, 13 Aug 2015 07:52:19 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwcHN0ZXN0cmc5Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc2OS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -749,10 +748,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92\",\r\n \"etag\": \"W/\\\"74a04503-e913-4854-9f6e-674c33a0aecb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg92\",\r\n \"fqdn\": \"pubippstestrg92.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769\",\r\n \"etag\": \"W/\\\"d53ac890-36cd-4a8c-ba96-ef57f08bef17\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b7599103-1df6-4771-911e-a902e048730f\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8769\",\r\n \"fqdn\": \"pubipcrptestps8769.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -764,7 +763,7 @@ "no-cache" ], "x-ms-request-id": [ - "daced4a4-0dac-4ece-84a9-dae933366d3c" + "d19fdc93-f212-4127-b109-98acadc31669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -773,30 +772,30 @@ "no-cache" ], "ETag": [ - "W/\"74a04503-e913-4854-9f6e-674c33a0aecb\"" + "W/\"d53ac890-36cd-4a8c-ba96-ef57f08bef17\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14829" ], "x-ms-correlation-request-id": [ - "3a5b577e-97d3-408a-8f83-98817cb7ad30" + "cf6eefe5-4afb-4f0b-adbd-cf1190773198" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213914Z:3a5b577e-97d3-408a-8f83-98817cb7ad30" + "WESTUS:20150813T075221Z:cf6eefe5-4afb-4f0b-adbd-cf1190773198" ], "Date": [ - "Tue, 28 Apr 2015 21:39:13 GMT" + "Thu, 13 Aug 2015 07:52:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwcHN0ZXN0cmc5Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc2OS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,10 +803,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92\",\r\n \"etag\": \"W/\\\"74a04503-e913-4854-9f6e-674c33a0aecb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg92\",\r\n \"fqdn\": \"pubippstestrg92.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769\",\r\n \"etag\": \"W/\\\"d53ac890-36cd-4a8c-ba96-ef57f08bef17\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b7599103-1df6-4771-911e-a902e048730f\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8769\",\r\n \"fqdn\": \"pubipcrptestps8769.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,7 +818,7 @@ "no-cache" ], "x-ms-request-id": [ - "3de87690-5844-4a91-95b1-d809f2cac104" + "6faf0f9d-5a41-4ded-8445-2c97ea1e804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,47 +827,47 @@ "no-cache" ], "ETag": [ - "W/\"74a04503-e913-4854-9f6e-674c33a0aecb\"" + "W/\"d53ac890-36cd-4a8c-ba96-ef57f08bef17\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14828" ], "x-ms-correlation-request-id": [ - "33fbe466-45ba-4605-ae4f-5103082cb7ee" + "733fa98a-100a-4a04-8443-c958ccd92f43" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213914Z:33fbe466-45ba-4605-ae4f-5103082cb7ee" + "WESTUS:20150813T075221Z:733fa98a-100a-4a04-8443-c958ccd92f43" ], "Date": [ - "Tue, 28 Apr 2015 21:39:13 GMT" + "Thu, 13 Aug 2015 07:52:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwcHN0ZXN0cmc5Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODc2OS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg92\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg92\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8769\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps8769\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "250" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92\",\r\n \"etag\": \"W/\\\"aad9facb-84e0-48cf-ab98-547b5635846e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg92\",\r\n \"fqdn\": \"pubippstestrg92.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769\",\r\n \"etag\": \"W/\\\"1d8afb27-a8dd-45b5-95cc-1cd272297b6c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b7599103-1df6-4771-911e-a902e048730f\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8769\",\r\n \"fqdn\": \"pubipcrptestps8769.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "539" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,10 +882,10 @@ "10" ], "x-ms-request-id": [ - "765a2b60-8077-4cfc-9768-9a6207716a4d" + "07cb779f-4dc5-4632-a541-68a3d37a32d2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/765a2b60-8077-4cfc-9768-9a6207716a4d?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/07cb779f-4dc5-4632-a541-68a3d37a32d2?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,23 +898,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "4619430e-0578-48e3-9f65-e744cea85e41" + "8c2fc8df-16d3-47ae-b854-fb33e4258bb2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213913Z:4619430e-0578-48e3-9f65-e744cea85e41" + "WESTUS:20150813T075220Z:8c2fc8df-16d3-47ae-b854-fb33e4258bb2" ], "Date": [ - "Tue, 28 Apr 2015 21:39:13 GMT" + "Thu, 13 Aug 2015 07:52:20 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/765a2b60-8077-4cfc-9768-9a6207716a4d?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzY1YTJiNjAtODA3Ny00Y2ZjLTk3NjgtOWE2MjA3NzE2YTRkP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/07cb779f-4dc5-4632-a541-68a3d37a32d2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDdjYjc3OWYtNGRjNS00NjMyLWE1NDEtNjhhM2QzN2EzMmQyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -941,7 +940,7 @@ "no-cache" ], "x-ms-request-id": [ - "be8900b1-7c43-40ba-999c-a9e1ffbfc80a" + "9edf6ad1-bae0-4d99-adf4-fd6f94e90564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,23 +953,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14830" ], "x-ms-correlation-request-id": [ - "2cc92d95-2325-4864-998c-be6817457e59" + "4e1a6aca-ece5-42e0-b14e-7243bbcd795e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213913Z:2cc92d95-2325-4864-998c-be6817457e59" + "WESTUS:20150813T075221Z:4e1a6aca-ece5-42e0-b14e-7243bbcd795e" ], "Date": [ - "Tue, 28 Apr 2015 21:39:13 GMT" + "Thu, 13 Aug 2015 07:52:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY3BzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,10 +977,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps8769' under resource group 'crptestps8769' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,13 +995,13 @@ "gateway" ], "x-ms-request-id": [ - "07e4985a-af33-4244-968d-de63f1f46c74" + "081280e0-6deb-4a70-80a3-5da44d39952a" ], "x-ms-correlation-request-id": [ - "07e4985a-af33-4244-968d-de63f1f46c74" + "081280e0-6deb-4a70-80a3-5da44d39952a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213914Z:07e4985a-af33-4244-968d-de63f1f46c74" + "WESTUS:20150813T075221Z:081280e0-6deb-4a70-80a3-5da44d39952a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,14 +1010,14 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:39:13 GMT" + "Thu, 13 Aug 2015 07:52:20 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY3BzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,10 +1025,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92\",\r\n \"etag\": \"W/\\\"783829a6-300e-4e75-a7c6-b5cab9dc289d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"783829a6-300e-4e75-a7c6-b5cab9dc289d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92/subnets/subnetpstestrg92\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769\",\r\n \"etag\": \"W/\\\"cca91cfe-69cb-426e-8660-75d51b62c3ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"649755ac-69e8-4a85-93e5-22306bfbf23a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cca91cfe-69cb-426e-8660-75d51b62c3ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769/subnets/subnetcrptestps8769\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1280" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,7 +1040,7 @@ "no-cache" ], "x-ms-request-id": [ - "1b8a54e3-0d03-445e-96ae-6329aa905816" + "134e261d-0603-4c83-b1fe-a86c3381ca2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,30 +1049,30 @@ "no-cache" ], "ETag": [ - "W/\"783829a6-300e-4e75-a7c6-b5cab9dc289d\"" + "W/\"cca91cfe-69cb-426e-8660-75d51b62c3ce\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14825" ], "x-ms-correlation-request-id": [ - "7528513e-06ad-44af-8ff7-c84ef0a9c16c" + "b4c30914-245b-4224-820b-e00946c6437d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213915Z:7528513e-06ad-44af-8ff7-c84ef0a9c16c" + "WESTUS:20150813T075221Z:b4c30914-245b-4224-820b-e00946c6437d" ], "Date": [ - "Tue, 28 Apr 2015 21:39:14 GMT" + "Thu, 13 Aug 2015 07:52:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY3BzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1081,10 +1080,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92\",\r\n \"etag\": \"W/\\\"783829a6-300e-4e75-a7c6-b5cab9dc289d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"783829a6-300e-4e75-a7c6-b5cab9dc289d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92/subnets/subnetpstestrg92\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769\",\r\n \"etag\": \"W/\\\"cca91cfe-69cb-426e-8660-75d51b62c3ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"649755ac-69e8-4a85-93e5-22306bfbf23a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cca91cfe-69cb-426e-8660-75d51b62c3ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769/subnets/subnetcrptestps8769\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1280" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1096,7 +1095,7 @@ "no-cache" ], "x-ms-request-id": [ - "c8427255-5481-40c4-bfce-482cbbd27ef9" + "f1c83c46-a432-4210-9351-ab25c83e14f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1105,47 +1104,47 @@ "no-cache" ], "ETag": [ - "W/\"783829a6-300e-4e75-a7c6-b5cab9dc289d\"" + "W/\"cca91cfe-69cb-426e-8660-75d51b62c3ce\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14824" ], "x-ms-correlation-request-id": [ - "4e54cf39-a2e0-4b3d-89d4-6aa1698060a3" + "006146a9-bec9-400d-8ffc-3e97b313c6d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213915Z:4e54cf39-a2e0-4b3d-89d4-6aa1698060a3" + "WESTUS:20150813T075221Z:006146a9-bec9-400d-8ffc-3e97b313c6d1" ], "Date": [ - "Tue, 28 Apr 2015 21:39:14 GMT" + "Thu, 13 Aug 2015 07:52:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY3BzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92/subnets/subnetpstestrg92\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg92\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769/subnets/subnetcrptestps8769\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps8769\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "845" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg92\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92\",\r\n \"etag\": \"W/\\\"783829a6-300e-4e75-a7c6-b5cab9dc289d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"783829a6-300e-4e75-a7c6-b5cab9dc289d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/publicIPAddresses/pubippstestrg92\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/virtualNetworks/vnetpstestrg92/subnets/subnetpstestrg92\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8769\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769\",\r\n \"etag\": \"W/\\\"cca91cfe-69cb-426e-8660-75d51b62c3ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"649755ac-69e8-4a85-93e5-22306bfbf23a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cca91cfe-69cb-426e-8660-75d51b62c3ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8769\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8769/subnets/subnetcrptestps8769\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1280" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1157,10 +1156,10 @@ "no-cache" ], "x-ms-request-id": [ - "60f4ec60-6dca-4ddd-a324-3983577ae3e0" + "268d015a-d4aa-4412-a77d-fce1dee6a8a9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/60f4ec60-6dca-4ddd-a324-3983577ae3e0?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/268d015a-d4aa-4412-a77d-fce1dee6a8a9?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,23 +1172,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1192" ], "x-ms-correlation-request-id": [ - "962c8058-39c3-4af1-bddb-c19c4482171d" + "53e38952-72c3-46b9-92f0-01fcd013b5c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213915Z:962c8058-39c3-4af1-bddb-c19c4482171d" + "WESTUS:20150813T075221Z:53e38952-72c3-46b9-92f0-01fcd013b5c9" ], "Date": [ - "Tue, 28 Apr 2015 21:39:14 GMT" + "Thu, 13 Aug 2015 07:52:21 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/60f4ec60-6dca-4ddd-a324-3983577ae3e0?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjBmNGVjNjAtNmRjYS00ZGRkLWEzMjQtMzk4MzU3N2FlM2UwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/268d015a-d4aa-4412-a77d-fce1dee6a8a9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjY4ZDAxNWEtZDRhYS00NDEyLWE3N2QtZmNlMWRlZTZhOGE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1215,7 +1214,7 @@ "no-cache" ], "x-ms-request-id": [ - "79bb90a0-13b5-45f8-8db9-8e4d4be0aab3" + "4e47eb3a-1dc8-4af4-b2c8-61f3d253c3f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1228,23 +1227,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14826" ], "x-ms-correlation-request-id": [ - "93041d51-f03c-4615-a8ad-0e5dc22ec02a" + "fa1c9867-59a1-4c44-98e3-c2aaf4a03b2a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213915Z:93041d51-f03c-4615-a8ad-0e5dc22ec02a" + "WESTUS:20150813T075221Z:fa1c9867-59a1-4c44-98e3-c2aaf4a03b2a" ], "Date": [ - "Tue, 28 Apr 2015 21:39:14 GMT" + "Thu, 13 Aug 2015 07:52:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Storage/storageAccounts/stopstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9wc3Rlc3RyZzkyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Storage/storageAccounts/stocrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NzY5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1255,7 +1254,7 @@ "88" ], "x-ms-client-request-id": [ - "ca5c1469-025b-4014-b785-75ca117250cc" + "346ba62a-a4a6-44d7-9279-0cb82f427ccf" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1279,44 +1278,44 @@ "25" ], "x-ms-request-id": [ - "7f6a256c-b6e1-4f2d-aead-2d8172c773e9" + "24a23716-5485-476c-b46e-968234868245" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7f6a256c-b6e1-4f2d-aead-2d8172c773e9?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/24a23716-5485-476c-b46e-968234868245?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "4df368c5-1825-4be5-8f0f-c8ae9cb5c167" + "853cd23a-5421-4c4b-abf8-dcbd92b55fcc" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213930Z:4df368c5-1825-4be5-8f0f-c8ae9cb5c167" + "WESTUS:20150813T075224Z:853cd23a-5421-4c4b-abf8-dcbd92b55fcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:39:30 GMT" + "Thu, 13 Aug 2015 07:52:23 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7f6a256c-b6e1-4f2d-aead-2d8172c773e9?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdmNmEyNTZjLWI2ZTEtNGYyZC1hZWFkLTJkODE3MmM3NzNlOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/24a23716-5485-476c-b46e-968234868245?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI0YTIzNzE2LTU0ODUtNDc2Yy1iNDZlLTk2ODIzNDg2ODI0NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5dbb6f25-5c1a-4d7a-8501-f066492dad69" + "07bd0f18-381b-4c08-a2b3-392a29397ebc" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1340,44 +1339,44 @@ "25" ], "x-ms-request-id": [ - "52ac36da-f21f-420c-ad11-3e63711511d3" + "831dd37a-243e-4be8-a158-5faf723e1da5" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7f6a256c-b6e1-4f2d-aead-2d8172c773e9?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/24a23716-5485-476c-b46e-968234868245?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "14976" ], "x-ms-correlation-request-id": [ - "188b53b2-4fad-4632-8889-e960914471a9" + "e7baf93c-bc94-4797-b350-cfda374dc363" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213931Z:188b53b2-4fad-4632-8889-e960914471a9" + "WESTUS:20150813T075225Z:e7baf93c-bc94-4797-b350-cfda374dc363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:39:30 GMT" + "Thu, 13 Aug 2015 07:52:24 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/7f6a256c-b6e1-4f2d-aead-2d8172c773e9?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdmNmEyNTZjLWI2ZTEtNGYyZC1hZWFkLTJkODE3MmM3NzNlOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/24a23716-5485-476c-b46e-968234868245?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI0YTIzNzE2LTU0ODUtNDc2Yy1iNDZlLTk2ODIzNDg2ODI0NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93b63b06-8e93-404b-a44a-dbac3f1fa797" + "cde2f6a3-58c9-4f71-bedd-b317884e0675" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1398,7 +1397,7 @@ "no-cache" ], "x-ms-request-id": [ - "84b58178-6114-4683-9deb-cb814ed65a00" + "e6635307-83cf-468e-95b1-425b178a93ae" ], "Cache-Control": [ "no-cache" @@ -1408,40 +1407,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14975" ], "x-ms-correlation-request-id": [ - "6bfd03a7-43b4-4b04-a773-e0b0922874a6" + "d0cc66cc-84d5-41ec-9529-960ba678f99d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213956Z:6bfd03a7-43b4-4b04-a773-e0b0922874a6" + "WESTUS:20150813T075250Z:d0cc66cc-84d5-41ec-9529-960ba678f99d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:39:55 GMT" + "Thu, 13 Aug 2015 07:52:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Storage/storageAccounts/stopstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9wc3Rlc3RyZzkyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Storage/storageAccounts/stocrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NzY5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9806929-3e19-472d-b6e2-7fac4e1fc097" + "397fcc0e-5762-4ff2-b201-b7db9869c2da" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Storage/storageAccounts/stopstestrg92\",\r\n \"name\": \"stopstestrg92\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg92.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg92.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg92.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T21:39:14.7961726Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Storage/storageAccounts/stocrptestps8769\",\r\n \"name\": \"stocrptestps8769\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8769.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8769.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8769.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:52:23.2410181Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "660" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1453,7 +1452,7 @@ "no-cache" ], "x-ms-request-id": [ - "36f5a136-4a3e-4045-b81e-0a599913e49a" + "68088434-287b-4bb5-a9a6-bb8e264f75e1" ], "Cache-Control": [ "no-cache" @@ -1463,40 +1462,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14974" ], "x-ms-correlation-request-id": [ - "df0bf136-5d8a-4f8b-822c-1d7aab8b035b" + "5896f06d-0d52-4c5c-b62d-306326860f6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213956Z:df0bf136-5d8a-4f8b-822c-1d7aab8b035b" + "WESTUS:20150813T075250Z:5896f06d-0d52-4c5c-b62d-306326860f6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:39:55 GMT" + "Thu, 13 Aug 2015 07:52:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Storage/storageAccounts/stopstestrg92?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9wc3Rlc3RyZzkyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Storage/storageAccounts/stocrptestps8769?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4NzY5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9d45ab5-234f-467e-86a4-0871dc95aadf" + "0b9e7c95-5091-4392-932e-d404e19c0b83" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Storage/storageAccounts/stopstestrg92\",\r\n \"name\": \"stopstestrg92\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg92.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg92.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg92.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-28T21:39:14.7961726Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Storage/storageAccounts/stocrptestps8769\",\r\n \"name\": \"stocrptestps8769\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8769.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8769.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8769.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:52:23.2410181Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "660" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1508,7 +1507,7 @@ "no-cache" ], "x-ms-request-id": [ - "b2a25a36-dcd6-4bee-916a-26623092b10c" + "b67ef7b4-6759-480f-a93e-02f00b461e61" ], "Cache-Control": [ "no-cache" @@ -1518,37 +1517,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14973" ], "x-ms-correlation-request-id": [ - "2f7b1fda-fe84-45c3-b2c9-1eb937175e79" + "a3558e2e-d28d-4a10-b2a7-2ee4249101bf" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213956Z:2f7b1fda-fe84-45c3-b2c9-1eb937175e79" + "WESTUS:20150813T075250Z:a3558e2e-d28d-4a10-b2a7-2ee4249101bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Tue, 28 Apr 2015 21:39:55 GMT" + "Thu, 13 Aug 2015 07:52:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "14425" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1563,7 +1562,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e74f5cdf-2c41-4608-82ea-40ae2d5f43c8" + "256ccf15-cdf2-4e61-93c1-ab74f9775782" ], "Cache-Control": [ "no-cache" @@ -1573,31 +1572,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14942" ], "x-ms-correlation-request-id": [ - "14f9d97e-9ff7-4d27-84e8-31d4ee3b5b16" + "066f3ec2-e7ff-4707-9fe3-ab47aebe4f72" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213956Z:14f9d97e-9ff7-4d27-84e8-31d4ee3b5b16" + "WESTUS:20150813T075250Z:066f3ec2-e7ff-4707-9fe3-ab47aebe4f72" ], "Date": [ - "Tue, 28 Apr 2015 21:39:55 GMT" + "Thu, 13 Aug 2015 07:52:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1615,7 +1614,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c61dd02-f652-4c60-88ab-6eda25c2db7f" + "2ef77a53-6262-4530-b75f-87e7bfe5e060" ], "Cache-Control": [ "no-cache" @@ -1625,34 +1624,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14941" ], "x-ms-correlation-request-id": [ - "53056ebc-cdec-4450-9454-fffcf533954c" + "6659d7d9-6426-4d8a-b9a1-ff9fccf9045e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213956Z:53056ebc-cdec-4450-9454-fffcf533954c" + "WESTUS:20150813T075251Z:6659d7d9-6426-4d8a-b9a1-ff9fccf9045e" ], "Date": [ - "Tue, 28 Apr 2015 21:39:56 GMT" + "Thu, 13 Aug 2015 07:52:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1667,7 +1666,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ebcf7be-887c-4e7d-8a59-c52ace9d4267" + "d617b88e-49e6-4247-9422-8974d33146f6" ], "Cache-Control": [ "no-cache" @@ -1677,34 +1676,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "14940" ], "x-ms-correlation-request-id": [ - "4717cc3d-9cd5-40de-9f94-8bab3740424b" + "2ce9e1d8-77bc-497f-b1cf-a68700078aea" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213956Z:4717cc3d-9cd5-40de-9f94-8bab3740424b" + "WESTUS:20150813T075251Z:2ce9e1d8-77bc-497f-b1cf-a68700078aea" ], "Date": [ - "Tue, 28 Apr 2015 21:39:56 GMT" + "Thu, 13 Aug 2015 07:52:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "581" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1719,7 +1718,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91118962-6d10-45dc-86f9-75c73f69016f" + "e9fd8d84-405b-4b93-b7e1-7d69508d05f7" ], "Cache-Control": [ "no-cache" @@ -1729,31 +1728,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14939" ], "x-ms-correlation-request-id": [ - "beb5c5fc-bab2-4a88-9016-7923c26059af" + "4147dfa0-df42-491f-a39c-63522efb073e" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213956Z:beb5c5fc-bab2-4a88-9016-7923c26059af" + "WESTUS:20150813T075251Z:4147dfa0-df42-491f-a39c-63522efb073e" ], "Date": [ - "Tue, 28 Apr 2015 21:39:56 GMT" + "Thu, 13 Aug 2015 07:52:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1771,7 +1770,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2cb19fd9-ec44-427e-bfc8-3a03b4649d06" + "7d009782-6d2d-437b-bf08-bc8dbdfb3fa3" ], "Cache-Control": [ "no-cache" @@ -1781,40 +1780,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "14938" ], "x-ms-correlation-request-id": [ - "eb021911-425e-4989-9bd9-8448f9364050" + "fbd1f51e-dc62-4bca-a3f5-c34f6f94a63c" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213956Z:eb021911-425e-4989-9bd9-8448f9364050" + "WESTUS:20150813T075251Z:fbd1f51e-dc62-4bca-a3f5-c34f6f94a63c" ], "Date": [ - "Tue, 28 Apr 2015 21:39:56 GMT" + "Thu, 13 Aug 2015 07:52:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/virtualMachines/vmpstestrg92?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bXBzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/virtualMachines/vmcrptestps8769?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg92.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg92\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/availabilitySets/asetpstestrg92\"\r\n }\r\n },\r\n \"name\": \"vmpstestrg92\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8769.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps8769\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/availabilitySets/asetcrptestps8769\"\r\n }\r\n },\r\n \"name\": \"vmcrptestps8769\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1245" + "1251" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/availabilitySets/ASETPSTESTRG92\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg92.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Network/networkInterfaces/nicpstestrg92\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/virtualMachines/vmpstestrg92\",\r\n \"name\": \"vmpstestrg92\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/availabilitySets/ASETCRPTESTPS8769\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8769.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Network/networkInterfaces/niccrptestps8769\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/virtualMachines/vmcrptestps8769\",\r\n \"name\": \"vmcrptestps8769\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1523" + "1532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1826,13 +1825,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "da0c4f33-28c2-42ea-a8e3-f37d239a3a24" + "a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5" ], "Cache-Control": [ "no-cache" @@ -1842,31 +1844,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-correlation-request-id": [ - "16241294-dcc8-4a5f-b069-5d3711d6bde3" + "d2636392-34ee-4e73-b05f-2f6fe7ea62f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213957Z:16241294-dcc8-4a5f-b069-5d3711d6bde3" + "WESTUS:20150813T075252Z:d2636392-34ee-4e73-b05f-2f6fe7ea62f7" ], "Date": [ - "Tue, 28 Apr 2015 21:39:57 GMT" + "Thu, 13 Aug 2015 07:52:52 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1883,8 +1885,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "5aa4b41f-f0e6-44ec-ba97-870d647620ae" + "3bbb4c32-d161-4ae7-b3ce-5c1c8307f328" ], "Cache-Control": [ "no-cache" @@ -1894,31 +1899,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "14937" ], "x-ms-correlation-request-id": [ - "15ce1553-6818-4246-928f-10b962588d5e" + "8542fcd2-40f2-46bc-be36-7815898dba1d" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T213957Z:15ce1553-6818-4246-928f-10b962588d5e" + "WESTUS:20150813T075252Z:8542fcd2-40f2-46bc-be36-7815898dba1d" ], "Date": [ - "Tue, 28 Apr 2015 21:39:57 GMT" + "Thu, 13 Aug 2015 07:52:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1935,8 +1940,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "33e81278-1c60-42d8-8d9a-747d513e9d37" + "a3855564-d344-4451-84aa-955047436886" ], "Cache-Control": [ "no-cache" @@ -1946,31 +1954,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "14936" ], "x-ms-correlation-request-id": [ - "09108edd-e157-4728-9df1-a49708811f5c" + "cf2b7631-b144-47b5-b408-c0db18d2a6d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214027Z:09108edd-e157-4728-9df1-a49708811f5c" + "WESTUS:20150813T075322Z:cf2b7631-b144-47b5-b408-c0db18d2a6d4" ], "Date": [ - "Tue, 28 Apr 2015 21:40:26 GMT" + "Thu, 13 Aug 2015 07:53:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1987,8 +1995,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "4396cebf-2561-43dd-aebb-5ad6152be15c" + "e35e38d9-b794-4274-9bbd-fff4e0278982" ], "Cache-Control": [ "no-cache" @@ -1998,31 +2009,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "14935" ], "x-ms-correlation-request-id": [ - "32c4ec6a-b85d-4551-a4c0-2152d2e266c0" + "4dda2abf-269f-4527-ad4d-19380954c7b6" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214057Z:32c4ec6a-b85d-4551-a4c0-2152d2e266c0" + "WESTUS:20150813T075352Z:4dda2abf-269f-4527-ad4d-19380954c7b6" ], "Date": [ - "Tue, 28 Apr 2015 21:40:57 GMT" + "Thu, 13 Aug 2015 07:53:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2039,8 +2050,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "66077a5c-3ca1-40ee-b7c6-7db28d1e958b" + "6e69d311-7639-4c67-89ac-a873b316690a" ], "Cache-Control": [ "no-cache" @@ -2050,31 +2064,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" + "14934" ], "x-ms-correlation-request-id": [ - "ea3cd2c0-f269-469d-8d5b-9bd4baf3f4a5" + "7cbc030e-a317-4757-a230-1d02327c5796" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214127Z:ea3cd2c0-f269-469d-8d5b-9bd4baf3f4a5" + "WESTUS:20150813T075422Z:7cbc030e-a317-4757-a230-1d02327c5796" ], "Date": [ - "Tue, 28 Apr 2015 21:41:27 GMT" + "Thu, 13 Aug 2015 07:54:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2091,8 +2105,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "668e11ca-6d0f-46d0-b5d3-c23469313964" + "d84fd239-7b47-4199-9ddb-8c31a1e116a7" ], "Cache-Control": [ "no-cache" @@ -2102,31 +2119,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" + "14933" ], "x-ms-correlation-request-id": [ - "7da5284b-caac-40fe-9c37-93ca7746ed89" + "c09824dc-479d-4631-b7b1-192e1945aa76" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214158Z:7da5284b-caac-40fe-9c37-93ca7746ed89" + "WESTUS:20150813T075453Z:c09824dc-479d-4631-b7b1-192e1945aa76" ], "Date": [ - "Tue, 28 Apr 2015 21:41:57 GMT" + "Thu, 13 Aug 2015 07:54:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2143,8 +2160,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b4cb3100-3562-4a15-ae78-754f9fa6a431" + "0c7cccfa-8af8-4498-a75c-f85a81010f0b" ], "Cache-Control": [ "no-cache" @@ -2154,31 +2174,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "14932" ], "x-ms-correlation-request-id": [ - "f0735d96-1121-4347-aedf-d1e2b67a3d6c" + "3b504564-29db-4ad9-8e54-1778d20c6c18" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214228Z:f0735d96-1121-4347-aedf-d1e2b67a3d6c" + "WESTUS:20150813T075523Z:3b504564-29db-4ad9-8e54-1778d20c6c18" ], "Date": [ - "Tue, 28 Apr 2015 21:42:27 GMT" + "Thu, 13 Aug 2015 07:55:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2195,8 +2215,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "959257c8-8a90-40ec-9230-8cfd459f35fc" + "e93d7d54-aac4-4342-8e93-119975e52312" ], "Cache-Control": [ "no-cache" @@ -2206,31 +2229,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" + "14931" ], "x-ms-correlation-request-id": [ - "1618cde2-eb98-4454-87be-2b83b6674ae9" + "a229b716-fd49-4033-bced-1d4de4ffe2e4" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214258Z:1618cde2-eb98-4454-87be-2b83b6674ae9" + "WESTUS:20150813T075553Z:a229b716-fd49-4033-bced-1d4de4ffe2e4" ], "Date": [ - "Tue, 28 Apr 2015 21:42:58 GMT" + "Thu, 13 Aug 2015 07:55:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2247,8 +2270,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3706ef22-8a30-4d2e-ab42-fda8fe0ca510" + "58d34e3c-b784-4d78-b83b-07a7dad667bf" ], "Cache-Control": [ "no-cache" @@ -2258,31 +2284,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" + "14930" ], "x-ms-correlation-request-id": [ - "8982f0cc-fa2b-426a-b01f-1d8760be7397" + "a9422c7d-05fb-4a67-a308-d799b3d4ea28" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214328Z:8982f0cc-fa2b-426a-b01f-1d8760be7397" + "WESTUS:20150813T075623Z:a9422c7d-05fb-4a67-a308-d799b3d4ea28" ], "Date": [ - "Tue, 28 Apr 2015 21:43:28 GMT" + "Thu, 13 Aug 2015 07:56:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2299,8 +2325,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "8436004a-1ae7-4f10-8e43-4e02b087c21d" + "ff8cc741-e87d-47ec-9f0b-de2290d8d338" ], "Cache-Control": [ "no-cache" @@ -2310,31 +2339,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" + "14929" ], "x-ms-correlation-request-id": [ - "ecbd6e20-770e-429c-9090-4debe123e054" + "5f65d703-f0ef-4093-be47-05cc9df4d93b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214358Z:ecbd6e20-770e-429c-9090-4debe123e054" + "WESTUS:20150813T075653Z:5f65d703-f0ef-4093-be47-05cc9df4d93b" ], "Date": [ - "Tue, 28 Apr 2015 21:43:57 GMT" + "Thu, 13 Aug 2015 07:56:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2351,8 +2380,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "8d30ad43-dc3e-4f3c-b439-fbb01f0d6760" + "5a7a8a9d-2756-4678-84da-1e79f8d6097e" ], "Cache-Control": [ "no-cache" @@ -2362,31 +2394,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" + "14928" ], "x-ms-correlation-request-id": [ - "5d782145-a9b9-41b5-94ae-b10ce4def51e" + "d7bd0b92-18c7-45f1-897f-e0ab95fc79d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214428Z:5d782145-a9b9-41b5-94ae-b10ce4def51e" + "WESTUS:20150813T075723Z:d7bd0b92-18c7-45f1-897f-e0ab95fc79d2" ], "Date": [ - "Tue, 28 Apr 2015 21:44:28 GMT" + "Thu, 13 Aug 2015 07:57:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2403,8 +2435,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "9911dc87-89ff-4cb8-8c79-a82c897b6f55" + "d09d510d-b394-407e-989e-5699a46bb9c2" ], "Cache-Control": [ "no-cache" @@ -2414,34 +2449,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31954" + "14927" ], "x-ms-correlation-request-id": [ - "3403c2f4-0ff7-41b5-8ec6-e9fe07488d1a" + "df38b276-9766-4104-b091-e67b4f04cba2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214458Z:3403c2f4-0ff7-41b5-8ec6-e9fe07488d1a" + "WESTUS:20150813T075753Z:df38b276-9766-4104-b091-e67b4f04cba2" ], "Date": [ - "Tue, 28 Apr 2015 21:44:58 GMT" + "Thu, 13 Aug 2015 07:57:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/da0c4f33-28c2-42ea-a8e3-f37d239a3a24?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEwYzRmMzMtMjhjMi00MmVhLWE4ZTMtZjM3ZDIzOWEzYTI0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"da0c4f33-28c2-42ea-a8e3-f37d239a3a24\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-28T14:39:45.1538087-07:00\",\r\n \"endTime\": \"2015-04-28T14:44:49.4975585-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2455,8 +2490,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "9638efba-37c7-47f6-9b30-f0693231d2c4" + "71606528-f0a6-48e8-a50a-18b01a605362" ], "Cache-Control": [ "no-cache" @@ -2466,34 +2504,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" + "14926" ], "x-ms-correlation-request-id": [ - "7802aacd-b83b-498f-81bf-ab7b3cb2a36c" + "954d57fc-0d68-4efa-b2e0-4591e8dbec83" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214528Z:7802aacd-b83b-498f-81bf-ab7b3cb2a36c" + "WESTUS:20150813T075823Z:954d57fc-0d68-4efa-b2e0-4591e8dbec83" ], "Date": [ - "Tue, 28 Apr 2015 21:45:28 GMT" + "Thu, 13 Aug 2015 07:58:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "7274" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2507,8 +2545,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "26afb35d-3a0c-430f-a8d5-3f955120550d" + "6eeb3d8b-228f-4444-ad57-ac2ab3165692" ], "Cache-Control": [ "no-cache" @@ -2518,34 +2559,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" + "14925" ], "x-ms-correlation-request-id": [ - "ea4200e8-55d9-4c59-9704-b1f3c7a56649" + "83e60f7c-e661-4e95-b035-26fbd12a3a96" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214528Z:ea4200e8-55d9-4c59-9704-b1f3c7a56649" + "WESTUS:20150813T075854Z:83e60f7c-e661-4e95-b035-26fbd12a3a96" ], "Date": [ - "Tue, 28 Apr 2015 21:45:28 GMT" + "Thu, 13 Aug 2015 07:58:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/virtualMachines/vmpstestrg92/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bXBzdGVzdHJnOTIvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2608" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2559,8 +2600,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "94c0af75-b471-436d-af04-88e27a9ba65d" + "8b76519d-d69b-4d60-b154-86a42fdebaff" ], "Cache-Control": [ "no-cache" @@ -2570,34 +2614,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" + "14924" ], "x-ms-correlation-request-id": [ - "40385415-5122-4d30-8918-e6949787b8e9" + "c54e3302-9f96-439e-abd3-f8b49d596491" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214528Z:40385415-5122-4d30-8918-e6949787b8e9" + "WESTUS:20150813T075924Z:c54e3302-9f96-439e-abd3-f8b49d596491" ], "Date": [ - "Tue, 28 Apr 2015 21:45:28 GMT" + "Thu, 13 Aug 2015 07:59:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg92/providers/Microsoft.Compute/availabilitySets/asetpstestrg92/vmSizes?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNldHBzdGVzdHJnOTIvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2608" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2611,8 +2655,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7a7f9f9a-dd56-4a47-84bb-1272440a2580" + "802b1faa-4a52-4482-97b9-47f31a4804a6" ], "Cache-Control": [ "no-cache" @@ -2622,34 +2669,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" + "14923" ], "x-ms-correlation-request-id": [ - "bae2ed4d-8f3f-4c0f-b0e8-92c01f2b1cd9" + "9627b3a0-9d84-4c3d-9787-ca68a56ed905" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214528Z:bae2ed4d-8f3f-4c0f-b0e8-92c01f2b1cd9" + "WESTUS:20150813T075954Z:9627b3a0-9d84-4c3d-9787-ca68a56ed905" ], "Date": [ - "Tue, 28 Apr 2015 21:45:28 GMT" + "Thu, 13 Aug 2015 07:59:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/usages?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTRhM2UwYjEtOTE4OS00ZjFkLTg4NzgtYmQyNmY4Y2Y2YmI1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 9,\r\n \"limit\": 20,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"a4a3e0b1-9189-4f1d-8878-bd26f8cf6bb5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T00:52:52.5609758-07:00\",\r\n \"endTime\": \"2015-08-13T01:00:04.401919-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "195" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2663,8 +2710,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "0e90d13a-4864-4071-9b08-551db69428d8" + "42047387-f47c-492d-b190-4e7d5f95bd16" ], "Cache-Control": [ "no-cache" @@ -2674,34 +2724,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" + "14922" ], "x-ms-correlation-request-id": [ - "c58d69e9-215b-4d00-bc1f-e6489c55414b" + "4e45cf8f-d78d-44e3-8447-7f67bcd2c803" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214529Z:c58d69e9-215b-4d00-bc1f-e6489c55414b" + "WESTUS:20150813T080024Z:4e45cf8f-d78d-44e3-8447-7f67bcd2c803" ], "Date": [ - "Tue, 28 Apr 2015 21:45:28 GMT" + "Thu, 13 Aug 2015 08:00:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg92?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "7296" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2709,107 +2762,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "1d27c437-35e7-499e-a5ff-6dfcdfca7b5f" - ], - "x-ms-correlation-request-id": [ - "1d27c437-35e7-499e-a5ff-6dfcdfca7b5f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T214520Z:1d27c437-35e7-499e-a5ff-6dfcdfca7b5f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:45:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "a85acb2e-0e9b-48c7-9fec-6b6c65b6fe0d" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" - ], - "x-ms-request-id": [ - "e6a1e05b-7725-4655-8b6f-f101e8514a95" + "14921" ], "x-ms-correlation-request-id": [ - "e6a1e05b-7725-4655-8b6f-f101e8514a95" + "87484076-3a02-411f-95e2-e16daa9ff637" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214520Z:e6a1e05b-7725-4655-8b6f-f101e8514a95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150813T080024Z:87484076-3a02-411f-95e2-e16daa9ff637" ], "Date": [ - "Tue, 28 Apr 2015 21:45:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Thu, 13 Aug 2015 08:00:23 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/virtualMachines/vmcrptestps8769/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczg3Njkvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "2621" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2817,107 +2817,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" - ], - "x-ms-request-id": [ - "54a23089-8695-438b-8988-1f38840d436d" - ], - "x-ms-correlation-request-id": [ - "54a23089-8695-438b-8988-1f38840d436d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T214535Z:54a23089-8695-438b-8988-1f38840d436d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:45:35 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "77890348-9ed2-4609-8656-335c3fee83db" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" - ], - "x-ms-request-id": [ - "6333d414-82bb-4ee9-8616-607ecb9fcb06" + "14920" ], "x-ms-correlation-request-id": [ - "6333d414-82bb-4ee9-8616-607ecb9fcb06" + "026b7cab-5fb3-4f8f-a3ac-3b7e70ab9b3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214550Z:6333d414-82bb-4ee9-8616-607ecb9fcb06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150813T080024Z:026b7cab-5fb3-4f8f-a3ac-3b7e70ab9b3f" ], "Date": [ - "Tue, 28 Apr 2015 21:45:49 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Thu, 13 Aug 2015 08:00:23 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8769/providers/Microsoft.Compute/availabilitySets/asetcrptestps8769/vmSizes?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczg3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNldGNycHRlc3Rwczg3Njkvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "2621" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2925,107 +2872,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" - ], - "x-ms-request-id": [ - "821c8c45-5d2e-4d52-9406-1f726011a6bd" - ], - "x-ms-correlation-request-id": [ - "821c8c45-5d2e-4d52-9406-1f726011a6bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T214605Z:821c8c45-5d2e-4d52-9406-1f726011a6bd" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:46:05 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "b940e7ba-04de-4ff0-95a3-13782e2dae1d" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" - ], - "x-ms-request-id": [ - "7499e550-53b5-45a0-a8f9-ca6022694e84" + "14919" ], "x-ms-correlation-request-id": [ - "7499e550-53b5-45a0-a8f9-ca6022694e84" + "e4a26739-1019-46a7-9ba6-d48b8340cc1a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214620Z:7499e550-53b5-45a0-a8f9-ca6022694e84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150813T080024Z:e4a26739-1019-46a7-9ba6-d48b8340cc1a" ], "Date": [ - "Tue, 28 Apr 2015 21:46:20 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Thu, 13 Aug 2015 08:00:24 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/usages?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 9,\r\n \"limit\": 100,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "196" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -3033,99 +2927,43 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" - ], - "x-ms-request-id": [ - "e3b82dec-3b01-4e86-8267-f756e3fc25bd" - ], - "x-ms-correlation-request-id": [ - "e3b82dec-3b01-4e86-8267-f756e3fc25bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150428T214636Z:e3b82dec-3b01-4e86-8267-f756e3fc25bd" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Apr 2015 21:46:35 GMT" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "3aa79ad4-8a78-44d0-8e70-aab842e7bbc5" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" - ], - "x-ms-request-id": [ - "01ce4af2-3945-4d78-bee3-cb48ec96189f" + "14918" ], "x-ms-correlation-request-id": [ - "01ce4af2-3945-4d78-bee3-cb48ec96189f" + "45eb5d86-3c68-4ae9-bd01-12237433d93a" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214651Z:01ce4af2-3945-4d78-bee3-cb48ec96189f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "WESTUS:20150813T080024Z:45eb5d86-3c68-4ae9-bd01-12237433d93a" ], "Date": [ - "Tue, 28 Apr 2015 21:46:50 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Thu, 13 Aug 2015 08:00:24 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8769?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczg3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -3144,17 +2982,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" ], "x-ms-request-id": [ - "2a6a14c9-0923-4bb0-9ad9-980f25ae064c" + "c24a2060-65cd-4462-a9cc-48322d995ca3" ], "x-ms-correlation-request-id": [ - "2a6a14c9-0923-4bb0-9ad9-980f25ae064c" + "c24a2060-65cd-4462-a9cc-48322d995ca3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214706Z:2a6a14c9-0923-4bb0-9ad9-980f25ae064c" + "WESTUS:20150813T080025Z:c24a2060-65cd-4462-a9cc-48322d995ca3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3163,17 +3001,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:47:06 GMT" + "Thu, 13 Aug 2015 08:00:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3199,16 +3037,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14951" ], "x-ms-request-id": [ - "c4c14b82-0fd7-4d82-8fc4-47eda434b1b8" + "366ecabb-7f3d-4bd2-b176-6e7806d53bdb" ], "x-ms-correlation-request-id": [ - "c4c14b82-0fd7-4d82-8fc4-47eda434b1b8" + "366ecabb-7f3d-4bd2-b176-6e7806d53bdb" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214721Z:c4c14b82-0fd7-4d82-8fc4-47eda434b1b8" + "WESTUS:20150813T080025Z:366ecabb-7f3d-4bd2-b176-6e7806d53bdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3217,17 +3055,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:47:20 GMT" + "Thu, 13 Aug 2015 08:00:24 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3253,16 +3091,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14950" ], "x-ms-request-id": [ - "6abde2fa-a0ba-4b19-9ab3-e7192627717c" + "c79d1493-a2c8-4c8c-ad6a-b2dac4524f53" ], "x-ms-correlation-request-id": [ - "6abde2fa-a0ba-4b19-9ab3-e7192627717c" + "c79d1493-a2c8-4c8c-ad6a-b2dac4524f53" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214736Z:6abde2fa-a0ba-4b19-9ab3-e7192627717c" + "WESTUS:20150813T080040Z:c79d1493-a2c8-4c8c-ad6a-b2dac4524f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3271,17 +3109,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:47:36 GMT" + "Thu, 13 Aug 2015 08:00:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3307,16 +3145,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14949" ], "x-ms-request-id": [ - "4a4d5d01-0d5e-4aff-8dfb-7887cbad3c67" + "7f0e111e-04e9-43a0-bbb6-7b83697770f1" ], "x-ms-correlation-request-id": [ - "4a4d5d01-0d5e-4aff-8dfb-7887cbad3c67" + "7f0e111e-04e9-43a0-bbb6-7b83697770f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214751Z:4a4d5d01-0d5e-4aff-8dfb-7887cbad3c67" + "WESTUS:20150813T080055Z:7f0e111e-04e9-43a0-bbb6-7b83697770f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3325,17 +3163,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:47:50 GMT" + "Thu, 13 Aug 2015 08:00:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3361,16 +3199,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14948" ], "x-ms-request-id": [ - "4ffade05-554f-402b-a028-86077e8f884f" + "46120e1e-28a1-42ec-86c0-ff3e8b6ac5b3" ], "x-ms-correlation-request-id": [ - "4ffade05-554f-402b-a028-86077e8f884f" + "46120e1e-28a1-42ec-86c0-ff3e8b6ac5b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214806Z:4ffade05-554f-402b-a028-86077e8f884f" + "WESTUS:20150813T080110Z:46120e1e-28a1-42ec-86c0-ff3e8b6ac5b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3379,17 +3217,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:48:05 GMT" + "Thu, 13 Aug 2015 08:01:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3415,16 +3253,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "14947" ], "x-ms-request-id": [ - "89522349-826f-460a-8661-8c8ccb50e222" + "fab86530-e930-458a-9762-8f8eb0671594" ], "x-ms-correlation-request-id": [ - "89522349-826f-460a-8661-8c8ccb50e222" + "fab86530-e930-458a-9762-8f8eb0671594" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214821Z:89522349-826f-460a-8661-8c8ccb50e222" + "WESTUS:20150813T080125Z:fab86530-e930-458a-9762-8f8eb0671594" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3433,17 +3271,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:48:21 GMT" + "Thu, 13 Aug 2015 08:01:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3469,16 +3307,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "14946" ], "x-ms-request-id": [ - "c4408ad8-b765-4412-89f4-6cf08324eda6" + "32f7d195-0d96-4699-aa8f-08d1e6db7686" ], "x-ms-correlation-request-id": [ - "c4408ad8-b765-4412-89f4-6cf08324eda6" + "32f7d195-0d96-4699-aa8f-08d1e6db7686" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214836Z:c4408ad8-b765-4412-89f4-6cf08324eda6" + "WESTUS:20150813T080140Z:32f7d195-0d96-4699-aa8f-08d1e6db7686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3487,17 +3325,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:48:36 GMT" + "Thu, 13 Aug 2015 08:01:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3523,16 +3361,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "14945" ], "x-ms-request-id": [ - "21a75e82-24ff-45a9-8dc1-e616d2f61621" + "f67409a3-aae1-4993-b72a-35736b6e33d0" ], "x-ms-correlation-request-id": [ - "21a75e82-24ff-45a9-8dc1-e616d2f61621" + "f67409a3-aae1-4993-b72a-35736b6e33d0" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214851Z:21a75e82-24ff-45a9-8dc1-e616d2f61621" + "WESTUS:20150813T080155Z:f67409a3-aae1-4993-b72a-35736b6e33d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3541,17 +3379,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:48:50 GMT" + "Thu, 13 Aug 2015 08:01:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3577,16 +3415,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "14944" ], "x-ms-request-id": [ - "5ba55460-8240-4d31-91f5-29dcfd9d198b" + "98d45bef-2c9c-4ff8-b3fd-625993deffe2" ], "x-ms-correlation-request-id": [ - "5ba55460-8240-4d31-91f5-29dcfd9d198b" + "98d45bef-2c9c-4ff8-b3fd-625993deffe2" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214906Z:5ba55460-8240-4d31-91f5-29dcfd9d198b" + "WESTUS:20150813T080210Z:98d45bef-2c9c-4ff8-b3fd-625993deffe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3595,17 +3433,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:49:06 GMT" + "Thu, 13 Aug 2015 08:02:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3631,16 +3469,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "14943" ], "x-ms-request-id": [ - "5076ddfe-6f93-45e6-a299-c9833cc52702" + "e5a8a79c-33c4-41a0-b40a-4a744f897158" ], "x-ms-correlation-request-id": [ - "5076ddfe-6f93-45e6-a299-c9833cc52702" + "e5a8a79c-33c4-41a0-b40a-4a744f897158" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214921Z:5076ddfe-6f93-45e6-a299-c9833cc52702" + "WESTUS:20150813T080225Z:e5a8a79c-33c4-41a0-b40a-4a744f897158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3649,17 +3487,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:49:21 GMT" + "Thu, 13 Aug 2015 08:02:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,16 +3523,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "14942" ], "x-ms-request-id": [ - "b719abae-6026-4d6e-b46c-e9edab154f4f" + "52ed481b-35b0-45e9-a380-ce074cbb71ab" ], "x-ms-correlation-request-id": [ - "b719abae-6026-4d6e-b46c-e9edab154f4f" + "52ed481b-35b0-45e9-a380-ce074cbb71ab" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214936Z:b719abae-6026-4d6e-b46c-e9edab154f4f" + "WESTUS:20150813T080240Z:52ed481b-35b0-45e9-a380-ce074cbb71ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3703,17 +3541,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:49:36 GMT" + "Thu, 13 Aug 2015 08:02:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,16 +3577,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "14941" ], "x-ms-request-id": [ - "4c587db3-d7c0-4991-bac5-1cd5c9ad9d6b" + "7a41ae7b-33e4-4f0c-9bcb-d350a20ba789" ], "x-ms-correlation-request-id": [ - "4c587db3-d7c0-4991-bac5-1cd5c9ad9d6b" + "7a41ae7b-33e4-4f0c-9bcb-d350a20ba789" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T214951Z:4c587db3-d7c0-4991-bac5-1cd5c9ad9d6b" + "WESTUS:20150813T080255Z:7a41ae7b-33e4-4f0c-9bcb-d350a20ba789" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3757,17 +3595,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:49:51 GMT" + "Thu, 13 Aug 2015 08:02:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3793,16 +3631,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "14940" ], "x-ms-request-id": [ - "e3d1f61b-c06a-4753-8f54-f1f2230f4e94" + "27d60214-86df-4f46-9429-ddbc53f4c4da" ], "x-ms-correlation-request-id": [ - "e3d1f61b-c06a-4753-8f54-f1f2230f4e94" + "27d60214-86df-4f46-9429-ddbc53f4c4da" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215007Z:e3d1f61b-c06a-4753-8f54-f1f2230f4e94" + "WESTUS:20150813T080310Z:27d60214-86df-4f46-9429-ddbc53f4c4da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3811,17 +3649,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:50:06 GMT" + "Thu, 13 Aug 2015 08:03:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3847,16 +3685,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "14939" ], "x-ms-request-id": [ - "7d41d665-25d5-4a40-bb3a-1657bff13293" + "ba86ddc4-9fa9-42e8-a8c3-7ab31bc5bd91" ], "x-ms-correlation-request-id": [ - "7d41d665-25d5-4a40-bb3a-1657bff13293" + "ba86ddc4-9fa9-42e8-a8c3-7ab31bc5bd91" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215022Z:7d41d665-25d5-4a40-bb3a-1657bff13293" + "WESTUS:20150813T080325Z:ba86ddc4-9fa9-42e8-a8c3-7ab31bc5bd91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3865,17 +3703,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:50:21 GMT" + "Thu, 13 Aug 2015 08:03:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3901,16 +3739,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "14938" ], "x-ms-request-id": [ - "e1c5fede-32bf-49b1-a49d-4f6d1f38d92e" + "89067e97-08e8-4a2a-9c24-12a404c4db88" ], "x-ms-correlation-request-id": [ - "e1c5fede-32bf-49b1-a49d-4f6d1f38d92e" + "89067e97-08e8-4a2a-9c24-12a404c4db88" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215037Z:e1c5fede-32bf-49b1-a49d-4f6d1f38d92e" + "WESTUS:20150813T080341Z:89067e97-08e8-4a2a-9c24-12a404c4db88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3919,17 +3757,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:50:36 GMT" + "Thu, 13 Aug 2015 08:03:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3955,16 +3793,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "14937" ], "x-ms-request-id": [ - "091d1eb9-0f26-42ba-9c65-5cf903e14f6c" + "bfd1f932-bcb7-4e72-8744-629aafa9f5c8" ], "x-ms-correlation-request-id": [ - "091d1eb9-0f26-42ba-9c65-5cf903e14f6c" + "bfd1f932-bcb7-4e72-8744-629aafa9f5c8" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215052Z:091d1eb9-0f26-42ba-9c65-5cf903e14f6c" + "WESTUS:20150813T080356Z:bfd1f932-bcb7-4e72-8744-629aafa9f5c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3973,17 +3811,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:50:52 GMT" + "Thu, 13 Aug 2015 08:03:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4009,16 +3847,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" + "14936" ], "x-ms-request-id": [ - "7d665c83-5738-426a-b78f-371c30ffe5c1" + "45cf74ad-5bdd-429e-9e91-79630c565199" ], "x-ms-correlation-request-id": [ - "7d665c83-5738-426a-b78f-371c30ffe5c1" + "45cf74ad-5bdd-429e-9e91-79630c565199" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215107Z:7d665c83-5738-426a-b78f-371c30ffe5c1" + "WESTUS:20150813T080411Z:45cf74ad-5bdd-429e-9e91-79630c565199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4027,17 +3865,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:51:06 GMT" + "Thu, 13 Aug 2015 08:04:10 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,16 +3901,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" + "14935" ], "x-ms-request-id": [ - "627cfede-5dc3-4a9f-b6b7-b15785d3acc2" + "40e633ae-ab2c-42f8-8d63-7ee269327a23" ], "x-ms-correlation-request-id": [ - "627cfede-5dc3-4a9f-b6b7-b15785d3acc2" + "40e633ae-ab2c-42f8-8d63-7ee269327a23" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215122Z:627cfede-5dc3-4a9f-b6b7-b15785d3acc2" + "WESTUS:20150813T080426Z:40e633ae-ab2c-42f8-8d63-7ee269327a23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4081,17 +3919,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:51:22 GMT" + "Thu, 13 Aug 2015 08:04:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4117,16 +3955,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "14934" ], "x-ms-request-id": [ - "a3f251a0-bad7-4e00-9335-39a8767e525c" + "5bdd3924-e219-4222-8f14-33ee92ab7d6b" ], "x-ms-correlation-request-id": [ - "a3f251a0-bad7-4e00-9335-39a8767e525c" + "5bdd3924-e219-4222-8f14-33ee92ab7d6b" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215137Z:a3f251a0-bad7-4e00-9335-39a8767e525c" + "WESTUS:20150813T080441Z:5bdd3924-e219-4222-8f14-33ee92ab7d6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4135,17 +3973,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:51:36 GMT" + "Thu, 13 Aug 2015 08:04:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4171,16 +4009,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" + "14933" ], "x-ms-request-id": [ - "bbb2c6ab-6fa6-4053-86ac-b0dab0b32bb3" + "984f9408-672f-452b-917a-ddc4acc0f4b7" ], "x-ms-correlation-request-id": [ - "bbb2c6ab-6fa6-4053-86ac-b0dab0b32bb3" + "984f9408-672f-452b-917a-ddc4acc0f4b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215152Z:bbb2c6ab-6fa6-4053-86ac-b0dab0b32bb3" + "WESTUS:20150813T080456Z:984f9408-672f-452b-917a-ddc4acc0f4b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4189,17 +4027,17 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:51:52 GMT" + "Thu, 13 Aug 2015 08:04:55 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4NzY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TnpZNUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4222,16 +4060,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" + "14938" ], "x-ms-request-id": [ - "d72cbb7c-de88-4eba-9ac6-524a1957b949" + "a39c0d53-be57-425e-af23-5109e756d9c1" ], "x-ms-correlation-request-id": [ - "d72cbb7c-de88-4eba-9ac6-524a1957b949" + "a39c0d53-be57-425e-af23-5109e756d9c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150428T215207Z:d72cbb7c-de88-4eba-9ac6-524a1957b949" + "WESTUS:20150813T080511Z:a39c0d53-be57-425e-af23-5109e756d9c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4240,7 +4078,7 @@ "no-cache" ], "Date": [ - "Tue, 28 Apr 2015 21:52:07 GMT" + "Thu, 13 Aug 2015 08:05:10 GMT" ] }, "StatusCode": 200 @@ -4248,12 +4086,12 @@ ], "Names": { "Test-VirtualMachineSizeAndUsage": [ - "pstestrg92" + "crptestps8769" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineTags.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineTags.json index 132bae733f49..a4f5b5de7025 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineTags.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineTags.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2114?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjExND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "bd0146b6-ac5a-4151-bee2-84373ff798a0" + ], + "x-ms-correlation-request-id": [ + "bd0146b6-ac5a-4151-bee2-84373ff798a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T070915Z:bd0146b6-ac5a-4151-bee2-84373ff798a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 07:09:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5923?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +61,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "104" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "14994" ], "x-ms-request-id": [ - "59ae1b24-ac78-460b-b846-efba6b90a487" + "a0c08eff-4350-49fd-b3dd-f10ee16f3f4e" ], "x-ms-correlation-request-id": [ - "59ae1b24-ac78-460b-b846-efba6b90a487" + "a0c08eff-4350-49fd-b3dd-f10ee16f3f4e" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072650Z:59ae1b24-ac78-460b-b846-efba6b90a487" + "WESTUS:20150813T070916Z:a0c08eff-4350-49fd-b3dd-f10ee16f3f4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:26:50 GMT" + "Thu, 13 Aug 2015 07:09:15 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2114?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjExND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5923?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" + "14955" ], "x-ms-request-id": [ - "9ecf3998-dddd-45d8-a173-c8cd281c4355" + "f660c476-28ec-4c2c-a06e-e5a8f2e8551d" ], "x-ms-correlation-request-id": [ - "9ecf3998-dddd-45d8-a173-c8cd281c4355" + "f660c476-28ec-4c2c-a06e-e5a8f2e8551d" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073412Z:9ecf3998-dddd-45d8-a173-c8cd281c4355" + "WESTUS:20150813T072042Z:f660c476-28ec-4c2c-a06e-e5a8f2e8551d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:34:12 GMT" + "Thu, 13 Aug 2015 07:20:42 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2114?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjExND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5923?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,10 +160,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114\",\r\n \"name\": \"pstestrg2114\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923\",\r\n \"name\": \"crptestps5923\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "5a513d9e-8818-4dec-8579-fa75cc510d1f" + "acfb8d5b-4c1d-4850-8591-ed081c12e94e" ], "x-ms-correlation-request-id": [ - "5a513d9e-8818-4dec-8579-fa75cc510d1f" + "acfb8d5b-4c1d-4850-8591-ed081c12e94e" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072651Z:5a513d9e-8818-4dec-8579-fa75cc510d1f" + "WESTUS:20150813T070916Z:acfb8d5b-4c1d-4850-8591-ed081c12e94e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:26:51 GMT" + "Thu, 13 Aug 2015 07:09:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "14993" ], "x-ms-request-id": [ - "b7f6a52b-a53e-40cc-b177-ac98e5acbe8e" + "878f0aef-a811-4fff-93e9-94facf5794b5" ], "x-ms-correlation-request-id": [ - "b7f6a52b-a53e-40cc-b177-ac98e5acbe8e" + "878f0aef-a811-4fff-93e9-94facf5794b5" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072651Z:b7f6a52b-a53e-40cc-b177-ac98e5acbe8e" + "WESTUS:20150813T070916Z:878f0aef-a811-4fff-93e9-94facf5794b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:26:51 GMT" + "Thu, 13 Aug 2015 07:09:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2114/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5923/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:48bf7998-c81d-4ff1-a284-badf745ca745" + "westus:5814bb9b-0a55-4de6-8151-4f83091644c8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14995" ], "x-ms-correlation-request-id": [ - "4763413b-3d2e-4515-8430-6a80cf43a6d5" + "dfe74233-9b22-494d-89b6-d7234f8b1269" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072653Z:4763413b-3d2e-4515-8430-6a80cf43a6d5" + "WESTUS:20150813T070916Z:dfe74233-9b22-494d-89b6-d7234f8b1269" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:26:52 GMT" + "Thu, 13 Aug 2015 07:09:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzIxMTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTkyMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps5923' under resource group 'crptestps5923' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "2d72fe7e-cf1c-4ab5-9d94-8338ef6c8bcf" + "d333994e-7798-40d9-8cb6-ae991a061a75" ], "x-ms-correlation-request-id": [ - "2d72fe7e-cf1c-4ab5-9d94-8338ef6c8bcf" + "d333994e-7798-40d9-8cb6-ae991a061a75" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072720Z:2d72fe7e-cf1c-4ab5-9d94-8338ef6c8bcf" + "WESTUS:20150813T070917Z:d333994e-7798-40d9-8cb6-ae991a061a75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:27:19 GMT" + "Thu, 13 Aug 2015 07:09:17 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzIxMTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTkyMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114\",\r\n \"etag\": \"W/\\\"66b33065-8783-451a-9eff-1e4f32587585\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114/subnets/subnetpstestrg2114\",\r\n \"etag\": \"W/\\\"66b33065-8783-451a-9eff-1e4f32587585\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923\",\r\n \"etag\": \"W/\\\"96025396-a75b-4f31-97b6-64e13df88722\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"467ee882-7dfd-40e4-acc3-94d70b2c5a42\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923/subnets/subnetcrptestps5923\",\r\n \"etag\": \"W/\\\"96025396-a75b-4f31-97b6-64e13df88722\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "bf75c702-1d4e-44d9-95a4-b029bbaf8628" + "47a87008-2910-43c7-b443-47b50e7c7e84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"66b33065-8783-451a-9eff-1e4f32587585\"" + "W/\"96025396-a75b-4f31-97b6-64e13df88722\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14966" ], "x-ms-correlation-request-id": [ - "63ac95b4-4aa9-4ccd-bb0c-6672f2ba1bf7" + "ab10dc51-b371-4252-9aa0-9d89d54cee0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072731Z:63ac95b4-4aa9-4ccd-bb0c-6672f2ba1bf7" + "WESTUS:20150813T070928Z:ab10dc51-b371-4252-9aa0-9d89d54cee0a" ], "Date": [ - "Thu, 30 Apr 2015 07:27:30 GMT" + "Thu, 13 Aug 2015 07:09:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzIxMTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTkyMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114\",\r\n \"etag\": \"W/\\\"66b33065-8783-451a-9eff-1e4f32587585\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114/subnets/subnetpstestrg2114\",\r\n \"etag\": \"W/\\\"66b33065-8783-451a-9eff-1e4f32587585\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923\",\r\n \"etag\": \"W/\\\"96025396-a75b-4f31-97b6-64e13df88722\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"467ee882-7dfd-40e4-acc3-94d70b2c5a42\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923/subnets/subnetcrptestps5923\",\r\n \"etag\": \"W/\\\"96025396-a75b-4f31-97b6-64e13df88722\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "960" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "d56310cd-c1bd-4f89-a876-31eb6a0e6095" + "9a99f0eb-50b3-436b-bf71-9c926a21ed54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +434,47 @@ "no-cache" ], "ETag": [ - "W/\"66b33065-8783-451a-9eff-1e4f32587585\"" + "W/\"96025396-a75b-4f31-97b6-64e13df88722\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14965" ], "x-ms-correlation-request-id": [ - "5257c235-3aae-484e-9020-3512343b7e9a" + "e34675ad-e807-42f5-b4f2-ee4ee21c5a56" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072731Z:5257c235-3aae-484e-9020-3512343b7e9a" + "WESTUS:20150813T070928Z:e34675ad-e807-42f5-b4f2-ee4ee21c5a56" ], "Date": [ - "Thu, 30 Apr 2015 07:27:30 GMT" + "Thu, 13 Aug 2015 07:09:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualnetworks/vnetpstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzIxMTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTkyMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg2114\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg2114\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps5923\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps5923\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "500" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114\",\r\n \"etag\": \"W/\\\"e5c68f70-3d0a-4bad-8743-d4f69b0b7178\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114/subnets/subnetpstestrg2114\",\r\n \"etag\": \"W/\\\"e5c68f70-3d0a-4bad-8743-d4f69b0b7178\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923\",\r\n \"etag\": \"W/\\\"07297cd1-795b-46c0-aa79-71ebe2a93a68\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"467ee882-7dfd-40e4-acc3-94d70b2c5a42\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923/subnets/subnetcrptestps5923\",\r\n \"etag\": \"W/\\\"07297cd1-795b-46c0-aa79-71ebe2a93a68\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "958" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "8f0fa6fe-8837-4c6b-9c86-db44a1b12494" + "b6753004-be90-4a80-910d-8f3513caed26" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/8f0fa6fe-8837-4c6b-9c86-db44a1b12494?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b6753004-be90-4a80-910d-8f3513caed26?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "ca100c1f-6d51-491f-adc6-bbdc998c4e84" + "57730f96-291c-4ef1-a0a7-cfdb94206ccf" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072720Z:ca100c1f-6d51-491f-adc6-bbdc998c4e84" + "WESTUS:20150813T070918Z:57730f96-291c-4ef1-a0a7-cfdb94206ccf" ], "Date": [ - "Thu, 30 Apr 2015 07:27:20 GMT" + "Thu, 13 Aug 2015 07:09:17 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/8f0fa6fe-8837-4c6b-9c86-db44a1b12494?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGYwZmE2ZmUtODgzNy00YzZiLTljODYtZGI0NGExYjEyNDk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b6753004-be90-4a80-910d-8f3513caed26?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY3NTMwMDQtYmU5MC00YTgwLTkxMGQtOGYzNTEzY2FlZDI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "0017f8c5-5127-4741-8405-e254f8dbc42b" + "a8121152-1eaf-4a11-b705-0cc62e75ae43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14968" ], "x-ms-correlation-request-id": [ - "a54e93d4-270e-45ad-913a-eeec5eba4075" + "2d511117-8bf1-45cc-a87b-272257e2614e" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072720Z:a54e93d4-270e-45ad-913a-eeec5eba4075" + "WESTUS:20150813T070918Z:2d511117-8bf1-45cc-a87b-272257e2614e" ], "Date": [ - "Thu, 30 Apr 2015 07:27:20 GMT" + "Thu, 13 Aug 2015 07:09:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/8f0fa6fe-8837-4c6b-9c86-db44a1b12494?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGYwZmE2ZmUtODgzNy00YzZiLTljODYtZGI0NGExYjEyNDk0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b6753004-be90-4a80-910d-8f3513caed26?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY3NTMwMDQtYmU5MC00YTgwLTkxMGQtOGYzNTEzY2FlZDI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "d2a98704-e2d4-456e-817a-52c5c600bbf4" + "29eee699-7ef6-4357-8458-96c38c326387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14967" ], "x-ms-correlation-request-id": [ - "ed8cdba3-f331-461e-b7a7-5cbd6050d99f" + "b5919494-706b-4d6a-9bed-8d98ead86321" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072731Z:ed8cdba3-f331-461e-b7a7-5cbd6050d99f" + "WESTUS:20150813T070928Z:b5919494-706b-4d6a-9bed-8d98ead86321" ], "Date": [ - "Thu, 30 Apr 2015 07:27:30 GMT" + "Thu, 13 Aug 2015 07:09:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzIxMTQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTkyMy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps5923' under resource group 'crptestps5923' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "a8fe897d-0419-46c2-9e9a-89c05004556e" + "20765722-501d-42c6-a979-cecaea21d73e" ], "x-ms-correlation-request-id": [ - "a8fe897d-0419-46c2-9e9a-89c05004556e" + "20765722-501d-42c6-a979-cecaea21d73e" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072731Z:a8fe897d-0419-46c2-9e9a-89c05004556e" + "WESTUS:20150813T070928Z:20765722-501d-42c6-a979-cecaea21d73e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +672,14 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:27:30 GMT" + "Thu, 13 Aug 2015 07:09:28 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzIxMTQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTkyMy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114\",\r\n \"etag\": \"W/\\\"72ab9e4d-b2a4-4d87-8970-d6f6d97585aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg2114\",\r\n \"fqdn\": \"pubippstestrg2114.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923\",\r\n \"etag\": \"W/\\\"209e07b9-2b46-4a2c-877a-3a04f5e6f3ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d29de293-1018-469c-841b-43a494cca373\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5923\",\r\n \"fqdn\": \"pubipcrptestps5923.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "074fd302-973f-4235-905a-af2c290c3303" + "e047d240-e05e-4824-9ae9-cd60aa1fac34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"72ab9e4d-b2a4-4d87-8970-d6f6d97585aa\"" + "W/\"209e07b9-2b46-4a2c-877a-3a04f5e6f3ea\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14961" ], "x-ms-correlation-request-id": [ - "d1190bab-db3a-4999-89e3-20a764d73764" + "b78dee96-5816-4cad-b39f-125e911efd75" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072732Z:d1190bab-db3a-4999-89e3-20a764d73764" + "WESTUS:20150813T070939Z:b78dee96-5816-4cad-b39f-125e911efd75" ], "Date": [ - "Thu, 30 Apr 2015 07:27:31 GMT" + "Thu, 13 Aug 2015 07:09:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzIxMTQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTkyMy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114\",\r\n \"etag\": \"W/\\\"72ab9e4d-b2a4-4d87-8970-d6f6d97585aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg2114\",\r\n \"fqdn\": \"pubippstestrg2114.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923\",\r\n \"etag\": \"W/\\\"209e07b9-2b46-4a2c-877a-3a04f5e6f3ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d29de293-1018-469c-841b-43a494cca373\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5923\",\r\n \"fqdn\": \"pubipcrptestps5923.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "550" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "67cb172b-ef82-4b53-94da-a6b5acfb8d07" + "180d0d00-c39e-4b45-8bcd-b34ffdb9a5a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,47 +766,47 @@ "no-cache" ], "ETag": [ - "W/\"72ab9e4d-b2a4-4d87-8970-d6f6d97585aa\"" + "W/\"209e07b9-2b46-4a2c-877a-3a04f5e6f3ea\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14960" ], "x-ms-correlation-request-id": [ - "26e6d1ac-56cc-48b0-ad82-a09146ddbc47" + "de98271e-113d-4f33-938b-b92f41937563" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072732Z:26e6d1ac-56cc-48b0-ad82-a09146ddbc47" + "WESTUS:20150813T070939Z:de98271e-113d-4f33-938b-b92f41937563" ], "Date": [ - "Thu, 30 Apr 2015 07:27:31 GMT" + "Thu, 13 Aug 2015 07:09:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzIxMTQvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTkyMy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg2114\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg2114\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5923\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps5923\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "254" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114\",\r\n \"etag\": \"W/\\\"e07ab385-5e4c-4bb3-ae82-56b2bfdb62ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg2114\",\r\n \"fqdn\": \"pubippstestrg2114.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923\",\r\n \"etag\": \"W/\\\"43c60940-4555-40e8-9873-ff4ef7277067\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d29de293-1018-469c-841b-43a494cca373\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5923\",\r\n \"fqdn\": \"pubipcrptestps5923.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "549" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -773,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "fdef9636-fb5b-48b9-bd05-51b9b179f203" + "390329df-b030-4ee8-8215-5bd04ffaa762" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/fdef9636-fb5b-48b9-bd05-51b9b179f203?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/390329df-b030-4ee8-8215-5bd04ffaa762?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +837,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "06cebf3d-64f0-4cbf-9350-eb3077c2f677" + "89be6d81-261b-489a-91e3-e06ae415b15c" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072732Z:06cebf3d-64f0-4cbf-9350-eb3077c2f677" + "WESTUS:20150813T070929Z:89be6d81-261b-489a-91e3-e06ae415b15c" ], "Date": [ - "Thu, 30 Apr 2015 07:27:31 GMT" + "Thu, 13 Aug 2015 07:09:29 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/fdef9636-fb5b-48b9-bd05-51b9b179f203?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmRlZjk2MzYtZmI1Yi00OGI5LWJkMDUtNTFiOWIxNzlmMjAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/390329df-b030-4ee8-8215-5bd04ffaa762?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzkwMzI5ZGYtYjAzMC00ZWU4LTgyMTUtNWJkMDRmZmFhNzYyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "441c6d92-2549-4f7a-99eb-a6230c24d3d9" + ], + "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": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "7800d9ee-a146-4daf-90de-7ead99dd290c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T070929Z:7800d9ee-a146-4daf-90de-7ead99dd290c" + ], + "Date": [ + "Thu, 13 Aug 2015 07:09:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/390329df-b030-4ee8-8215-5bd04ffaa762?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzkwMzI5ZGYtYjAzMC00ZWU4LTgyMTUtNWJkMDRmZmFhNzYyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,7 +934,7 @@ "no-cache" ], "x-ms-request-id": [ - "08fcbda2-c4bd-4adc-a448-8d6088582032" + "ad8e9160-f7f2-49ca-be98-509c527f9966" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -844,23 +947,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14962" ], "x-ms-correlation-request-id": [ - "bf58c4db-8fcb-412c-928d-3e4fceca7fb0" + "099d617b-4905-4a03-8f82-ef072f86a7dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072732Z:bf58c4db-8fcb-412c-928d-3e4fceca7fb0" + "WESTUS:20150813T070939Z:099d617b-4905-4a03-8f82-ef072f86a7dc" ], "Date": [ - "Thu, 30 Apr 2015 07:27:31 GMT" + "Thu, 13 Aug 2015 07:09:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmcyMTE0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,10 +971,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps5923' under resource group 'crptestps5923' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -886,13 +989,13 @@ "gateway" ], "x-ms-request-id": [ - "5473fe45-935c-4010-ad7a-ad63239108a4" + "113b33e5-d7c2-48b7-9700-9b45eb08278c" ], "x-ms-correlation-request-id": [ - "5473fe45-935c-4010-ad7a-ad63239108a4" + "113b33e5-d7c2-48b7-9700-9b45eb08278c" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072732Z:5473fe45-935c-4010-ad7a-ad63239108a4" + "WESTUS:20150813T070939Z:113b33e5-d7c2-48b7-9700-9b45eb08278c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,14 +1004,14 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:27:31 GMT" + "Thu, 13 Aug 2015 07:09:39 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmcyMTE0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114\",\r\n \"etag\": \"W/\\\"2c9bb443-1289-4a6a-818a-5631a71cea52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2c9bb443-1289-4a6a-818a-5631a71cea52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114/subnets/subnetpstestrg2114\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923\",\r\n \"etag\": \"W/\\\"4fb72542-3da8-45bb-90ee-422505de931e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8783b904-0b98-4c56-9a9c-7e9e80755cd5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4fb72542-3da8-45bb-90ee-422505de931e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923/subnets/subnetcrptestps5923\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "8033d2b0-ac12-41a7-a117-81ac1088b764" + "4236d7ee-b9f0-4de4-a21d-66903ecc58c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,30 +1043,30 @@ "no-cache" ], "ETag": [ - "W/\"2c9bb443-1289-4a6a-818a-5631a71cea52\"" + "W/\"4fb72542-3da8-45bb-90ee-422505de931e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14957" ], "x-ms-correlation-request-id": [ - "bc4bc3ae-f875-4cf9-aacb-7acd63ebcdac" + "1ca97384-09f1-4a5c-b5f1-d6d7ad74c83f" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072733Z:bc4bc3ae-f875-4cf9-aacb-7acd63ebcdac" + "WESTUS:20150813T070940Z:1ca97384-09f1-4a5c-b5f1-d6d7ad74c83f" ], "Date": [ - "Thu, 30 Apr 2015 07:27:32 GMT" + "Thu, 13 Aug 2015 07:09:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmcyMTE0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +1074,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114\",\r\n \"etag\": \"W/\\\"2c9bb443-1289-4a6a-818a-5631a71cea52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2c9bb443-1289-4a6a-818a-5631a71cea52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114/subnets/subnetpstestrg2114\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923\",\r\n \"etag\": \"W/\\\"4fb72542-3da8-45bb-90ee-422505de931e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8783b904-0b98-4c56-9a9c-7e9e80755cd5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4fb72542-3da8-45bb-90ee-422505de931e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923/subnets/subnetcrptestps5923\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +1089,7 @@ "no-cache" ], "x-ms-request-id": [ - "82eab924-f5e5-44d6-855b-747c6fe03c6d" + "b873ee78-f376-4058-9862-b8262bcb09be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,47 +1098,47 @@ "no-cache" ], "ETag": [ - "W/\"2c9bb443-1289-4a6a-818a-5631a71cea52\"" + "W/\"4fb72542-3da8-45bb-90ee-422505de931e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14956" ], "x-ms-correlation-request-id": [ - "f1121b18-9d92-4b52-bac5-8caa5434a3bc" + "5838fabc-acc6-404a-952e-36f866c0c777" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072733Z:f1121b18-9d92-4b52-bac5-8caa5434a3bc" + "WESTUS:20150813T070940Z:5838fabc-acc6-404a-952e-36f866c0c777" ], "Date": [ - "Thu, 30 Apr 2015 07:27:32 GMT" + "Thu, 13 Aug 2015 07:09:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmcyMTE0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114/subnets/subnetpstestrg2114\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg2114\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923/subnets/subnetcrptestps5923\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps5923\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "857" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg2114\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114\",\r\n \"etag\": \"W/\\\"2c9bb443-1289-4a6a-818a-5631a71cea52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2c9bb443-1289-4a6a-818a-5631a71cea52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/publicIPAddresses/pubippstestrg2114\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2114/subnets/subnetpstestrg2114\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5923\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923\",\r\n \"etag\": \"W/\\\"4fb72542-3da8-45bb-90ee-422505de931e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8783b904-0b98-4c56-9a9c-7e9e80755cd5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4fb72542-3da8-45bb-90ee-422505de931e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5923\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5923/subnets/subnetcrptestps5923\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,10 +1150,10 @@ "no-cache" ], "x-ms-request-id": [ - "01fd717c-6fe8-41e7-946c-ad9024e804f3" + "25bb440c-1f55-4268-8782-95f1ec1c3ee1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/01fd717c-6fe8-41e7-946c-ad9024e804f3?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/25bb440c-1f55-4268-8782-95f1ec1c3ee1?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1192" ], "x-ms-correlation-request-id": [ - "a0658f2d-c5a9-4cc5-8817-e90fce940b81" + "b777a3e9-daf6-47f3-8820-d189e258bff8" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072733Z:a0658f2d-c5a9-4cc5-8817-e90fce940b81" + "WESTUS:20150813T070940Z:b777a3e9-daf6-47f3-8820-d189e258bff8" ], "Date": [ - "Thu, 30 Apr 2015 07:27:32 GMT" + "Thu, 13 Aug 2015 07:09:39 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/01fd717c-6fe8-41e7-946c-ad9024e804f3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDFmZDcxN2MtNmZlOC00MWU3LTk0NmMtYWQ5MDI0ZTgwNGYzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/25bb440c-1f55-4268-8782-95f1ec1c3ee1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjViYjQ0MGMtMWY1NS00MjY4LTg3ODItOTVmMWVjMWMzZWUxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1105,7 +1208,7 @@ "no-cache" ], "x-ms-request-id": [ - "d8319cfa-f3db-4fa7-912c-6fb64192b58f" + "e6413804-f22f-4425-8f5d-7786366c5637" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,23 +1221,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14958" ], "x-ms-correlation-request-id": [ - "6e18037b-348b-4a2d-91fd-8e776ff84d6a" + "7fc2552b-1715-4e3a-9dda-208991f312cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072733Z:6e18037b-348b-4a2d-91fd-8e776ff84d6a" + "WESTUS:20150813T070940Z:7fc2552b-1715-4e3a-9dda-208991f312cf" ], "Date": [ - "Thu, 30 Apr 2015 07:27:32 GMT" + "Thu, 13 Aug 2015 07:09:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Storage/storageAccounts/stopstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjExND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Storage/storageAccounts/stocrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1OTIzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1145,7 +1248,7 @@ "88" ], "x-ms-client-request-id": [ - "54036b12-94d1-4c7f-8fcd-4fa310d10391" + "4e6ba2ed-3ebc-4f52-b2b9-697cde185007" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1169,44 +1272,44 @@ "25" ], "x-ms-request-id": [ - "a4cf0bdd-81a4-41ea-886a-035e239b9796" + "728ec84c-f165-4f25-9106-7f82b5f051a6" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/a4cf0bdd-81a4-41ea-886a-035e239b9796?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/728ec84c-f165-4f25-9106-7f82b5f051a6?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "19968e6f-b102-40d3-9a7a-7ca867d9572c" + "158db103-f9ab-4b18-9bf9-d5f9b24931c4" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072716Z:19968e6f-b102-40d3-9a7a-7ca867d9572c" + "WESTUS:20150813T070942Z:158db103-f9ab-4b18-9bf9-d5f9b24931c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 30 Apr 2015 07:27:16 GMT" + "Thu, 13 Aug 2015 07:09:41 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/a4cf0bdd-81a4-41ea-886a-035e239b9796?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E0Y2YwYmRkLTgxYTQtNDFlYS04ODZhLTAzNWUyMzliOTc5Nj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/728ec84c-f165-4f25-9106-7f82b5f051a6?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzcyOGVjODRjLWYxNjUtNGYyNS05MTA2LTdmODJiNWYwNTFhNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6713131-2104-4613-909a-4b5d1372cb1b" + "31a7701b-540c-498a-af83-d6eec8dd8155" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1230,44 +1333,44 @@ "25" ], "x-ms-request-id": [ - "d2e5e577-220d-441c-bb9b-4a61f8cafc67" + "02a1778a-19c5-47a1-9660-2356525f5ffa" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/a4cf0bdd-81a4-41ea-886a-035e239b9796?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/728ec84c-f165-4f25-9106-7f82b5f051a6?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "14984" ], "x-ms-correlation-request-id": [ - "b3963520-a176-4da2-ba8d-869986fc415a" + "33a2fc66-ff56-4d7e-b3c3-4cfd048c2bc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072717Z:b3963520-a176-4da2-ba8d-869986fc415a" + "WESTUS:20150813T070942Z:33a2fc66-ff56-4d7e-b3c3-4cfd048c2bc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 30 Apr 2015 07:27:16 GMT" + "Thu, 13 Aug 2015 07:09:42 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/a4cf0bdd-81a4-41ea-886a-035e239b9796?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E0Y2YwYmRkLTgxYTQtNDFlYS04ODZhLTAzNWUyMzliOTc5Nj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/728ec84c-f165-4f25-9106-7f82b5f051a6?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzcyOGVjODRjLWYxNjUtNGYyNS05MTA2LTdmODJiNWYwNTFhNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69510fe0-ede4-4203-b47e-47b33ff7d01b" + "6cf01416-9fdb-43f4-b312-7132cf094db4" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1288,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "3faf9c47-095c-4c0d-8b4a-8b1138f7b15a" + "9e056c1e-1479-4e64-a9fb-90e0b9a772c4" ], "Cache-Control": [ "no-cache" @@ -1298,40 +1401,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14983" ], "x-ms-correlation-request-id": [ - "4d95960a-e2e8-42d1-96f0-c0ca3f899182" + "d5ca6b3f-cf78-4b48-83dd-ba0758e169bf" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072742Z:4d95960a-e2e8-42d1-96f0-c0ca3f899182" + "WESTUS:20150813T071007Z:d5ca6b3f-cf78-4b48-83dd-ba0758e169bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 30 Apr 2015 07:27:42 GMT" + "Thu, 13 Aug 2015 07:10:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Storage/storageAccounts/stopstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjExND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Storage/storageAccounts/stocrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1OTIzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fd334ef-b766-44c6-83e1-42b13dc483d0" + "974c6cdb-0259-47c5-839c-e62441cda073" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Storage/storageAccounts/stopstestrg2114\",\r\n \"name\": \"stopstestrg2114\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2114.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2114.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2114.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-30T07:26:59.8461502Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Storage/storageAccounts/stocrptestps5923\",\r\n \"name\": \"stocrptestps5923\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5923.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5923.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5923.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:09:40.7017661Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1343,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "c890359b-f090-4ef2-b7f8-bf29bc875486" + "147c9f63-0f5b-475e-b58c-0aa30a7ad0ce" ], "Cache-Control": [ "no-cache" @@ -1353,40 +1456,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "14982" ], "x-ms-correlation-request-id": [ - "1fb99a50-5b89-4252-b545-cffde5feb108" + "b1203ef9-7469-48d2-ad45-b305bbde257b" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072742Z:1fb99a50-5b89-4252-b545-cffde5feb108" + "WESTUS:20150813T071007Z:b1203ef9-7469-48d2-ad45-b305bbde257b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 30 Apr 2015 07:27:42 GMT" + "Thu, 13 Aug 2015 07:10:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Storage/storageAccounts/stopstestrg2114?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjExND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Storage/storageAccounts/stocrptestps5923?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1OTIzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04ee6982-837c-4144-980d-6a73c4e1c5e2" + "cf304581-269b-4705-b8c6-a0418835aca6" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Storage/storageAccounts/stopstestrg2114\",\r\n \"name\": \"stopstestrg2114\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg2114.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2114.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2114.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-30T07:26:59.8461502Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Storage/storageAccounts/stocrptestps5923\",\r\n \"name\": \"stocrptestps5923\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5923.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5923.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5923.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:09:40.7017661Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,7 +1501,7 @@ "no-cache" ], "x-ms-request-id": [ - "0a07bcfe-7d27-48d6-b5e0-6f28b0202385" + "f7ea35c3-b26a-4df5-a7df-3e3236c62647" ], "Cache-Control": [ "no-cache" @@ -1408,37 +1511,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "14981" ], "x-ms-correlation-request-id": [ - "fe36e0ff-f1c5-4063-866c-929bac362294" + "bba90ba5-4c3d-4060-9d2d-037df8274da3" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072742Z:fe36e0ff-f1c5-4063-866c-929bac362294" + "WESTUS:20150813T071008Z:bba90ba5-4c3d-4060-9d2d-037df8274da3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 30 Apr 2015 07:27:42 GMT" + "Thu, 13 Aug 2015 07:10:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"github-enterprise\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/github-enterprise\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"storeapiprodtestoffer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/storeapiprodtestoffer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "23199" + "55135" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1453,7 +1556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdf64b82-d6d9-4944-ac5e-7125c570f0e3" + "029b4a22-2025-4a8b-93cc-0c6ce93954c8" ], "Cache-Control": [ "no-cache" @@ -1463,31 +1566,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "14972" ], "x-ms-correlation-request-id": [ - "d33952af-3d48-4364-8f9c-a8381bb6f6b3" + "91321fc5-6731-4bcf-ae2e-914ed4a5e435" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072742Z:d33952af-3d48-4364-8f9c-a8381bb6f6b3" + "WESTUS:20150813T071008Z:91321fc5-6731-4bcf-ae2e-914ed4a5e435" ], "Date": [ - "Thu, 30 Apr 2015 07:27:42 GMT" + "Thu, 13 Aug 2015 07:10:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "258" @@ -1505,7 +1608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "348040af-e993-4e5b-b138-acf7e0a7dfab" + "20ca413b-f805-4939-8abd-b7a5c34b1450" ], "Cache-Control": [ "no-cache" @@ -1515,34 +1618,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "14971" ], "x-ms-correlation-request-id": [ - "7f1d9430-8b3b-433f-b393-370874e42688" + "91251356-ae1f-45ac-b686-7abc3812dbf7" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072743Z:7f1d9430-8b3b-433f-b393-370874e42688" + "WESTUS:20150813T071008Z:91251356-ae1f-45ac-b686-7abc3812dbf7" ], "Date": [ - "Thu, 30 Apr 2015 07:27:43 GMT" + "Thu, 13 Aug 2015 07:10:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1147" + "1799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,7 +1660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a8272b3-b392-41f2-aa30-67d290e6e521" + "12499893-1c8e-4885-a3d7-fcccf580fa26" ], "Cache-Control": [ "no-cache" @@ -1567,34 +1670,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "14970" ], "x-ms-correlation-request-id": [ - "1336bea8-206e-4bc5-b951-b96c940f8158" + "bce78382-2483-498f-a831-95ab8ff41df8" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072743Z:1336bea8-206e-4bc5-b951-b96c940f8158" + "WESTUS:20150813T071008Z:bce78382-2483-498f-a831-95ab8ff41df8" ], "Date": [ - "Thu, 30 Apr 2015 07:27:43 GMT" + "Thu, 13 Aug 2015 07:10:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201504\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "870" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1609,7 +1712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "051c6f46-c697-47a4-a2fb-dad6a8832c10" + "dce8d8e7-9930-471b-90e9-c9356bacf7fe" ], "Cache-Control": [ "no-cache" @@ -1619,31 +1722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14969" ], "x-ms-correlation-request-id": [ - "34a421d3-f2bc-42d1-bbed-408b35dba7c4" + "246cd4e9-9bd8-46d4-a5d3-882dc2b03b60" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072743Z:34a421d3-f2bc-42d1-bbed-408b35dba7c4" + "WESTUS:20150813T071009Z:246cd4e9-9bd8-46d4-a5d3-882dc2b03b60" ], "Date": [ - "Thu, 30 Apr 2015 07:27:43 GMT" + "Thu, 13 Aug 2015 07:10:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", "ResponseHeaders": { "Content-Length": [ "393" @@ -1661,7 +1764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0f94395-507d-4b3c-9e4a-87b59690edd3" + "e6ec5183-78e9-41b0-99e4-dc2b43760b77" ], "Cache-Control": [ "no-cache" @@ -1671,40 +1774,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "14968" ], "x-ms-correlation-request-id": [ - "11495625-32fd-4c22-9c56-84173b4e9218" + "dd775535-be8a-4d1f-89fe-bd63f05d3982" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072743Z:11495625-32fd-4c22-9c56-84173b4e9218" + "WESTUS:20150813T071009Z:dd775535-be8a-4d1f-89fe-bd63f05d3982" ], "Date": [ - "Thu, 30 Apr 2015 07:27:43 GMT" + "Thu, 13 Aug 2015 07:10:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Compute/virtualMachines/vmpstestrg2114?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyMTE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Compute/virtualMachines/vmcrptestps5923?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2114.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg2114\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg2114\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5923.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps5923\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5923\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1147" + "1152" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2114.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Compute/virtualMachines/vmpstestrg2114\",\r\n \"name\": \"vmpstestrg2114\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5923.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Compute/virtualMachines/vmcrptestps5923\",\r\n \"name\": \"vmcrptestps5923\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1403" + "1409" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1716,13 +1819,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "4acd6292-e4c1-4266-b1c8-ea626a382fd0" + "e03f320e-97fe-488c-bc34-ef8214890dcf" ], "Cache-Control": [ "no-cache" @@ -1732,34 +1838,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "d94e0aee-2030-4469-9a3c-a4b865f69c62" + "39fcc2b9-a420-48e4-ad39-53c517531ce6" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072744Z:d94e0aee-2030-4469-9a3c-a4b865f69c62" + "WESTUS:20150813T071009Z:39fcc2b9-a420-48e4-ad39-53c517531ce6" ], "Date": [ - "Thu, 30 Apr 2015 07:27:44 GMT" + "Thu, 13 Aug 2015 07:10:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1773,8 +1879,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ab17b58b-dcd1-42cb-a6b8-2ae3cf0e2b7f" + "44f89e90-0a58-4fc9-9d36-ee42721c4104" ], "Cache-Control": [ "no-cache" @@ -1784,34 +1893,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "14967" ], "x-ms-correlation-request-id": [ - "24c4e0cc-9a3f-433b-a769-10c160d6563a" + "a8044440-6a8d-401c-a53d-6ad87ac7dded" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072744Z:24c4e0cc-9a3f-433b-a769-10c160d6563a" + "WESTUS:20150813T071009Z:a8044440-6a8d-401c-a53d-6ad87ac7dded" ], "Date": [ - "Thu, 30 Apr 2015 07:27:44 GMT" + "Thu, 13 Aug 2015 07:10:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1825,8 +1934,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "9a4931dd-e66f-4090-850c-4fe4d57e87d7" + "01844b65-1c82-4b2f-9a50-53e07ca064e0" ], "Cache-Control": [ "no-cache" @@ -1836,34 +1948,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "14966" ], "x-ms-correlation-request-id": [ - "e47f90f9-f19c-4f2e-926f-5e3d109b75f3" + "46b81f82-03dd-43bd-b063-28294e411b04" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072814Z:e47f90f9-f19c-4f2e-926f-5e3d109b75f3" + "WESTUS:20150813T071040Z:46b81f82-03dd-43bd-b063-28294e411b04" ], "Date": [ - "Thu, 30 Apr 2015 07:28:13 GMT" + "Thu, 13 Aug 2015 07:10:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1877,8 +1989,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "04b765a4-9f7a-4f34-b0ef-991d44c19bd0" + "08c0b56a-23e3-4c63-8d6a-94085cacd467" ], "Cache-Control": [ "no-cache" @@ -1888,34 +2003,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "14965" ], "x-ms-correlation-request-id": [ - "f97f50fe-1f51-4677-a151-db0a6562bbd3" + "50a273f3-d79f-4430-ad14-0563cb8a04e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072844Z:f97f50fe-1f51-4677-a151-db0a6562bbd3" + "WESTUS:20150813T071110Z:50a273f3-d79f-4430-ad14-0563cb8a04e3" ], "Date": [ - "Thu, 30 Apr 2015 07:28:44 GMT" + "Thu, 13 Aug 2015 07:11:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1929,8 +2044,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7b0dd151-9d00-47e4-bb85-52a1cf3e6402" + "becafe3e-cee9-4846-92a9-086aaa2c0591" ], "Cache-Control": [ "no-cache" @@ -1940,34 +2058,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "14964" ], "x-ms-correlation-request-id": [ - "980d9a41-abb3-4e0f-8962-580dd3a1c44f" + "bc059b85-efa1-42cc-8d20-c6a9fab6d311" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072914Z:980d9a41-abb3-4e0f-8962-580dd3a1c44f" + "WESTUS:20150813T071140Z:bc059b85-efa1-42cc-8d20-c6a9fab6d311" ], "Date": [ - "Thu, 30 Apr 2015 07:29:13 GMT" + "Thu, 13 Aug 2015 07:11:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1981,8 +2099,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ea4a32b5-30c2-4976-9044-1ad56b69e166" + "0d22c5d4-fab5-4a6d-9da9-e25aeb3e49e0" ], "Cache-Control": [ "no-cache" @@ -1992,34 +2113,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14963" ], "x-ms-correlation-request-id": [ - "1f78650d-b056-4fea-8d50-de3efa5168c4" + "fdcb6299-d0cf-4221-a86a-96ec9e5dfa0f" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T072944Z:1f78650d-b056-4fea-8d50-de3efa5168c4" + "WESTUS:20150813T071210Z:fdcb6299-d0cf-4221-a86a-96ec9e5dfa0f" ], "Date": [ - "Thu, 30 Apr 2015 07:29:44 GMT" + "Thu, 13 Aug 2015 07:12:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2033,8 +2154,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "5c60cef5-de85-4adc-b8ea-22500713d878" + "05997086-5055-4510-8e2e-7246d2b311f2" ], "Cache-Control": [ "no-cache" @@ -2044,34 +2168,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14962" ], "x-ms-correlation-request-id": [ - "d5f86a06-ab26-4aec-9543-393ed7bf9bf8" + "98052ef4-cfee-4a9f-8193-0d836c35f5e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073014Z:d5f86a06-ab26-4aec-9543-393ed7bf9bf8" + "WESTUS:20150813T071240Z:98052ef4-cfee-4a9f-8193-0d836c35f5e3" ], "Date": [ - "Thu, 30 Apr 2015 07:30:14 GMT" + "Thu, 13 Aug 2015 07:12:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2085,8 +2209,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "81191a8a-0d24-4eb4-8648-366bf582f6fb" + "652ddba2-7838-4ad5-b10e-7aeeb186038d" ], "Cache-Control": [ "no-cache" @@ -2096,34 +2223,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14961" ], "x-ms-correlation-request-id": [ - "1d129858-d841-4965-9d90-50ba4e201d76" + "a9ebeadf-9d4c-4683-85fd-58ce785afbc2" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073044Z:1d129858-d841-4965-9d90-50ba4e201d76" + "WESTUS:20150813T071310Z:a9ebeadf-9d4c-4683-85fd-58ce785afbc2" ], "Date": [ - "Thu, 30 Apr 2015 07:30:44 GMT" + "Thu, 13 Aug 2015 07:13:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2137,8 +2264,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b7b35abf-a0df-4370-a742-567728df54db" + "caf6e44d-fa02-46df-99bf-74eac827bc41" ], "Cache-Control": [ "no-cache" @@ -2148,34 +2278,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14960" ], "x-ms-correlation-request-id": [ - "b5700c67-edc3-4a32-83aa-c77ef05d474c" + "a79b70c2-362c-4243-af44-c7fd78ba8bbd" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073115Z:b5700c67-edc3-4a32-83aa-c77ef05d474c" + "WESTUS:20150813T071340Z:a79b70c2-362c-4243-af44-c7fd78ba8bbd" ], "Date": [ - "Thu, 30 Apr 2015 07:31:14 GMT" + "Thu, 13 Aug 2015 07:13:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2189,8 +2319,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "57079044-3220-40b6-9b8d-57cad3141bed" + "0be73fb0-1181-4a90-90af-2c53a9cf099d" ], "Cache-Control": [ "no-cache" @@ -2200,34 +2333,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14959" ], "x-ms-correlation-request-id": [ - "4ef75105-ec5a-47fc-b4d5-f008cfe8c9fc" + "f3628fbc-c1ae-4302-a721-4c4793251b2c" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073145Z:4ef75105-ec5a-47fc-b4d5-f008cfe8c9fc" + "WESTUS:20150813T071410Z:f3628fbc-c1ae-4302-a721-4c4793251b2c" ], "Date": [ - "Thu, 30 Apr 2015 07:31:44 GMT" + "Thu, 13 Aug 2015 07:14:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2241,8 +2374,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "89d0ec91-c1b3-4126-8bc2-593b54156979" + "c6b88aae-5aa7-43d5-aacd-fb1a6dfc3650" ], "Cache-Control": [ "no-cache" @@ -2252,34 +2388,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14958" ], "x-ms-correlation-request-id": [ - "f67eb0b3-eeae-477c-9d5e-8bfa086e360d" + "ea0b0078-37bf-4346-9e60-6107beea890b" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073215Z:f67eb0b3-eeae-477c-9d5e-8bfa086e360d" + "WESTUS:20150813T071440Z:ea0b0078-37bf-4346-9e60-6107beea890b" ], "Date": [ - "Thu, 30 Apr 2015 07:32:14 GMT" + "Thu, 13 Aug 2015 07:14:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2293,8 +2429,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7151f160-6963-472c-a4f3-8288a6a0fef0" + "56a3f17e-da2e-4f92-b9f5-6d4bc7025687" ], "Cache-Control": [ "no-cache" @@ -2304,34 +2443,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14957" ], "x-ms-correlation-request-id": [ - "523d66f1-b96e-4940-8311-cf85911ba88d" + "f6ea9459-39d9-4aaa-bc40-c58de61d9cf4" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073245Z:523d66f1-b96e-4940-8311-cf85911ba88d" + "WESTUS:20150813T071511Z:f6ea9459-39d9-4aaa-bc40-c58de61d9cf4" ], "Date": [ - "Thu, 30 Apr 2015 07:32:44 GMT" + "Thu, 13 Aug 2015 07:15:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2345,8 +2484,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "29ea88c5-4d3d-48c0-8d71-bea7c522bd47" + "da881151-1b87-4313-8d1a-da627e2f87f2" ], "Cache-Control": [ "no-cache" @@ -2356,34 +2498,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14956" ], "x-ms-correlation-request-id": [ - "3b8e8ead-2e01-4e18-8aa6-a97f6e08b993" + "c301fc70-aa19-4868-ba38-b3c22ad3199d" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073315Z:3b8e8ead-2e01-4e18-8aa6-a97f6e08b993" + "WESTUS:20150813T071541Z:c301fc70-aa19-4868-ba38-b3c22ad3199d" ], "Date": [ - "Thu, 30 Apr 2015 07:33:15 GMT" + "Thu, 13 Aug 2015 07:15:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2397,8 +2539,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "21a10ff8-6545-4d19-9bea-d6b45e45a252" + "9e7e395b-8e33-486f-93f7-93054f4c3baa" ], "Cache-Control": [ "no-cache" @@ -2408,34 +2553,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "14955" ], "x-ms-correlation-request-id": [ - "56d68821-2c4c-41f7-8989-eed5ea6675cd" + "1917e8d1-a845-428b-b875-722487891759" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073345Z:56d68821-2c4c-41f7-8989-eed5ea6675cd" + "WESTUS:20150813T071611Z:1917e8d1-a845-428b-b875-722487891759" ], "Date": [ - "Thu, 30 Apr 2015 07:33:44 GMT" + "Thu, 13 Aug 2015 07:16:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/4acd6292-e4c1-4266-b1c8-ea626a382fd0?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGFjZDYyOTItZTRjMS00MjY2LWIxYzgtZWE2MjZhMzgyZmQwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4acd6292-e4c1-4266-b1c8-ea626a382fd0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-30T00:27:30.0634766-07:00\",\r\n \"endTime\": \"2015-04-30T00:33:34.7823057-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2449,8 +2594,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "9b6fdaae-3c9e-49e3-ace6-3972ca236663" + "492c3da4-15c0-47fe-99a2-919f1e089e6c" ], "Cache-Control": [ "no-cache" @@ -2460,34 +2608,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "14954" ], "x-ms-correlation-request-id": [ - "abf27121-564f-4a72-b1de-b7d730d7c3c3" + "94442c85-3909-4719-acd1-084b59382196" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073415Z:abf27121-564f-4a72-b1de-b7d730d7c3c3" + "WESTUS:20150813T071641Z:94442c85-3909-4719-acd1-084b59382196" ], "Date": [ - "Thu, 30 Apr 2015 07:34:14 GMT" + "Thu, 13 Aug 2015 07:16:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Compute/virtualMachines/vmpstestrg2114?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcyMTE0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg2114.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Network/networkInterfaces/nicpstestrg2114\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg2114/providers/Microsoft.Compute/virtualMachines/vmpstestrg2114\",\r\n \"name\": \"vmpstestrg2114\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1404" + "140" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2501,8 +2649,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "8c8e18a2-d036-437c-bc39-1b1ca02d1817" + "aca639cf-b131-430c-8c55-90d3a085d2a4" ], "Cache-Control": [ "no-cache" @@ -2512,34 +2663,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "14953" ], "x-ms-correlation-request-id": [ - "368734c1-9dbe-4534-a35d-303a6d537ea5" + "36f40666-38ee-44ad-b302-8c27afe0cefe" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073415Z:368734c1-9dbe-4534-a35d-303a6d537ea5" + "WESTUS:20150813T071711Z:36f40666-38ee-44ad-b302-8c27afe0cefe" ], "Date": [ - "Thu, 30 Apr 2015 07:34:15 GMT" + "Thu, 13 Aug 2015 07:17:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg2114?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjExND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2547,53 +2701,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "f6309231-e063-4715-b08f-bbf8bb42ddb3" + "8aacd37d-34ba-4089-a849-3f20b7dadf2b" ], - "x-ms-correlation-request-id": [ - "f6309231-e063-4715-b08f-bbf8bb42ddb3" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150430T073412Z:f6309231-e063-4715-b08f-bbf8bb42ddb3" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "cc28c0ba-6dc9-43c2-85d2-a69f46d633c7" ], - "Date": [ - "Thu, 30 Apr 2015 07:34:12 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T071741Z:cc28c0ba-6dc9-43c2-85d2-a69f46d633c7" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 07:17:40 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2601,53 +2756,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "9f02eac4-1fb9-4dd7-bd8a-d246fcc89acb" + "be1cc54b-e7cd-4cab-9a44-4f3320585d89" ], - "x-ms-correlation-request-id": [ - "9f02eac4-1fb9-4dd7-bd8a-d246fcc89acb" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150430T073412Z:9f02eac4-1fb9-4dd7-bd8a-d246fcc89acb" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "ef5fb0a7-c1c7-43fa-9f83-e3e82c89ade8" ], - "Date": [ - "Thu, 30 Apr 2015 07:34:12 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T071811Z:ef5fb0a7-c1c7-43fa-9f83-e3e82c89ade8" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 07:18:11 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2655,53 +2811,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "32cf01a4-add1-4bc5-bf77-c69f9f52afa7" + "50bfeacd-a2b9-4a92-9c97-1cf7b9e318ae" ], - "x-ms-correlation-request-id": [ - "32cf01a4-add1-4bc5-bf77-c69f9f52afa7" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150430T073427Z:32cf01a4-add1-4bc5-bf77-c69f9f52afa7" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "cd824513-6619-4085-a3df-e98c2c2aefe2" ], - "Date": [ - "Thu, 30 Apr 2015 07:34:27 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T071841Z:cd824513-6619-4085-a3df-e98c2c2aefe2" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 07:18:41 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2709,53 +2866,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "4da84980-8b6f-4a57-8786-c0f48d4f6049" + "7a7595a5-6fa9-4c50-9656-17890c33e9b1" ], - "x-ms-correlation-request-id": [ - "4da84980-8b6f-4a57-8786-c0f48d4f6049" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150430T073443Z:4da84980-8b6f-4a57-8786-c0f48d4f6049" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "6af8d42c-4aa3-4b42-8b3a-d8ce798c4886" ], - "Date": [ - "Thu, 30 Apr 2015 07:34:43 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T071911Z:6af8d42c-4aa3-4b42-8b3a-d8ce798c4886" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 07:19:11 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2763,53 +2921,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "9c045121-2f2b-441f-a15a-ef5ed2011c0a" + "44b4dff0-9bcb-4c22-9d0f-7eeeb7f6e8e5" ], - "x-ms-correlation-request-id": [ - "9c045121-2f2b-441f-a15a-ef5ed2011c0a" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150430T073458Z:9c045121-2f2b-441f-a15a-ef5ed2011c0a" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "a69c825d-cb76-4652-aab0-3b7dcc1539df" ], - "Date": [ - "Thu, 30 Apr 2015 07:34:58 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T071942Z:a69c825d-cb76-4652-aab0-3b7dcc1539df" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 07:19:41 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2817,53 +2976,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "29aa52b6-7757-47a4-ba11-f9e87df156e5" + "670fd390-9276-4835-8c53-82eddd2a31e9" ], - "x-ms-correlation-request-id": [ - "29aa52b6-7757-47a4-ba11-f9e87df156e5" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150430T073513Z:29aa52b6-7757-47a4-ba11-f9e87df156e5" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "56ca75ce-8abb-4263-bff8-9b0054e8fb0d" ], - "Date": [ - "Thu, 30 Apr 2015 07:35:12 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T072012Z:56ca75ce-8abb-4263-bff8-9b0054e8fb0d" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 07:20:11 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/e03f320e-97fe-488c-bc34-ef8214890dcf?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTAzZjMyMGUtOTdmZS00ODhjLWJjMzQtZWY4MjE0ODkwZGNmP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"e03f320e-97fe-488c-bc34-ef8214890dcf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T00:10:09.843021-07:00\",\r\n \"endTime\": \"2015-08-13T00:20:25.0734997-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2871,53 +3031,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "4e8b73af-0250-4383-b14c-a94e0fcc5133" + "212a7c9a-7484-450c-abf8-d43cff21da88" ], - "x-ms-correlation-request-id": [ - "4e8b73af-0250-4383-b14c-a94e0fcc5133" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150430T073528Z:4e8b73af-0250-4383-b14c-a94e0fcc5133" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "1854f06a-fa35-4374-ba4b-807ad9bc2565" ], - "Date": [ - "Thu, 30 Apr 2015 07:35:28 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T072042Z:1854f06a-fa35-4374-ba4b-807ad9bc2565" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 07:20:41 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Compute/virtualMachines/vmcrptestps5923?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5923.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Network/networkInterfaces/niccrptestps5923\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5923/providers/Microsoft.Compute/virtualMachines/vmcrptestps5923\",\r\n \"name\": \"vmcrptestps5923\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test1\": \"testval1\",\r\n \"test2\": \"testval2\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "1410" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2925,45 +3086,43 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "8862d74a-c0fa-4a61-8ebf-c1ff529df7b3" + "95a7aeff-29f1-4435-8702-b6c70b186944" ], - "x-ms-correlation-request-id": [ - "8862d74a-c0fa-4a61-8ebf-c1ff529df7b3" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150430T073543Z:8862d74a-c0fa-4a61-8ebf-c1ff529df7b3" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "feb7709c-3403-482d-9bf2-6459440baf4b" ], - "Date": [ - "Thu, 30 Apr 2015 07:35:42 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150813T072042Z:feb7709c-3403-482d-9bf2-6459440baf4b" ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "Date": [ + "Thu, 13 Aug 2015 07:20:42 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5923?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU5MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2982,17 +3141,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" ], "x-ms-request-id": [ - "263003ce-2251-4ad4-b777-b32f281215c9" + "66405e46-a883-41f4-8ca6-cda0b976958f" ], "x-ms-correlation-request-id": [ - "263003ce-2251-4ad4-b777-b32f281215c9" + "66405e46-a883-41f4-8ca6-cda0b976958f" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073558Z:263003ce-2251-4ad4-b777-b32f281215c9" + "WESTUS:20150813T072042Z:66405e46-a883-41f4-8ca6-cda0b976958f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3001,17 +3160,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:35:57 GMT" + "Thu, 13 Aug 2015 07:20:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3037,16 +3196,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" + "14954" ], "x-ms-request-id": [ - "e49960be-7b3a-4a14-9dbf-b0e67c99813d" + "f6dd9f93-1aaf-4c00-b7bc-de16819bf642" ], "x-ms-correlation-request-id": [ - "e49960be-7b3a-4a14-9dbf-b0e67c99813d" + "f6dd9f93-1aaf-4c00-b7bc-de16819bf642" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073613Z:e49960be-7b3a-4a14-9dbf-b0e67c99813d" + "WESTUS:20150813T072043Z:f6dd9f93-1aaf-4c00-b7bc-de16819bf642" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3055,17 +3214,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:36:12 GMT" + "Thu, 13 Aug 2015 07:20:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3091,16 +3250,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "14953" ], "x-ms-request-id": [ - "84064bbc-8f1d-4d9d-b8a2-2e92f79c0067" + "03bbb7a0-c08f-4574-932c-fd747a88f6e5" ], "x-ms-correlation-request-id": [ - "84064bbc-8f1d-4d9d-b8a2-2e92f79c0067" + "03bbb7a0-c08f-4574-932c-fd747a88f6e5" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073628Z:84064bbc-8f1d-4d9d-b8a2-2e92f79c0067" + "WESTUS:20150813T072058Z:03bbb7a0-c08f-4574-932c-fd747a88f6e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3109,17 +3268,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:36:28 GMT" + "Thu, 13 Aug 2015 07:20:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3145,16 +3304,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "14952" ], "x-ms-request-id": [ - "4d77285f-78d6-41ff-ba1c-9e9ca257078b" + "202db074-30fa-45c1-9227-6c092fc5fce4" ], "x-ms-correlation-request-id": [ - "4d77285f-78d6-41ff-ba1c-9e9ca257078b" + "202db074-30fa-45c1-9227-6c092fc5fce4" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073643Z:4d77285f-78d6-41ff-ba1c-9e9ca257078b" + "WESTUS:20150813T072113Z:202db074-30fa-45c1-9227-6c092fc5fce4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3163,17 +3322,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:36:43 GMT" + "Thu, 13 Aug 2015 07:21:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3199,16 +3358,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "14951" ], "x-ms-request-id": [ - "d8d2c740-6746-4d7d-be32-5a427c2913c7" + "5e407eb5-a4f6-48a7-9aad-95324d7063cf" ], "x-ms-correlation-request-id": [ - "d8d2c740-6746-4d7d-be32-5a427c2913c7" + "5e407eb5-a4f6-48a7-9aad-95324d7063cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073658Z:d8d2c740-6746-4d7d-be32-5a427c2913c7" + "WESTUS:20150813T072128Z:5e407eb5-a4f6-48a7-9aad-95324d7063cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3217,17 +3376,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:36:58 GMT" + "Thu, 13 Aug 2015 07:21:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3253,16 +3412,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "14950" ], "x-ms-request-id": [ - "45e003c1-b486-4bca-93fa-cc9ddc256ce2" + "cdcf5fe4-2508-4efb-9b94-24311ea9e856" ], "x-ms-correlation-request-id": [ - "45e003c1-b486-4bca-93fa-cc9ddc256ce2" + "cdcf5fe4-2508-4efb-9b94-24311ea9e856" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073713Z:45e003c1-b486-4bca-93fa-cc9ddc256ce2" + "WESTUS:20150813T072143Z:cdcf5fe4-2508-4efb-9b94-24311ea9e856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3271,17 +3430,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:37:12 GMT" + "Thu, 13 Aug 2015 07:21:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3307,16 +3466,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" + "14949" ], "x-ms-request-id": [ - "b3c7986b-9bac-450f-ada3-7d7c5eea4616" + "7b4a94e3-3d8b-4d46-9687-a094f9f5f439" ], "x-ms-correlation-request-id": [ - "b3c7986b-9bac-450f-ada3-7d7c5eea4616" + "7b4a94e3-3d8b-4d46-9687-a094f9f5f439" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073728Z:b3c7986b-9bac-450f-ada3-7d7c5eea4616" + "WESTUS:20150813T072158Z:7b4a94e3-3d8b-4d46-9687-a094f9f5f439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3325,17 +3484,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:37:28 GMT" + "Thu, 13 Aug 2015 07:21:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3361,16 +3520,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "14948" ], "x-ms-request-id": [ - "954801c4-7d13-49a6-8dca-18abbbe7403c" + "dd38449d-9247-4711-9436-4ad1ce178386" ], "x-ms-correlation-request-id": [ - "954801c4-7d13-49a6-8dca-18abbbe7403c" + "dd38449d-9247-4711-9436-4ad1ce178386" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073744Z:954801c4-7d13-49a6-8dca-18abbbe7403c" + "WESTUS:20150813T072213Z:dd38449d-9247-4711-9436-4ad1ce178386" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3379,17 +3538,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:37:43 GMT" + "Thu, 13 Aug 2015 07:22:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3415,16 +3574,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" + "14947" ], "x-ms-request-id": [ - "13f3c7ef-5135-4980-9827-6dda319af75a" + "f28fadf6-f30f-40b7-80b0-c606283a6ad9" ], "x-ms-correlation-request-id": [ - "13f3c7ef-5135-4980-9827-6dda319af75a" + "f28fadf6-f30f-40b7-80b0-c606283a6ad9" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073759Z:13f3c7ef-5135-4980-9827-6dda319af75a" + "WESTUS:20150813T072228Z:f28fadf6-f30f-40b7-80b0-c606283a6ad9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3433,17 +3592,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:37:58 GMT" + "Thu, 13 Aug 2015 07:22:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3469,16 +3628,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "14946" ], "x-ms-request-id": [ - "33dd6997-8f81-48c8-b673-ed6da0eb4bdb" + "3c92f854-fcdc-4059-a8b8-678f976672dc" ], "x-ms-correlation-request-id": [ - "33dd6997-8f81-48c8-b673-ed6da0eb4bdb" + "3c92f854-fcdc-4059-a8b8-678f976672dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073814Z:33dd6997-8f81-48c8-b673-ed6da0eb4bdb" + "WESTUS:20150813T072243Z:3c92f854-fcdc-4059-a8b8-678f976672dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3487,17 +3646,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:38:13 GMT" + "Thu, 13 Aug 2015 07:22:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3523,16 +3682,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "14945" ], "x-ms-request-id": [ - "e4dd2adb-bd1a-41f0-981c-188359bc1263" + "ad4156ec-a786-4a22-9506-f0d6f2131674" ], "x-ms-correlation-request-id": [ - "e4dd2adb-bd1a-41f0-981c-188359bc1263" + "ad4156ec-a786-4a22-9506-f0d6f2131674" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073829Z:e4dd2adb-bd1a-41f0-981c-188359bc1263" + "WESTUS:20150813T072258Z:ad4156ec-a786-4a22-9506-f0d6f2131674" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3541,17 +3700,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:38:28 GMT" + "Thu, 13 Aug 2015 07:22:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3577,16 +3736,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "14944" ], "x-ms-request-id": [ - "6a1f451d-015a-4978-8b36-3737216c10e4" + "399b977c-96de-4c0d-8734-d77ce4a7dfb0" ], "x-ms-correlation-request-id": [ - "6a1f451d-015a-4978-8b36-3737216c10e4" + "399b977c-96de-4c0d-8734-d77ce4a7dfb0" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073844Z:6a1f451d-015a-4978-8b36-3737216c10e4" + "WESTUS:20150813T072313Z:399b977c-96de-4c0d-8734-d77ce4a7dfb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3595,17 +3754,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:38:43 GMT" + "Thu, 13 Aug 2015 07:23:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3631,16 +3790,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "14943" ], "x-ms-request-id": [ - "c1eba314-ffc7-4286-b50b-e790d1ed5c12" + "cacf4474-b12f-420c-88a2-0e4b4481fa74" ], "x-ms-correlation-request-id": [ - "c1eba314-ffc7-4286-b50b-e790d1ed5c12" + "cacf4474-b12f-420c-88a2-0e4b4481fa74" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073859Z:c1eba314-ffc7-4286-b50b-e790d1ed5c12" + "WESTUS:20150813T072328Z:cacf4474-b12f-420c-88a2-0e4b4481fa74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3649,17 +3808,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:38:58 GMT" + "Thu, 13 Aug 2015 07:23:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,16 +3844,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "14942" ], "x-ms-request-id": [ - "207c9c34-194a-47db-9b72-e83b7f4a9b78" + "44fd8d63-bb8f-4458-bd70-d9816e88d33c" ], "x-ms-correlation-request-id": [ - "207c9c34-194a-47db-9b72-e83b7f4a9b78" + "44fd8d63-bb8f-4458-bd70-d9816e88d33c" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073914Z:207c9c34-194a-47db-9b72-e83b7f4a9b78" + "WESTUS:20150813T072343Z:44fd8d63-bb8f-4458-bd70-d9816e88d33c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3703,17 +3862,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:39:13 GMT" + "Thu, 13 Aug 2015 07:23:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,16 +3898,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "14941" ], "x-ms-request-id": [ - "0e38f071-dd73-4c4a-a9d5-b3dfc888ba5c" + "aa517b1e-675d-4c1d-a24f-1bf985898c3e" ], "x-ms-correlation-request-id": [ - "0e38f071-dd73-4c4a-a9d5-b3dfc888ba5c" + "aa517b1e-675d-4c1d-a24f-1bf985898c3e" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073929Z:0e38f071-dd73-4c4a-a9d5-b3dfc888ba5c" + "WESTUS:20150813T072358Z:aa517b1e-675d-4c1d-a24f-1bf985898c3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3757,17 +3916,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:39:29 GMT" + "Thu, 13 Aug 2015 07:23:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3793,16 +3952,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31918" + "14940" ], "x-ms-request-id": [ - "3c23f3ab-f3bb-48d9-a11d-fe5363a51c18" + "6eb5cb72-fb3d-4abc-bbbe-a35e4fae4dfb" ], "x-ms-correlation-request-id": [ - "3c23f3ab-f3bb-48d9-a11d-fe5363a51c18" + "6eb5cb72-fb3d-4abc-bbbe-a35e4fae4dfb" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073944Z:3c23f3ab-f3bb-48d9-a11d-fe5363a51c18" + "WESTUS:20150813T072413Z:6eb5cb72-fb3d-4abc-bbbe-a35e4fae4dfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3811,17 +3970,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:39:44 GMT" + "Thu, 13 Aug 2015 07:24:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3847,16 +4006,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31917" + "14939" ], "x-ms-request-id": [ - "22670066-8031-4121-b5f5-071dab15e3fc" + "a48ba560-2696-4df3-a050-fbb1c5ca49de" ], "x-ms-correlation-request-id": [ - "22670066-8031-4121-b5f5-071dab15e3fc" + "a48ba560-2696-4df3-a050-fbb1c5ca49de" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T073959Z:22670066-8031-4121-b5f5-071dab15e3fc" + "WESTUS:20150813T072428Z:a48ba560-2696-4df3-a050-fbb1c5ca49de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3865,17 +4024,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:39:59 GMT" + "Thu, 13 Aug 2015 07:24:28 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3901,16 +4060,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31916" + "14938" ], "x-ms-request-id": [ - "3e25f6b6-e145-43a6-85b1-54c26748463b" + "e36c9778-9667-4348-9bf1-98f012fb26d2" ], "x-ms-correlation-request-id": [ - "3e25f6b6-e145-43a6-85b1-54c26748463b" + "e36c9778-9667-4348-9bf1-98f012fb26d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T074015Z:3e25f6b6-e145-43a6-85b1-54c26748463b" + "WESTUS:20150813T072444Z:e36c9778-9667-4348-9bf1-98f012fb26d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3919,17 +4078,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:40:14 GMT" + "Thu, 13 Aug 2015 07:24:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3955,16 +4114,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31915" + "14937" ], "x-ms-request-id": [ - "4f4a09db-3dc3-48dd-b6da-6866f7226e55" + "b4a772e4-4609-4a3d-80cb-d6e5f50f6c13" ], "x-ms-correlation-request-id": [ - "4f4a09db-3dc3-48dd-b6da-6866f7226e55" + "b4a772e4-4609-4a3d-80cb-d6e5f50f6c13" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T074030Z:4f4a09db-3dc3-48dd-b6da-6866f7226e55" + "WESTUS:20150813T072459Z:b4a772e4-4609-4a3d-80cb-d6e5f50f6c13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3973,17 +4132,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:40:29 GMT" + "Thu, 13 Aug 2015 07:24:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4009,16 +4168,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31914" + "14936" ], "x-ms-request-id": [ - "9db173cc-5ca5-4492-8943-d59a4e2ab2db" + "b01e0754-d729-4693-9d6c-fef6312a682b" ], "x-ms-correlation-request-id": [ - "9db173cc-5ca5-4492-8943-d59a4e2ab2db" + "b01e0754-d729-4693-9d6c-fef6312a682b" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T074045Z:9db173cc-5ca5-4492-8943-d59a4e2ab2db" + "WESTUS:20150813T072514Z:b01e0754-d729-4693-9d6c-fef6312a682b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4027,17 +4186,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:40:44 GMT" + "Thu, 13 Aug 2015 07:25:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,16 +4222,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31913" + "14935" ], "x-ms-request-id": [ - "127f86e4-dd4c-4bbf-835c-e2a0ddb94633" + "0f7793e2-582e-4c3c-8b7c-e90d4d87ac0a" ], "x-ms-correlation-request-id": [ - "127f86e4-dd4c-4bbf-835c-e2a0ddb94633" + "0f7793e2-582e-4c3c-8b7c-e90d4d87ac0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T074100Z:127f86e4-dd4c-4bbf-835c-e2a0ddb94633" + "WESTUS:20150813T072529Z:0f7793e2-582e-4c3c-8b7c-e90d4d87ac0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4081,17 +4240,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:40:59 GMT" + "Thu, 13 Aug 2015 07:25:28 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4117,16 +4276,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31912" + "14934" ], "x-ms-request-id": [ - "83582583-d0d5-425a-95c6-6c4f86286065" + "4a12b78b-01c6-4743-8f3e-7028617a9893" ], "x-ms-correlation-request-id": [ - "83582583-d0d5-425a-95c6-6c4f86286065" + "4a12b78b-01c6-4743-8f3e-7028617a9893" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T074115Z:83582583-d0d5-425a-95c6-6c4f86286065" + "WESTUS:20150813T072544Z:4a12b78b-01c6-4743-8f3e-7028617a9893" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4135,17 +4294,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:41:14 GMT" + "Thu, 13 Aug 2015 07:25:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4171,16 +4330,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31911" + "14933" ], "x-ms-request-id": [ - "97e77b42-6507-4a20-b7c0-a821773ebd98" + "599c8864-7818-4338-934f-d21f1bde768e" ], "x-ms-correlation-request-id": [ - "97e77b42-6507-4a20-b7c0-a821773ebd98" + "599c8864-7818-4338-934f-d21f1bde768e" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T074130Z:97e77b42-6507-4a20-b7c0-a821773ebd98" + "WESTUS:20150813T072559Z:599c8864-7818-4338-934f-d21f1bde768e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4189,17 +4348,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:41:29 GMT" + "Thu, 13 Aug 2015 07:25:59 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4225,16 +4384,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31910" + "14932" ], "x-ms-request-id": [ - "f20c7c54-6eee-416d-b94f-fb13c858fec4" + "34a2c606-6135-4d21-affa-8ef0a2571f61" ], "x-ms-correlation-request-id": [ - "f20c7c54-6eee-416d-b94f-fb13c858fec4" + "34a2c606-6135-4d21-affa-8ef0a2571f61" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T074145Z:f20c7c54-6eee-416d-b94f-fb13c858fec4" + "WESTUS:20150813T072614Z:34a2c606-6135-4d21-affa-8ef0a2571f61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4243,17 +4402,17 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:41:45 GMT" + "Thu, 13 Aug 2015 07:26:13 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzIxMTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekl4TVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1OTIzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xT1RJekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4276,16 +4435,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31909" + "14931" ], "x-ms-request-id": [ - "b5d0d101-0670-4632-b9df-b8c25e5abda8" + "1da70b70-903e-4953-9cd8-f7f11afea87e" ], "x-ms-correlation-request-id": [ - "b5d0d101-0670-4632-b9df-b8c25e5abda8" + "1da70b70-903e-4953-9cd8-f7f11afea87e" ], "x-ms-routing-request-id": [ - "WESTUS:20150430T074200Z:b5d0d101-0670-4632-b9df-b8c25e5abda8" + "WESTUS:20150813T072629Z:1da70b70-903e-4953-9cd8-f7f11afea87e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4294,7 +4453,7 @@ "no-cache" ], "Date": [ - "Thu, 30 Apr 2015 07:42:00 GMT" + "Thu, 13 Aug 2015 07:26:28 GMT" ] }, "StatusCode": 200 @@ -4302,12 +4461,12 @@ ], "Names": { "Test-VirtualMachineTags": [ - "pstestrg2114" + "crptestps5923" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineWithVMAgentAutoUpdate.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineWithVMAgentAutoUpdate.json index 28c24719dc8d..5a48961a4868 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineWithVMAgentAutoUpdate.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineWithVMAgentAutoUpdate.json @@ -1,8 +1,56 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps9248?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68651" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "753560e1-f471-438f-838a-180442fa98d3" + ], + "x-ms-correlation-request-id": [ + "753560e1-f471-438f-838a-180442fa98d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T065319Z:753560e1-f471-438f-838a-180442fa98d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Aug 2015 06:53:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4782?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14998" ], "x-ms-request-id": [ - "b8e37176-52ec-4a73-bdb3-fd83caf4ac33" + "8153e1f5-cd8c-4e23-8c67-b309314e02f6" ], "x-ms-correlation-request-id": [ - "b8e37176-52ec-4a73-bdb3-fd83caf4ac33" + "8153e1f5-cd8c-4e23-8c67-b309314e02f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220652Z:b8e37176-52ec-4a73-bdb3-fd83caf4ac33" + "WESTUS:20150813T065319Z:8153e1f5-cd8c-4e23-8c67-b309314e02f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:06:52 GMT" + "Thu, 13 Aug 2015 06:53:19 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps9248?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4782?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14978" ], "x-ms-request-id": [ - "f2634a2b-edb5-4c7e-a7b8-27a955518771" + "4643f19b-78b9-41ae-9ced-42fb5f77ab42" ], "x-ms-correlation-request-id": [ - "f2634a2b-edb5-4c7e-a7b8-27a955518771" + "4643f19b-78b9-41ae-9ced-42fb5f77ab42" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221729Z:f2634a2b-edb5-4c7e-a7b8-27a955518771" + "WESTUS:20150813T070306Z:4643f19b-78b9-41ae-9ced-42fb5f77ab42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:17:29 GMT" + "Thu, 13 Aug 2015 07:03:05 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps9248?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4782?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -112,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248\",\r\n \"name\": \"crptestps9248\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782\",\r\n \"name\": \"crptestps4782\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -127,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "28796620-0788-49b3-b791-186313450cdb" + "29d8f28c-31bd-40f7-a70e-a879e9d505a6" ], "x-ms-correlation-request-id": [ - "28796620-0788-49b3-b791-186313450cdb" + "29d8f28c-31bd-40f7-a70e-a879e9d505a6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220653Z:28796620-0788-49b3-b791-186313450cdb" + "WESTUS:20150813T065319Z:29d8f28c-31bd-40f7-a70e-a879e9d505a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:06:53 GMT" + "Thu, 13 Aug 2015 06:53:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14997" ], "x-ms-request-id": [ - "b6938a2e-926a-41bf-a5c9-05431b240571" + "7a8ba8af-9032-4142-b2a8-de2ade6b399d" ], "x-ms-correlation-request-id": [ - "b6938a2e-926a-41bf-a5c9-05431b240571" + "7a8ba8af-9032-4142-b2a8-de2ade6b399d" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220653Z:b6938a2e-926a-41bf-a5c9-05431b240571" + "WESTUS:20150813T065319Z:7a8ba8af-9032-4142-b2a8-de2ade6b399d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:06:53 GMT" + "Thu, 13 Aug 2015 06:53:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps9248/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4782/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1886b0ed-31e8-4b90-92f7-c92091107a6b" + "westus:3b65a2e8-23ee-4036-bf71-197c6be707d1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14990" ], "x-ms-correlation-request-id": [ - "8e70f6ff-d434-4305-9c9d-fea11dfed9cb" + "8cfae1f6-c07c-4dfd-ad38-dd03dbeff4c1" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220653Z:8e70f6ff-d434-4305-9c9d-fea11dfed9cb" + "WESTUS:20150813T065320Z:8cfae1f6-c07c-4dfd-ad38-dd03dbeff4c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +292,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:06:53 GMT" + "Thu, 13 Aug 2015 06:53:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDc4Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -259,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps4782' under resource group 'crptestps4782' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "168" ], "Content-Type": [ "application/json; charset=utf-8" @@ -277,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "a8531ffd-3524-48c7-927f-a0a57cc2b8db" + "6cd4afda-4175-4e6f-89c2-f0dad90c5af6" ], "x-ms-correlation-request-id": [ - "a8531ffd-3524-48c7-927f-a0a57cc2b8db" + "6cd4afda-4175-4e6f-89c2-f0dad90c5af6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220654Z:a8531ffd-3524-48c7-927f-a0a57cc2b8db" + "WESTUS:20150813T065320Z:6cd4afda-4175-4e6f-89c2-f0dad90c5af6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +340,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:06:53 GMT" + "Thu, 13 Aug 2015 06:53:20 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDc4Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +355,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248\",\r\n \"etag\": \"W/\\\"6119b49a-11dd-4c6a-898a-c92522308eea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248/subnets/subnetcrptestps9248\",\r\n \"etag\": \"W/\\\"6119b49a-11dd-4c6a-898a-c92522308eea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782\",\r\n \"etag\": \"W/\\\"5f37547a-e219-473d-a5dd-7d9c781d9dcf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f0f108cd-361f-4209-877c-ea51fc06d38e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782/subnets/subnetcrptestps4782\",\r\n \"etag\": \"W/\\\"5f37547a-e219-473d-a5dd-7d9c781d9dcf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "bd4f03f6-3ba7-4782-949e-1ca224ebb00d" + "6217cfa8-4ebf-4130-b3a4-b2ca508d3360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"6119b49a-11dd-4c6a-898a-c92522308eea\"" + "W/\"5f37547a-e219-473d-a5dd-7d9c781d9dcf\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "14996" ], "x-ms-correlation-request-id": [ - "46ae0aed-0fa5-46b2-8d0c-c4af3f615ada" + "b14b70e2-5358-4a99-8fe0-55dd9421a663" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220655Z:46ae0aed-0fa5-46b2-8d0c-c4af3f615ada" + "WESTUS:20150813T065331Z:b14b70e2-5358-4a99-8fe0-55dd9421a663" ], "Date": [ - "Thu, 18 Jun 2015 22:06:54 GMT" + "Thu, 13 Aug 2015 06:53:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDc4Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +410,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248\",\r\n \"etag\": \"W/\\\"6119b49a-11dd-4c6a-898a-c92522308eea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248/subnets/subnetcrptestps9248\",\r\n \"etag\": \"W/\\\"6119b49a-11dd-4c6a-898a-c92522308eea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782\",\r\n \"etag\": \"W/\\\"5f37547a-e219-473d-a5dd-7d9c781d9dcf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f0f108cd-361f-4209-877c-ea51fc06d38e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782/subnets/subnetcrptestps4782\",\r\n \"etag\": \"W/\\\"5f37547a-e219-473d-a5dd-7d9c781d9dcf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "967" + "1028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "7aaf0962-ca8b-46fe-a30d-59ec2a6b5fbd" + "c4b0a2c0-fb1a-4d9f-8657-2d35f78ffd96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"6119b49a-11dd-4c6a-898a-c92522308eea\"" + "W/\"5f37547a-e219-473d-a5dd-7d9c781d9dcf\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" + "14995" ], "x-ms-correlation-request-id": [ - "057c9d59-5794-4180-9b21-a8ecf9127709" + "bb1760fd-2a6b-4aff-bd09-76f8c19c4938" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220655Z:057c9d59-5794-4180-9b21-a8ecf9127709" + "WESTUS:20150813T065331Z:bb1760fd-2a6b-4aff-bd09-76f8c19c4938" ], "Date": [ - "Thu, 18 Jun 2015 22:06:54 GMT" + "Thu, 13 Aug 2015 06:53:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDc4Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps9248\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps9248\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps4782\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps4782\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -423,10 +471,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248\",\r\n \"etag\": \"W/\\\"5e3bcb52-9f49-40f7-9cd0-4520d5866068\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248/subnets/subnetcrptestps9248\",\r\n \"etag\": \"W/\\\"5e3bcb52-9f49-40f7-9cd0-4520d5866068\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782\",\r\n \"etag\": \"W/\\\"c5432be8-4454-4f14-b4d3-6238453c0f95\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f0f108cd-361f-4209-877c-ea51fc06d38e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782/subnets/subnetcrptestps4782\",\r\n \"etag\": \"W/\\\"c5432be8-4454-4f14-b4d3-6238453c0f95\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "965" + "1026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "c35a1d27-a571-461f-ae7a-cd0e9c4bbf1b" + "faee5d71-f7d3-4ca2-a146-4e241b226f93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/c35a1d27-a571-461f-ae7a-cd0e9c4bbf1b?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/faee5d71-f7d3-4ca2-a146-4e241b226f93?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +505,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1199" ], "x-ms-correlation-request-id": [ - "3149af48-af83-48fa-9cdf-2d21a96e43c2" + "b528f140-1b2c-46cf-a5fc-98192e25a061" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220655Z:3149af48-af83-48fa-9cdf-2d21a96e43c2" + "WESTUS:20150813T065321Z:b528f140-1b2c-46cf-a5fc-98192e25a061" ], "Date": [ - "Thu, 18 Jun 2015 22:06:54 GMT" + "Thu, 13 Aug 2015 06:53:20 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/c35a1d27-a571-461f-ae7a-cd0e9c4bbf1b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzM1YTFkMjctYTU3MS00NjFmLWFlN2EtY2QwZTljNGJiZjFiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/faee5d71-f7d3-4ca2-a146-4e241b226f93?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmFlZTVkNzEtZjdkMy00Y2EyLWExNDYtNGUyNDFiMjI2ZjkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "24ded724-f74f-49ea-ab0a-15dadc459692" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "a096db1f-f899-478a-b831-40f6dcb72d51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150813T065321Z:a096db1f-f899-478a-b831-40f6dcb72d51" + ], + "Date": [ + "Thu, 13 Aug 2015 06:53:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/faee5d71-f7d3-4ca2-a146-4e241b226f93?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmFlZTVkNzEtZjdkMy00Y2EyLWExNDYtNGUyNDFiMjI2ZjkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "097fb8cc-f7b4-4840-87ea-904701c62ac1" + "0aa7a726-6309-49f3-8420-ee5925df17b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14799" + "14997" ], "x-ms-correlation-request-id": [ - "a01c3717-ab50-4f6d-9b80-5c08729e6bef" + "455048c1-5596-4661-a246-7374b699f82b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220655Z:a01c3717-ab50-4f6d-9b80-5c08729e6bef" + "WESTUS:20150813T065331Z:455048c1-5596-4661-a246-7374b699f82b" ], "Date": [ - "Thu, 18 Jun 2015 22:06:54 GMT" + "Thu, 13 Aug 2015 06:53:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDc4Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps4782' under resource group 'crptestps4782' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "8915e229-6822-4fc5-8553-36b9ba4c85c9" + "9da42860-da92-4412-8552-14421f5500e7" ], "x-ms-correlation-request-id": [ - "8915e229-6822-4fc5-8553-36b9ba4c85c9" + "9da42860-da92-4412-8552-14421f5500e7" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220655Z:8915e229-6822-4fc5-8553-36b9ba4c85c9" + "WESTUS:20150813T065331Z:9da42860-da92-4412-8552-14421f5500e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +672,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:06:54 GMT" + "Thu, 13 Aug 2015 06:53:31 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDc4Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +687,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248\",\r\n \"etag\": \"W/\\\"42e52316-6c60-4a7f-91c4-f767b4a342a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9248\",\r\n \"fqdn\": \"pubipcrptestps9248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782\",\r\n \"etag\": \"W/\\\"276b51cf-6f06-471c-b40f-37ea86630769\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2267f459-dc88-4611-af05-7c967000dd49\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4782\",\r\n \"fqdn\": \"pubipcrptestps4782.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "d4572fbf-e9f4-484f-a2e0-001b6512d224" + "6f880380-6798-4bfb-94ed-50d65b2cd6bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"42e52316-6c60-4a7f-91c4-f767b4a342a6\"" + "W/\"276b51cf-6f06-471c-b40f-37ea86630769\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14794" + "14992" ], "x-ms-correlation-request-id": [ - "5a017e55-238b-444b-ae5d-696e20d3f025" + "503451f3-4808-4542-8965-08c0ae05230b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220656Z:5a017e55-238b-444b-ae5d-696e20d3f025" + "WESTUS:20150813T065333Z:503451f3-4808-4542-8965-08c0ae05230b" ], "Date": [ - "Thu, 18 Jun 2015 22:06:55 GMT" + "Thu, 13 Aug 2015 06:53:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDc4Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +742,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248\",\r\n \"etag\": \"W/\\\"42e52316-6c60-4a7f-91c4-f767b4a342a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9248\",\r\n \"fqdn\": \"pubipcrptestps9248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782\",\r\n \"etag\": \"W/\\\"276b51cf-6f06-471c-b40f-37ea86630769\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2267f459-dc88-4611-af05-7c967000dd49\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4782\",\r\n \"fqdn\": \"pubipcrptestps4782.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "555" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "25625092-a8d7-48b4-98da-bbabaebc3a37" + "2d9b3fe4-8e16-4378-9927-6f6be0d105ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,32 +766,32 @@ "no-cache" ], "ETag": [ - "W/\"42e52316-6c60-4a7f-91c4-f767b4a342a6\"" + "W/\"276b51cf-6f06-471c-b40f-37ea86630769\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14793" + "14991" ], "x-ms-correlation-request-id": [ - "79e4d640-0ab2-4d12-a9e5-37b5df7778a7" + "41d36d92-6367-437f-8255-2f3ad6393fe2" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220656Z:79e4d640-0ab2-4d12-a9e5-37b5df7778a7" + "WESTUS:20150813T065333Z:41d36d92-6367-437f-8255-2f3ad6393fe2" ], "Date": [ - "Thu, 18 Jun 2015 22:06:56 GMT" + "Thu, 13 Aug 2015 06:53:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDc4Mi8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9248\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps9248\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4782\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps4782\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -700,10 +803,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248\",\r\n \"etag\": \"W/\\\"c6134f48-08a7-49be-b053-87a4a1402b82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9248\",\r\n \"fqdn\": \"pubipcrptestps9248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782\",\r\n \"etag\": \"W/\\\"f460314d-cf88-4ece-b31b-d35d12efe011\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2267f459-dc88-4611-af05-7c967000dd49\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps4782\",\r\n \"fqdn\": \"pubipcrptestps4782.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "554" + "615" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "70e4c740-f615-4ee8-b410-c7f3a0b3d7e1" + "af9d9072-0d3e-4301-96a2-3b1854c8ad84" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/70e4c740-f615-4ee8-b410-c7f3a0b3d7e1?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/af9d9072-0d3e-4301-96a2-3b1854c8ad84?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1198" ], "x-ms-correlation-request-id": [ - "3a43ecfd-b52c-41d2-bd82-6a61253001e0" + "3d4586a3-00b0-4d5b-a7a9-5c61fc6cf467" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220656Z:3a43ecfd-b52c-41d2-bd82-6a61253001e0" + "WESTUS:20150813T065332Z:3d4586a3-00b0-4d5b-a7a9-5c61fc6cf467" ], "Date": [ - "Thu, 18 Jun 2015 22:06:55 GMT" + "Thu, 13 Aug 2015 06:53:32 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/70e4c740-f615-4ee8-b410-c7f3a0b3d7e1?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzBlNGM3NDAtZjYxNS00ZWU4LWI0MTAtYzdmM2EwYjNkN2UxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/af9d9072-0d3e-4301-96a2-3b1854c8ad84?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWY5ZDkwNzItMGQzZS00MzAxLTk2YTItM2IxODU0YzhhZDg0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +879,7 @@ "no-cache" ], "x-ms-request-id": [ - "23708f6b-9b89-48e2-8d3c-16be8ecbb96d" + "692a2bb6-1645-45fa-a0d7-63cbb13e4284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +892,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" + "14993" ], "x-ms-correlation-request-id": [ - "fbf364f2-05c3-4489-932f-25cb9b68c81e" + "75ebe282-1350-4e07-b95d-716eb89587f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220656Z:fbf364f2-05c3-4489-932f-25cb9b68c81e" + "WESTUS:20150813T065333Z:75ebe282-1350-4e07-b95d-716eb89587f1" ], "Date": [ - "Thu, 18 Jun 2015 22:06:55 GMT" + "Thu, 13 Aug 2015 06:53:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,10 +916,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps4782' under resource group 'crptestps4782' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "69" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,13 +934,13 @@ "gateway" ], "x-ms-request-id": [ - "6c2899b9-5ec6-42ef-a8eb-d37ba9881fff" + "e95c533a-1436-4399-8991-03e90875a215" ], "x-ms-correlation-request-id": [ - "6c2899b9-5ec6-42ef-a8eb-d37ba9881fff" + "e95c533a-1436-4399-8991-03e90875a215" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220656Z:6c2899b9-5ec6-42ef-a8eb-d37ba9881fff" + "WESTUS:20150813T065333Z:e95c533a-1436-4399-8991-03e90875a215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +949,14 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:06:56 GMT" + "Thu, 13 Aug 2015 06:53:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248\",\r\n \"etag\": \"W/\\\"9e1da518-35d0-41c6-abbf-7c1e50757179\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9e1da518-35d0-41c6-abbf-7c1e50757179\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248/subnets/subnetcrptestps9248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782\",\r\n \"etag\": \"W/\\\"9b1c0dbf-5070-4782-974c-52b8859e3657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6b2244b-3863-429a-94f7-dc5446166cbd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9b1c0dbf-5070-4782-974c-52b8859e3657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782/subnets/subnetcrptestps4782\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "d39de872-cd3a-402d-b9ae-7674d9942ed8" + "37fb8399-a365-4b25-80f6-a85baaf14b8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +988,30 @@ "no-cache" ], "ETag": [ - "W/\"9e1da518-35d0-41c6-abbf-7c1e50757179\"" + "W/\"9b1c0dbf-5070-4782-974c-52b8859e3657\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14988" ], "x-ms-correlation-request-id": [ - "8831970c-b61d-421c-a6b8-6017a1df2f40" + "48b86b91-8b38-4d03-a6e6-80fb10adec28" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220657Z:8831970c-b61d-421c-a6b8-6017a1df2f40" + "WESTUS:20150813T065333Z:48b86b91-8b38-4d03-a6e6-80fb10adec28" ], "Date": [ - "Thu, 18 Jun 2015 22:06:56 GMT" + "Thu, 13 Aug 2015 06:53:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248\",\r\n \"etag\": \"W/\\\"9e1da518-35d0-41c6-abbf-7c1e50757179\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9e1da518-35d0-41c6-abbf-7c1e50757179\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248/subnets/subnetcrptestps9248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782\",\r\n \"etag\": \"W/\\\"9b1c0dbf-5070-4782-974c-52b8859e3657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6b2244b-3863-429a-94f7-dc5446166cbd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9b1c0dbf-5070-4782-974c-52b8859e3657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782/subnets/subnetcrptestps4782\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "97ad1e9e-8222-4769-84f9-951d6e75ca3a" + "40fe23a3-6aed-42d5-9aec-c0b6c2ea3a8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,47 +1043,47 @@ "no-cache" ], "ETag": [ - "W/\"9e1da518-35d0-41c6-abbf-7c1e50757179\"" + "W/\"9b1c0dbf-5070-4782-974c-52b8859e3657\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14789" + "14987" ], "x-ms-correlation-request-id": [ - "b5742a51-f0ea-4da9-8f4c-9fc36ba67b21" + "d85b0357-539e-456e-b082-43a219e955e6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220657Z:b5742a51-f0ea-4da9-8f4c-9fc36ba67b21" + "WESTUS:20150813T065333Z:d85b0357-539e-456e-b082-43a219e955e6" ], "Date": [ - "Thu, 18 Jun 2015 22:06:56 GMT" + "Thu, 13 Aug 2015 06:53:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248/subnets/subnetcrptestps9248\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"niccrptestps9248\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782/subnets/subnetcrptestps4782\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps4782\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "863" + "897" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps9248\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248\",\r\n \"etag\": \"W/\\\"9e1da518-35d0-41c6-abbf-7c1e50757179\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9e1da518-35d0-41c6-abbf-7c1e50757179\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9248/subnets/subnetcrptestps9248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps4782\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782\",\r\n \"etag\": \"W/\\\"9b1c0dbf-5070-4782-974c-52b8859e3657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6b2244b-3863-429a-94f7-dc5446166cbd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9b1c0dbf-5070-4782-974c-52b8859e3657\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4782\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/virtualNetworks/vnetcrptestps4782/subnets/subnetcrptestps4782\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1310" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -992,10 +1095,10 @@ "no-cache" ], "x-ms-request-id": [ - "a27d3a64-70bc-4638-a832-0a115fcaa1a3" + "e0de5bdc-05ee-4cc7-bbd8-3bc0cdd9e1db" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a27d3a64-70bc-4638-a832-0a115fcaa1a3?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e0de5bdc-05ee-4cc7-bbd8-3bc0cdd9e1db?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,23 +1111,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1197" ], "x-ms-correlation-request-id": [ - "85940728-d430-4169-8e2a-a4ffcb3e0759" + "1aa60110-1647-48bb-a155-17aeb67c9028" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220657Z:85940728-d430-4169-8e2a-a4ffcb3e0759" + "WESTUS:20150813T065333Z:1aa60110-1647-48bb-a155-17aeb67c9028" ], "Date": [ - "Thu, 18 Jun 2015 22:06:56 GMT" + "Thu, 13 Aug 2015 06:53:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/a27d3a64-70bc-4638-a832-0a115fcaa1a3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTI3ZDNhNjQtNzBiYy00NjM4LWE4MzItMGExMTVmY2FhMWEzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e0de5bdc-05ee-4cc7-bbd8-3bc0cdd9e1db?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBkZTViZGMtMDVlZS00Y2M3LWJiZDgtM2JjMGNkZDllMWRiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,7 +1153,7 @@ "no-cache" ], "x-ms-request-id": [ - "6d56c384-d948-44c1-83c8-f072bdee3fd0" + "0457427f-b270-437b-b6e7-8cd76d794ac2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" + "14989" ], "x-ms-correlation-request-id": [ - "2e51f6fa-6c84-42f0-a7a8-8a0dd516294b" + "94194c95-adc6-442e-a7df-6116bfd8b0d8" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220657Z:2e51f6fa-6c84-42f0-a7a8-8a0dd516294b" + "WESTUS:20150813T065333Z:94194c95-adc6-442e-a7df-6116bfd8b0d8" ], "Date": [ - "Thu, 18 Jun 2015 22:06:56 GMT" + "Thu, 13 Aug 2015 06:53:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Storage/storageAccounts/stocrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5MjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Storage/storageAccounts/stocrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NzgyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1090,7 +1193,7 @@ "88" ], "x-ms-client-request-id": [ - "6310ceb4-fa07-4f00-aa4a-a6daa0491c36" + "9f5f657a-fa25-49fe-bce7-6bcdc6f97d47" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1114,44 +1217,44 @@ "25" ], "x-ms-request-id": [ - "4cb06abf-c211-4a13-bfce-53f7e0707810" + "33f2e5d7-0778-4dd7-89e1-b979f682b41e" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/4cb06abf-c211-4a13-bfce-53f7e0707810?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/33f2e5d7-0778-4dd7-89e1-b979f682b41e?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "7cbec8f0-a5b4-42af-aacd-031a18ed266e" + "7bcee597-971e-495b-9b62-9afc4620570b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220659Z:7cbec8f0-a5b4-42af-aacd-031a18ed266e" + "WESTUS:20150813T065336Z:7bcee597-971e-495b-9b62-9afc4620570b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:06:59 GMT" + "Thu, 13 Aug 2015 06:53:36 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/4cb06abf-c211-4a13-bfce-53f7e0707810?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzRjYjA2YWJmLWMyMTEtNGExMy1iZmNlLTUzZjdlMDcwNzgxMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/33f2e5d7-0778-4dd7-89e1-b979f682b41e?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzMzZjJlNWQ3LTA3NzgtNGRkNy04OWUxLWI5NzlmNjgyYjQxZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7552b201-95ea-45bf-adee-4c69f7acd48b" + "c0d491c2-c56d-4a08-9609-e1f5a04b1b1e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1175,44 +1278,44 @@ "25" ], "x-ms-request-id": [ - "4e28c3db-056b-4e5e-a396-7455a7407927" + "5e9db5f7-b330-451b-8e26-d9597c4d1991" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/4cb06abf-c211-4a13-bfce-53f7e0707810?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/33f2e5d7-0778-4dd7-89e1-b979f682b41e?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14999" ], "x-ms-correlation-request-id": [ - "a30430d3-83af-4fb9-a06c-9a9d151cb7dd" + "61175486-52da-4839-8235-43736fff4fce" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220700Z:a30430d3-83af-4fb9-a06c-9a9d151cb7dd" + "WESTUS:20150813T065337Z:61175486-52da-4839-8235-43736fff4fce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:07:00 GMT" + "Thu, 13 Aug 2015 06:53:36 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/4cb06abf-c211-4a13-bfce-53f7e0707810?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzRjYjA2YWJmLWMyMTEtNGExMy1iZmNlLTUzZjdlMDcwNzgxMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/33f2e5d7-0778-4dd7-89e1-b979f682b41e?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzMzZjJlNWQ3LTA3NzgtNGRkNy04OWUxLWI5NzlmNjgyYjQxZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30efeecf-913a-4238-a40e-cf14d758fb64" + "dc3b39ba-5964-437d-ba67-d1b41302dfc7" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1233,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "a878254b-e577-4439-83a1-a378240d05a3" + "b722e866-1a0e-4f1d-819d-f9e42de32588" ], "Cache-Control": [ "no-cache" @@ -1243,37 +1346,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14998" ], "x-ms-correlation-request-id": [ - "2966b576-9161-460b-bee5-88c870f5de58" + "b49320b7-371b-463c-87b6-0eda261d77f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220725Z:2966b576-9161-460b-bee5-88c870f5de58" + "WESTUS:20150813T065402Z:b49320b7-371b-463c-87b6-0eda261d77f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:07:24 GMT" + "Thu, 13 Aug 2015 06:54:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Storage/storageAccounts/stocrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5MjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Storage/storageAccounts/stocrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NzgyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58677b49-86c4-4f7b-a8da-63cdaac06978" + "30d3027b-f72e-4e94-9268-7d5adbdb7706" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Storage/storageAccounts/stocrptestps9248\",\r\n \"name\": \"stocrptestps9248\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9248.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9248.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9248.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-18T22:06:58.4826536Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Storage/storageAccounts/stocrptestps4782\",\r\n \"name\": \"stocrptestps4782\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4782.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4782.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4782.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T06:53:34.1643046Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1288,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "917cae8b-61f8-4516-83e6-3d1f227c96ea" + "eab79fbc-4588-4952-ac53-de2170ecf525" ], "Cache-Control": [ "no-cache" @@ -1298,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14997" ], "x-ms-correlation-request-id": [ - "71b73d7f-d50e-4113-81c0-dbfaa5ad9e28" + "f1ac3027-bab0-43eb-a95c-8ac9b9f30f78" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220725Z:71b73d7f-d50e-4113-81c0-dbfaa5ad9e28" + "WESTUS:20150813T065402Z:f1ac3027-bab0-43eb-a95c-8ac9b9f30f78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:07:24 GMT" + "Thu, 13 Aug 2015 06:54:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Storage/storageAccounts/stocrptestps9248?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5MjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Storage/storageAccounts/stocrptestps4782?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM0NzgyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "051e90c4-98f3-4f9b-8283-0359fa052234" + "55fe5029-e06f-4fc9-be43-474edbffb53e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Storage/storageAccounts/stocrptestps9248\",\r\n \"name\": \"stocrptestps9248\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9248.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9248.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9248.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-06-18T22:06:58.4826536Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Storage/storageAccounts/stocrptestps4782\",\r\n \"name\": \"stocrptestps4782\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps4782.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps4782.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps4782.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T06:53:34.1643046Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1343,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "f904edc9-9b88-405f-bdf9-bbafb5e32e1a" + "6e5ec9ea-f323-43e0-8858-12c3e1e5f7bb" ], "Cache-Control": [ "no-cache" @@ -1353,28 +1456,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "14996" ], "x-ms-correlation-request-id": [ - "264c56be-f189-4cd1-9944-592dc659577b" + "e7855f34-176e-4525-998e-f650b7834e0b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220725Z:264c56be-f189-4cd1-9944-592dc659577b" + "WESTUS:20150813T065402Z:e7855f34-176e-4525-998e-f650b7834e0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 18 Jun 2015 22:07:25 GMT" + "Thu, 13 Aug 2015 06:54:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Compute/virtualMachines/vmcrptestps9248?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Compute/virtualMachines/vmcrptestps4782?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9248.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps9248\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps9248\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4782.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps4782\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps4782\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1383,10 +1486,10 @@ "1161" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9248.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Compute/virtualMachines/vmcrptestps9248\",\r\n \"name\": \"vmcrptestps9248\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4782.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Compute/virtualMachines/vmcrptestps4782\",\r\n \"name\": \"vmcrptestps4782\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1335" @@ -1401,13 +1504,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "05058d54-183d-4ab6-b9e8-c5ae6e1aadf2" + "14d53c34-bc62-4025-a6ef-7229d69ac179" ], "Cache-Control": [ "no-cache" @@ -1417,31 +1523,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "75038b89-aae3-4b93-9b44-37a5182386ea" + "3cfe1376-a039-4302-8bed-886674734c21" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220726Z:75038b89-aae3-4b93-9b44-37a5182386ea" + "WESTUS:20150813T065403Z:3cfe1376-a039-4302-8bed-886674734c21" ], "Date": [ - "Thu, 18 Jun 2015 22:07:25 GMT" + "Thu, 13 Aug 2015 06:54:02 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1458,60 +1564,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "39df4d69-b720-493a-8bc5-642536abf04e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" - ], - "x-ms-correlation-request-id": [ - "69f1b0fd-af4d-4fbb-b069-4509abaf5f58" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150618T220726Z:69f1b0fd-af4d-4fbb-b069-4509abaf5f58" - ], - "Date": [ - "Thu, 18 Jun 2015 22:07:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" ], "x-ms-request-id": [ - "33c92e04-71cc-4253-b9a1-ee37e95698ca" + "3dc09658-9f40-4f32-9764-5dddc7ef68ab" ], "Cache-Control": [ "no-cache" @@ -1521,31 +1578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14999" ], "x-ms-correlation-request-id": [ - "9eb0c363-f7bb-473c-a073-5f66ca1a6b2a" + "7933d52d-46fe-44ed-84e2-4e48c1497c99" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220756Z:9eb0c363-f7bb-473c-a073-5f66ca1a6b2a" + "WESTUS:20150813T065403Z:7933d52d-46fe-44ed-84e2-4e48c1497c99" ], "Date": [ - "Thu, 18 Jun 2015 22:07:56 GMT" + "Thu, 13 Aug 2015 06:54:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1562,8 +1619,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "5ebe9c1e-639e-4c44-916d-920732447b52" + "19e30bfa-e52b-4214-883d-916268b9b741" ], "Cache-Control": [ "no-cache" @@ -1573,31 +1633,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14998" ], "x-ms-correlation-request-id": [ - "d2980ee8-04c6-4f39-a3e1-348d0ef4ecd6" + "8cd8e4d4-90e1-4f9f-bb8b-e3064183bb01" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220827Z:d2980ee8-04c6-4f39-a3e1-348d0ef4ecd6" + "WESTUS:20150813T065433Z:8cd8e4d4-90e1-4f9f-bb8b-e3064183bb01" ], "Date": [ - "Thu, 18 Jun 2015 22:08:26 GMT" + "Thu, 13 Aug 2015 06:54:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1614,8 +1674,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "75db7f53-236b-4cba-8673-52aac078ab62" + "f950101f-e2e8-461b-986e-19b47da620b4" ], "Cache-Control": [ "no-cache" @@ -1625,31 +1688,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "14997" ], "x-ms-correlation-request-id": [ - "0112d7c3-4bb8-489d-9b55-2afada6bc641" + "4ec2d400-4424-4bab-a02f-d24245f22c36" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220857Z:0112d7c3-4bb8-489d-9b55-2afada6bc641" + "WESTUS:20150813T065503Z:4ec2d400-4424-4bab-a02f-d24245f22c36" ], "Date": [ - "Thu, 18 Jun 2015 22:08:56 GMT" + "Thu, 13 Aug 2015 06:55:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1666,8 +1729,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "0320460b-987a-40b6-8df7-2174e776a466" + "45a9676c-cb45-4220-a4b6-23704f1576a4" ], "Cache-Control": [ "no-cache" @@ -1677,31 +1743,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" + "14996" ], "x-ms-correlation-request-id": [ - "29638e3f-3ce0-464f-8552-e383d25854f3" + "4d769aed-3f3c-4816-83e9-3fa182ef8714" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220927Z:29638e3f-3ce0-464f-8552-e383d25854f3" + "WESTUS:20150813T065533Z:4d769aed-3f3c-4816-83e9-3fa182ef8714" ], "Date": [ - "Thu, 18 Jun 2015 22:09:26 GMT" + "Thu, 13 Aug 2015 06:55:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1718,8 +1784,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "5f86e069-40fd-42dd-a651-e2a0b00bd514" + "c71b97cc-819e-4c97-b047-0cee5f1da453" ], "Cache-Control": [ "no-cache" @@ -1729,31 +1798,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14995" ], "x-ms-correlation-request-id": [ - "c4af6141-88fb-48ac-8ac0-84f45e72c1c2" + "445eccfc-6fc2-4614-8cf9-1687495221ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T220957Z:c4af6141-88fb-48ac-8ac0-84f45e72c1c2" + "WESTUS:20150813T065604Z:445eccfc-6fc2-4614-8cf9-1687495221ee" ], "Date": [ - "Thu, 18 Jun 2015 22:09:56 GMT" + "Thu, 13 Aug 2015 06:56:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1770,8 +1839,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "27786752-5ae5-4a5b-89ad-5909ad155238" + "0481e843-e221-48a1-9318-649e0b924fd4" ], "Cache-Control": [ "no-cache" @@ -1781,31 +1853,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14994" ], "x-ms-correlation-request-id": [ - "940373bc-6e22-45ae-8916-33ee348b627a" + "2bf69add-3fc4-44ad-acb0-d3cefd7c7714" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221027Z:940373bc-6e22-45ae-8916-33ee348b627a" + "WESTUS:20150813T065634Z:2bf69add-3fc4-44ad-acb0-d3cefd7c7714" ], "Date": [ - "Thu, 18 Jun 2015 22:10:27 GMT" + "Thu, 13 Aug 2015 06:56:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1822,8 +1894,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ab00fcb6-a534-4298-ae63-99cc4cc3510c" + "d46bf251-4477-4989-9ca5-57624af5f961" ], "Cache-Control": [ "no-cache" @@ -1833,31 +1908,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14993" ], "x-ms-correlation-request-id": [ - "b876c4a8-1505-48e2-957a-b3d077dc5e30" + "38f8a9fa-ab5a-4b8a-ba1c-5b3f0edc8acd" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221057Z:b876c4a8-1505-48e2-957a-b3d077dc5e30" + "WESTUS:20150813T065704Z:38f8a9fa-ab5a-4b8a-ba1c-5b3f0edc8acd" ], "Date": [ - "Thu, 18 Jun 2015 22:10:57 GMT" + "Thu, 13 Aug 2015 06:57:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1874,8 +1949,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "70cb73a9-f630-40ba-b3f1-7db15f6b7dd5" + "8b2dc90a-8a77-4008-a0e2-568bff277266" ], "Cache-Control": [ "no-cache" @@ -1885,31 +1963,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14992" ], "x-ms-correlation-request-id": [ - "e7d656a0-df92-4740-b611-df9cae91cab1" + "f19e13ce-609b-48fe-8709-3404df27d002" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221127Z:e7d656a0-df92-4740-b611-df9cae91cab1" + "WESTUS:20150813T065734Z:f19e13ce-609b-48fe-8709-3404df27d002" ], "Date": [ - "Thu, 18 Jun 2015 22:11:26 GMT" + "Thu, 13 Aug 2015 06:57:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1926,8 +2004,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "b48681aa-dab6-44d1-a92f-d9711a67a22a" + "544fcac2-e8f4-437f-b2b3-317d127f6bb0" ], "Cache-Control": [ "no-cache" @@ -1937,31 +2018,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14991" ], "x-ms-correlation-request-id": [ - "2c87d55d-716e-4b6c-b91f-520e1684ca98" + "fc0a70c3-8bd8-4e2f-a53a-54e536892af3" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221157Z:2c87d55d-716e-4b6c-b91f-520e1684ca98" + "WESTUS:20150813T065804Z:fc0a70c3-8bd8-4e2f-a53a-54e536892af3" ], "Date": [ - "Thu, 18 Jun 2015 22:11:57 GMT" + "Thu, 13 Aug 2015 06:58:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1978,8 +2059,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "528ed952-81fb-4790-a72b-8fc81abe6849" + "9b44ad96-c768-42ce-995b-ee35c1f6515a" ], "Cache-Control": [ "no-cache" @@ -1989,31 +2073,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14990" ], "x-ms-correlation-request-id": [ - "b8fd6917-bd70-4579-9969-55f25abf4009" + "6947b45d-2540-4919-aaaf-6cefd39f48fb" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221227Z:b8fd6917-bd70-4579-9969-55f25abf4009" + "WESTUS:20150813T065834Z:6947b45d-2540-4919-aaaf-6cefd39f48fb" ], "Date": [ - "Thu, 18 Jun 2015 22:12:27 GMT" + "Thu, 13 Aug 2015 06:58:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2030,8 +2114,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "298cbf77-7b8a-49b2-8e0c-58582e247caa" + "a7ec958f-8bdd-4aef-af48-d11f83908193" ], "Cache-Control": [ "no-cache" @@ -2041,31 +2128,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "14989" ], "x-ms-correlation-request-id": [ - "4926f35c-85cf-4c37-935c-66589c8b78f6" + "b67f00f2-7db6-4663-8e88-92695f3f5bdf" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221257Z:4926f35c-85cf-4c37-935c-66589c8b78f6" + "WESTUS:20150813T065904Z:b67f00f2-7db6-4663-8e88-92695f3f5bdf" ], "Date": [ - "Thu, 18 Jun 2015 22:12:57 GMT" + "Thu, 13 Aug 2015 06:59:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2082,8 +2169,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "02779d58-6c2b-43ae-a71f-7780391bdd70" + "b775c1d7-3b19-4a8a-a0b0-9afa67b0ef6d" ], "Cache-Control": [ "no-cache" @@ -2093,31 +2183,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14988" ], "x-ms-correlation-request-id": [ - "d752a868-9e1a-4073-ad2f-05c8966bfcd9" + "b345f81b-e1c9-47c5-ba03-8e5bbd4ed957" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221328Z:d752a868-9e1a-4073-ad2f-05c8966bfcd9" + "WESTUS:20150813T065935Z:b345f81b-e1c9-47c5-ba03-8e5bbd4ed957" ], "Date": [ - "Thu, 18 Jun 2015 22:13:27 GMT" + "Thu, 13 Aug 2015 06:59:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2134,8 +2224,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "3f806624-1c3e-4907-a5d5-b54afb0a9f42" + "0f559077-a71d-4e12-a934-774b6e7c1290" ], "Cache-Control": [ "no-cache" @@ -2145,34 +2238,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14987" ], "x-ms-correlation-request-id": [ - "0dc623b9-98a5-4413-91f1-fa6be0196cb7" + "8f9ef4ff-6300-4294-a155-581749ed8af9" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221358Z:0dc623b9-98a5-4413-91f1-fa6be0196cb7" + "WESTUS:20150813T070005Z:8f9ef4ff-6300-4294-a155-581749ed8af9" ], "Date": [ - "Thu, 18 Jun 2015 22:13:57 GMT" + "Thu, 13 Aug 2015 07:00:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/14d53c34-bc62-4025-a6ef-7229d69ac179?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTRkNTNjMzQtYmM2Mi00MDI1LWE2ZWYtNzIyOWQ2OWFjMTc5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"14d53c34-bc62-4025-a6ef-7229d69ac179\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T23:54:03.6148845-07:00\",\r\n \"endTime\": \"2015-08-13T00:00:06.5813142-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2186,8 +2279,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "71bff957-6ab2-4989-b834-62ae4599a05d" + "1555d23f-7903-4ba8-961e-da6634c7ba77" ], "Cache-Control": [ "no-cache" @@ -2197,34 +2293,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14801" + "14986" ], "x-ms-correlation-request-id": [ - "a4e6e20a-30c1-4d22-beae-8b2349ca196f" + "10223bee-9502-4916-ae90-0e64466d40bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221428Z:a4e6e20a-30c1-4d22-beae-8b2349ca196f" + "WESTUS:20150813T070035Z:10223bee-9502-4916-ae90-0e64466d40bd" ], "Date": [ - "Thu, 18 Jun 2015 22:14:27 GMT" + "Thu, 13 Aug 2015 07:00:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Compute/virtualMachines/vmcrptestps4782?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps4782.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Network/networkInterfaces/niccrptestps4782\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Compute/virtualMachines/vmcrptestps4782\",\r\n \"name\": \"vmcrptestps4782\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "141" + "1336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2238,8 +2334,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "cb9d1222-aead-4481-be8a-8cc01b49f464" + "4489c99b-811e-40c0-8aba-a0bc0aedb37b" ], "Cache-Control": [ "no-cache" @@ -2249,37 +2348,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "14985" ], "x-ms-correlation-request-id": [ - "1301aa68-64bc-4ba8-af98-a232116b4607" + "836f043b-3af5-46c6-b0b7-50e9fe91f7f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221458Z:1301aa68-64bc-4ba8-af98-a232116b4607" + "WESTUS:20150813T070035Z:836f043b-3af5-46c6-b0b7-50e9fe91f7f7" ], "Date": [ - "Thu, 18 Jun 2015 22:14:57 GMT" + "Thu, 13 Aug 2015 07:00:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/05058d54-183d-4ab6-b9e8-c5ae6e1aadf2?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDUwNThkNTQtMTgzZC00YWI2LWI5ZTgtYzVhZTZlMWFhZGYyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps4782/providers/Microsoft.Compute/virtualMachines/vmcrptestps4782?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ3ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"05058d54-183d-4ab6-b9e8-c5ae6e1aadf2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T15:07:26.3904995-07:00\",\r\n \"endTime\": \"2015-06-18T15:15:09.4842156-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "191" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2287,48 +2383,57 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3850a03b-f2d1-4c7d-b342-6c17e00502d4?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "985d68de-2898-432b-8cdb-106fc72074b9" + "3850a03b-f2d1-4c7d-b342-6c17e00502d4" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3850a03b-f2d1-4c7d-b342-6c17e00502d4?monitor=true&api-version=2015-06-15" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "64e1ffa6-7fcd-4710-be8b-b4933490f99a" + "d30a0584-0f8b-49a2-9584-9d008bcb9286" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221528Z:64e1ffa6-7fcd-4710-be8b-b4933490f99a" + "WESTUS:20150813T070035Z:d30a0584-0f8b-49a2-9584-9d008bcb9286" ], "Date": [ - "Thu, 18 Jun 2015 22:15:28 GMT" + "Thu, 13 Aug 2015 07:00:34 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Compute/virtualMachines/vmcrptestps9248?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3850a03b-f2d1-4c7d-b342-6c17e00502d4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzg1MGEwM2ItZjJkMS00YzdkLWIzNDItNmMxN2UwMDUwMmQ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9248.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Network/networkInterfaces/niccrptestps9248\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Compute/virtualMachines/vmcrptestps9248\",\r\n \"name\": \"vmcrptestps9248\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3850a03b-f2d1-4c7d-b342-6c17e00502d4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:00:35.9872962-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1336" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2342,8 +2447,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "7b21aaed-4875-46d8-8805-e4c211aaa77a" + "63b2632c-ff3f-4fac-8846-debca09c3441" ], "Cache-Control": [ "no-cache" @@ -2353,86 +2461,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14794" + "14984" ], "x-ms-correlation-request-id": [ - "9ae4a215-721a-4a85-b667-a3076e436508" + "a64c675f-3973-4c3f-81e8-1cf66bbbbf5c" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221528Z:9ae4a215-721a-4a85-b667-a3076e436508" + "WESTUS:20150813T070035Z:a64c675f-3973-4c3f-81e8-1cf66bbbbf5c" ], "Date": [ - "Thu, 18 Jun 2015 22:15:28 GMT" + "Thu, 13 Aug 2015 07:00:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps9248/providers/Microsoft.Compute/virtualMachines/vmcrptestps9248?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczkyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a0376a53-ab9f-4c60-b100-a86bc2bfe4f8?api-version=2015-06-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a0376a53-ab9f-4c60-b100-a86bc2bfe4f8" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a0376a53-ab9f-4c60-b100-a86bc2bfe4f8?monitor=true&api-version=2015-06-15" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "01386230-cac6-4b23-9658-9c73af8368a0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150618T221528Z:01386230-cac6-4b23-9658-9c73af8368a0" - ], - "Date": [ - "Thu, 18 Jun 2015 22:15:28 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a0376a53-ab9f-4c60-b100-a86bc2bfe4f8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTAzNzZhNTMtYWI5Zi00YzYwLWIxMDAtYTg2YmMyYmZlNGY4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3850a03b-f2d1-4c7d-b342-6c17e00502d4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzg1MGEwM2ItZjJkMS00YzdkLWIzNDItNmMxN2UwMDUwMmQ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a0376a53-ab9f-4c60-b100-a86bc2bfe4f8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:15:28.9217452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3850a03b-f2d1-4c7d-b342-6c17e00502d4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:00:35.9872962-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2449,8 +2502,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "aae2cf9d-6117-4620-a9ad-1c171bcfce49" + "d3269f72-beac-4b0b-a81c-a313540022a2" ], "Cache-Control": [ "no-cache" @@ -2460,31 +2516,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14793" + "14983" ], "x-ms-correlation-request-id": [ - "fa33a085-8b1f-48de-b79f-10c2add64ef5" + "8a42c433-131b-4de9-87f7-55162faa7611" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221529Z:fa33a085-8b1f-48de-b79f-10c2add64ef5" + "WESTUS:20150813T070106Z:8a42c433-131b-4de9-87f7-55162faa7611" ], "Date": [ - "Thu, 18 Jun 2015 22:15:28 GMT" + "Thu, 13 Aug 2015 07:01:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a0376a53-ab9f-4c60-b100-a86bc2bfe4f8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTAzNzZhNTMtYWI5Zi00YzYwLWIxMDAtYTg2YmMyYmZlNGY4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3850a03b-f2d1-4c7d-b342-6c17e00502d4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzg1MGEwM2ItZjJkMS00YzdkLWIzNDItNmMxN2UwMDUwMmQ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a0376a53-ab9f-4c60-b100-a86bc2bfe4f8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:15:28.9217452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3850a03b-f2d1-4c7d-b342-6c17e00502d4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:00:35.9872962-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2501,8 +2557,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "0ca79bd8-d13e-49dc-9f92-ac0fe800618d" + "10d7fd90-3dd1-4e05-8101-01863f6f42f6" ], "Cache-Control": [ "no-cache" @@ -2512,31 +2571,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14982" ], "x-ms-correlation-request-id": [ - "d086ff7b-6c0f-4b0c-bbdf-89b870bde5e4" + "a935e267-1eb9-49b0-b506-f44073359834" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221559Z:d086ff7b-6c0f-4b0c-bbdf-89b870bde5e4" + "WESTUS:20150813T070136Z:a935e267-1eb9-49b0-b506-f44073359834" ], "Date": [ - "Thu, 18 Jun 2015 22:15:59 GMT" + "Thu, 13 Aug 2015 07:01:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a0376a53-ab9f-4c60-b100-a86bc2bfe4f8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTAzNzZhNTMtYWI5Zi00YzYwLWIxMDAtYTg2YmMyYmZlNGY4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3850a03b-f2d1-4c7d-b342-6c17e00502d4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzg1MGEwM2ItZjJkMS00YzdkLWIzNDItNmMxN2UwMDUwMmQ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a0376a53-ab9f-4c60-b100-a86bc2bfe4f8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:15:28.9217452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3850a03b-f2d1-4c7d-b342-6c17e00502d4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:00:35.9872962-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2553,8 +2612,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "ff7229a5-c261-447f-bb31-8bda1a8eec86" + "8a4e20de-9947-449b-b901-47d4b60d40f6" ], "Cache-Control": [ "no-cache" @@ -2564,31 +2626,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14981" ], "x-ms-correlation-request-id": [ - "273af91c-7a68-4935-b379-52df75a1db2f" + "b81e688b-1df7-4784-bbee-bf02b90782a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221629Z:273af91c-7a68-4935-b379-52df75a1db2f" + "WESTUS:20150813T070206Z:b81e688b-1df7-4784-bbee-bf02b90782a0" ], "Date": [ - "Thu, 18 Jun 2015 22:16:28 GMT" + "Thu, 13 Aug 2015 07:02:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a0376a53-ab9f-4c60-b100-a86bc2bfe4f8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTAzNzZhNTMtYWI5Zi00YzYwLWIxMDAtYTg2YmMyYmZlNGY4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3850a03b-f2d1-4c7d-b342-6c17e00502d4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzg1MGEwM2ItZjJkMS00YzdkLWIzNDItNmMxN2UwMDUwMmQ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a0376a53-ab9f-4c60-b100-a86bc2bfe4f8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-06-18T15:15:28.9217452-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3850a03b-f2d1-4c7d-b342-6c17e00502d4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-13T00:00:35.9872962-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2605,8 +2667,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "df6d1b68-efe8-42b3-b069-9f472ede20f2" + "1b2c9f39-f6b1-4ba3-9f1a-943e1f4801bd" ], "Cache-Control": [ "no-cache" @@ -2616,31 +2681,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14980" ], "x-ms-correlation-request-id": [ - "40f0ae8d-e8c3-4096-a841-bc5c64f9825a" + "ef6958fc-be7b-4d8f-83cf-b2077d851f63" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221659Z:40f0ae8d-e8c3-4096-a841-bc5c64f9825a" + "WESTUS:20150813T070236Z:ef6958fc-be7b-4d8f-83cf-b2077d851f63" ], "Date": [ - "Thu, 18 Jun 2015 22:16:59 GMT" + "Thu, 13 Aug 2015 07:02:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/operations/a0376a53-ab9f-4c60-b100-a86bc2bfe4f8?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTAzNzZhNTMtYWI5Zi00YzYwLWIxMDAtYTg2YmMyYmZlNGY4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3850a03b-f2d1-4c7d-b342-6c17e00502d4?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzg1MGEwM2ItZjJkMS00YzdkLWIzNDItNmMxN2UwMDUwMmQ0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"a0376a53-ab9f-4c60-b100-a86bc2bfe4f8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-06-18T15:15:28.9217452-07:00\",\r\n \"endTime\": \"2015-06-18T15:17:20.4842494-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3850a03b-f2d1-4c7d-b342-6c17e00502d4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-13T00:00:35.9872962-07:00\",\r\n \"endTime\": \"2015-08-13T00:02:38.5178403-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2657,8 +2722,11 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + ], "x-ms-request-id": [ - "55335ef1-e184-445c-8226-f1ceadb7eaab" + "067ef636-97bd-4edf-aba6-16c9cbdfdc45" ], "Cache-Control": [ "no-cache" @@ -2668,23 +2736,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14769" + "14979" ], "x-ms-correlation-request-id": [ - "bb89ed23-c869-48dc-bddb-141ef9b5db77" + "a0d3ffae-b0f2-4cf7-84ad-d509ed0feaec" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221729Z:bb89ed23-c869-48dc-bddb-141ef9b5db77" + "WESTUS:20150813T070306Z:a0d3ffae-b0f2-4cf7-84ad-d509ed0feaec" ], "Date": [ - "Thu, 18 Jun 2015 22:17:29 GMT" + "Thu, 13 Aug 2015 07:03:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps9248?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczkyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps4782?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ3ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2707,16 +2775,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "897345d1-b36b-4d3d-9ec2-676ba28afb7a" + "4d00c4c3-4196-41b1-b9f8-b3ba92e11074" ], "x-ms-correlation-request-id": [ - "897345d1-b36b-4d3d-9ec2-676ba28afb7a" + "4d00c4c3-4196-41b1-b9f8-b3ba92e11074" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221729Z:897345d1-b36b-4d3d-9ec2-676ba28afb7a" + "WESTUS:20150813T070306Z:4d00c4c3-4196-41b1-b9f8-b3ba92e11074" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2725,17 +2793,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:17:29 GMT" + "Thu, 13 Aug 2015 07:03:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpneUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2761,16 +2829,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14977" ], "x-ms-request-id": [ - "bb453407-7fe3-44b4-83fd-7d167f8b4a61" + "be939443-c398-4f38-be3f-a2267d059655" ], "x-ms-correlation-request-id": [ - "bb453407-7fe3-44b4-83fd-7d167f8b4a61" + "be939443-c398-4f38-be3f-a2267d059655" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221730Z:bb453407-7fe3-44b4-83fd-7d167f8b4a61" + "WESTUS:20150813T070306Z:be939443-c398-4f38-be3f-a2267d059655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2779,17 +2847,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:17:29 GMT" + "Thu, 13 Aug 2015 07:03:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpneUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2815,16 +2883,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14976" ], "x-ms-request-id": [ - "714d55a9-74ee-4fe2-b28f-89499d039953" + "2b81a780-2a4d-479e-8c08-c44d49307122" ], "x-ms-correlation-request-id": [ - "714d55a9-74ee-4fe2-b28f-89499d039953" + "2b81a780-2a4d-479e-8c08-c44d49307122" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221745Z:714d55a9-74ee-4fe2-b28f-89499d039953" + "WESTUS:20150813T070321Z:2b81a780-2a4d-479e-8c08-c44d49307122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2833,17 +2901,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:17:44 GMT" + "Thu, 13 Aug 2015 07:03:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpneUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2869,16 +2937,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" + "14975" ], "x-ms-request-id": [ - "4fb5199e-d9e0-4233-ba4f-6ad7135c3014" + "61a5f5f8-ca9c-4023-ae87-05e7fb61cf45" ], "x-ms-correlation-request-id": [ - "4fb5199e-d9e0-4233-ba4f-6ad7135c3014" + "61a5f5f8-ca9c-4023-ae87-05e7fb61cf45" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221800Z:4fb5199e-d9e0-4233-ba4f-6ad7135c3014" + "WESTUS:20150813T070336Z:61a5f5f8-ca9c-4023-ae87-05e7fb61cf45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2887,17 +2955,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:17:59 GMT" + "Thu, 13 Aug 2015 07:03:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpneUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,16 +2991,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14974" ], "x-ms-request-id": [ - "7c2cf085-c0e4-4d68-aab5-ea1e02ac8984" + "b08fcb45-01c4-4267-8b5b-b060089d5ea6" ], "x-ms-correlation-request-id": [ - "7c2cf085-c0e4-4d68-aab5-ea1e02ac8984" + "b08fcb45-01c4-4267-8b5b-b060089d5ea6" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221815Z:7c2cf085-c0e4-4d68-aab5-ea1e02ac8984" + "WESTUS:20150813T070351Z:b08fcb45-01c4-4267-8b5b-b060089d5ea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2941,17 +3009,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:18:14 GMT" + "Thu, 13 Aug 2015 07:03:51 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpneUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2977,16 +3045,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "14973" ], "x-ms-request-id": [ - "a62b0fcf-3d2e-449f-8f23-48edb10fdc24" + "65ccab37-62fe-4040-bebd-7901cfe44f0c" ], "x-ms-correlation-request-id": [ - "a62b0fcf-3d2e-449f-8f23-48edb10fdc24" + "65ccab37-62fe-4040-bebd-7901cfe44f0c" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221830Z:a62b0fcf-3d2e-449f-8f23-48edb10fdc24" + "WESTUS:20150813T070406Z:65ccab37-62fe-4040-bebd-7901cfe44f0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2995,17 +3063,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:18:29 GMT" + "Thu, 13 Aug 2015 07:04:06 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpneUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3031,16 +3099,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14972" ], "x-ms-request-id": [ - "6c9dd0b9-5d28-47b2-b66b-28d65c8681ea" + "255beabb-73b3-4555-958e-929e929761f5" ], "x-ms-correlation-request-id": [ - "6c9dd0b9-5d28-47b2-b66b-28d65c8681ea" + "255beabb-73b3-4555-958e-929e929761f5" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221845Z:6c9dd0b9-5d28-47b2-b66b-28d65c8681ea" + "WESTUS:20150813T070421Z:255beabb-73b3-4555-958e-929e929761f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3049,17 +3117,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:18:45 GMT" + "Thu, 13 Aug 2015 07:04:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpneUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3085,16 +3153,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14971" ], "x-ms-request-id": [ - "729945ca-f018-4474-bee7-0d9321eddd98" + "9d45edaa-5813-4228-9e01-310c2c958c3b" ], "x-ms-correlation-request-id": [ - "729945ca-f018-4474-bee7-0d9321eddd98" + "9d45edaa-5813-4228-9e01-310c2c958c3b" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221900Z:729945ca-f018-4474-bee7-0d9321eddd98" + "WESTUS:20150813T070437Z:9d45edaa-5813-4228-9e01-310c2c958c3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3103,17 +3171,17 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:19:00 GMT" + "Thu, 13 Aug 2015 07:04:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5MjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NzgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTnpneUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3136,16 +3204,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14970" ], "x-ms-request-id": [ - "dca34e24-8d06-48ef-be2e-25caf55336fb" + "5906e824-a016-47b1-980b-2088055e4bc9" ], "x-ms-correlation-request-id": [ - "dca34e24-8d06-48ef-be2e-25caf55336fb" + "5906e824-a016-47b1-980b-2088055e4bc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150618T221915Z:dca34e24-8d06-48ef-be2e-25caf55336fb" + "WESTUS:20150813T070452Z:5906e824-a016-47b1-980b-2088055e4bc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3154,7 +3222,7 @@ "no-cache" ], "Date": [ - "Thu, 18 Jun 2015 22:19:14 GMT" + "Thu, 13 Aug 2015 07:04:51 GMT" ] }, "StatusCode": 200 @@ -3162,11 +3230,11 @@ ], "Names": { "Test-VirtualMachineWithVMAgentAutoUpdate": [ - "crptestps9248" + "crptestps4782" ] }, "Variables": { - "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } From edd913376df857715abe635f130f64833aea8c0a Mon Sep 17 00:00:00 2001 From: mkherani Date: Wed, 19 Aug 2015 19:23:20 +0530 Subject: [PATCH 05/37] Bug #4266426: Removing Default Parameter set from RegisterContainer cmdlet --- .../Cmdlets/Container/RegisterAzureRMBackupContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs index aac86a2f5ebd..58f9b5e80f11 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs @@ -33,7 +33,7 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets /// /// Get list of containers /// - [Cmdlet(VerbsLifecycle.Register, "AzureRMBackupContainer", DefaultParameterSetName = V1VMParameterSet), OutputType(typeof(AzureRMBackupJob))] + [Cmdlet(VerbsLifecycle.Register, "AzureRMBackupContainer"), OutputType(typeof(AzureRMBackupJob))] public class RegisterAzureRMBackupContainer : AzureBackupVaultCmdletBase { internal const string V1VMParameterSet = "V1VM"; From 4ce0201773ceec35d65e3a84b02d5b03b7b529a0 Mon Sep 17 00:00:00 2001 From: pragrawa Date: Wed, 19 Aug 2015 20:45:27 +0530 Subject: [PATCH 06/37] ScrubErrorMessage for Policy and Bug #4298876 [OneSDK] Remove same Protection policy twice results the commandlet fail with incorrect error message --- .../RemoveAzureRMBackupProtectionPolicy.cs | 2 +- .../Properties/Resources.resx | 95 +++++++++++++------ 2 files changed, 65 insertions(+), 32 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs index e161d8a4680a..aeb1338a6d9b 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs @@ -45,7 +45,7 @@ public override void ExecuteCmdlet() } else { - var exception = new ArgumentException(string.Format(Resources.PolicyNotFound, policyInfo.Name)); + var exception = new ArgumentException(string.Format(Resources.PolicyNotFound, ProtectionPolicy.Name)); throw exception; } }); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx index 28203c10b30d..b559eeb193c9 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx @@ -148,10 +148,12 @@ Please contact Microsoft for further assistant. Cmdlet called for ResourceGroupName: {0}, ResourceName: {1}, Location: {2} - For daily backup schedule, protection policy cannot have DaysOfWeek param in backup schedule + For a daily backup schedule, using the DaysOfWeek parameter is not allowed + Scrubbed - For weekly backup schedule, DaysOfWeek in backup schedule is mandatory and cannot be empty + For a weekly backup schedule, using the DaysOfWeek parameter is mandatory + Scrubbed AzureBackupVault.Name @@ -190,22 +192,26 @@ Please contact Microsoft for further assistant. Creating backup vault with ResourceGroupName: {0}, ResourceName: {1} - Only one AzureBackupDailyRetentionPolicy in RetentionPolicies is allowed + Only one daily retention policy is allowed for a Protection Policy + Scrubbed - For AzureBackupDailyRetentionPolicy , valid values of retention are {0} to {1} + The daily retention value should be between {0} and {1} + Scrubbed - For Daily Schedule, AzureBackupDailyRetentionPolicy in RetentionPolicies param is mandatory + For a daily backup schedule, setting a daily retention policy is mandatory + Scrubbed Days of the month in Monthly/Yearly retention is not allowed for weekly backup Schedules + Scrubbed - DaysofTheWeek list in Weekly retention schedule must be same of backup schedule DaysOfTheWeek + The DaysOfWeek specified in a weekly retention schedule should be a same as of DaysOfWeek value specified in the backup schedule - DaysOfTheWeek of retention schedule must be same of backup schedule DaysOfTheWeek + The DaysOfWeek specified in a weekly retention schedule should be a same as of DaysOfWeek value specified in the backup schedule Desired Container is not found. Returning with isDiscoveryNeed = true @@ -256,28 +262,36 @@ Please contact Microsoft for further assistant. Making client call - For AzureBackupMonthlyRetentionPolicy and RetentionFormat in Days, DaysOfMonth param is mandatory and can not be empty + For a monthly retention policy specified in days, using the DaysOfMonth parameter is mandatory + Scrubbed - For AzureBackupMonthlyRetentionPolicy and RetentionFormat in Weeks, DaysOfMonth param is not allowed. + For a monthly retention policy specified in weeks, using the DaysOfMonth parameter is not allowed + Scrubbed - For AzureBackupMonthlyRetentionPolicy and RetentionFormat in Weeks, DaysOfWeek param is mandatory and can not be empty + For a monthly retention policy specified in weeks, using the DaysOfWeek parameter is mandatory + Scrubbed - For AzureBackupMonthlyRetentionPolicy and RetentionFormat in Days, DaysOfWeek or WeekNumber params are not allowed + For a monthly retention policy specified in days, using the DaysOfWeek and WeekNumber parameters is not allowed + Scrubbed - Only one AzureBackupMonthlyRetentionPolicy in RetentionPolicies is allowed + Only one monthly retention policy is allowed for a Protection Policy + Scrubbed - For AzureBackupMonthlyRetentionPolicy , valid values of retention are {0} to {1} + The monthly retention value should be between {0} and {1} + Scrubbed - For AzureBackupMonthlyRetentionPolicy and RetentionFormat in Weeks, WeekNumber param is mandatory and can not be empty + For a monthly retention policy specified in weeks, using the WeekNumber parameter is mandatory + Scrubbed - Days of the week list in Monthly/Yearly retention schedule should be subset of Day of week list in Backup Schedule + The DaysOfWeek specified for monthly and yearly retention policies should be a subset of the DaysOfWeek value specified in the backup schedule + Scrubbed No recovery point exist with Id := {0} @@ -295,13 +309,16 @@ Please contact Microsoft for further assistant. OperationStatus : {0} - A protection policy with the specified name already exists. + A protection policy with the specified name already exists + Scrubbed - For DaysOfWeek, weekly switch param is required + The DaysOfWeek parameter should be used in conjunction with the –Weekly switch parameter + Scrubbed Protection Policy {0} not found + Scrubbed ParameterSetName = {0} @@ -320,9 +337,11 @@ Please contact Microsoft for further assistant. The protection policy name should contain alphanumeric characters and cannot start with a number + Scrubbed The protection policy name must contain between 3 and 150 characters + Scrubbed Please make sure you have pass right set of parameters @@ -419,45 +438,59 @@ Please contact Microsoft for further assistant. Received WebException, Response: {0}, Status: {1} - For AzureBackupWeeklyRetentionPolicy , DaysOfWeek param is mandatory and can not be empty + For a weekly retention policy, using the DaysOfWeek parameter is mandatory + Scrubbed - Only one AzureBackupWeeklyRetentionPolicy in RetentionPolicies is allowed + Only one weekly retention policy is allowed for a Protection Policy + Scrubbed - For AzureBackupWeeklyRetentionPolicy , valid values of retention are {0} to {1} + The weekly retention value should be between {0} and {1} + Scrubbed - For Weekly Schedule, AzureBackupWeeklyRetentionPolicy in RetentionPolicies param is mandatory + For a weekly backup schedule, setting a weekly retention policy is mandatory + Scrubbed - For weekly scheduletype , ScheduleRunDays param is mandatory and can not be empty. + For a weekly backup schedule, using the DaysOfWeek parameter is mandatory + Scrubbed - For Weekly Schedule, AzureBackupDailyRetentionPolicy in RetentionPolicies param is not allowed + For a weekly backup schedule, setting a daily retention policy is not allowed + Scrubbed - For AzureBackupYearlyRetentionPolicy and RetentionFormat in Weeks, DaysOfMonth param is not allowed + For a yearly retention policy specified in days, using the MonthsOfYear and DaysOfMonth parameters is not allowed + Scrubbed - For AzureBackupYearlyRetentionPolicy and RetentionFormat in Days, DaysOfMonth param is mandatory and can not be empty + For a yearly retention policy specified in days, using the MonthsOfYear and DaysOfMonth parameters is mandatory + Scrubbed - For AzureBackupYearlyRetentionPolicy and RetentionFormat in Weeks, DaysOfWeek param is mandatory and can not be empty + For a yearly retention policy specified in weeks, using the DaysOfWeek and WeekNumber parameters is mandatory + Scrubbed - For AzureBackupYearlyRetentionPolicy and RetentionFormat in Days, DaysOfWeek or WeekNumber params are not allowed + For a yearly retention policy specified in days, using the DaysOfWeek and WeekNumber parameters is not allowed + Scrubbed - Only one AzureBackupYearlyRetentionPolicy in RetentionPolicies is allowed + Only one yearly retention policy is allowed for a Protection Policy + Scrubbed - For AzureBackupYearlyRetentionPolicy and RetentionFormat in days, MonthsOfYear param is mandatory and can not be empty + For a yearly retention policy specified in days, using the MonthsOfYear and DaysOfMonth parameters is mandatory + Scrubbed - For AzureBackupYearlyRetentionPolicy , valid values of retention are {0} to {1} + Yearly retention value should be between {0} and {1} + Scrubbed - For AzureBackupYearlyRetentionPolicy and RetentionFormat in Weeks, WeekNumber param is mandatory and can not be empty + For a yearly retention policy specified in weeks, using the DaysOfWeek and WeekNumber parameters is mandatory + Scrubbed \ No newline at end of file From 7b8c1a27b4176e61ebbac8cc58754232d2e3fec8 Mon Sep 17 00:00:00 2001 From: pragrawa Date: Wed, 19 Aug 2015 21:01:09 +0530 Subject: [PATCH 07/37] Few more scrub policy error messages --- .../Commands.AzureBackup/Properties/Resources.resx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx index b559eeb193c9..aa434e9bcd73 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx @@ -196,7 +196,7 @@ Please contact Microsoft for further assistant. Scrubbed - The daily retention value should be between {0} and {1} + The daily retention value should be between {0} and {1} Scrubbed @@ -204,7 +204,7 @@ Please contact Microsoft for further assistant. Scrubbed - Days of the month in Monthly/Yearly retention is not allowed for weekly backup Schedules + Using the DaysOfMonth parameter in retention policies is not allowed when weekly backup schedules are used Scrubbed From 779c8b6929800204948e0e44af6a1a8566c55d77 Mon Sep 17 00:00:00 2001 From: pragrawa Date: Wed, 19 Aug 2015 21:56:37 +0530 Subject: [PATCH 08/37] Scrub Policy Error Messages --- .../Commands.AzureBackup/Properties/Resources.resx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx index aa434e9bcd73..b6bca7072396 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/Resources.resx @@ -208,10 +208,10 @@ Please contact Microsoft for further assistant. Scrubbed - The DaysOfWeek specified in a weekly retention schedule should be a same as of DaysOfWeek value specified in the backup schedule + The DaysOfWeek specified in a weekly retention schedule should be same as of DaysOfWeek value specified in the backup schedule - The DaysOfWeek specified in a weekly retention schedule should be a same as of DaysOfWeek value specified in the backup schedule + The DaysOfWeek specified in a weekly retention schedule should be same as of DaysOfWeek value specified in the backup schedule Desired Container is not found. Returning with isDiscoveryNeed = true From 75f33a394a12d07107938f2fd452982c035599f8 Mon Sep 17 00:00:00 2001 From: swatimadhukar Date: Thu, 20 Aug 2015 01:20:35 -0700 Subject: [PATCH 09/37] Adding ResourceGroupName in output of Get-AzureRMBackupVault --- .../Microsoft.Azure.Commands.AzureBackup.format.ps1xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml index 2e9d28348932..d61c12629259 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.format.ps1xml @@ -12,6 +12,10 @@ 18 + + + 18 + 18 @@ -27,6 +31,9 @@ Name + + ResourceGroupName + Region From 31457aef6a3defa659ada1e3a42a7e1855a05f5b Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Thu, 20 Aug 2015 20:46:19 +0530 Subject: [PATCH 10/37] Fixing Bug 4265568:[SDKBash2][Powershell] Remove-AzureBackupVault twice returns No Content in exception --- .../Commands.AzureBackup.Test.csproj | 2 +- .../AzureBackupClientAdapter/VaultAdapter.cs | 7 +++++-- .../Cmdlets/Vault/RemoveAzureRMBackupVault.cs | 7 ++++++- .../Commands.AzureBackup/Commands.AzureBackup.csproj | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj index 7fa1ec6467dd..569187754c5a 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj @@ -41,7 +41,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.3-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll + ..\Commands.AzureBackup\Resources\Microsoft.Azure.Management.BackupServicesManagement.dll False diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs index 6c4d36b51dab..7867512414d2 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs @@ -117,9 +117,12 @@ public IEnumerable GetVaultsInResourceGroup(string resourceGro /// /// /// - public void DeleteVault(string resourceGroupName, string vaultName) + public bool DeleteVault(string resourceGroupName, string vaultName) { - AzureBackupVaultClient.Vault.DeleteAsync(resourceGroupName, vaultName, GetCustomRequestHeaders(), CmdletCancellationToken).Wait(); + AzureBackupVaultGetResponse response = AzureBackupVaultClient.Vault.DeleteAsync(resourceGroupName, vaultName, GetCustomRequestHeaders(), CmdletCancellationToken).Result; + + // OneSDK will return only either OK or NoContent + return response.StatusCode == System.Net.HttpStatusCode.OK; } public VaultCredUploadCertResponse UploadCertificate(string resourceGroupName, string resourceName, string certName, VaultCredUploadCertRequest request) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureRMBackupVault.cs index 24fd5cbda339..b0a64c1f1a0f 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureRMBackupVault.cs @@ -12,6 +12,8 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.AzureBackup.Properties; +using System; using System.Management.Automation; namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets @@ -28,7 +30,10 @@ public override void ExecuteCmdlet() { base.ExecuteCmdlet(); - AzureBackupClient.DeleteVault(Vault.ResourceGroupName, Vault.Name); + if (!AzureBackupClient.DeleteVault(Vault.ResourceGroupName, Vault.Name)) + { + throw new Exception(Resources.ResourceNotFoundMessage); + } }); } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj index c6bbbb3be6e6..9562723b6b0a 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -58,7 +58,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.3-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll + Resources\Microsoft.Azure.Management.BackupServicesManagement.dll False From 4c5a47c1ab000ece135b7621e176e6f2f60ff7f7 Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Thu, 20 Aug 2015 20:47:05 +0530 Subject: [PATCH 11/37] Adding hydra DLL. Will take dependency on nuget once hydra and oneSDK PRs get merged. --- ...ure.Management.BackupServicesManagement.dll | Bin 0 -> 237568 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll new file mode 100644 index 0000000000000000000000000000000000000000..8d17f28fd78401e256a95af6fa638924a891299b GIT binary patch literal 237568 zcmeFad6*tYaX@Gg0D?&ju@kN&1TeqPr>c9pXWp5WWc&L(zdy2% z)bmbtRd-c&Pfu0#F(;k#>e|Fwtu_h&fA_mu?Gw22Z>OZ=C$}Pd+QLswt9`Wl>x(`y z;l!^mI^(hfqXXBp;!9f>UNvy>g;!r4UpH{k{(;u@R}UPxdSLGkVPfrtkN^GiZEfGH1&gLkm{O~~9-MV4^sOJm?*aV&Jh`pSkl%swO+W_| z`GX{Y^KWA9f;)-If9`5-3Bup8DED;!K)Ev}^GD(DdlPHD0L}R5#M%*stZ{D#GS&sH z3-`x*1go#xf75lif9LNRxhSjQ+oFNwg4M0j*2Mq_Z{Se`eIu^k-%d2w>el`%V<3{( z8hDnn-r9z@+ar^ow^Fb8BX2=%a_!2!LG7LKgxUmw9)5Ck5Y=n79uzh)MH!Q7gSA>? z?F8Wq_hBta2<{oGbqvm1JGu73ZecZ?)f*%u6Kazhlf%gie|z@6PT{9kn};j^^PaMW z_&*c>hvqbQgS7b*u;2UJcozWa(6K!-Ze)V)nMan=7&U;RR891zG(4}!i6s$Cf*NR*jvfVAF#%#H{>lB#Zf26yQ`z=I&+rS&-g zqWR=Zpb2SW=%ynEyB+ZYjI4fRBWMbLET5L8Y zbgbI0@+1ZNDUukYhv~w7>9NAF9VGVgjl}`e9~p-Fnok1MT!4qYiLO;^_95YbFp8wd z6v2X`Rk)9bk$`Abw zLk+$ON|qtj8w7{Zv}QCCWo}^&wV*=k5#;8i-U`6XcpK8jl=_tDDE{cJ_eR_C15(d2 zQun6Mb5i#PkuUfQ)LY)`#cGaJ)_aGH_3Tny?Y z+6fXA9VEPqci}EQo*X1h2fhN8=$JXu4aF41r5^f}($Mb)eY^+B%y=)-#`OC1Xdi#f zsLzOw#*g8#(PMZY24R?<%8F(i$!Dae@mAY=Mi4>Zp&BH=4Jrr{qP`0@&Adh!hB4mU zJ-8gFm*a6k6H93c3u(*<>h-7lr&C3BE!L=LMsxy@>oYX7FFFx-jYbeQ(i2#@|I+i? zn|aYmKqV)CtjfeZKrD3P<&M zIEH-Ii=y-JsR~DNdH6JiqqsaA<08vJad|j~SHe+T9v&(j#pU5}dWetW6h0As_`PTg z{sqxxXeIWZQRurPrI7fI(YGU|VEBE2zbOoUC;UwT@cS+NO{VetKR9BMQT+Y|f0H@< z{uO_dA^e6X-I0=spmjP7la%cn^h<-_LY)T@U&l*?vCp@5MyRnZUWqdMq~A}BuBO5#UJvGjzNaUmPfY0?J`IB=0X?vJ*^1JX_{~ls&4}OZ zpwdh6o5O~5Rs06sBwA-EeDr;`3N|$d|VXHeu|g0`~^{LyXhbCIVUl?YzLoV5}0S0 zGUDMSQ@F6+Ai4&GhxiQde8ydh%EB{DT?P?Md_2QYW7#u2ZXM`SQj+%!mli3{FvlML z;TgX6|Alf2&)c5=7s@F-Z{yZ+sLHX=8)8%FPZOh-K5yun`R9!QK5x{xs2#tlZD~dP zW@k#7;5U1ebSwO3x01fq5woQ`Y)kv`Jk(tl&m%aC=RJj&5^RugR%2n1yZ{zWV{y3n z5CeL*fwp-YMvCSblN*_|kf6r}$+;*?-$RWh;gVuN?}cr-%V3+DaGwVBE&vK#l?!=E zctc~FMUB~L-qQL~jph+2AI)R!Hd4ougM>9&$anB^3X=0Y2%JwqUX($CMC&~VkQQF# z#n|0NfWx@tr8RM)4RZ-JAx(TD8YLgQBkK~otHkmmPsE}1DiyfcoscS2HC!OE6cZ5t z&>)~k(Q>gn9}4@r1lPsx4vMR~t>6T9v0wV=0G@;NVrnm8>PO8q@5PeGwplg9w9ymL zCAyNhZAOa;(OO$kxQ8Pwv@T?gOHqvmGzu;v7<8PgWInk1LEgRfSOs zKTb&L5GPdCJcu${ACZEHr(r_Ih%>>c!4h)QZM-le5xp=Yo0PrF^;8T2Cd{}Wc|qb* z8$N_-nS~k2ri2-ZhA<;97B6B0696$-Pd>~@N(nPE%Y+#%HzYD)MuIfV$X~WsKgp<` z3o}YqUwR2KvZ1Rg%=i@EQO$*LtD19}^dsRgrC~-bf@w5L{SG4m`wC_?xiBNa6=6n~ zrC~-HQ2a3C`K)8T7Voq#_O_{x7=D;>S$&y?8JE|WYnX8#!i*fLgK&9z6|ZAwBdsqF zBD_oxc4{nqWG>$OLBh<&@}R!L#2Hs8dcRPkv?lqeFVEtPm$I--ljU(nI5@TD161Lg zVG7Df?~l!lGwR4G+Qh4=2b_$Ri>+}+)v}1~#Tlb|q;bZT^_3cD+=n=$ioG(0e{98G z8APZ;#a;qyGDw)&SQ*p@O`vg5(T&(EHPE=y1R95ea41#5%jIBRv{U5>65hqTaFqYObpT#YoY4p(cWakWMoSI5VrR=iK8xP+xNhJ*SV6KPzd z^-c+=fObkL?G&Z$1#NG<#L_OwXs3o#K|8gScB;}&1MReUp{3oC(M}JigLZl;?R2G` z0oobyGNFZ@FV1KY<_B$9N*gL|9cr$}(}lLXbs!^cgbk23N=X|^+6U6UI5ecA8EJpm z57Pcp(tahK3DTKyLpesjxtTqQ-SZQ_{oU^#T^KI3Hg+Ri&sa5kdl&F-VNZIP&lG!i z3xNUCD`thWQ0J`nI{V;KXq~e=!`U%RPZ^+u+$m~KI0xi&O3CLa`P|NMuF;dJ-6?Bc zI1l9WO3CLb`4OGr5k^;r+$n5+I3MKmOUdUe`GU@Hfz=nJccYn|3@CqT5HFhy;7w!T z(U#LLrvo_HSrs$LFM}T<4S1Q=9?ql68^p8*QF-sr2P|UPUq(cEFNBLCgd{N^FiYkG zyo`ZpOez?}e87v*nyBheVKX4|SeuMMAOWWb2#9V4ri9tKW@R3oZ2GuZvvMtR4`a>B zhaqZnJI3zj7A6~+tU)4%4<@v%i(9g0<@&bVHW&9Mpx_;OGcO5m`1rA?%dLx>Em$E= z-o<6@)}d7wmo-|5ICQZXL@7Q0jM-F{Q@r!f#-u8jTEENp&sdN6XGDX4 z#*4*^_zV$%frRzs{WDUEf5t51pIL55Wc)LNBKp`Vf7wPV_-B&Um!`zXp1Ugltcxzi z7A6~+tUYvH;;rVBYL-+>TS>|Ny3XvOGy>Z=K z!(c2!G)_4ohVQzSuMpt~#1$eh<8=(H&t!#&45!%&5$5GrhzNFnO5&0gA}?WCnU2dn zw>M+tEvyjnhaB4RIz&(yhL7sE(Y_Wohn9<@J=1Kmy&~oX~_x^UtEd@$4%=H`rRnacihHbA#x`x znk`Khgfr5+c&n0Qg$U;SycHruJ;(|XDJ@|k`4u8ktWi<*3Xxk`dF~bC+M9Wq-^LsI zZMO-5rzP`h8tKK8S?Cvss2i>j(QZ(s47>o)3lB#|T_JKinbj2{!gpVKhpyCD@3SAnuM&FcAn_f znuNI(BGNTIOy2tzp{x)QT}y{6tPpV-ZiR?lAMz;dJFX9T0EQ1tHuk5Pi3sL*< zz6>WwwBA<$(t4uZK71|Uc+d0V*@ps6NHd;&Sc&DCSj3^pBNaINP)HRTB$Tm0VkstM z)}2S;*@r&V*?d0K*@r%~6gNny+X_z3D&s_TU!+jm@d1<-BusO*BLSthBiZw9M!(F#HH3IEVUhp2HTMrix<)2BLIUF>#49EnPqH8%MFQ)?MRT?j{IdC zuwXk%R$uyi#7OKj{ETczErMxu8(-hUvW%H_8b)nL<%Adqw;ibo+KzALb?hFbTwRR$VzDK3bushuwxeM8rz9@19beC~G94eX z?dT6sv?X--pfH*3ST42Nj-J#9wH;OJ-t?{HRHcUPST|C0cn%WgX1n3mX%zPJ<*wxiY|^oM6VzJ(RdmL{X^_=mhz$zeNU9e`&$67?Xq zqm-7gki6|E#Tpe=+m3H!<+&GJS`P$M_*Bgs2kdj+6}6dah=$X zha;ofj=xW4)piuV`_exU_6aZ8jsgh-nZF~qHF1J1>4bOwA+q@un%cFJ_aMow;lfqFxrmY zu*)pm+Kxv8#{Zt}$YCvKJ6;CldB%3+=tV%h#d3RebZM@u)nm+;xp3nF4lJKV5!X!@K!X)R`dQ=OO+*$}Z z2@-N>A!=cgD}@A!*86rqT9YTYMIhe?IIIC)JPT8x32DZ&Fe|Y)o1khs)Zj-?hR(O_ZnV)4YnBmko;>#49XnPn_Y%MFQ) zg-MWFnEYiMuwY?IR$ux-VkGtnud*(kMcV9AX1u<{l=_NGm?3EGg7eoQxcb$k$=px zGDRM;8R?HgG%IwBpfH&kSuVAjk)G5CH6vB(-t^DNsY(qq5({^|5G3>RW~5*nsmshr zmAhOF<~cKxckwQ|P#+=(3DXiY(ifNF!Hm>8g#Pf%$d9q2+0tY*BR|etl^kXy)`5Cv zBvB7yMoMW33(1?2Qmj!?wHf(gR-Sw7xb|jVW=8UcX5^m;fv2T{8R;wP5OqT{QoBKw zGSrMb92wP&{8KWkW~A`lmwrUpC%j-r3P{XIqM*<7LNk)rax;=SIWv-VcxI$il{F*F zJ0$TkGm8DA28s?L9 zM;hnLJ8I{F4!i%u(N$(o8tJenjfB{fMoR8UBW*3Z0D}wmq78E|+8y|v+lz+R#83qF z48<=)7TAvN#MSLZ>yUFAgh$nC$Uy?gL5hrjOt3$Ly>yegw?%m(|H}QbmI=$fZHpZ5pF{0I@_9-B zLeeiFjj*?&tt|#9!&)N)=^z6MAp6aw^E2P{F+9uB;%Cp|cLpsPqLdZi(%0t>ro(<2XJjXkR?A{$N9m9}_=gHf< z!#h0i1srr}4~KVygZ4BN86PbEVl5MW-^1sfS0?&1>xG-?;qcDGF}z_2@o;!Icuo+# z91jy7?9sb$jV^>>7^D2n72~Xa(ydG~0{OgZh>NKC7`NNd6jHZ>$g3b1w$U zl0`YNRpcS<#1*SuPy!z3zUG6FrFjE-K$E6h^GYP*Ykmbq7+-TkxM8?3U-8wpTzYl( z#FekL=fY*PxnFO~-CD?v{|hSMn*=qFya#+jSW*c*{*{+`Pg!O>2@A&Zyx&+>gOn6^ zv>`uTjoj0Qd{>8+3|#8wlZU`6OptH#lJJJM2SvG0xYg5SHr6-l{u83*on@-tI>J_eSP>_eUV>_ba&RofMu ztb*=z0gqRXwnmXc-RHl9R6)Wt=ROnQyU*07Ebd{kzWYo>&wXY#73mrU!<*TB@onS< ziA$|pyaIi~p7FwZWN{DC;6C$W@x*;508bn1$-B>_gw3s4#(lQjkjS{t1gZPXU$z0C zL<4%8FC?ok{d;0$V^!I~Bv0UhX+B*?@+%}9mvl{!QZkKhgLHOYM!_sS=QR^t;WfJ~ z^_u08@xA76u#WY7s(hv6eSw8LS{*TbuldOOk-Fz%Q+<=$bHNcg2sfpV@H+Nor1ecf zgvS+LRAbE}C&PaZ5@t3w1@+Bl&&6g%?@vjM(wgL>zA4*t@eeGlFa1YeMllrjr2oX9 zLBflI-MDGT)A=0u1sjXWi70ElJL6ZVkZzpCQ)dU^;U%@s)|u%0{y5D1=#`*S(%cyR zTQ^1v?KK5j=2y}B<2&3r!)$M7>*XkW7wu%@|{RPh(Q8JDhYc6g?rnANN|>tMLo3-KH*_ z=JWIrR!y%lFNfhq*fdRqRntwoYPzfSEr`%vqGI8|ypQDV0;Aoq+L+wVD>38Okhv|w z>)dcl{94{}seafIJ%Hb_VR4IN@jH1Iw>TEJI2L~f7O^uxdQkpd{X4H8#M?| zE)bY57k0Kb;?{2kQpJ;T(!sqcit|(`HGtsMGJ=U9h+aoAlo7wgUpqcV=3(KOVWq3H zbsbqTy{bqNWAf8J0wdREU9r&}cC~(=bf#TO>Ed-BvDhinjT#(D+(Smjq#8jlZJ;T& zuqT}IEE*{6Zv7d#tx}BEzs6(tWzv;6qBMFz{cTeBs#?R|*3-Bxmw{!(Pb2Z#0R%nW z;}XC;EpO?3UlLWpdCpp75OXZ1A*Z56mZBEy*O10|VS z|9CI8kN5OiI4zuh@aOv*`G=?M`3|SHaJ1ny*hW&`X=CA}qASg)V4UcsT`8=EGs5uM zbfu}sV5sO=|yak zhT*c&dP!OTC3%eaPRG62ShYsTeCKt-P+DZm^XeKRt#J7E7-3b zwieXF`Qd_RGi)_<*qT4C$}5Jgh3IlJY%NskaAEndB@bNbu(hy!*m4AiGi)LFob`!Q z5YRTy@BoJ`w#k6ua-e+JB6++XedN%FEkR%HbwlsH2}iQ{-ptVB-)EQGW_sYZ_z!ry zxE3x77vFnBX%F01*#oz^9=I**fdj2EO1r44MTHaW8OwC#jkim}0Ud9bD0R6QB(557 zmsW_L(Ugw2%S>A>50{3^&3L<9$J=FXWyG`5@LGLAoH^oqmtEs*v3QgT<L4B_|WMi+EYc#i8582qAJ7i;D5bjI=nYH_~4qiWCUba$#H(V+4FbPIE z1EoI`0f;v3dVuoQAYQf}fH#e`*r%Swv$#*4%Cs+UdfB2}yCNWu%9ij^<-s^p+Pd~I z&aGX?ed^NZM780%=$*_o`_#RRwb8qTY7qO>-#kGcl^gM_G|~1S!gV38{Np3E1ZxD= z;CdRaKKzT_3jaB-KK#rnwb~Zo-;b*gpN{!7ma`pKAHD#Qri%f;4Obt2+;lDHc3gdU z?+k_S!_|lX74BL7FAMPd5ELgre~qh;e;*ckv)-TL>cc;YNp9l*3|AjMhUhclAH&s$ zZvsFm50-Nd6_N4p1EDb~oOB3Ns2^tcD%tY& zLll87%>XYBPbp5JKHiqgxjs8d`lI$-H!G>rj86as&+m_UNqA!`%C>xU)H`&JkvRD| zM)GFo4_R-Jke>`9Gm7NFLUstwzh;mi(R%*{kk%*g)+!tc@Dso>M)Ts$C<-(oP05TR zbtE&2l~~>s8*%s&kP03Hb2=+0qzVlZ%2*(=6mCY*qwr=FeW;ry^r3D>(TA4es%|Sd zaWjfuIYC0*7b!*u*t7o~IYGiSH={^^Kch%(%8Vk5^=A}`=*=iHn~HReGMgc3^ogGI zN#q5IOYKbI3S` zti#w}PU&-?^dQmdh~dvDa_8oeP`P|HViSJI$09gD1z}hEb6&@OfVAEfu*<;QnDWSp z6KQQQuhA9Q&p}|-u3-14B*rHw@KVHtVpley_#Z4Q(_g!>iKt(#d9O7#{V|8jF?B?s z44JW6F6;=Z%?axnn?3a&H8yz^z;+dOmhc;dQ_^3OK^1mN5aD?cVb90QCrFsrm=f5} zK!m-DZG@eow&oOLYfcUD4G9&uTny$#JEl$Gb+F|NIt zml>73p;7rW5~xurKNC%g6BppU>c- z`wjko(t}GTlE(q#e~hly{^2v5vwto_-U?&?aA=_Y!*{U$^CY){ojZPXh&A>36&&ykR$BQJ32Tj$TrKiP|^B$=f%q z-P$f{->^mtQETQm86-%wmR|uebY1zuijLbgcCht4U5Iy1$`bta7uEyWEIs-W(Le8 z7M5wUd?OKJaK%$-{n3SQHXRKpO=iiIi>;Q7C$?wF++M$3Etxy&cet>bihW1g>%_hz zU`J807r?c~7fLAh9YOtNCT#XHMK@yKp{C3o#+11;2=7c)@Nzkr7wtr+M$z~<1Mbw6 z!3rBFi>W<@7Jb{ELhH**`C!Uu9YS9;WnNx?xtcO})$hs$$nFlpyVEJGXtuOj5Z;we z<*l~(T|tD=Sw&xhC_|7CS8bWQ!@Jd%xm#_SyKR6>ic45ZK7>&aPxLi)h|1w9wAv9Wwb73_ z3O-4Lx(`*z#w&yHm1!5b9sLGo`IPa#v|IQmT=x=j0FzT_1#}7rJEEXAUbvTt*Zf{0 zc8pIUnp7M87D`5Vgi7g*{}wlfZroF7N&b>L$aAOA-pkp+<_5sSd+jN-2z$yYvD%7dj7}?Zxt; z$y)CeS@Ni~rKivu+UykCUbqUKmX>P`mA3R0TGHME#f08b!mpAk-i_g_qy-!G8WxIm zp}dE<`Z4+d+Aplj?z36Z2XXT*g5y7Cv(`X!Gk%Co_c<&ax!D?cjqp`8@mXCLkWi%@ zAPdECrJ*udde$u|_M_lN8-oiigE(8ZH|_z0VPEti6dZrJjhAm90x#?xYqJ(EJv|r9 zjJ%C~eiRQ&M`I=q{GAzNk^(KQK+aH991?F*}@zMKBno z*xmYNNu(B7dM+*tL^q!k{RuTb7qoL@3|63}B&TMQl%9%9Nxn0clDre_H;#ZLN5q&k zfh6-}A*5DZdL%As4@f`XNZJMA5jYh0EkZkACJB`m#|Ps$-GyzVjx^`O>gF7%p}2J@ zE*y9^%^A*@DM#gHQMd@aENbJ$v?h$a4t(fjLAW?xD{?H7`AMb4p~s+I(nd?=FHz+$ z4Ht(?W0)9hxJ5EmskF<&WuRTwPMhlq%lxNFdctxPxIBh|%+_R+a3!P`xguPFB3HB( zIRe89%{fd_A~Z=9KPaN;RJqcw3|E47WgD#w0V~^@BpU(-F?BCXExjRN&}aJD3;`>= zJ~I>!fx)461~~)_wK13t0jtQM^qE!9s?V(O`pj@R3|@xYc=7wpYAk73ZTifx*Jsv* zYe2iEjh208jrN(f;p%X$?K8t(pIH~K1MRwY+FYMm=c`}(%z6~K-tRM9@~G{OsZtcV zp{>Y~I}!G%jlLfprLhrxW@G$^(q}fvLL;R;GCUHrN4C*&Fyk^w9n6mO*&(>GDcl%t zivLKTi4C$iM+@8>ZbpHd+X@_6EMv-QGSdWcGk&))vso6qDD9ST3uw2r(>~7Uq!w-| zc9G_r2sUrBk=p20d_1{Tcm%jo`;uZnO)R_tgM+rn+AVq04kY`SgQbVr3-!=vKM z<>>@17f~wh_Ha9Bx0ljxk3Pb2dIxBC#8>K*?Y%BX&ib7kxqh%WW-Z(xt9P`*o#9SY zxU;Rok>`sp2Py3?=yF&5KGEe)SvRA!yTjd}-Q7kjgTd~iB8RfUU{4LjEl0`TV6ew; z{%127?37h8%HZB`FBsfg&fwl^2KSLcuHkv;3+2Y#~*t}y$}p?ak(;h zMtBAoJfn?4e>{CYqp^~fDf#tEenV$?L-qk0A$K33xiP#EBp_b%r-teIZQe0-5pY ze3Mi~L5Y{m!SbeY3l{cewkBs`8RxVr<}9qlJ?$)P9#w+JCYnQ3-n(hoxs8PLuo4WF zkZ_npe@5oa!agtKmgwX1{u`|A`lzn!+kzkxrnzgkRIy%waLO5%JsXE-_E&G|*ncXR$p=DQhY$29jRL7vKN5vIA>JFvQsw>r(e zT&KASh&~NWUERld?w`$*xq3YxWg0uRIUfac@*)iKc~GdVt49Bj^HHGh+R&Wloq#v# z{Wfo9!tYzlkts6I9qOaN*d=$s6%IMrN=zkGyKCEg2C3^sAn9 z7KFi6%WPf}-WZ9>k4zz2e!8EHU?=yfV0;tVhsbh9D%;{vkwyh*TX$p%^ki^wj1Yd~ z8_GyqUjoC01&(u=8zj7VO9BKcG$l&{*ga%{V$V=N&#Lho~#rg z0M8Ta$*&Y3rK}WSmRTuaxgn8RDL{~}6yPu0fQ6L;lGT?UL5#!>UsWpwevSvc`9=)n z%?FrpnK*|kJv&8<&0}4;TMT^kb+F5@zNPP!aV0l++~$sLW?! zedz*T^Z=EG{23&?_}~G81uCbd1PKAUJ;@(Qp*aq9@*?2AH)6>oVi75~ai}m9n*v5Y zB2hVv);*YSm6AB6Xim-OGzXxRjN)F|o#p_P0v3mF56fqcFAABzvs~QGw}qTs(cAvg z;6$IleQ%LDAz^B*tNY-4_r8_iEM9gzLZ=*mVvgr%uiv~{@a7bxP~I>IA@@A zm@`lc1Te1sP5U`L;I(R*85w|OYxwCj{BRD?p2^~?k7QK`p>*La7C8tdJ3z(plhKK< zZM%~gA9@f4NXtPe?l_$?cGsxABAx1G(y90iHl~1Dwk1w6 zZ8k-G_)=BHETioplqur4k3&#{s!NZ&$@ePJ?Atsp5xKXm*^3sDgHX(IEp4@tuIeBZ z9&uFANQUk|=Gj3g(`w<=aN5D2^umz>WluVeiP?=Pr9HrqO1jeYanMVj`Wf)) z!Wqw|EA?tunrZ42r4YhOR|-v63d_5aD8IBTh2>qz5gbledaI{Y?;w;qx{@4( z;*M+4gHQ@xgyiELgi?n7F0V?gT(P~k5!Q8MzBzlPO{-EDiK{l|b1hd@g+f!hF~8r8 zg)_rGtkHNi2l8;HZp`m*+n7I7H|F<0>y7yh-I#9K8}n!B#{9Wv7^vWximhOS)Xeu(beP zPKK=oX4qO#K5S)Ww7mfrln+~u;Bbbmw|ftUcM!@#4qKQV#9|_~trnVtPzu8W$;Ueg zr3`(w*9{+V-Eg429i?=lmmY+&s1^={i=LZ1`!d1#8u-hPev%yR7O)e-Yzxc?XqwQ);sBVyG+O1rETNwG97Q1KI`#zv5vRq z(3g_&R;1nNsmdE~mqS%D-Yy?cRV1z&Z&y^PDx)bKZ=+hcB8;A!@pie6x8^99@z|*t zZ&x0SrgXf;g0Pk0;BzzHF4ysPr8YuU8&-_BLlx{3y>z_AO0l7E)w3CI7wULBWcV$A zSSrTbVRSheZ-}WwedAx>9T$f^o)M#>^NP$sK4S0TUCq;qUeXO(Y=nHoTnU z2a%K`T}e(g)P$2w5bM)W)B7;%5hTpapKK!NCe&1RvWW^_E(i0XonQ<_2MOXS{Duy%iP!0QLh%QkNCh8s7Q3V~Bz-DpykhZ%;U z2{UWr=1-?x9gO+!Zqea;7{P?i?7=xICFS2j(nhn(1OMV=X^f zf#+$^odfd%%=K-8Z1>^n&wB=#_gn+`I$VAD2fG#iFs?p)2j-Qx0RJXjefa<2p5?44 z%rAE$+IBJEmlx)j*JECp!{g`iNId3h@J1<0Vo%NoKtB-#t=I(xg(eP5tp<$4gKZc^dfCkiUkFovej!YC_rkEWAGsV2snPPMco&!Tb`$ul1IN|{lDj+As0(&#!%C~b?;r?!@I>@;!^A99cYa*!h9e;4`x ze6c;yxU7EhXfBxknBKN zc$aW3K}Xn8T$-`7Ete|??DC4;ZMg@$+&yi%ce-3%(y$LGFhY*zCE<->Be$f1N4v~H zuMxETk_Iwwmn)F5AR)sRvO^%dJP6qf60&V^$WoAyRfPnJGP50!))VbZ8jb-RgB&j{ z3@v64zd#ex#A9gS80>b$Xucl4rKwg~(ol)ztqLFxM^UNZv3vyz)g~*DSPHkKK`Jxl zxC0J+s9UDsL*0@FA6km5+OFW_tZZq7SB~nwg5u6{3bsv=VswE0;aKDZ3Devn2m<28 zK$!V-V7s*}f*>RQA_yXSiy)Xy)w^bNiy)3eUXZxdE^ffwdUjj_+gTPt5DkkUc(HhJ zjCxW6@Wip6{2~Za$|4A6nMDwm8xomC5CrKW2>!B7URVSnS$*m8#K;DUszne_VqmQN z?5Y;QG`bz^+w~6$W;MC>4+K}Ne{fl_!SS@o6Nw?XBgUYNC6;4*S;u<$?P;G6QIKeL z#PHWYbm3s8BSFyU#+Onz;fEae#Bq_IU40&}V@Dz7XIJrdfm7Q1h<AbwgHgLlH&2FDZ!i-VOh*+8leyyMQmZTONxc=)8CRUgJsm}< zd+WXK+$WW~H$9!4s?_-GD&E^7b%KFDNSK%Z?5bcJsmngQs&bc$!MtcE7!iYycj}3s zNDdOFC7)gO#ie*SEJ5oK`rRna_qlo8(>{tiqdp^d?o$|qVR{-Xnk`MnW1!C9txAs1 zuA)lSqY&%D?v(2SV;b}t5U2{QT1n6Ph#c%%gbwT=4CE7 zZ|HKLECimG>`Si~J*e0tAkcd$t_U@)A6jU_y+!~5*2Q>6 z1=gZhn78P`wTHXxTY{^$rE8kEHZghcFU6k3rP!it>2QV5uDT5Gv#Z&eSl3O)`Js3o zSHd8JZzX@|q_rU!iu~^C=^or<*Io)3|9ie52evj}5W}bVf_!_?7o=%KUyue7eL)Vo z;tSIH5nqrmR`CV-WLjTP22J>a6a>B?Z`Bt>`Sb+|aK0dzly$=#2#js|d>|Z#ZF(0- zo0miW=6)s@FgX{A45BYUS=F}b*=@PYU@uwQ^xU@G177Y6+j8&pa?fkaoj=W$%-pye zudh67Tgp)4scm>yI6O6i&qsL}7B1i=;f);+-o`!<=%)}fBbaD;BbZvU<}5W3B-D(B zs1baQ2caH*263M7`onZ+K3x6;>#I#bt&I!jxu~&|^ zMg@g4i*pogts;e*#TOwbNSNl#VglmDXw0Hn%wm1Bn24TP%xtROHKQ|&FGgOFxYU}v zrDieFU>5UY@x&}903D3=RG7ugGG?*mhD63JCP>X<{<2M8FpDLtFMTmF5<5nXYZgC7 zdk#mD)S5VETgD?@8>~ezjc$WBty!#KR+BS}39c}UU6z`~@{Ias@rzi8F^iq{)hyQP zh;eYUnBvkbj(HtB6DiH&4HODy@#e|2449WUiv_zsC2@&ayq{(DrI+xctAa1(&miH& z2VX|8K+URP0_^lKf49Ex#u|>QGGzKIZ-a!jwd*e@2MJT(uAc_Qz+CmkbuFUgrjXrihdoGU z#(R-A#y9S-VQsUe#{I4n@etra_%J2}KZR%Vay&ePxaS|??}jn^6o%N>d2q=@@_E4c z-?QyGI_GTrTY!h5T5Nm11ZdmS(xGinJCC+K-yCAw)2I{Mp4Nfb_B7$}qcdg4vqrwW z0$}7*AQ<_)RU;pf6dL&i_(nc${5MaR{gBujI2k==n#PaMu z;&8B*3Y=jqqzVlZ%2*(=6wWaAC_Ka1hdN`|hdRU9hnC{1ZYwyMI^71-r5rV7Ujoj9 zgsE@JYTipFk8QJRMvzDw{iUvU9GWnzCLI7;Oo-MRM&TZgu+X}2B5GX9SJNUScv_{9 ztgtUt6?PBkOku=1q{9BXs<5*iXT+&0j8epl`3BXPHv0%SPl;+C1VgQl2v@{Y+kL(- z7|}||O}BX*f%n!ENVGi9_GeSDce$SGZ2w!47bGsVHob5AlT8VU6AiXMFBVU1e*z!| z>&e^xq?C|2vyAO;xgn9U{RvXrpTBIcF4+E()tBBzjBMztvi+aJcw2dbuol5IcY?5j zSxwINC%D4)cUfxt%Yd@k3yI&tI*je_w6C_mR!0oq_TNz7pds;%^^NWXVUE;6xG}w( z*Rku6);9*xX0f6g!;gF!k)joAspx3jQJljXMa zTd2neXgj|duR$5<{jr&Q5On0EG@0#OF1Fgvp4gu4%rD4GOnh^FvpYdp#onC0f}E<@ zn*+)L;}K$ivx{Ogv#~j-H_ZvcO+`0iZ`Kop@tyfzM7bJUf^bW!f|tv|ylAJ6BtgPE zHJ zgj>^B@>WIP8c@M1`ag71bmFSvjMLdPD!xsl;@fOgT#8FrN@HtKKgygSe3X`JbhK4Z z5Z;&~)CkXG96NG;R(-g!#tK${E8Fu2#mCiQFcvMfPp1IP6!%@59 z&yke0Z^&p%PY|XiL7O{4_%oLFGZ}5^3BrbUO7szkXbuqmw59!*jJEUyVM9Arj~AK- zo~OlsVQHt#u=19kAWT|(4tcs9p46BD+8Lu?;?w*|TfmyEfYM`xO#z`6P)7lEE#Tv} zfRnNUN{{(9+&5I?eJG$W{+OkWGuqNqc@1s9((0kS*lDe;^?eu`+R~+`@)}w_ix&s* zcHjWs?UwfbtlrWCcn$3wt#>YH=f*oN?XRDkixa82M($jJc=@KPf3eu(a z5F-p}K~ArIHVJhJ)FmPg1)(^r`g7 zTSGpi3zGMk2~z@x;p_5xi-v#-UG{b~$~>SCdsSrw`>-Wn&R}RC(W< z)*veH{b0lz&NRyVOWxu*=Jv1HUS<`qm$5qfYi862cfA;IGYrsw3af4cUIZV(dDIK} zKENO0UC?$n@_1GgEHe2c{IkG)2@2Te!A*AU0AT#@#VBY+PK>^cItTTPqRW7cz?{S= zXsj|uL8p^33cAybQP4q?7zIsTiBa&4j)=tHpqx|;Q$!>v6(SP6)rbU4KSm@7h`tI; zS<1R*=Pu~>i3k(6HCf!S2O zYepA$_I}oIC z2mZ26UWhwLR$uxD#7OKIRTX#m8J@c)K4eyFW)qKensv@mi(uM*9+Bp;u3Yee;ELdb z%UUMu@#I0>>;)fw541M;;F>^#4_X~D{NO|RdOXU^iN|;II`%50oOp!uE>k!<@yNXV z#G_#Mrz9?!ctkXTBiCDa(TT^m@@J6n;)DN?V1b&6M*{4`BY&HT$NadNpLk>~xrs-q zJy9L-cl*SnC>Nt><;3ILK<2tbdGJIQ6y_%$y+K;$pmc0xZCUW7yxBB(;x(HWJSksL zsLj@!{t-FVX2ZneHq&f6@yNXV#G_!FW-FU`RJqH=U|zHnN<)ti65eU-crza z$*fL13g3O{yM%qh3lon5ItA@0C>XPe$?yrU`5*(w?g4`#cD`)eLl}j1coUCKRo2`u z@0G;M%zfSzCmyLs8vCr67QE=y8vD6bh3ua`ChvV)Use^0uBF2jCLUden|QSIjvs?f z&w0lf&(0v;A^f9F&w0n6Pp;M8G=+zO;2lwHa%@U z+Vp&Jh)qw!S8RG(2>8*Fa#Y2S&XoPm&O6E*09HQbftAl&weq*Cl}~`1ceJ~I+&(ji z#Qi_msfSVGeLxP9_e=T#Nk1s*A0v%!x7%#8{XYnKhoku7Z%0qZ#FVty|3hNz{~Ad^;RH*~rK;AR`Nbj4XvRvK-3Dk~+{%EGv`slxHMsm-Hjy-|lsq))8IA zq4y@sq~Dg4d7drzP`bAK7`O#q>7Psb8A(5jG`iasWn^Rf;msV5o@QiY8IX;IKsJ^_*;o$Sk0r7FSXL(M>Cbih z-C~*acdH?yFsU|J*sDfhwpZ=e5U~WvGOMvINInM+@sXAthqzXt0orDY0j+rxlTjvD zBcU;zd;w({=NunuDLUtW*_KP!G`CjZuYrP><(GL$c*D0Oi^|ptaI-%w-5$ZoJH4#k zI;-mRvPKJG{3=Mk=t0oQ0Qph|2@I0zZK1q-&;o3 z#i6al^87X8aO9K<9s_gw0a_tdsA{-CVkw+M>rr?Ptq*lhstM!I@2`?l{8eTdf7NnBBIBhYD)$_#m zT)lnueL7Embp2>IPp)Dgo&G&JRk1PD@3vxpatg&}CXU;vA7kdpk5P0Z_R%^|ezch< zKQ;)DO;zx6Ihe;+FYHhBL*A*c_qSvrVQS~e(YNh9xi2r}!#ugxA@txk=jI((KThY# zkFOt}n_E^zBOa2n#s-JfPKGt+B>cQnWy&R7V z-X&68!crQ?2lW%pJo$-QuF=u)I!}IlZl3(4AUrAk25Zl~iCl{_FZ1(wLqG2!A@I~> z-e4p9x?w>CW4@*iQ8}C^*N#xBjSr*n;IM>joE(HFr{5&EqnBfzM;Y%+za{(=u8tlD zFqtP8kT`loL2bOy(c?Am=&@rwzYF4yUWJn3;87`^@c~XJDZYe!WR|kGYgKPoJ2{Uz zsf}I=im9F5@s*_PYE234)aImc5+<=rs(lI(I#@Q7yiezxA`|R57meS{;RJhQa&7bv zP-3H_JKm2gPB4B5U`}-}%xWl|CZ{rr)8xNT-bg!~(Uwk=lNM9X-8y63gGtODoiRon zNekGO6;L`?ZVH&91<1#CwSd>!0-l!@PG0v6)5TlKxa36Z03Q5`yU{%Tu_o5(Gl zIyXAVKE8{o^Z1RH_Tr3#(phuT;^fLO`a9HnWkaXUzm4DV>!bv>5N!A!S_&g4KP{7^ z+pG!L2v4y_L>KU2`^w~KSL>dv($blBRtiTaY{Y-hqNO_wZ8m-3x=Sz>*TA%CU;Gcu z?Z=OQ#1EZ^oY@^;493EKoT&Owtj}j~_|I|n_rbYyDk+_hCwJ%;vy4h+cZah_MI#r9 zM!H%LX3~|;$&()J+d27eOvzthDBV}1OK0Q_rJa%Q#`kc~Gn9Xm)mb_pZz%12d^e`! zF^7Rp+|_cOr*t;nP}MWg%HRO#&Wy5jE}oP)@pXw( zF6|DN>SOafL++lM(rI;)FR;_ETKzmz8i^cAsU0X`KRv+edpj{V_TG}^cwD^b)XxEq0u2D&H7ihz~W&E9l4?RDkeoN2ni?jsIC2=+tcd8|Ejxz2W6l zH~5{J4SxQ3H1g_08!+uF_~L9q$EI)-gxJ(B1O}E(s({U%_<*fl55hNo%dH1#hE0$+ zOUau`zNHi2unk3h#sF~ZK}Nz6kdKs-k0|-pPJFqxA>_1koQ-7z#O08*!`L*#28>NJ5F@c^x{MN=re%ysGy)$zsW^CuL{n>s zMDtc7(R;xW)|(IzeIJUn@qNJI=JDdiv;>-vrX;3CEv%<+Scw(i z4`IB>4iPOu3+-!yLqczhp`Zm4%a;pmc@$n?%ZIvPl@E1+EgxEns|v2*Q5$BK!yRE9Q`HhS-;v7<8SnpDj{zGoOs$R> zehibFUNC9c)8M8TIsR&2Ff-*_DF`>G|IX{!KOwDS)5|`-XJ$6mJ~9Vy;viwB+4O=E zCWK8z?-y#6rZG(HdSNbJD?egknI;c8hUveD7}3(V1f|JhnB`(?4AT?ai(zi5Z_yYg zH^Sg$+%vo{m}SHsNuMI8D)vagu%C*(7)DNzFtafd)Uj0sq1<`cA0y~S>=BJ&j+hvx zY^PDd%jIBRv=a=V=pf;p#xVbtEF?^A3=@6Z#xQ+(DIa2(T8GdVW0*(PkJ1?C_WJf* z3{&=>Jjse?8_~C?c=1}%w+GQNR`eATwIi;^Ffj|KG0Ytr!`xx_`bcpJOW|?dJ53C8 zr%-!=V@kg^`XZ9+UY}QyHv}SG+@~~%No^E^m>T#2t&9AW1~Cn7Zm*Aq zen9JDKc(?YLpw!XI*DJJ;16hB^rtj*X=tZv3`YZ&8vbFuS^TFoU`g82y*?TMLIExU zR2sEp0f?K1!nhX!lJKPo0ihHZ11b$e8WD0Eel!RKS{DT>-S9(N#5==&FQBkj0ty?$ zy&6!MSwk4R5C)nl9M6hAh(7f$KMb^2qYNzebBHpmwH`?$+)HPe@GcaLDka1U23;Je zG>Qp|kq^Sdqytvuv3VgfESs}U9B2->l|axO69}5^1%l>=a}g1k+x9@R+s@TM(7bR? zIL`)xW_y94Bf=v2I%U~Jb^;X4jSV5Fvk2CCL$(zYa0-w^5a}@ zN1TiCuYV}S#qI;%7zUx9Lj3EkDEBnHjQ_I${{`Or=OFK7#D#49i}k(_xZi-4ezOM$ zSpMD(82@{5F<6QFpMDAhi!}>7{vgQMb1vc+v zg7`$O`7$ID7W+BMLSNvUgUf3R`>=k|mbQ#v)0R;^o5r?jcRNx|FLaNXpp^OC*OW`779)%YX^Pw)v!?dO2{RgiQPt>UUZ(3&4I2;e&*!A5;^7A3R|-vH*D=><=i%?e%H zx!}ofkQXE_wLuX-c*1%lctSJ;Pk6C-5T!4qbg;ECmiL?(DbkOoiq z%eHeNcp_PS>2HaVJwT zRr+t%VS*=4`x-pa>WJY7Ps;ZyaqQw=rAZTU9s4QnxK{~p0onDTXNNN{zgJ1H`%@B^ z>{WW2WoC*jkDbU?pV#2!;m!{C2P=BgI+ReDEOt^ZwZ=|7slC`q`Bop5x;O1`Qe&&n z@kZ(dgK>~BFTd4Cu#MDZTYXgSaxs_}?L?nI(LusH4W0Z>bj8$$PSCSQx@q$VW4^c) z51|vSL+Fd4lks=?Os1%_rOCL{KH3ecl!0kvDC2Ns)LlLSnbloB z!gpUfQP?NEu**k45;!3WYU7206JGPSEC;*+gCPc~-Q~kNyj?y{Rn{&o?~ugH>{8wo zcll6{_LW0ZQ}k-B(%dc|>6+%{L`>fMMyc%b5namwQ`qI>GTbg7e3$D)C?5~OY}kf8 zJN)Y~nqcn9AK~8sjAw`cw+A=bwI#64_}{Y`Ik4sS`CJC%oyKP5_(_|QmH}->+B~!w zY3Yc~$kA79Mm~^sSC5R9uo=leY)0Oy%?QqEGZN6gtH*v{X&36oo}QVIGDy0h{vhd= zv`5k@NTYYyZ3y6%dtJ`MbvNin&oO%?NQb==B*b0`QgW{ZX=~917;CVP=UncM_%VLx z_JN!P7TFbt;-4Uk`#}C3S21o)U0|#xJo@`U?y(HD?`zrP%hL-Ef@G?s($^aX=Z!FO!g3Z(;Xn9wN%v;BYj0Fi9wh%HC2$L2<27-i)S%^AE z^D+p&Y=z%JG81X*OYP3lLgoeuFD;D!#&{Q~(8TXW^Tu14ECA0Oo2gcDjw-P{?|?WQ zZKML{90{pHwaE%3mcltl9);%|`B3NZ_)zB@`Os2a)pi9ZSXb&R$MViDQ$evMPoawl z2B`0ZY3n@X>rAo&d|!w<7GH==`@Rq(-;>F^LFGK*ID%O+tg-9vB5VMRgWVs=c@r4LdUx>eKvle_I$?8iN6C)c8 zs(hiJVc={21ZGn6M@+ttgb%(R-k?P=Z9lw0^H^8TAtJcKA#z#j5Xob;*>i}F0IhY1 zTodqV!G}tbhwuEdbet)SBvM2((AuG$B;UG*HRq%KF z84jZ3x3QE5k(7L&c{#{juNcR%%b(%kjlS%sW*B5`nPXSpdYD_m_nE!c^Bg;V3kr+j zdKy#fQ{6|QwDqQ@tI4Uh-qe7Wvb5gqcr)RK zs*QK&YwHkoL+?)eLX|SGY#Pcq92pz^LD-)Tl3Dfcgzvs|NZ2P_y*m!aGA%A3@$QI% z+IXRN$7|lZBh7%paNZqa%dDfzeR$ca%6fO@y^?sDcgLH?q(`smHhRUZtM*iDLeOaw z#aj0+hsh4=WAfg2?!-tI7bil@|?C=m@7GsHg#iJkgNqp z1M_2tXjH!s^C|^mg1^{D>!)~vuvdtwQRS7^B`gBTeh0FP4bwwruMV-TwC3b$4#m!E|0~BAc5~2 z#Z>lEj2cqMgK$<5nj}uNgk|IwW)h`HD)uxP_U&mRD*aLvk}{i3}kpBOYuc) zFl@(xDtr3tcmSJEGx-&hUm$Vzv=+fMw=h$|tR`nl6I^aek8NfV>!D%@@06>SvX({+ z-%=i`59zwgRrOVF-6f?7!d2-$UdPrUt*;6qyh6ADaoHoYFrwoFkpMSV1@&QLDi14q ze@beUrl#_$%v9dN!ZJmbo0xB*avs3@+nurQjbmbM=;$KKf?#-81QlYdiRp>$nV75V ztJTC@Q(xoOU8>k?(qqV}ioGU?&a`3=bWv<(Hr537wZ_I=tLR4THELt7F*fG9AY7NK z;N@~KFWRYc;5*2;QyX(9SxA`L$pdsrRO=A>qIt=0g@}2{^YjrU>KRVe zyxhoR^p9pmv!%^~a6@`5Z&maS0pIr8;>$WII&sy$#QF)fFE^@vxzXB}Qe47P8XM&J z{pnnrdZdYJ^w@w-FOZN)@gsXwc@ktC!0f~W06x7BG z4NPA11|~bk4X~+dqX|leQ%R+C#y8@|(2cw9lH?d;@Ym(7xoXO~ORS%*VVfHF-{Fk) z`%xm-UEYi<)?NOTy|%lx2(KDFJ$rIE84GnLw{gcsXp?oNjV`;qkF0@|7R5M6tWz2O zvdc+0V*M3{^sCv~*`=#4Db%fW$VTrb(>+)b)f3-K+OWIj&dx4fb!n=d68#JU;)L~{ zus43GR14bgXZ4n@x-_)9VI14UdvL<~U6yuprm50Zm!y?dmxxI8$P^HcS?|GKaZKGo zU8wx*tbo#0m!@)Eb&0LwJ#Yfy7%FX=(Uz{YG_;NABNVz1w0&`EY2TF5maerlwAtb6 zJ=ptwr_kos%atyJG_={_>XUG|`u7m>VE5pn6zv|R`?w9M-N%h4o*VzbkhjIbr*_=E=TR$6w+xxf%$McF9~m~-S7Z4Ui6fSmiLs&o^^m(b&!xH z3sFz`WI%GBGPwv6a%U0McRn?P;IsDljgNUFZG8lzZozjxgSq(VIkP9CG+hKHP@x&m zcdo?p+)v`rF_Q|M?<}MW)s`ucSPJJmdla7U>_eSD>_eUJ>_ba&Rpk|&INw>yQUCb) z)Lz20-FH4y@|YUm*|pv{zO&%(&ziNu!zNaVo2;BX2x{}GGvbwa*<`qc+_aLn{gH^C zmrcppnCwi&S*x=E!v~PF)OydQUN+I-W%FY3A`TY>;8A5g6<#*8jF)Y>A(8R22~sbc zzicNec-fNGm%e})i5+38ylgBHsQ%QM7Qr;KJiq>g)$>?~ zal@VV;jLoAN~&{UdN6{N;mu*4v}=j^_ySJ%)8-&-k*}X#0@{2g=LyN zWH;O!B*iJyfr`>(Gd<;Es~hf#eNZ=C#a@$MNKRF3xZ&qovA-+6C^PeJxS$)c%iM4k zyj%|EIX9el>V}^~780fV}_3Zq*GJ#{1G23IBu_+;9Pj8%`9|#tYqW zUfUeqyc^E4GdG<0|L2DPpBw&vZg{O{VUIb?gI*;9JkOaME)Q9nMGX$u4Hxof?uHBb zGk3#<{MoqSZVCN$P4*XR9_xxv?Q#t>c z^U5a}|Cv@B{b%}l^q=Y7(SN2_ApSGGIPsrp{NYDO%6FV~q{UQ&BTez(Nb^=5X{?K- zBTayFq){(@>5Dk4g8I4d>|!7s#=bKym2SQbx@!Iblh-qO4H9vsFF{$xmF7zG!oIUh z+j4zZ`m(lMZ>^?&to#a~zy!FGmxMQb_p_q*U1`M0`_bghI>YKmlOGGwrI_TwLeybC zkU@e(>xB;n$8Bbt!+aIsa4dN79A<$gq$zQj$+}E7S7LcSCvoUwNd?Yf7E*-<31uvh zSPJJbdla6->_eRs>_eTy>_ba&gM_-R;KVJw^vVem>b`>F7-(DL4?>|X_SL`-5~jY3 zEdbwzrH*Byn56zhF)5=Zc<$9NWH#07n#xTS$H)s3ms;1IS%BW$>LE}u>(?d~PTQ`SnS1PF1+2!sMiLJ0+sKv@J4%)yZJNCbT1YU9}HF zZbDlmfTn7*ZbD;PbQ79z*JhYG&nC3PSXN-j{0KJBCNy_!;=77Ea!{E7!RFUm5v-%N zgJAP-LQ}1)GDlNV)f$`77F(^;7@55^)1sTugxhMJZxfp8onH;6g#eb60@zkckY?z= ztB9WMZ$fj`rFsCcT8HG%2C!S+gmx4wYLF)5CbVNns^-{)w!~_#o6yMmBb(5qv@{Ee zZbFk{t%(Y6LTh8?k!MlZ-b@SdD+%J)m6E}+l6{8xo6uZCwbM3yO;Ni+A!Fz!w4b7* zZbCbp!s=^^B6m&Z2oaz03ST*R$tto$34A3BIvp>Bue?U#EA#ZS9N}w0`2DuDpm{eIGNj2~E1D!%5n8F=Z2)*jhSV)+V$t!P$i7 z??LMiU-Ayzj<3Rj8jO*bfAl3^M;!N{6~ia<<0TQn2*mN<@g+H~Mcz?d0lul$m*ntC zUy^kc9+qHucXK}))c6_uoytsuFR$)*sxC<_ukbT;)3$PS^V{kSUoc-ge=lUDAD#vYy!5XmJYB-I2vc|XnPCfm zFC<=ph_}HR6up=adNCvPVovJCyn#M&$$m!P({EyljBZ<<84Bco6KWRw95(Lwd+P=m zuP8%m@L(@xVqEx@aRNu_%D2Fh;P+B@p&(<56ns?*^g0Y)vt5ZSO2Pd{MvgC8_4J9< zLyGly(RwB^pVV_-Zaq(8SxM`$*e_4@_cEJT?2F;cFk5x)8J zI$?U|10HbdB<09ud4L5R9#ReuZH#gTMR-W%@*u`3hm^x(>jEZscu3{)42kfN%H@IY z@03F-muFanhg2>Ph9IXLQnc&i(hNbL4*S~ck`U?BCkA~w($~%oqP?QjUzrVk?L}=~ zr@4YYV(l{`A`hutnYW7Ykjmu&cyaV1MZMl|^@{Z0Z6f@n$p3CZ{*e)WQn@m08{r|9 z%Y(yC9XUz4{n{BDY(LyC!cWTOcMO|#9{@Q!^^kI8!8@+(=@x8<=V!vrRB$Tk|P_b+%m^T zct|-sd#P+YM|em%JbNq8xCjra!N2myFR!hbV;{~2!A;Uu!rvYEJGlS$r|c-lOJU;_ z;v@Ip`m(%Z{XIc+iTeclJc!0^iK^tbER$5Oep0z*Vpw%}NEIk^x!MXtox@M6K!4ds`O&NnKPg9seU%5dxx+)s;n`1l zaH~2zq#PcrFS@kDL(1X7*vbBjZtU=oa(HYx=&lYADTil;mV>V5@Q`wNY&qy&4iBkZ z9+=hPA>}>~@F=KEO=I8l+A8^bZlQh%b35gba_TxjWrn#O9#Rg^fyx7OJ3OQuo`aMJ zrgV5nQDz>fjEROeJhCcN`>4!#OjV}#%aQqDEeED_${|(YKK-TgLk)+YRDr%%q5M$E z;V0$jV%rERIXt9tc_6OCL(1Xlt93y{hli9qZk>W>RqAlH!xS&YFFL_gMJfFtQ}E5< zL$oYhoU%w2uuF^ba>uWZYy+I)i5gkV@Wy?hPNjYVr`N(r@ zgol*FgXSa8aSII5q?rmnP@)poDkt5EpA_LIMgBFpHbhgB|KtciDfj-vi4c{koAv&4>auN$Qk{F3lq0|8!RX=e zkaBqTQyET;@Q}*oIW59N%Hc_BIlqeVkaBpeJf}x^NagaZjqs3icq+86Uq^UI(az&@ z?_XQ*84-R`PMMbH%m@#uT%NNcJfsTrL)?aJ-?Jn9q{yEKPvDj$|2YwUQU&@CZcp-` z8{sGA_8)vat}^v}PXB@X$Gqo7@{)4&h08~t^CLW@93E@8brBv?4iDTymUBUbhm^x( z%egSZLyEdTo;!Ddp@wDtCc;mufNe4CkpH3xKdAz?#SldPizED`3h-k%BL5{3eo}5* zbY@$8kkb}c_e&#rNjdg`d&BZCi|~+gcx*YBM|en4<~(CKhD4TmMTDPJ0UKg?B>$BW zep2NB!fhjW{`%jdZ)C0^oL7bu^Hm{xTotK@RIaX9M|eo(=<3Ng`#3&%sc&;-c`%q@ zjLbW}8AL!cQu<%-=aIESH7HjI_1{$ zcC|kzg+{2(sRxfr>T`Xh9#X8QV1G>J))VQEiJW@uSo!-%J*1$tZ(BQ7-Vos-I;um*JqDawoa_bIdziSa-YSFy~9r`R}ai6J3ORvc`)nc@Q`A? z5x>FpXYUZbBN(Miy@MTYkJyFdh}93XBThY}a%BN(cX&wU^1#D%cu3{)z(aF*Nagb2 ziR18)%H_c$$KfI6@Yt~rqo>0|%HgrPqsKTrq;h%CWgH$-4$lhh-whESQn@@`B0QwF z+>iQ2_(?fs_SJg(M|em%JXXg65gtBmAUXe)m%g+ae8``E4H4`WPF0YhgpBF_`wmxv+R^{?~Xr z73Y6dxAR=sJ(0H=FSwd!yuE9h@piIl<~ETgEEcBELRoeL9}W)7-oSTuPHKPWESz(4 zQvVTJQaA9O4;Ji!SjS761UEmhqF@6b52)?}BMMJ+10QAcH|Mcl%$YketP8W^PRvfi zb8ZmhrM2EO5z|`Kkh6jB0>tALc3zy%%1LaRd0Oy|meLjo7k)W`qRR%pf?UpyHuCTt zd8q)7uiernSv6MepOwYW5pLjfayT3K+}Lnao*Nr(;B#a1@~UkMNYV|q)9rXpIcodt z9BsYWmKV~pX@-&S#WBL&sz+yfQ`WW!cHUVOfkUkGjn))U>T$DFcNk4bi`o-Ykcv0L>R6^iON z;Kwl>zw<8yEf}^`3)~AAfj7K|3vJc=1Or`jBZh)zyfJ2)@u-&jRlkv-MKFwx9_cDOVTgOTbdaDn!Ct-mYL7gr2FV6&dqA^FE4f6I6T_OzLXM1vms+9lB?a_DPU zFWxnC6)S3xHuK_LGV4jI>Rr6le!l8o;Q{2O$*a5d@R4af^tG!V`r6e$^i_&Wvy@~P zFVW3@RG^!dYi-m;4}I+tIrO!=7w?|Al(k15JYkD7E!eF`g1hxDlMIfT>;r4`Di1x$ zTjg4+oyOs5GujafS_4iAtnpKnO!n~NJu;V5+BV!qr7Cz$1{?LEFynQ*9tSYlt|w75 z*b~Tt+IZo1Jzk^R_1H1iV!*LX;g{q)lntpW%i$ebXUb$(AI=t_`N~_CL!cn{&Ukpp zNt+!jhE!GLOyB1;mIvjCj`x|k(Yv`+K$^1OoF^Ixf4_W7?^DL~y7t$PMp z@sR{%%_DdA`L7EktFQI`K>>MBfo0tXz$2@04z}$n9~1A3(>ITVp_3dmsZYxi6dbP< z8~Gm;@2Mw&vXtlWLGcd0UzCjZF7A(l=;72kbE z1%v%FI4;K|2ZnU>GOmqO5r4eN;&>Qvf8_RHhL0+LjDHkE#-(W6eVllkY|cg;|GOe$ zI-VV)bjT@6bwizlb?p+k)cgj;^V<%5mT})CT}ocH!Q*I$T9YcfT4YWmO;-u#6JGl7&|o8Q_(DI~sEd49}=FZ~B6MiI$PK@3(W@!L!P9%1VjV9z>( z^ERe>Xcs;LL?Mj5J^EU$3-U(d!JMgA`;1}v0j=wW@Yhngown+;UE$> zHbfb2Y=}tQ*u1=6nzk(<$&nbG6_H3eiaKrwKh|Cmx~N0b?vOOL&5+KvjV9o=4RocZ zSiO-B04t`+)`~r$emjy!M9BWO1$ZNc?NX?)`JIBo$Wy2=R_sC}HY<-a7H!}d`{#I) zPmxg%-0dyBWz1H#JlSnaze^zUAp&J|kQJ@R4#5toohw9EcOuS9hoO&{Tx3Nt1zC{| z$ch)APmmQOpa$!SA}i(;WW^+ltbA#h$s#L8DYD`(zawTLD@m%!{E-~NX!Em>l@`G; zf~+)})kKgLqYEIbFiDY>i~%mPx|wxYWEEOpk(E|Q4i{PVP4rb{)i2R6L{=PJy?DRO z{k*Qa9$})NmpYKcWnHqz<~PddIxsQW&r9^T$g01x*JhX-r75!N7a*&y-0Zq**B$ZDWPR)f6wpo}V>Uk|3G#_A2{rAaBWx|<@T8T!ZyecMM?uD;X{ z$V%&w{Ns2JJIIRPPnw9hBtM<93x4>Y(-^{|S|4CV4bo;_yeab_NmaecOC9X1{!h40 zUYfj$tcJvgD6$%&$ZCj>tfaU!OG!4#msUFQa~eanTx+8yMOIA_WHro-56j%c+9MCp zu*I1cAS)6?R`*H<$4vIYI~wQGLE=@erP^s6A}j3(1+DQ03ip1Jk~sJ^K0I?DrES{| zBen`&llha#&v->v9KZxwNt7TfvY<9zh^%;x;vIGjoC5*8Ga4mhDwjqnYk}*8*?-~R z;yIqozAIhf$mcXh$mcZh4x@>W@IR-q8%pHoG@5Y*oazf#515EAv~A&Y8Y~{`mXK~d zv+MUXrckzciSu!aym*S%aPd?rzNfJxvoi0Q`0TCLn-@yiycPNxkIFc(Qp;FB?>B+W zc|WLO^LEg@RmfY_GS1H%evBjU2Q_To;DZ{a_@KrPk{7lL&uRn~1Agq3(~{J;lh)fA zhmUq{!8#%Ib-yi<_fs0S+Tc?f#rTv4mIftjct&I1FKO7UNv*X8wbry?H4s_Z_D6H% z0L$nv_1h9XeAhM^A3?Oo+~wdq27LN$3HDIu+Y))dz`Yf5 zAbvO^`G7kAz)!vaP?JdZ1fUMAOF+#5%QrDmvJ7AWppLN0Q^2+cSxLKqx{-idMl~7R zoG#C>JY`$_u`?@2v^`$U@PD#`Qt#sL(L!5&5yUqW^2UpzbhgvrlxyQl)`$ci>WciDwvvH3^6qU1Ti(;cVcS#$%3ir0|}<) zP!CLvb{6H^aB-VjMQ_d>Hb zcSC?S_tKA}EQ_gY;x*Zr`iY#>{@IxNIk4af|2!{g5*&C?)M$u{3R1unl}S#Fqn#>+ zEefkCfDfWsxR++7evE=>JiCGzOk;rODJSM+iFw+M0YdcB&jc}ETE%+|F|Gf=11Sr7 zzkqo3AzmElEwO3lY589c^ro={dKct!&?|Y^Nu`1idP`P~)rQE*;^zpVx0Azx-fnCN zr`^~Pdb_cCdDZ>}B-s-+Jv{pwB7fIJ8>J&-W zC+b5a%^{VmYp?UV3bW0{iFz+}C9WarIw;_@&tS??tpERt?e_Sy_{qcla*^#PK8 ziG>B0Y&Vj222r-H9lNMafTZ)Qtw`EY+d_YkEC6F zsUMKE)*<<`k#vtl4@J^F6FnnHy3va_W;U~;25B=d-ZS$iNmU(__N~6^{RBIbSCKTn zou){-QIT|`kEErzG)qbL^b)=78f7mn*V?G3BI%wHB;DJK_s+b++TF*d)8b4EkTeM* z=}nTsF_Zte{XJbeZihK?SeLye9H9 zUXe5hFhSB1B}keqsErpQX{WTQS84Sf%i*@F_}- zK;Zy)+;<7cZmzUAi_bXXEPBnvS@e~Ov-n^XoJGf2a26dX{3y-P4Z@GI42K3FudPsW zMxJm$UQ`Iki=-m2HpmX-#R%?q^8pRNBk&eR|EmOpbo0`0fg#y5-m{$;qz!qS|AA4Y z`8@`2Gr;3iF~~b83(dzC#W0(VLH?eT+CLkEd5XJzqogowk*;UEq-HbfC_Y=}7A*u1=I z?E;d7h(pRr)9Ad_X$?UfVRTjrf%+lhP+qoDo+21ssEFM#N-OS>A{0dY6B)cT!w86A zgbN}lselM(bwLCf9T34}${aR-2qHd4nwJhk9~`(Kg7pZ9AR9mgFFv1u2u5JUV?9w2 z!JGmjm}EhOFAXzU5Wy$~5&Y$Ml`Ie;Ni~^I$Po+@KMO=?5ey?BLZewt1Vk{p0Eh^a z6hz3K?1G37Sce4>q4gC+Xm#XpK}7FFZv_#2Utkm->O&`bbs3I{^m@MHbrr_A;zS=W zwNhQmZkw-?b1w`~u^bbLVs@*^HA4;lf_xDnV`)dDQuoDxL{k_BhyBs$_*{$0B6+~c( zk_ZFKcJYB3RXo2QObbB-DFqRqQG_%@A4H&U`yj&Am-+!jXdRM28$_fMDFqRO5`!Wj zVz3t=xDK5=Yl7qa2 zU2(%QpOkBDG)O_jpa_VNwZVU}cK5mGv^diO5J7?<;&aL1n8|-$ZUpS zp&g;1HLem!^;48g4)w4m`30qIdk=1}3SN`>Qsig6f(Q;^0wN?zKm=J}dtL}4c#Zm| z>=?Vk12JuQIf5X9Mk#A~m)^DVZ*e(}*>Ma8{@kzI50mA%KXW;5n7Vr?XTgfQq?UI%&gKo4v9%bX>(yvum36Nt`V#w)`rp1-6f*+W2= zcSX)-cUR=pPPWg6OKN#nUeDn6jgKX{Wb0CXgh z-2vzV>vBnrgN|=vqBI$V0zemGm66;!gk&Y{0=gaqbTTr@_#E$%!iswU=$wS^DXh2< z(E0DEcE@_!Yq*vFgUCkSi}>Rm--=QF9X!?w2jCsm z1H2=t@DA@L6W%c*1!p|Eu!j1RBg)LSxUPpBSX+a*@bmr)ZZG{m3BQr>TM56D@Oy-* z@3Yp~uz+W-K^bkU>^d9Ez&aZX!8#jD;W``3;Ws2$QYo-1%QC4YxS_D_mf^Y^*5sq> zZbw0b6mHF?mN7`;yR3NCz=x@jzg%oA^6R==bxC!pe);1Zf9=hGJ6GR*9S&K4>+1Uh zr0~*^1Yt}nV)*Hgh0RJs2^}r zR6mR+O{p~X!)p+t-_8;J^jjGsudknKhppwgD~sq}++GM-^&AR5nQ)UZI#^pwWB%b< z#Mkp3{9;I$#ABtMxV{>Bn_oi5Z+@P^Qw$zOfcwHrm!T}&#T+&fpx6`ev0A zvk6lS)=1s>IP%gea4C3NckP-p{}4w!?rdJ1`3H$jGf#_$&KceQ$R?Eehk{%VdL|Et z4yhoVe~_#itKB0ji=QK$e{ga*^AB!pIH%yohVu_@Y+hb%kphy0^AA!^nhnDz6Rjch z4`Fmx34!|I{DbncCG!-)=t4z=E1p^en?6qwj4o6}3p#;LVMq}=g^@r8FU>GAg~14S z3WLhZ6b7@pQy64)rZAXHwZk41PGKaG=B2~XpPF!|Fj$XFVUP_|7`*s=GKIki^ljD? zox)&FnZjU_ox<>?VJ16;!6===;4i3>#HqghR43WL!FrZB=Jox+d-!=1vYW*v44BecFwVQ6*aaHlXT6O}rJ z!7mL4Qy3iny?BRA4_;T5AWU@dQmd#`U9x!dtP+mvOvGOFM3tSws8aUY40EG2oxf7h-cz3wEYdW<;X28iv19c#o;F4KM3dwp@+?I*P@wV8oROTGv(L z?!n}DWeYqsq}OEXMH~NdxrKR|3)wHOgySgBMCS=2C|!qX))vgmUOOiWgLiB5K2rjxSUwyf59nQA*P z)0tmjRK@e_!L-y^T8L&RrSmck6d}#9*AsYZ>i9Vtzy*A(Tz$hP(d@R6akTt+1a=oH zHyTd_DI1M7<99!#!DBgY-u3JMKkN^@q23Y@k1y#7mP`Cue}xbaE!ClQT(w zaz=_vvlMPnuCXh;HCnDUR6-|bus^vICa`K!Qz=}n7q889VePKt;50kag2@>YoSf+@ z85~>r4oAmabBTq2+&G+^(cVzd8b_gU?N6^AEP>U9U-+}`H(Yzzht%m za*{}v0CM`SoU9?zl>Q@?I8sa-K+Xs&JE_YmW5pg25Hh{~M%QF1A*a||dL7n%_hjN5 z^(HH!BsEWRg=>ggV~+TK+?b!CEQ}ZOhkk037|$})7r@uNJ$n-*wu0p!of zV*+TCDg$kjRJ3^5YLst;23BMI%MsM(X={^$nm9U?L{UsbA;Xs6` zk_ZmNY_qu@<+Pn(aTv=14r4*UVJwL_jAapru{7dMmRAb3SfWWSfil3IClZ$}#qY=- zN;E)I3N6sovLBL&JNL)6Lz5{RjJlKfaA$X47ax~ZqiDruIC3i&n*pguu-PuO1HP5z zVzUSE4({&}Uylv&X-qI+t|Z>Qo!D#^@-|d2v1g zFR^LnX(=Ow+8$cA^h8hLfI&+Ogeu78c<xp6v<`j&Pkb77$h8Dpvbv(M6k1;fw z)kH7`qYGe+FiA0n+zBqm7|uE@#t5y?4(_G3I&!!eqcPE_7=!O#1Q>(Em>2Jr8O!Uc zK?oDQywqwcRhR6t`58>1dTAymdwGf87Gv~Q_Sy_{qcp`Bc-;=Ol`)JFqgYr?W;GfTXu;LQ-rtmd5i^R`E#_q1kc3J zmNI4XepPm{!sH?ps7onZ`3+ag%<7OL^4r1>L2OPa;@4*t#sTGH*VV9&i0LF+pxFbcFrBU^ZnYyoIp2N$;aVS95# z9v55y*TI~%1wbo*hsI0409sCmc7PVQ;mQIySHgD$Bi8-vrAu-f?l?-S9U9wkaW`s* z{tm8#mu8~fhFitAX!|R>?a=)cXkiyF6O#kH_<)Qm?mqTHJ(!jn3jt8HmnNk^>lYLu z%}^G=hjp^V;}}Bhc6SV8KJs!6pbBeyY0XmVIMm@HFK)!0h`1!z$KkOA$V;}+?#${N ztU*$l@g&tCDKB+`Z;*dtob%G;Rpd1&K1h+*AVpq-eB>p?rCCZc2YEGdkL(Vty+A);T7bMr5P6M}459H75#!;0Xo}St-XNow!HoiPb?w(qYY~d+ z09epGPor?}CuyCO*8p~;_-%j2z@?hhWOfpT7_U%_PcVUE5+zWKEU1kaLNQ*WP>kxf z;-)ffccElpn>5XYH(Vb8X>*3J+j8ju?}26=xWh6q(StG`V;SYxsaf9gN9K>0$#A-b z4Wg8JhG}~R18cG}UXB-BAC-*mx^Uj*XlBGRc(5E@iI-bnR^aH1y*$`|n0HaymJlpT zbC2j`jGk;B8p?TlHt))`%^$2xmtvpj6gPicP=DU#X`4S-o-V~^QEcuF>*oVQO_z76 z+2;3`nql>t7Py6BevaOnKkr&I^W&KiuWk7&@A#qeP-%`2l{Xt!0tUsBbp~5PUt(%K ze!Pqy`mS#SItU*}@p|m}d_rW8KOUk@I{c4Es<$j$jlHu5+2rGv|mzA`;q}+`#UT$I;+v43)Q)yL;@12CM z{L&&+2foJ?DsLhz8JeAOJq*`IT=~cNlQHa1!}SGR-S{8Cw=Moh0?Prn$shUg_O&^w z!kEQQyiGQ15yyXLK7dYEQEEDb8BDC|nH6BZ0d2zh0Qz#A4rMslM%lSpkMqklP0O4|3pX%(9ej}?%))N%=d>kz^%QJSQanaOh9T9 zZ`l*dLOroT9j^S(@_rYCZte?xn|m_ofYxNja$wf>m_68(1*v zPvs>|!Y}GTe_5|IQL5;YJW+JX+I=jk=#n-1F*^y~oE*e>X{}`!#I)Xpx#Xs(jubD=FoGo+;bKYJMzAC+bFm~D9W2RYnk6)Gh$Uwr4Id{C zLLVaz#E{{iEy{WXOOg#(k{6#(up}ce*07!^mSj%Bl1#E#(wByrES6+csvm01@R#2l zSy)n%YBDp)5!_f4ahpW2WK*Z+4-nOimyJww4FcXo3L!NoL;7d|gw$x39)XaIE&w6J zB!!T21Go@!3hS^CGBmnENUe?>E`%&glqrNPPn0W!oPalNIed8W^2}UbR{=K{C(6Cl zNmQz?!{&w1-AgkqS?(n&EP||1?pn!=!W2Q42MBU^mKE3!ID_LX|2ZBtRW@Hh>s@LM z7a1?;mh1gZ9RhffUs;70j`4JtS**#OY?VC}B6?}2 z*(Eswhay1kfON8ca)#m1iUR94SQ?vnWBDVSp}#cnYSm z=mH&kbOnqA@7UF!`r>_CtyBse$DTGGfnCz!(v<*A%DDQ_QoyP5os%&c$;j_LmdAb5Mj@j;2j+CPZlHX57s~7Ktcb64=DO4d_2%U z;pig%2|JqamdIEDw}didErO)FC8ywifm_0e&@D0aOSbP|%uV!5lIWrHkq%$BzMXUI zPgP=2NI}_r9?AlgWj&OJctf^_vM?t#$3s~H7WAK`yrfC6?O9adp>SJo7j$ajiFzok z-SDe?ZfxjvxUr#!;>PCX_0qItwj}DI08*l@7)Cr4Mz|gd zZ6h8ED|0;*GCCd#lWCUF#G!|>57NAJ82X;aK=cRSLt#DQp^yz83NJpNcqoj(z`=T= z9tv}chr%T5q4?4;ll4#-r5*}@`OT5#p-56qW?ymycNp%(@cD}85*EL3i`v=lMhxZo zPCwTo7)CY)X*8>exGIb;;Hrd4>Z-_{;JPY{S%-C1LhGxmqScYZbyc{tep}c+*)7p6 zobBd-;$hGH!Mv{83t^(0mpWCR-pQKH_XGWSX(lGSd5P}USLv?owHf9{Y3i%s0Bn@c z+3x*VSYXL5%!!^$J6?hjSs;@;gz#yvw>-58oR<7*tJC7B?KmymZ7)s>*W!XXQB}KV z<`7D%YU8b2OagIEv}W_8B~+V<+%?~5Up{G6cB^(z^;)oNUc8oGTr*I`^XtL1&}$*3 zUd#RzAXdRM2+ezWRFL6@1?`s#dwg28pUoYM_^GjCLAZ^BN zU@at7b!-Fsm9P3!==WZlyy~U&jrUbArLTG^ef`-_DK5=YxL*uY!*oP2%`D|w8}(5y z1>40OFQvbS+2s|iJ@U{9TbyZumqLPG$^nwWF_V4RjGm3h8{9e9QtdPjCp)zx6to6k zcJO|Zk~%qlAf;8GN(8UT93=8HUMD*_fXQU1M9ttsk}Rl=7fyEa8lCK9$5>APMJ78j zPr+XdCwJK zK1^|z>YQ6yyaW@k;S{Hci|2`*;=?;Nn3>HwUw|bz=L?kKd;x!kQ?f&Un?3LG0yevQ zynsK!DcQpb&b-G9*zE4{0{;A_WDn;z^Byl?v%AL&_|uz`J)GVI5`gZVa~gZ-QF!ch z*6GcGGQGK7e4sPE88`8`PH!ggBb?q$mg($f0`H8yf}Vv^2I}l4Wx5Zun>D_xmW&Ui zhtBwNFxllZ-ci!IbYSvfK>mS^oiKm_B$Bn5-3)3V5a12zS3@8mH>eK;qO3B?S&7I> zIz$3p@md#VH|4ICu`6B|ncZ{}YJD&OWp>^N3bE(I6jO1Tifbcj{4xF}40=Cc%>M)8 z@hFl%#_x;UeU@DNUR}H<37jP8x9nAMJt@ zID+{&K_0}w3DgHTfu!Pu(;*;m0wc0;!rw99dJF2RPgZ#8Ly?|Dr*0=sI1+iAcO*{O zp20{4!x6w1UK)3aj}x#Ck&P2p=A_b_x3ALZOy-eb!3cg7FKH6&d@L%!2}IX|6UYe1r?l7kjrtk z$wP-&DhP3cWYt);XI2(JM~D-g91c!!V?*EHjSX>v8=IF`Em=U4#ju^u!b&-c9*&{) z(hMW$fe|ixpv43|Fsq9m$mpO4Cev7<;Y0M0Mw*unLmw5m=z;YJdLSFn11~4H3!sNENzsGcA1-=0f^}H*5L#c+gH}fl7d>#=OV9&9iWa;p!(oQ=Unlaq z>M(?f&R%M*`jQo!XJbh9(oDoO87H!c58`oUugx$wN>lXEIY18?78Y2t-RQv`Sm;aY zKtOE*^pIa|MGubJ4tn61q69r86Uh)gsM^WQ$&^&pPI{?d`)V&h<9lf)CX@0;HUUDs zM%k^}NktF%o)i=HU2Ii6zaC6WjgJ>fU#5xB($cLPcW9^YgN!a2{3(x}zqKDOz z!7-D41daYcCxcx}wbM96584q5T4OeR2=6B;36u>memtdZI~;EVsNgl36GVQ-D|+An zCg?$;1U--iwedpqz-!c@WXJfL-is!-UX3AMme=!qJBj7<+ex3JKj7O*G+%iO-m{SD z02UnrjXd8@VokUk05mr9y$CcF3&80DD_KHC>)n3M`M;gS%7Gh76gTKu->*vD6|K() zS@XWiVYBK-pYSF}F%ZS;l2!B$yMgc0=D*v>7r3+}l9h02D}29&E-iZrU0T*iKUI27 z;L=7|<<@gpNxLp>2fDPht-N>Ox9)-L8F>W2Z>7-iTS=94?@CFRcZihM0WkXq}084A;Ck?xw`1nJ16CN!i5REXd_} zY~-N_B^7)Fnbl>Jtm?9zMG5rh+5DMi*c$JSTfaA-CK};-Zxo;(;+eDcN*r;Irv@{r z3d)2BGfk5XjT*P7a3i^UksDfUz85+`ipB>$JW|kLhGx)sMV3f z^%ptYD*hs0vJU)3-rhXq^deqYor*Bg=%vo$4O^FN*nB9UHa_Eq=wzcDRx18tFJ-UI zFgHq5e-V?iOvSy80no8zyZuFXFrfFKcQUmJ{KfogtH0=|?f8qFffav|GqAyIv#Q-E za|tC?wK3&-wy*Zl@>FG_J$Xy~#lFgJ)$XJIB4$#>U+l*hdR6iKdN3{Y7fGqVcs@l) zGxYsM^ljf?boHfvxbw9R$v=*_{&)m-Nt~x_iNDCt;JE&xoR4)eD{7E7{hv!YNv7NFKS09XpKV!IQ$ePlXBeG zg_O4K5zI%a;5C`wi2RIKe~|;2_=^%H{vuh>?RlZU$ZOPJWXGt5BVn1s^QQ9ni{xF8 z2QOYnaXvcPBDtRZNSp$}({FiiP z9$Kca4YsD(}CetFzFL$^>?)^M-8R>1SqyBkCV-8|VD9KY?BDe1;|O}RGW9++2-`;ohxvxtxj8)x3&cn-g&2-ZBBp6xdJEJ>Wp={?B39q zY4grD+nk-%=Z;rkK3ONL%Ui>F>O?$&dFn(?H<5Yjgw9hBvGdeJoO$Xb4wTY)>KgnA z=c#Kebe_5f@9@5Y`yBmbh|W_}9L`fW`0iRVK7`&jq@UkGIKY z7sT=3!5?%4ic*Up&S1qKdw}_Ni$CaZ5P#6aB>tdtLj1uY7_eh8a%IGm0PLW8fE^?i zcHq<@!VX5HmV#4Zhv1H9AVYvVE(60)z#U7Gx48qx#^zE6F$Uj4=cWL6T!RAf9QiFT zX%c=%ZppzNu1PABq9}r6W^MZ`uN>jPNfN>3l$N98R1m~b1llTVCFjhOf!st z8AfD73xXNu^uY{y@_-p(Q7}Vm7XUND<$@VTWY;KQMl9ig88SLxhRHNoX#5b&T#qy_ z9fm$g$qQ!41~9{m&nIAp5zw6V6aX_!vS7xShM6pwVN|Lg##U)tziG3;44Kf)f6q(W zzlnYpn9(8_M!<|lvziE)VRQj76DBE`k$c1iGwWH01v8=b70hULF8u$SHiGfa$v8DX!@Fn1m>a{~(tEZJ@_mA84?6DH%SJ^Oj%&YwNyKeLolNqp`bMs%={E370ldBX%)3hVL7|kIwo=hXoe@7tH*h0yEN`GXXAaADCf} zjewbOjPSus{-KzB0hl3?3uZWk_}(57iVP|F!HkT{4wxaG17>8Lk2zBXcEiNN0GG@4#hsG5sw0(hH3)TkW^4}0R#l7VT1!}xL05f zbb`$BdaT*qiDa&?wR0)uLqNagvk7F@GB||+PAd{flfD~ep-K7Nzzj?FD?s<;r1lSA z0ZQMSllmIqiGS7(Q(NA~3SG4L`W^v`zC(0B`0yxufR{80UzXsk9d5;vbsX|U@f5}P z@f1b#(iGW`p*Z;BsuQ!5@Z1-~;G5O>jZdc{Y&{O5Wr3?dGu2D;;(#lOl{|UC70oEi zJO#NNWJDff1zuZ2a3xta79aUWT2>Z6NBCBelf!wd$c+u(6mnz3w~E}@yu51L0+NJp z6-haY>K=sT_zpI8TUZmWOEJO)RY%=3#OK zw{jt1)e+MM&0TThH`g-gi~u8;-9D*BFl^o25qH&n^n8cXnZ^fcrFhmAL060}fUd$M zMOSi@IOs}>)V$B)nbe9`AP#NWN@`p6Clu=gudsC#c&Q}haDf+hRc?#SNuFRVt4Q2l z$&t;AS7e^yb=4mcCMvwtg;ct(${qsBG`t9zsI)H~RVsI_WJY1=6P3o_e2IZ&1Iwz( zJi?0}(6f<0@qI*G+~`LcEwM6V?WGyvAGZ^XW-V{%kS4<=daZD^-iV>Yjx-$dgvmYR z2Gvo3$PqOnm~ANj&OM?=n&b-Tqes-_o(1}ti0nTP@?*+N@RVv^$9{B~?LCoEmIy<~ zK-Lyu%KR;=n9^xc2UBwEs4S3GC91+bq}rlYndc~}wrG`?`i*VT)p!iyD}+c(R(Xkz zb~i>x<+d$arR!rj^HtWzs=au1M)h_d7NHtUOO0hG;0;SkA?4$gAkDDXQ!t4>@J3g| zFxX?@s;la0>u5z%$T+sccm#HljPK1&1exS}bFxTg_l?Fqya@n#|K8KI0Wta`cuZGKmsYNfy+`3sEJnQB=u1y)1_;6v#oK*qFgO@D)XU^GHeU zRlawfzgIF_;9ZmG_{O2-zNf>50@{(jH7llXEq3*N>j)?Nr^`v&b*+oJP9V0H4u|hX z?#a914c${4CRF%`fcozoB{1KA5AMjP;4luxZNWeEQ1dk61|jX=PP`-{=!4sg|Bj!` zVLNgL=nC-NY5inA9q1?1siB`tca45B$5-)_`Pjjak_>N2ILr$mdq$oFaF{7P9A=X0 zFkg&22@W$O!h=5PFYnUP7%U>{`IRpq`6rxTxd{VJGrnM9nt9quGd}8wuM8mIlQ;cW zlx00y9#d0gTG4LK#_l9T#rR%*+;p*w9W@82`1T;1u{PzrA0 z*Lg{kU?&4}6K)Qdeqd<_n+0HrcQng<;BNxofyjKiR?a)`q-NS9xtuJ`~@+s z$3xyMAA2+6F;es5_}CJgW}ZAgHkB72yC9e2rjmz`0;wSMu_ddq|p4gNPTKA-sCjKD3%dZPX}bBh1X zBm4Sk>n-<=>w1R_Ij;AstlqA9gbkyvw@N||*Y(bSI3_K@jjsRT zb=8Xq6TQ3?oJX#CblLnh)`{^6M?^;t#}xM340Go>9P@1!R+IS~FY0^0!=LyBC@yaF z-x)2j*7s(F?|XA#l%cN$uYo$JT;ltkNNIfmR9@lcdqX( zCclEsdL@E9=kULaY+(n=?|Wa0Ctq{)9DZj=W|y{OBWnwM@BB@wzPHn)j_=KP(!}@X zIg!E3Y1*WHGapk@ZPLCTHPt5Vk4HMb)``SqU)knM{~9l!3A=65zUqAAn~_Y!cNDR~ zR~65%2h&nxVK5Z!rAevt{T@X~GxXPUa7+8ALAv^eO`_RtA>-H(;}KZrn=ht`^UY%+ z#re+Yp)Dy7ua5nbwKYhmv5@m;n{)RdCw4nviKk;uGf+?eAj)!_ zL%GrBTpHvocmySKcGB-Tb}q+e=O=8=!-Jd!51&NNxaLfh z&^5IW69@)w)3pajd1h=fvA&lLQvyzk?C!UlgTqZkGRE z*kNG4%VI>jF~o?3BE*PviHQ*jI|L)rArOp6M+rYlGaM5E7WYGe8Sz~J7O4opB1r{{ zmqTQLMMk7nfKy%>3qQ$+^C?TrAjoky2c?yzMH%M9cOaM%-+^FGeg}eiO=<}qWcc30`TX9)0T3key@x9xWePq= zQ_F!!g5;@#d|6Qk>#D<5WYq6H=$9VO$J>kYWxY_LA*&K!a47gP3wv-{0e>^E1l-~7_{n?oY~Mr9Y7Lc3#XJzMr7(*t&V zz?J=5)b6FfLzu!TsMg}z7jcf7`7`Cd#L7)x$W7)z;7ciROSZu4DeyHE_)shGVWGfm z|D-Pmcc8zpkDk{>cN18mJ4f#{e2 zbkQM`+FE1^ZH-yqsPO)HgP}7VZ(^w3OM4O)Nmz_9)g#a#9B&??4p&$mm=8KIBXnR+ zjyKF3=z=X@KjZr{I^Kwk)TP=s1!mr&+NfN^(Pj_3`jkKde3(zdG6~BitU#D*476gq z?2Eh`sMA$eC+3At%nY5Fn>sN+zoo+x0^P2rZkURTj-|h47yBK%Sexx)m}T}~6-GPh zH%&!e)vel&N5H+R-MHCP@JWOiB-1Zr95Hg(h+*4|*k&srY=fS1Fv5ALrth(k9oJ$g z(RcRB)&maNzl|J^b%>c88WA^lwprN}Go2CFch|X-C*XP#=wA5Icih1(%gBsBJWFGH zHeS`C0*_tuzy8~BuxITD;r~VaLumtDO)oUa&Y(GKj>oew!FJ|A{P#dyM-;?5)@YK! z)U6qZe;5OQl~$utldfJ_U1`p!KB2nQTrIzE!tZMHUiC`|zmqW0=_RB#c3O#Wr%wGk zm6|1;rXf7B)4>QY?)0lp3G*FNt4+twFICr>>g4yBO8z)W&U?Bu*LM;Q?8V=6Bplm^ zspGd|xOgj;wtO3=mW*c1x}8?-RB9gF=_Z7)Ncfe6)nggcB;gbZmrJ-x!V4t4Rl?WD zJ~+Ld*sWTDQnHR@>pQtlmBTSgV z;~U3UnknN?sP1a6AAkP%QuFZmkvqR=UK`IcJ4_h4^K16^lnJ!tk_oirIrv>_uAI=X zQ%|Fs-j0|$(`O<}UNLdz#5!{d!b)@V#1pD}ng=Hy+^LV$+f(cb-6e*WtTPjK`99G{ zEE!8nwP?+WF(Vny%ANMwmi~J}`Zo>2+rJ z>6GoD>D1*|gr(-y87%qeJ@(n7)LgU&WxIZl^T*ejN%Lk-9AMJ(TIN-n+Px^})CFwi z=NGT6W^Y7yl`v+m#C4pRV=05XqQg2H_$BU)$E;IW1t<^U;Wlu$iQi*POiWlT?Vq|~?4rlp1RG@%;J@xpnn za5kFLg!-eU)(Z8UrOp!SZA+ak)c2M;N2vND*4Jpx6Kb%f;5+NDzaWTASQ zt0ZlyrLL8SB6hjfd1`P(4f^c*CShi*G2Zg%^6iP<@2zXC4%4 zCr~A3fY~V2UP28tj|;T|)P-gsT9u`oE@>mo8$w+I>IyT$yeZU8pw^ph%zHvTB%CA7 zheEw3)OO}Gp}rQX*?b{XS;-AWx0`13rBMArm6*}yzd}tDY9~{S$^Xt~F{lg8cvCG@ z3#eMNi>VdrY)~7}TN;GA64X;>lIbSYJ)la=WYbfq=Y?~+86?zuk~YH(5$b!PW}4wb z)tBB-^p=@rMhdkRs9I3l3N;t32z3gm4Q4MhS*Qyn zZErJGsB1xeYxXgVg?bQFEl%cNA=I;y?*Ma&Jmb1RI%@aa3f~qy=n5TuB1nMbsu6a(V z6`(G}-SDDNYb4)q%o{>oCHXEgZwvLPP#2rO3-vLmr_3eheW5BVSo@{sBcb|(+F-6Q z{}O6PP`Bf5`%Oo1n z4o`VUr^V^Hkh4-D(}Fw7tIo(x`8S&FPQ^` zY82`fbBIvC099)?nZu;M1)zGH*US-;)*@+dTIw87*P6G?(UNups1ozGStZm4Q0vY6 z<}@kgRZzXnN9HV{{wdVQq+qkpL0udB#!}@~l(RT?wWRd{Rbt9wH+X#JY%5fG>?TPY zC!AH5S}bXuVtSjJ+gjFA0^3Z4&BTp$5m^ z5b7JDnqqGY)ukgP8xnh0sF9#*&Cu9~Qr}Eaz0I)LKP7GNj(i@C1jUj4m!L{8f_y3( zWrP|P`&`m4u+*25cAHS!#r`8{n=JKTN&A;j&9Uz!Em_SnF%A{cO8te}K2{9hw6odS zQl*l%yHKNJor{XV`R|>1n%(GFFQIP5gSN!Xj`b1hx09GQFV;_}wUbF578@Yc)l*2F z8cPZF@NT58hz%A>OSvmHM5r&OvdsHp!-T4tM(Tms2%$y^^>A!!q4ouJi+MCQQmCr| zW^cjWK1!&Ug!)gcS*Y(ZZ+(lY_C^b(^)-1r2&MIn@OBhR>l^8f6-w*d&KoDx<-4<# z9lQxbJs{LvZx^8^&SqMhH%X`#Jf?3kYrQE#X?@pwQ-#v{Zt|uJrS;w6%@j)OyW5*3 z)Z9H-$^+gUp>7xIWp59mUJ>duZ=O(ELwV6<L?EMGJ(|8afv(5~>1kliXrzik1j< zjZh?V+M0gi_r%79Ay&>i$;IF%IW{i&hDxviwkVtWeKL znZ?Dc9nRjxCkVB8Z_1J?K1rzM3rI~UUL({4Ld`EeRr6s&@D_7u@vnrsei5ltiq{JD z@?uh#6`vtg$EBq1EIv!93zm_3q4*r3RNGIB&l5`J{GxcBP-?S(7hfop+U&o@7YVgs zANKigi!TxC7@@u|zD%fVg^HD2A=F=mDk-_DC}uWxng{QvccKG^{GkbYJEIZ_gyR!+ z2=|xpv_u#DK0DC^;U$UQ2yaRBNBE}%{hEgoLlM51*b3o$33@DFCALSn zs=JYAQ{BJudwjR*vY0u#TQ7tfe{Z*~@%u~RS>BzTzm{-A_dO6_+T$>Uxiucs<9ftv zz0dS`2*2IhKkdPC8hbKSNjBAe1fEP!uN>{tb1=fnMwUFIaU6a>(_=4$=QWaF<$q9q zYhDdi(@k|Jfb)Ni7a<(c>n?nrQ6{n)rKD-K&V-RQEZ;x*?1?Lc&*uP?9f( zRN}?WQA7Fr@S*&@sjd&g$A)TNzSdbtl1+890?x07vVW$A9f%nHecZ5f@H^XXrKR@` ztBdWidc&}Ls`gm@l!VVo_!kLZk?>6kKSLNZUk{@sI}c~5t$fgMTJ>3par^m}TfrN_ z60|L*$#1ts+_rdT#NSZwrz2>S?pra}om=tuGh4CVuea*b5fRqO~Y^u8zsS`$ah=nCT zfijOC`Gix~vxqr_+t0erLgf~cdn}mOo@DT~0K^QYHqpp1R?6WQ7 zkCSkNglaLp_n#T@E%LfnT0W|Sv@F9*+SCqlfN>XhE;UDty9VL2JD}ao+Y)}V!*z%$8pD{lgk8t{ z0Wqt`y;X{NL<|z8<{Ala8h0z=ACcehjk_DatH$4taQpEOBb-0}F@(#;KaH?uJagSL z{6YZ8>fcy{AnuXd3q}4Db!osc(sokmwEV{D zw0v8nXU4ndvyWT*`_tJ6{x_XkSI=PBWd{4e2>HF!4EBLpGiZVRX3zph&7cKNn9&U- zpCvrMo54PC&x}x#CuUHR)ARJn{4I6Cm?wKiTPi-2QuUijd7330Ka*1JCBF}tNvT%J z?{j9drPj}6OFb{)2Qw+{w=*ei_3o6mVR!b}0lTxbF}qXRr=1=c!~ zW>c!NIj5ks+BwWSWDcd;X-+8Bj5(BQ@f=sG_O|a`W4`O_Tk^~~l<+F4Bsnp=|$?-<{{ul6~gVl9MG|GM6&1oJ*P4%%#j{&7~zTn@gGR06%=8xuMLj%%#j9 z%%#k3-_GrUTTa!U;PSYZcjI$QR^9z}9D=uzj~F)!p_^-?jOT7Uwr3>I=NFAe$?frr ze0k~z=96dnnBItY; zj!oZj{2B<9};S+oEUfwJv|4YJe_hf%a&SN-W9&6lo9`ERUV_-dM`6*-ImZXa9 z$hutX{l6OtDcesU39~JxE$d3vp3(2)c^u_p^Et{T=W~?nF`q5iG@m+-o6iKEKhy z0&Rj)PZTWB9{X&W$Ja~8=QZ24&*sa=oDRDDtelaB(u$Yo;znGFtTTDq7FQz01ES`^&j})FW7E_Wd7l(c0 zmc{Jt4=#3X5=x?dI9HzkET%k_OIUAD2?s5qBx5C zaVh0lC%f;z9UOmwBtKj(%!L*(mp2Tzb@hX%P8&l^1I`5O51BW^Nw0hX(uhGv@H^@ zSx#v$T25(iSWap0T>b&d-yr<2fj?$GSsqIJ{c=iMy$_`=G%mUEYSs3{xP2qHx40#^ z?d8U2+XpWP;%{Tgjh%MFy!Xsrq)u%3bEjE&D{~*A-m7?~(*jd&&Xd=a-;0s6oU2#( zTW8+tv>)EZe9BTcb~@bDFaduXJATsXRM|76RIKw_hZ@}ZY=;`%d7VQo?R=3#or<(> zQX(_bRAgcT+xu0=!p2{kof8mZE;$O|zw_Uw1RpQq-@zSzsyZ*Tbx|6!q(2RtvSU zg8KC|7g~z?^)xqIiu(05k6DWP^)zo;iu(05Ut5a$^)#J_QqGMP)UT&WS&I7M9cN2X zzn*5EP;1Z&#>9|s81s?Z8Pv*vnjGt89t)^>vEF7iHxCHsqF5jE_kdav>u;JzFl~eB zk~}mvkU#OKJp?BQ$lu0}v|vclf+0lIrQnVoVeeq9wNJwq&d`wI_uB0_4j{|kH z$fE5x*gR$_);`$0WhvG^*nDj%);`#D-ikH6SHao`W7Sb9*4|`BT8i!0WX1}$v4XV^ zG4m|N+J~4!g;MJdF@FiDosrgzg8 z-F2~TnSj5IC8Ls8#6~FrYHafM*e?QVTJn+DP64$ys0pUmNJi-0KiP~FO7H$D=Du-E zdoRW^r|!_ zc1s(vCH+ z2(_mCoaCwIMDv-YE>3RmooK$b)Qw0x$<$z{2W(w_H_}crJ(ZF^f3g{3(>5i?c_*6* zmU<_-E2x>4`aU_wTVqyOsj6J2#*f)m-acU~ZIBw2dw`e-=vH=rVK331ogR#xg;jt`y5$Z`NL~ z)TrbI-gRdEV@k2i8_kNxNv$&n*8Iu4&Ae`@$u&=Vcblbe0X7X{S7y6s9X3#c9Ib}P9$R)_c3{ITacydz3V+xGg{6}3XeXtV2M zccqk~&2EbQb8Dq&v)f}=Y(r|DnOnD{`+S`lw4i%aO`zUjY^(X z@>p!_w#qrbZhgtqu^TMaxAxYO7h=x{#a_3e&&9MS4uvKU1F)BwI7yz88ZiI+UmOROa2!- z*iv(9t4n`~{l!whsq0f(>`jseU1wTrw<)dkZm`sYb(2avdkw$TQZBFEqqNrBL8vw5 z@7DdYw5vDAQeW1!fm)=Lj7#0Tg9B=Nuba2t$=BVx&&k)_+Zb?;iS_XQ5>Ts4dw8is zSo@mt#^kR{8@;iXs;)m5)D)$pzFyuuo7SiPRMX2l)KbIixA%H^t1LC4{<_lM-g%aq zQGXk#%aoE*`gnKQw3hm(OZ#}wS?b987eT%1aQ5}yjZmLi&T~+EU#}cnTq*T>)ZW*t zvD9No>*o!z)Mljh^O`MH+VDo+5m60r7mnZ)eQ75 zwAAel+j|4O^_F@CX({i%|A)OVkB_QK+CH~#0|CMk5&{7NL4pv0Yy?OkAc3$1!yXWo zF$qZnk&whJ3J#8_s2N3N6cHU%6ja8+kx^VhMMVX{9Tf#f6i`tdHyk(A@2NVcZ{OS9 zLFb+Kd*APm4}P~&PgR|*&Q|x{)7=Iggsv~`Fz5&9Qs{s|EfaDmg^n7OoY1IFAzzJd z!$9axq4ow%fUY0)HE0HO{U}o-@nC-%>7b*{`_oDX4YyKhtx5MWa!I8}4Eh|oq|$bS zjzgD5`weQ=C5O`JV}s(lG^%vML2&VIB6R80N+T&fgE|`>kAe(JH;6|;1`TytX3}`0 z8-+YGsl=cnSiIF@2#wH4 zO3$W3qnq9}wna9T8#K3T0#J=XS9k5*B8M6cTHm!F&`N{2^r5uTATE6F_BWZ;}0}?L*x>+MBJ&(3IXnBh~%Bt6O z;Srfng$D76%%@of@rWElH3spB979VC;t@HPRvN@3axC4dk(4)%HX7Z^#QR!|qwNO$ zJ@G-Hmt2F3YJ@Z*+URr$tSr`B}8vAolz$dQ&4Q{R}$fvOI&1yDZP3 zC<)&#kK%ECCM6lfz!|_){okdd&Iu?I5(3vjF*)-qiS|qKDnoUa$ z>XdXZ&~k%@CT)%S9j!NLT+&lOn+#f*^m5eMw8Nl3B<%&-W6-*!MpaBl4SFmohl=St zgWgN}G^&K!FV?;CMbbAw-3*HE*{Dh>%b+ejbEuR?8kF7B*K!WcGU&9PErH4nV(*sG z5`);gWz=X8uYBdS)*xQ_%IO}B#Akkb#pqr_>3;gypbt^HpN<*S;iTa$=Th_qy4EQt zjRERx&{-$VY&nn84O(zgF;K2Sm!DMIay}IqwDP1SKxbXqo zQj$T-dgV|h^*3lObPFlpp!=X(NK*`YxmOWY(R_mr_L>b;tC6&*n*QjZn^iTfF_x*x zZ?&wU%?1rgei!Ho$8xxJF6}nDHxj>Yc`h9?=)J_Bfd1*Stfgj4qzzJDEw$Gusvx;h z)ly%BW+dlOEoB+RyG0!p8pOLr9nCU`M_oPD7{sHlo|YI?i98!)SXA$4dPLEKJ7P%N8S1Kp+-{cMRd&Q4##(DwTPlG)V*>nJ`pHhBe7ge$wtSs zaWUl@#ItcRjW?(u`Q@k!sKlTd$$Nn+4dSu;ds=1?kKNzX3WF+Ez{h*Q5`XY*wo6O6jUP?}DbrB^QbRc;UP=AB$ z-g&K-Qocc*dXEE|V$iVO(_39k^9`ER`wXCZgU;>kZ*>VRH)vV!1wgAblF~1w^+xw; z?`vCKN?Q$Te)0`KI}FM``Sw=J=zu}fPQDxHs6m&V{6MSA$aj(MmD^8#6sWC6Qo`lb z&FGT)yw&P*$}%Xg&$~b)T$Wc*q0wPnx4MGL4Z^qvs&ZL2Qlrt;^=VX%wAP?2`XCyl zjRxHd-5+VYK~F>XM|#DekNUhEbtQdl&<}m~0v$6bsqf2CS5fp*-J-#L_X2e`sHE?~ z=F2JFp!55F1e9yg9eo?s)l_8AqkVJeYAP}41L&@yMFxEf-8Hn#pq?qK)U~w6pq!MO zf$q{sJh*~38y)Aef_59kxvZeQ2JsmD6MbP2&#^zzaf5g_ypG~7)-B@Q@H*07Hajd_Z`WnQs{%XoHh-3Ym zsL&ve^>3nC2JzZ+Gu0TxYtPMefkxt&KU1U89geSV{byQh(6RUipnF`FYv>W9D?R0k z)@$e$gZ^;J)j;pKEN`KYjqcG?ZfkuDsY`W>-Z|w?pjH}5>9FojIMLPMs*ui8kF5Hhi;=q1}*64Yq^$I7<6&JmOyI^x(DfQr_Ba!L%Q4P z35}#KchGL5I~@OB>pSR>LC4|`1O3xwxsHxImfyBsM{&z^`;Nu`1k_z4$#XsRchFC* z*HgK%%G?F~;rbirfwE5i>eVH!(z5c7z zUntq2BmHj%N;k+F&@TEO8gEdC0Ud#+X(W06l}e1RV8AN%S6XCH@qn9wmKn4Rxoo60 z2CYIa8|f~MB$s>X?;f<(SRRh=6MZl3G3Z$Q0HA-kEdNGF9W)^NZC zk8%xqZ$J*+M`JaT@-|VCgK}sSEjN~j<4=wLJFPe9So|2Ezd4q}t@~-KgT_SPPsfZU z&&>xY`U>q&o|_L)XM=cdZl-jDcy4Z{T!VOSK1f9d@!WinN(|z;`4BBKi09@*bcsgN zhKFf|(H)LIJ^EqVV9>Gn-vQn4vV4TLIp}xMkI;9qqPNl-gC?e42y~Z5lIP>J+vqr#$LWwkoXg|% zPnYEr6!k}4v#V489Q_0(8FXvvok0B!;+^?P$~TC2<|k>2LA*0>qxlB$&b*E44dR{o zDOzq2@61opDvhL`Ptzu&Ynj%lo~9iJC8p)j)AX9l@)2|H=OK^!IQq>l~aC;?ySdX;ViM+q-bv_Tvt z?4o3YI7-+>=>~C>u$#sk#8JX-Dl&+pgcqsOAdV7Vq(ufLq&KRUXoW!o({t!0T4NAL z5HHhagE)eCnYI~JhIFscUW1k(-79p+AdU-OrQ-&1T<|JIE!QpL=;Ad>GKiy#*Qmci z95cL5`37;!@H$N~h+~F5G~XbO8TL@EM$%(%&{Cs&EB({xH)yp%2h+a+T5r(t^i}Fj z+GN@S!y|L$%pU$%5Xu7G$&n$`y2Z z)YgnuYA+QT^ejr)OC<)qnQ^fB+qB4__cJ~Mx;T>9Gbn%(p+q^>?3>uP|40ONC zavyCoy7J7dHv4F=L3NqgK!*&vE^}0y{dC-*J2S@vHNQssLCSlV;xvjnmRZ*3UFvU8 zhk+G9gI$*YpnRiyBk`g(|Df3hy_fh$pt&x~_h_lnojUMf^Y>`AK~o2Q1hn3u+k0fS zIY3(t`g@OTpdAKXFz}8x@6!Q;t{r$c&{2aP9@wZpApLUd@~9UF=FkV!{#rek5EUB4v+)qk)JQyWn97Zg=k#G(Vi3>i!_;Wd;rNH!d`N2zIu`#p z&_;u%WHqXfXuCnhDE%XPNh2xYW7=sTH~nyxJV0&Ia*nbA*x& z;+lOzxdw5~KB4gjar-`{5`(yXpHihkrw(dVM`@Ws#VGG6tuSaMbf3`%gEm6<8ErP` zZRq|{=Owk_;gH|REStkKG@F{l}OrImewMv|_z-Dq^9 zhBm6!_F99c4b7p}_C|y1p^LV+8}vu$qV1P7l3d!@`;G2JShlf`8T0`x+t@$5EZf@A zt8~qJ47;aoTRYjHoMD@QQZp)GW@< z5v0$R#My;{^x1=s_J%t+mk%vIP0`Vwy^hf;bw=)2ZM)bz4BFc9m$p6ZPXy^)lI`Py zbS}N^vdf>;x$xF~41btzOo;1+lZ*O|k0@8XP;X-AsG6AYI;U zd!ry--tX)U`*aC>BII{=<9?k>N$v&h{C4!a8tv$Kb-RUjmLSe$d$R_6ydciyrDo^Z zk9?|g;gcli*|Uym#3xC9Z!hKV%Y}FOB*{f~c599JB*~@rBb_wjlO$Kz%aS$XlO$K# z8`Cu6lO)&JuMF3SPm)}3uNc8-m8#BN-|i;+xIz0nZfw|O;&-(BtG&peE*;-!cc1-=L4U~ou-yZ8R-U%}qT|=?9=00|S`h1Nzr{Xe z(BRni?Vqr7M`_C&bCcRXWv?};ZTx`t&)RCV*8MeiMEjj~r9pk-C$)dc-eb_?xpUgT zZjaB`mLuZp+P`ftNka4REoc2l4Y%I2mz|=~piwK^zh}qvW2Da(9`nWK$^I`jfIc%wQAKJ?_Qq3oBiv7^ema~3Z_mMqPBh?4GkL>39 z1fR^?kL~svsRHOew)e_eINiP@_VP=Dbva^pyHq1?-zWC+tAe^uY#jTqV%;(O*w4Xq$LuTRWSp+cH}*=6)ORyB#eQSYS3HZg z?q7C|Mk;pZrr3YkGp(TRTf0OfHDKm*$=}-iO_hOk-`VLJsbNU>ojuZKoo>VT_KJ=g z@i_b5j*AcKey}(64eEZd`=l7WnLJ&)V-HBv`r4oo?2r)C9pKiSzD zsjp`?ru=08?9%;gM-387^)u@Ev;CbQUC&?ats{fw{bCp9X~h0izCDwJI^~-+C8)D} zam7KM;HHh+0}Hq7~clj)pWWTU;m@Qws-K2mpxAFI{3C5#BGT6)yR&g zb+Nvq2C**A*H`vGt&8)mH;8o|eH&yq)VhwoZk@@QEAhU1*&DSk-uHz;oUW5^jqH?K z*U6WJV_1PX*4ejB_D!wp?3*Y%rEYtIZxt*H{}I5S4}J zkPdCro}47wvqAN!4)j#`igDsGbK+KqrwyO2Y}542I~FsQAb`CqETf8L7!-W>M)e?MTh21fqB>sy{F-n9RK zgw$tY^6;G9XX7j@ZH+*{F{m-!(+AxmNL`B>%*4bI~R_1 zBki02b<5w9+i!gOhq|>;9FGMe=il0*C`t8OYJxZ)r3CE5d*Q^9s`h+SJ#u3C|73g~ z?za<1xhK|gtDExe|CBs<7ZWHkT*CLiwqm)yqX}4^Sk6zaeTwgcnqC=BtmV6;X83Nb z6GgV+Hly>|t8e3XzVIs}!iQ6>4X5Fj?%e)w*#CFssq=By*4-9&DNWh9?VIA=`TQD> zA4tZii9!#y0T+j>4Nx2WGH?>EHYysDXw@G-MU8h4YNS}isX~046uxIw&BE`3cEB|o zzjz#vD@85BcWf=fUz|k3RiduM-z)K(lFRXTxtfpPVr-79QmsI`75H7q>(qnzoy7;$ z4Y*d}x)IkJT({u571wRJ*5kSp*Il^o#wa7h;M$Cf|38LnE3PMSJ&EgS zT-$Lyi|aXD&*R#GYbUN3aP7i1RZYby*jLrIb~*I6(D#KN5&EUj?}b_x+q4uKBQ!y1 zPoXJ7Ge8^L=YiggU)khuyP7JrC2|;UogsXMoU^Eq^A1lzf-}@sb^Z_ScUl+b|J?pn zYjr+8H!t?N`2L($F*~il<#&xaVr|J!i8)t24Q+*bBR?%BUu^PWGZZ|3F5`&xVg5+5 zoDfr?K858G>&JYSHy<+<^7dn93Y`twWlU+zVyVxU)_^hdzz-g?5UIF6i>BWaItmn*hJ9f zV|#Tdpw(kjI#h~%z1S}i`(>!rv<}PE{YbS;Z5=xw^trJMJ1miW{$#x~widZ%#a-Ir zi1q&1t2*3deLi*tXk3>YLDjfhIy|L5AG^Lo1)VhR9$03K`#VY;JZ`v!R)ZF*5#t{2 zP^eBDH#BB3aZeR0J|%E5_%5-9>YcF{fHsa>271l7>tg>THYxPcxMyRRqi%1_9n_0|4HnlG-G_bxRq!{M%)^yXPorcP3oNSE8`Zc^Tt0FRiQ2!e{)<* zx@P^Ys+c#V!pKAEu0s#6=l60yItzM zTk4!5HQ6I{zm)sFwEcZ*HtBHZo2<5zR&>}Yl0%qB$2uRCnzU3rhIeA*_!5qZ{J6;3 zJ|Tf=&jcS%xE|{qZE?+6lARDIl5QeN7QVmHuFfw`_@2g3Iw!%hx3#NDSZozfS_G=c z%oIFG;+9~hU?huVxky%uWR28nz2v+R+MzLPB>y#%{~F1EjpV;Z@?RtQZk4?h(3Q=pms;g&q^yU(X2PeHhQftt^p5+w8+=TfAqB_iXW=E#9-mdp3J7 z4yoRb?Pjz0l5O^0e@UBVbAR=h9QsQR{UwL~l0$#Vp}*viD>>v#4uz6Kk>pS$X^SLn zk)$n>v_+D(NYc(0%W^4ew%E@W``KbYTkL0x{cN$Xl(OojtR+&`GLbA7$x4yrsKK)v z)f&k;M~$BSeD->q*N2U^tZepKv$4Kml+N#vq4+ylG8CUw&QN?te~r{(jnrX{)M1U( zVU5&bjnrYQjtJ|FjHw2%8Y&d2@RO(e-8=`WHj zkwoEBAx}m};qw^VL66c-&@bpE&|~yE=y$Xi^fT4S?iz0H=3Y_{Ael1(CcMEI@3 zZxiiydrzAvwZrDzcH3`*f5rX>=pOqZ=w6%i-*0~m{($`%=pp+n(2wnJ+q6|lzSOpD zRkCk5XkXvip#6Opw~bPjKCVNJkLytH<2o$zaVblDT*@-hHi~w+Xt#=Fn@F~cWQW-A zhJC6!P2Dy+6~B4@IOtjGO3=}21?W|3JG8?@Qm6h2$?w&-pg63VpQ;w955dQ(M@FUM z8(#^0FO>m0P+d5Bsrob0E>-)eXY8et&sw3|gs!tV=h4J;ozQ1&=4~I-wJkaA+Lrt1 zXvb~BZv%f}`~l$)fbY;rwPG99Y9DRrl+=n-jTBlUbg9s_LbnM$AXK$x%MyGtYD1Tj zHc~@F_tEOEYayT3eXU5g8M==??{T0Fr&4X1CJ7xWv_$Aqp=*V1(|kLre>>#XbDQwn zz<=NK0O*yy4v0jxm-@HgN4=Ai+DrX~mIz%cbgj^BLJtU4F>KjOXqnJ;LJw+r2iA`6 z@FT`>nb1pxt`qu<(1SwlShndUbhOYip_d9>C-fPi2V%LN2V(cprjrkfM8!$Xr zzIGhvlLY>SzDXkQC6bYGQWN1zgfA0*sqmKyzgGBl!fzA)8Q~8Ie^7Y4qtsLA$c|j@ z$d3Ey52uV4Nr^~GAQ{lVOe9N1vJ{fH`d=!NwIW#y$%+B%M6#_T*X8Od@tcg3O`!-65-2)Un=~i!mky6o$${HJt)-fB=r|MT4NIF6XvN^AB3UciZ9)$SRV89yBK9TwsAKk0 zk*pP}O83$IIjWSkNrvvDJBE%Fek8O{4l4nDCAUN*OAXye86(!R7L?O&Gjt!7o_YZC z4I>YTM9tySlZ1{GS|W6*(6vIh2|XZGm5II3kwQy^E)}{~=r*ATgeH~m!uVe+^nlPL zKTAr4uAR&L0ij9rL@spge31)Hst~!*wdaUjXwm}alPX0kbgj?>LX)akzE)^bwb%$v zsu8)+145I|6|K;#GMg$c3fH9ytvA^bK}m7`+eNf zxXa?MjJr1O{3nZOtF9xv z{@is#w}-la-F-$_oP0a z`b_H1)R$A=NZpruDD}rwD=jXqOIrW5%(U#Z)6%A_NBd__EFkrXmQkBAGV^ztD>6UJ{BmGS z)`YA-XVnebJ?Qzt9}P|#k~^ef$OA*p%f2eRbxzFCf}uYQ%^Vh&Tb?^~`1QlD7?FJH z_EQr^w$AI9SDx39cX{3&dHeFd%}XDZH)`6bs!?~3vhn<`8QyH*_bOEszU8~6>MhTU z+NuGnol3(qqf9(A8i;2_S$Iw~NcB{M)k$gycHL~1ta4yIO!dLDjubTp-+nzF-*R1m zr%i<_RZT?d$qL^|tupYODHD7AKs;y4QolnkXCs#~RTBL*0wmZ@>-GL&=`N?NWa;0e@ec=A-JZbFGSt4W9f zCaZO73Z6Di#nYx~Y6D`7zn~U>Q!~_kYNpzxPRDPt&%%?ZGw|%_O!W|I_AqMpC~CGv z6|2Yb)awaVil@Z_mNy{OJnFCi9r6;HwrpvDJPl{$=C zf2ht?AFEn*MAfNJRK5B_ov*&e^R(k=$uEdwl(j_J)_YlTY0LGriTmEx54oEZMV$HJIbKpSG-0KGWo z9nkecpN;tk_}wx5;f^F+fsYr*;w|#3qrHv{5ZNkH0~VGQE@ESHeULAGdx-EbV2g~O^Ll3{F$BD zzO2&|;4kX*4roaNOR9ukl<*ZK*9qMql5Ikt7y6pecZHtZg;S*nO%nPs^w$5O#wf%8{3RZWI9pk8HuYQuSmQdG`z&yn{9<$ zmwP1f0C;!lXLsj(76{cfu{#}y%>&(&qLiv^nF~6y2j@Jgc@g*{iHkrF_uy2z{$C2O z(`u?)YIj-*%d>m7YpK*ZJrh9ddUgk0+LO~>-?I<+wZh-iGXuO%t6O)+No@1bNmoF= z^Q3D*-#BSC=#j+Dpr`cO4f<^_9@|zjTecC}Ihp% z4uKv?jB2ga)D*5^snFUK&i`Ve*Qaog-zD-#g}#u&Ez-Q#lgY?ud{i#zk;D?v6ORqM z(-PS9Zn+Zlv#5=d>J`v8`*BUa>c`&p^=IDhbQE&ClP_ASjUw48wATQxNy>n3kZ%zF zG2!h_S&$qZpwkwDZ>lDCr*g-#G?m9^b!sCdn!hh~6ZmkyWu)y!xtoOQUfYt!Ub-Qj zIWwmIB`wLP=$14wXS>sOXsblqaxiPdThv43!-P&2s_U$0 z)9Q@mw%&TK5S!UUI5)r0N}*bA=4Li)?Hs1@Li-5SElL%Bu+Y359u=nv)%_bilxI_q zp`2Ft#jV2MBlKILhoc`xtxk%58MHY1BhZPt><8}}TZ$Y4lGmHzliuj>v?NW&mgsA`?Q&4A7Ghl@QVo0!>ClLdYct z^khUNgeYb>Xd0psLL`$1nt@2fLNvoP3(*K6J<~ymN(fO+0q77!B!tLjB4`ex5kiDB z752kG2~o~;@WVj~kLjQ%g zl@@*<;uc80#~Vva{QyepM|C^+<3fK%OiAh|p}*j5CIT0WDOqw*CU%C$zcs zS4dibV*Fe8f^P|m@o(J+zBMSuy!ChR?LaZ+tp~uzfMU#B4}y;c#b~!41|JWKac(^d zJ^_>v8EygJ4HRSBdK`QYP>gNsN$@>EF}AIz!1n^h*tVVl-y0NT+jqx8Tb`N%^hs!OsOHHQ)LXd<7`srx|_%UkOU8%K8O-H7KbX3;*y1 z_m)Mf*0RCZfs(4Xnt^WsCAG+E0e&$ksoz^I!7l+Nb&=H?{8CU-7h7$>Um|pw)ee$N zgZx_1G!s{J%2dJg) zvIc;^Q|R4R8YCM)u{v29;O_w?wb2>~{$5a0_gRC$ZvrKCzcmE>1E8cfTRGq#1jU+W z4Fmr$D5*!R;ou(y#rkHQ3VsVHsjXHX_{Tx9)>)&$KM6`|n>7afQ=nMuta0GCgOYmI zDggf+D5>YI)4=Zl#kyxr1iuTE)Qi?+@GpU4t;5LxtaYHIUbm)$-vdhO4QmGYH$h3g zWt|RwFDR+EaeBZ~?|_opXPpIpKPahxSib}R9w<+X627A2PVo7lgx?al8~j+I5On--DiqL8F0OV7JPNxSUF9Iceqx{3*XM&PCogM{03lwnzZ2^BK zC?W)U9Qx||L|a+T1l=`iHifa0sm z=p*od0>zhU(Gl?13%!9pg=D4BRrDF;HwwLpK8JiYD1Miez65`>&^7cmB)5QKHKT99 z-v&x*Eqx3Ac2H95=zH+%L9v?AkKpeDC3QFb1bzc3)-n18{Jo%9$H*eAW1yt|PB!@a zK}kJ8&A@L4CG{}10RIRm;k!9of`1H@)D~(Dek&-c$EgkYCqPL(N$tRI14Yb6G2ovD z#X3f@;I|8Xjygi}tkCDF6XZKU38y&{z`p=WY8QUT$5OjN5x-F)_?JPkrcn>@uYw|e zqn_Yj2Sv<=-@ZZ2CiETZ4awU=_u)5cu#SOZ9mDU=U>yU+I!67#e<1Wj8UV>*p-1ow zFo@HHeum$1!3rky3;Y@j;d{;of&M^4K*`PlZD9|iO7)7*##6MJ&1^jF8`(SsbX4=(j%?H0modfK^bL)dukQs*OVb z2Fc&l{X#cEa=+Rp^l3;QP}{*jpq>N2S?vJ7S-k-MLG_Z*-H<${4ha1KlCA0!p&vu? zg!&5n6Y2}_PpV@={{_j@IE0)6N-g>!f{y~fU9|%LtcnKztZEDXIn^HgbE*UQ=T*GW zI7oJ=&O*CDvQu>z+6|Hy)Jfo9P)Xo-sbrxiLlTR-t)BSB#WcQeiph$(DdzQ<4`aTM z$>=bo!-x)JI_!!~i5nL8L)?&#r*_QjJf-uj&i8lT)A_T`KXq=M&>^93LVCif3F8tb zC!C&;)UB}Fyl&@ryS&?~Znt&2FllwtZAtGWeV3$qEE1&mXs|i&!lwgH@;tP>Y1r?Qa7i5mU=9;by{-T zsI*0C7pL8sc5m8iX~6Vhdh}5YWBO?N3yeX&mMl|@Xt;ils7%^th|kRFXX+JXN~GH zs?VrJqgIW&b(C)@pM-V)yEBhZ<_7=aC%ka)?6qp8E)f~_T<2da^`ywWY3sveldYdS za3VaOaQ?m4{<6^wI6pk}l)^g11j-c&OA$xwwB9m?j%VFml5)KaA@UT#w><4Chj};2v?Sx)RUo zufiNyjv0V6e7HY+3fI#(pZW~$54Yod>a)0>!}UC_9k_PldI8riT)T1K_#&>CaJ`J{ z6xT@8?G1ZDXRIAw?wy5Q?J5{r|U8+~y+v;9iZ^a!^cE=+s8dsN&zo=8= ztJRsf%5a?dD##o8CPR5nhb*lAU*BMqyw;5I@u94jutWDjk)hoE(#`RJ6EoySoPIYC{E_FTr zevH3gB~`1mp4BQF*Vvw0)I<3DCa(8zeFpryldiCCz;!FGjVIk;eb5VSOs-a~aU~?f zugN>rk>p+K>*U+4@x5=ers68@{gie5{2E8`&ayZFr``@$JOkVY889R7WLIB?_0h5y>F%B%I)`=wW!~>)=mB2w>IN? z9M`V?-&)fKRI7!!&cn5Az!vr6fSqbW>Mm83nn9B@GH4dAxf#P~Xy#5;m$^$V$s9vZ z;d%kr-pr}=>A;;TC2N-&m~|E{!gVpOYqR{ca8L!U#q}3l4-aafrv~p-zYN}`S`OK% ziiYe`XAh}XD{$R}>+T_2R8963^aQRias85gJGCBq1)Yp54cG9Yx6?8FZ8z)+>Wu5; zVYgG;+&d``*92U%a_^(8;SbV0Ts64HgaDD$4wIE=74|r7B?U zjGDhN-AmNrz@hd0?% z*ne!}E_QTvRefnimA}^I$=@h*WixvEL?`{2+S=;cf~vXI$}OGduS3gJ0c2BZtLyz` z+-Xy)D=W$tJ1Ofp#eY@ns!c(DX?^MR>W11fzbo(GEOh5Ip?Z!hi-L)zwRMraQ{Wg) zuP?1{s8a=|8KrY7{gdaMgXTIGP)_rgRiEdtT|A|_qAEmDS6^N0u62R*wkxr>Mjqs< zcvBT^Lhec_(@;-6Df+k1t5nQse`TEt&0%z{zqH;zxpqcPIsQ&5tu0;XulLu68;3H4XK3JT#?S%mj9& z(QRjeQyDGtRKXbqQyaJ=gNINxt9ZVT zt*%{ID$RC8(@mY(EnIJJf`FDa1@-=gO;$djbeGLCZxvZ0{bl;zN_HNSKwoE*_=VQ65!Di#)mr`8k_JlRa;8@ED#b zqlk5LQoBw`Xa6&OkGE!HgfA=|wxixV20IIk1r643>x`~3@Cqd&M3g(%$9 z;tYRjtt(AX)c{v7^w$QS ztP=;ha>%PH&l^2Guv9u@KQJLoo@SZ^dfJSVNF!YrG<`vX%Oj>g0)-gJS-Xt%nAb79 z?mspN^sdMeFqO}!sjMz7=LVcmWj1&o#FH8p&hgi(@Kwr@nAkJ~yJEkv?r==&!aFdi zbL9}|qtM8<3AraFCY2}jMK5|KF6+>!I0U;a7uJbKRjR<;a0OdblA#LnE8yHZ9Qcw~aidmIrV7{qH@>JFYNH$GHgp>V)J5|VhL=}V%}eE& zp-wRkCU&%HbZJ$Yzp_$ps*9=@_^VV=ZN%Ib!49{(ILmf~hY@(#fq z5aDt+Wh5qV>dR2!ae}ft49?1;rL+#>U%gbZLIcX2+DhF<>H44A2 z6?t&^7l@Tx{yL2^6PEK1o0?+jnN~(3lSaAx9q_Z;t&tiX;=)KKo+g{-I&nV-6{ea_ zJcaEna4W93dEw3QHo?q!Ra_bzFU51rKq)SB4TR##Umpb#Z9Hv2-uxH|L)q!D;<5E*h}(aiA7 z5vF*dzpf79h16!E;aMBt#VP=b{ruQRY~_we^3hxYR{={6`%P-Y;~9fNc+N1u7uV^B zC#*MKWwl{-W&v9x#O+Cqu17&7De`bsn>}y1v#V#xmo2+@sSV0o(8sIkYPnvyR!*~c(h0=*|Ob2P8cSX1-7E9!8Px6 zYOK2=38xSsUuyrrK*7=Bl}?YNigw73I=~f^zW%{uEaQ#*Ea0>nlugJ>N*P z?|6=jwJ=B`dI7;5S|D3Hk%yDaD=D7qTG=Fj&m89RJpylPkE+-o;g(#ojC8LqO^B$7 zC@ij#_aM?%ZkK*&=lIA4U93bdc=Hr^=F15=B6Eqjfgz&e%KBOaK>Bg4&P`fT7%t}2 z5yTkk;mJd@o%;dRzyRF>GAk_=9%T#0`$wh{c*w6PCo*Y;ZmW39E(LO6*9L4SE946ppPmr)lwge`#g?d=s;A zL3mIW6tKBRP+U`5iy`WihJ`@pMVORR;@wM#ttYQ=HDdY2b(7~7&G+j^Q=BzB%O&D` zLqs8v{pgIpz*8itCEOIQ;0z-wg3~ED0-WT*{tpp_K(0*S(S2xthRID;!sNjP*0|g4 zen}L#MdGEr0?$&Mxy5-oGs^+)^p3E&R31sz$>TrvynaNfF_+@T-2Uk`rB$l9Jn-OJ zIx7I!-tqmU20XRUPeiaK2qj13pvGDjy?mfBQ@-R#g8wOFNdPk@TL{84Z#C)f# zUFmsg$mQYwHG+oAj;x6+)x%A0z@4$?+`UWR=v#O{kGbjfwRlpdr-2J|nPO`6I?tkt zdOYxSGS$#A)evh|8J?VCl9{77Y|hVd+%irRDht-kU9j*v=g;2r(nMr}$Ml+|B3=gvaa)*NDmKfIj!487g+JU`QN|5)~ zj)aqVCB=Bq%GV4*N5siOM8%8c-IZg)rRmpMj)+r* zh`dz}tw~4`A!&mfS)c^TO`PLwS6&s@pb1rYZq8;CmcrS2B5T64(hZ4RGoy=GHKPkF zMmID}EcFVLnoL|z8H2CgL-%g1F5dU@jse#X@kG-G#g(OX^*Ttz5@H5)VTg=#36;4L zVpi~3CLTLMDTwp_y z^!o0`BjyYuhy#yqou}5uUB`f?tAFHOlh9^Lx0&hjdPO9LQaIQ}A`O|sroL=KE;|IL* z5K1pYfiw{f+|G$;AkUd5&kbZElZ*>;i8zlCQNTQ6mLaydhYHMIJ&$ELh|IZ#;UrRY zAT$>N8+rsfy+;K9m`5)Gu~{cVrP>pr(qM9@3eN82)WIupkW-)|kraWo*W91WV=NOf z1(%F~G;N;scLFf*<#dIjy~k{P?>YLE*XbvbuflJIEImmNUReO zaE2a%2gt*Y;$l@$1+Jo8O&&E}O~;i#Wg=t~`DR8R|0#EFfYtPKE2rQTYT%7|;IN8z zn|}2dlyUK)vQUgC*md>%rrvB-1wqKkT`+j3Sx|)qU2d?X$<95VOU`K{$zAzHQU@O$ zIL|PhwmXk8y^_F=8GK#pBsJSkh=!{cSrf?0*+)Wi@+w>zc@^FYMlQ=py$Oq}w>sJl=qNke1Dl{f-Vbtl<3soqw%=TqX~Tk z?oqNgL!N7U^qlR9^r4wMJ`71D@(7uUJTwz0s0hi#2`wVYBfBNU($lsOom3@6rbCl5 zzjJ(4PZ$>#zq_#Ops1RR<8BoQ$P24+@)Qfb%B#ejtHJ{1NHC|dRQPe=0|)8Q>HOTQ zUN8TA6i|TfS_7~ymDV}$hlOSRG%bbJdzf{yoQ0EGhn{maDxErFDyIe}_a<^Eo>y5t zr?fJ!tZsaDUGUxXxG*Uf6)p`X=N_o5DJ|3Mw__O;dol=$gE>r_f~r<7l=eF5142*g zfDk)Q9X@v>DGD^pc82Bm?fj7|QR5x8@T?E;#r5-XSQc~L+-VmDA)C1%zuKz6(T{3f zJG{;^i0y(%n-x_{i6RE?n1FYhu>-Mk19ohKY>sw7+dL48y4*7_$7ikJcr=C4?O@EocR$oyxk#miBL$GNY7}qWjh6$ z&Dkl&jRX5TD}&L6%R&ofROoF#Xz8+2E?%byWGo+c3$02}=*l=KG?@hjfy_7`G&*op z$Q6u)Xk6KbXo_pYPt0>Z5f0LGCK1F=@Z?$zy~pMyKNC_lX(YM-n$g&bTG>;}s;kOX z(fo?qay1r_TK#+_k)-RUMc*R@?>hAJcsF+Qcw#gTXJ@?U(v%HOPrhInw6p2`B5|PA)0V zg%{BBKNyVZN2DFvF8 zAL*%lR$aTq{Y0MZw$<;&4kn>YZv%uVPqX;Umt_~q@CC

bz#sjAkOzYC;G#cro?c?SbWH`Nu{2m z=FNY2T0}iKD6lwO0cVsql+}kTMpxG?MyNMGf~u$%b97;;+XaD^jmFSwz){z5-{?Ed zIyK4PfY1C^238o{4_D1=z*C{HB>5Gk^QsVgRg__u_RndUH;;QcXr^W87~U`HoK7(P z#tnwQYR$<@eEd@cvP4YtSC%f)i$yRy)8XQ%`ieOfl{oPb)HxF4fEy)Gt4#1GQXCZp^x~EC@(Hf$0>K5ACggAAV+y+rw!byO~h>$pK8S& z7>;Zr3=b%BM`RRZ1LY?Nl8Rr>PW0E$uPz_eP*I6R7QsdCi2CB>UaW>FdL zPWfIX*T0D6IVu->5{4>+QUUT10+WcJ3bS+$2I~3scxA@ly)l7rPC{@h&LN+xCg{%q zadwhJesvkAF5??=Y?+t}O>!n-Jl(Gep?0FhU z-?`GD>FzA%D%pqdy|%UU@KGon-^J;lpc}YjF>&(BOL5a4xJ}S!FLgY@0}2mtogT-N z+xo#-s;Jr=hVYy(83U))A`+Bi6lgc@3j?-hz91COa2LT^R{<|={1xZniJ9x+n`;_LHhM1TUNAiFLy>{*KAllf1FBjwP^|b6TZY4B zIvl=5*_nVk)Kmp^JRm36j#*e!zgXe<1isxsPbFFAs%whJEULkmpH%1>?u4*Tg}H-W z6&|w)miiNk{BgwkV1WQg#J+pIIqCU8B{@9tH-i*sNO>SwemSb z*p~+_b4QdF7jp$FOBau>EUl}{^|Lvv1YmGa2XCmexqdX1rk$ z;am6Vh$*Ye^(`&OYWx8~?tya~a66CgF&})ZxWMoEpr^{^J5=$W-llS^%ke2NL@8Jf zco7`r*#ZWu(Di;uKoVTrvqM*KtkinR)~mExvgbrxvde-}vkdb}>RKc-(#5}+KF-)w z6Y^?n@jR3LKDwcnkILdpc%09a@-plGFc~*A16yC{{)jy=bc4*m4rq4B40s~K7MTH; zxc0~l#~-q8u?I8YkNL7j1znT@m(+Q7xeWM5J1Iju#&{{i~SEKC-+hqClmVLoywD~Mhh!xm8Z%FH}Az}O01Vd0v<8y~iS(?Tua zgJ3VPO%5KPT(H(=oyM z8#YXxQR*3_=2Jn~Qh6;dKtv$BAxEO9A|9%YAk>-YFRv)&eOL>mG43?7Md!LcQ5skk-5t%Vj0a;#dG?D; zjFgbckcq((IvIFX2`m>F5)mc?FDS0bz>A6=`OakE1toMc@T%gS47{kAdbR*@(R1@WSHq)Ii5Aj;DBG37-eNzIZ1BFE79LG|ZUy!IS3;j^ zyS>IsLWtLRJqYz0uLyzF2fm2lH4ZjhF5;;k;vyY($YSJfqYM&}24*x|gYg<#>(C*~ zYe9q|%j-dCM<6T->4+@2O?L#Z55Xau1$PBJ?y6*#Of|jB2Wkn&xgDJauX!*$=D~1V zq=m&SOcB-;*D8e`^DI=siEK0|96OD(3Z*M^r>I}5R$QRp<(tR1&SBdE9OA>#9emah z;}8$CRDljTko|cTc!a1XfRj)7gzWAa@O{V>;ROnBCxQ<)d22_VO#1?BEre`kTBBPX zawdr1NZ@&pRN2*{Tz`ZQA%_kM_#r~~=~cbBj09tS4H0J&1BT;U?2!^ zEr0IGh%prCR!s{k8z?*OoYjY&%c23ps zt&8WmYc8g?cTO9LtDZ1%d<`d>EzuZ+I-ZA_*YO+~n2j3)EVv4q2MwVyvHOXGaXfGR z=0Vsryao<@4GK>W)F-qCD9&2}l&Z_e;utI*J4v8_UEPk70#Z{rrnR?h({TM1GVqnV zZU>d}w`}Xr1dT5^1f1N8F>5Be9T-`Hn3#V_qx*QCH+ekmEAfiWhtaB%uM{ZF5`}I-)o* z^ZK1*GwpcuAjo*${rtz}dXC6KhE>>OAia@IGshgvD|qCAH$cwd;wL>Je&GADP(ScZ zSs;#z>|l<*Tz&{X>2dtPH(a59;ONWi2M)lrAI#$(;|KRs9+w~7H(Y^56^k*iC{7!B zRSjt)FRY<$%tFIV8#yS7Fo?3ylOY>k78>Phb{5*B+vqeq3k?cwc2-z~orV6?%^rj) zgq}6c9;A1c&?Rk9)#|8?;V3e_Lf2DX^$R19a&Y+p*lM&I@F?&0vfex330cxOgzUqT_tm!4}77gW-%2pACjnLVY$E9x*-}3{OPx z*mZaC#ye&M?m}TrJFoLyXikFdL3(`lyrB4cYKmgl@=& z$3nXyn}?gH8?xav-3{4rSFjth;jDna-Ia9h?txmuac(!~z-t~1k9jcM<_$_rOoKg_ zIk*Abv`AYKtI?{^r{t(AuS=}uE)RW=iTXrXw%D3$9%_x=3!AQN%a6Fij8WIH5hcch z_%~2`)#5jA>+oAW4XPHufr}@l_{*q9O~UWvE`&rSgxWZolrmV>DZI&q8z4p5$Ezp1nI9zpI?CGVr^~1MoLTXoj-vQ&HQK zaV6om&3cQC>XC<%xWCzB1Mu6)rAR*y^)D5lTdn=T1Ayz4HDD3Ah2RDtMJ38&9jD?} z1$%q|H08?bsOvBg`gHuZGgH)|6Z?{Vpwm{MoJ!=V+Ht#ZZV`RU{invwN6z)ARULlw zISv08O3iewcr{VEM)v?pi!FpT_lRp0 zVGK<_(HO!A2_L)2t9Q7x2qUuwQX&cwQ9IamLjB}S=C$3c~F7~)f z9+Ql*S0ST{N6~PlS|^D|%3-Bip9j7YX)sICVjitrel7ChUP3JsnkrkhahIqP=EI)z zs#o*jk6>LQ&D=mcRWI#j-7Ddvy8!J~&3II(mQ~1IR+Elqc)g_p*y4USar%&@w0&hGi>%Dcx5l+I-~p@(Oy;Tc{Jf_A{(zmR|N>Pn>EB^LDg%ahi^*a)*{SC@}2=7l(rm+D;ze@v5b!E5REjq1uZ=7n!DrkS^;DlxoJdQh*1Pgc zJOef0Z8%~tCIl^Y`hd0S$>B{6Qt^@-964#~9JGQxsygK(XI|O3jjlP`=eNyKm2f`t zi8wg|RO+4eoT)1be!*&=klEzDjrgTjVt6oO+Mrx#3MyQ%{#DtP*i?*qljzx*Iq?oc8 zic0KML3d9I;Gj&v0BWJ4N^7)En*d5H6bh;UOe+@(zydPBqB5!g3XnhCf+!SJMO{EC z)F0pX=Eu(79WBYE+CNfCH@o|0=FOY;-n@D9c6YX-zgP)qADTv`avi1~N#^RQ(f5@- zzx`M2n$~Kwm-oQU@ThgwN>p$IrF{NyO-$p+)gX<%p1{>ZG+E5i9x)yS$2t9NJj*XD zQZoTQI04SG9w&k7<<)(*jPI~mO;it5%k}xAK3c8BXF$&$taq_WaFGDZHHCGfoE=I;ekE3ZYdN8?ZCPVCa?NuX(>$k3%|W%+!lcbca);9y z-t9yQSa`Om!>y>vzD{A~p|P3zjdtZ1PnYVxN_sVfV_Mytq}j1(|Bp{HMJ z#6jUcIUn~IEv$(psvcZwiuXq1eU)7EavSZM)q_>xsh3;EQ!l5H{a|aJeMVG=?hVH+ zof-8B^4(fDjzVgTU6cAc#XN5{xqYiwZ#ytB;zkZ@{UYy(>w_?QRAHsclY{{RdUnzN$t9QE^wSI zHI6+VZF&~eOqEG-X>aM>^t>pt!5>O zue8fGCyD#4%($Ro`{cWw>C`6T_91=1YB{+R?J)NMYSOmSg6WoFNjh2cputsbet8OI zt@SIPuk9Fq3Oe@%X@hfZx&KhDl%-8Qa#-wz?Y)I-O6)9QVtngZ>dP4M)DzOA`=b|t zdLcN9B~zuXlUeN^JyTZ9j<5rjHOOH`+_}sVJAgQ`wf1T?IW1QGE*(Unze(AtyYxJ3 zHCJKgwf+(KB0&RRO0kFHTwc<2eirFHr#ocsQt*FuIK+!4f^wPyvsf9htzgvSs`XMjo1oAg*7 z7yI)v=BJG+cubEB+b4Q=oUfDC=?TzFJ>WenkD4cVe~RSq!l+bF({Rk0$Pu#dpPU zCuB{VP&di@7&q|_%I+WaSlhw*y<8UYJxh=Gj~#)9w&9hS3UVTrhwU9PdLGrj4_~*d zOfzf?RV{a?uf^3V^LkV!TZYeQZ71A}ranr|tegX!72ObPoE}eOGLCGR+Rh+l+<4)` z)S_Lwg;_~BP~LuW2J<*@A3f%3J(L*$YsG4LYTZ8Yi0eGsYx)t`9|Pxlj-vfxJ@sH^ zscopm@nlP@2P(@vgY_KwMcfB5)9L%scGg#o}E2?WIvOMRBaAaZ@_O;sy2%Qe;xSs;x~ZbFn+u7 z8^doueiI-w$P`mSVN+p)bbC|w%%@)Zt^B)npOnkTR~Ks}v+%en21pQS#**X_CX;M^ zgvlh3j^H=xO0_i>R|$i|dGIbg4Ibxv8j5M3>G__#DMTqy4EdhB)T%-_U+A!v8kI#8 z!|GLku^>z4Br8=!dyxFHJkTQuG#i z5cToO$);FwV_6fFbli@nc)esi{XhJ^N&mZah-o$@{ec5 zq#$p#HYzx)GiHTAZBuZD`X$BsB_;K70sJMEs!hR4r)aHGt6-{gIm`WKztv>* z+pK<<)xQR_MJ`9vneWf)o&kk9=_hRqLfe9-Z9&>yupGMVICMGY&}GM=%dCG%>R;0J zFG>ANrhatR){oA*`T!aZM`zjZN$K~b?)Rkhb&`0m3f`+4?^VHj)zWp{;tj7myy10= zH@wdJ*QEY6UH_WYzozTwqw}Ud&TM_0*3{;=L)-J)sr>ov;A;M9vJDKE6XB``X$^|% zEgez4#Z!ptfv2B%`UOwFAqx#)6y>**`5K*NLp|aBnCJjr%ZZLhndk(7ww_Jpaw1%w zXyFRTkkRJIXp6~cbzD^F1qk&k`;gA8C!p1$9pm-X!IlbonNM zH(5Cs9RbCdfTER0RHQs^h&*m+dE8+A@CM=U3H&_`e~&G7NJ|~Mr4B+)3go1QoFwFw zKu&4MDZ%!h(9|L6Nl8x;{}sW1MdQDcuFXf+0YOR#4#Xx_B+^y{7o_b9QWjq-7alOFT+y3{u{`bcH?{)p}WqtTFK($fV-zfDr6248~+cbQez_(evgAVUtjCauC z9c29hsXw6W4@mt1!p8(Yrr~1(A0vE3;3FD7BJdI0-k57|EN*YiwI}s=Oa0xt{%)zi zn|LP#KB3_g0-qqa-v=Bi;k+PM-)H$y%7?mqDCI-K-w^m48vcgB-ynQe;IkS&EAUxO zcfQnO=*F3)n?SAaI5XuUYtQnLvu8N9<)X`^_suldH0gjziV3gNStbokibyQKPCI^` zw(VjeBfwo;(s1s4(XsC|x)GjXH^MX04O~#w&ZKJVFrn0OLa9TUQkrE-X(>}mV{)lu zxl)?sohL8mSspzx!AXPaZemk9E$N}et@CU0g$%a2FeKI3&WCYg+CVlE3#K9Oy{|@f<9u=0s=TB8`Wxp85GIY zsu~nP5F@C8uBLKXMlf=6iYf}W;}^PPzhF%U3;_DiHN{jRT3v|N=A%5a^WopYO;w;d zYdc@pok|4__p65cgKS+2Ir-AIjDjbNN@51?%@tF6wemJtlJC(g!|-j4W#IS;h)faL zPuO{mboRaxn#LnQYwJ?>6qsRcpw1fo147Aapv7r^+=Di!2M zb6P`w3^_n5!pUgU3z=pkz5Hm3niy@$rs}{%vMGF5hy+QtfA*+BpkDwGUrfD*fIw-l z5N#a})XrPpKekJ624bFtIfl2!^4Ic7imk?ufbcRxH#mb+iIB61Y% zLe}a!i>a}J;i=Amg*wd{$U?(5-XIzjjcN_T5m^nHnnGy+C(U^csL5b_VkB>1vI$pN zo=DQcvtA|xOoo~4W-`WPKa&Z{d;40bMXIo&u%V9JVaV)$%wLQwW`dL!|GnC~&V!a! znN*=A#o8lGCRwtLz_ye%BjG&ENH>jw%o2%E&o!C-L0T18)Bac)b?9fWxfoD-6zJU zd~Hs=L)?w`GN`hHqN#(Tc;UR()R?V93APS-Y#n+oP){$DpekEFYNCdOs39{N?C`O& z9!?N7>=8Bme4w6LHc^!uE^4ZVg{t8ts2WL7HR4eiXDeET_Zx* zNEuz$*o5=W*o5=GnF;5u=?Ld(Cc=3$`EYd67KHO+9CqU*0T}bFg_PJ|4w&!&9MT&z zGiy`W%wzi@0jem>etYNlxt?e5kq(AsDf+yI?hNy$jc3 zO>Azz2KHxUBEnK%j#>1JH$KklfghdK;FN&jR0>!h(L!`tUvuS>LTK&v`wGz!vBF=~ zq(ooU7Hpl&tzRRu=<8<2`FcVLCOsvX41bY%(i)lQi|B138qaTK(k~Ylh3qjr)U&rVv#xGf~1!VQIfuoan4vlv?BvU4~f13Bgf34|}|o>G*{}J$D=W z?>;Duop<$zAABp8+)h%DfXM=<+esM#&1DKSoe;^iCz9#sGmS!z36iE-AwpRr~BJbhX12MNe7VH$rS}4Ue9H}^B#nD$jc9)^5@SnvOGKUufHN0Y)oA5WVv!EWUugPrn zn&@rRrw6On*W*@Ak0#XgsHdh!!~e*9+G*1Nr3tORX1SAAG`FH=MQrvwH*e z`CHfjKJ3H3Q@-r!Pf*o17j%5KZuhLPdA5wrwAx24nI{rtp76*#u@Yof+33(wiEa4w zU_BvZo+u;JO*34PMVpy)+qtIOl7BKm{z;GglXk}Fg&W8lKjHbz7B{HZ8-pA5iv8V) z)EYsVU1(=H3rS*gZutoF*?kAh=k2XKs_PBSrN56Hw(8PCI4MFnsg=IlSWIF4jAizz z1hY?h%s#aex}uE*_Moh?(Jr*F|0Nt?x=uQ}bZf5|x z#Q=0013;yd@!l;+zYEzW0H?iHoX)0U3Z|*DX{)kn%f&MZE}rqYc*d%1o2&%Bl~t+y zcErDa2R_eQDB~)9OHtMtxMFmW3l_O|XuP2F7DYWW;7{ekYni8=)@z@J)%ZVZLrR^F zH9f!GfY@9i`aQ;z-{E<=>Q|}48U}GaPS}>MrQ!A}hv9)|YE~`|m-H?^8>lC5-MW6} z&>r8c`kUQZD|$v$?u;H8X)`j?PSgz)b1RbuE9(X;>$3@2pY>#Y)(WZ^Uh$S}O_qg4 zIl196k?dO*+sklK40r-gX=iNGVrvu}O=unZro20Ee_8M%s`- z+Tf5j2+{_FlzJ&h8wBZj;hG1y;8`#RQuv_IQ7ZH~tH<*Rrp|jzo&S91Zf9S4^@py-gG-y=atw|KQEG{pXoYj=S@y#Q)KPHeV(1~&Ow%R!c|Ajj+_+JUs%PSx*4*Y~HtL(yi+9scayK zCAsVw4riV&#OCQj!aQAY=IMf%rwhhBaTJL)x*$leKr<77pOpjN^O{`+dxa+jnI4zh zU0Zm@v38Ir%)ob1q7TcBuimedU6W*_Dp_Hi})ib^=kARU{ zc?3+84NnfNjK0Ii%5=vg+}Q#>SxKe)QIkVow1tX7&kaf6lcF7xo|N>Iz^@?XgHuE& zY>w7DM7IeOf?>K;aP{pnQ?I!ZWx_SjRIwpTln*;_X(&THN&n`k~#xq-Ph(2Ej5UKI1O*)YWhdN#X2&t^Z+10Lx> z&}IgDHe)ct(<1|EB{oZ-=V}4CzmDBrt2U1=1;Yfqcn4&3d!bXamX1HD?1YBL4$30|*73O}_WqhM zJzUfh3m2_<4;P(z4;Ov&9xht*9xl?nhl|?0iy$bea8b8FI`T2D74J%co(>ryB`A-SGHy!>D&O7XE(bQOB_na*Ry7 z8S4yBoj(ay4zDCD%~J99!dpvnwECj)hVb-;=IOBE>9E!6Xvk@GG~{b_G-S0p8WN{v z$T%(3Q*l~`sMW{t_zVQ40S@VKjC44Gbl4#s7No-lDTOLHh6O2tB%o9SI6&k9k7Z+dAIpwr?r~D)9p9B-mVGWz&)$yqAI3LQ$9=s|e#*gloyG_q%Tip&ptrF6 zd}>HPE+gNeFeULPoM9y=bT^& zOYpV9<7-3solIAPv8D#YWXEMR$&I`cBW!N8c;^yP!^|*KK6-FR$Dl%2KlB}Ndz-%V2vq+vnB&h+`1*(DOp9=) zrHnInFh+A2g3+9vpyuolY)x>i)#F&}E16cuFbQVBE4SkYvkk&vD;K7`y;~I(+OpJ! z>~5Uk+aQ`tt->XAjB(02Gv&-#E`_r+RI}Dl%~~!M6I?2KT#|Jgz0~93sZ3|gFEKo~ zY<|dAn4sB}WN9)0|5TtpvkZ+(%-`$H?Wto$VP;XQ+^n%Wj%jTPrnPxYYx{hlb}f^d z5BSQ5mUNpC*H%Ux;>66G9SOQSJi0r=Z)7?=EsX5?$Oa?*88E(a;h=aLyJ;nraM^5}I5ax; z1ir<4;N=5*@j-aUMtlxKv#~?ih(42zO{ToRek|N`P_F z0E;x7bx6ZmA89yik%qI1IV?*=(svnjH|iXh46UKGL;g>(G<@%-5F>O}*0b9KQ91r~MxP()z9qcvv>q zpM`gz&b^jQ$*RWKt1dRXmJa_Dpu5=6)SEZeRXu-_(6Ppxj1lO&(!D? zwkzfhNUXg1O~u2-gK>eEkG#5f8tsox9GHH+`0}Bt;u1)Aj!%8*z~1r0T}sslD$~=| z-SzP%YkZfmxeg$!p^?WD%BpS2cI}J`TEp>efy`2?Ry{g+I-^B z)Z`)k;YEC~AyBDtY>bvggVGF6vTRP>AK(iZL#ex;pBkOqap={puk9V5WH*NPPaXO) zZqM*<WoqaoxfA60+f9&5L`;9*=Jo7iJUU;UHubz#6 za^&FXo5;=zdq?b7Pht*_2=g7Vh$D1yx-W3;>S22!ER^sTI9NWX*+}Xd$ACMFJ@0&a?+NfeFZhA(A#2Sx2z)i!B;NXGIu57 z7ftxLUe!4|xnt3*Xu<7Dg#5}jlsc+DhB}rP+>72eh_`!50Y<;a$i60 zpu}A;i?UW9^33ezq;}JxEz(5_Q(ZsY>oDUe4F*HMqwu$Lj<%4~tjOy$_ftL_;RgGyTpizfq&Az>2CJ9DaBS znRAc0DeUm1cOSER2r6|_`d!!H~KaJkTS7yBbr=KUn9Ideeo{ zTQPR2(|rna9{$#gULr^6ida9} literal 0 HcmV?d00001 From 820db090106c17b5c107389708d7a3ca9072b760 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Thu, 20 Aug 2015 20:52:06 -0700 Subject: [PATCH 12/37] Set-AzureVMDataDisk cmdlet --- .../Commands.Compute.Test.csproj | 3 + .../ScenarioTests/VirtualMachineTests.cs | 7 + .../ScenarioTests/VirtualMachineTests.ps1 | 194 +- .../TestVirtualMachineDataDisk.json | 2942 ++++++++++++++--- .../TestVirtualMachineDataDiskNegative.json | 2285 +++++++++++++ .../Commands.Compute/Commands.Compute.csproj | 1 + .../Properties/Resources.Designer.cs | 9 + .../Properties/Resources.resx | 3 + .../Config/SetAzureVMDataDiskCommand.cs | 129 + 9 files changed, 5148 insertions(+), 425 deletions(-) create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDiskNegative.json create mode 100644 src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMDataDiskCommand.cs diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj index 3d042cb4ef07..f18d96b55208 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -290,6 +290,9 @@ Always + + Always + Always diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs index 0ff55d7a4fa4..66cd56174f04 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs @@ -75,6 +75,13 @@ public void TestVirtualMachineDataDisk() ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineDataDisk"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachineDataDiskNegative() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineDataDiskNegative"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestVirtualMachinePIRv2() diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 index 449eb94f48b0..cc2526f53f60 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 @@ -786,11 +786,200 @@ function Test-VirtualMachineCapture } } +function Test-VirtualMachineDataDisk +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = Get-ComputeVMLocation; + New-AzureResourceGroup -Name $rgname -Location $loc -Force; + + # VM Profile & Hardware + $vmsize = 'Standard_A4'; + $vmname = 'vm' + $rgname; + $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + Assert-AreEqual $p.HardwareProfile.VirtualMachineSize $vmsize; + + # NRP + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; + $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $pubip = New-AzurePublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); + $pubip = Get-AzurePublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + $nic = New-AzureNetworkInterface -Force -Name ('nic' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId -PublicIpAddressId $pubip.Id; + $nic = Get-AzureNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureVMNetworkInterface -VM $p -Id $nicId; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + + # Adding the same Nic but not set it Primary + $p = Add-AzureVMNetworkInterface -VM $p -Id $nicId -Primary; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].Primary $true; + + # Storage Account (SA) + $stoname = 'sto' + $rgname; + $stotype = 'Standard_GRS'; + New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $osDiskName = 'osDisk'; + $osDiskCaching = 'ReadWrite'; + $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; + $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; + $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; + $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; + $dataDiskName1 = 'testDataDisk1'; + $dataDiskName2 = 'testDataDisk2'; + + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; + + $p = Add-AzureVMDataDisk -VM $p -Name $dataDiskName1 -Caching 'ReadOnly' -DiskSizeInGB 5 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name $dataDiskName2 -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; + + $p = Set-AzureVMDataDisk -VM $p -Name $dataDiskName1 -DiskSizeInGB 10; + Assert-ThrowsContains { Set-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadWrite'; } "not currently assigned for this VM"; + + Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; + Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; + Assert-AreEqual $p.StorageProfile.OSDisk.VirtualHardDisk.Uri $osDiskVhdUri; + + Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Name $dataDiskName1; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; + Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; + Assert-AreEqual $p.StorageProfile.DataDisks[0].CreateOption 'Empty'; + + Assert-AreEqual $p.StorageProfile.DataDisks[1].Name $dataDiskName2; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; + Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; + Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; + Assert-AreEqual $p.StorageProfile.DataDisks[1].CreateOption 'Empty'; + + # OS & Image + $user = "Foo12"; + $password = 'BaR@123' + $rgname; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + $computerName = 'test'; + $vhdContainer = "https://$stoname.blob.core.windows.net/test"; + + $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; + + $imgRef = Get-DefaultCRPImage -loc $loc; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + + Assert-AreEqual $p.OSProfile.AdminUsername $user; + Assert-AreEqual $p.OSProfile.ComputerName $computerName; + Assert-AreEqual $p.OSProfile.AdminPassword $password; + + Assert-AreEqual $p.StorageProfile.ImageReference.Offer $imgRef.Offer; + Assert-AreEqual $p.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; + Assert-AreEqual $p.StorageProfile.ImageReference.Sku $imgRef.Skus; + Assert-AreEqual $p.StorageProfile.ImageReference.Version $imgRef.Version; + + # Virtual Machine + # TODO: Still need to do retry for New-AzureVM for SA, even it's returned in Get-. + New-AzureVM -ResourceGroupName $rgname -Location $loc -VM $p; + + # Get VM + $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; + Assert-AreEqual $vm1.Name $vmname; + Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + + Assert-AreEqual $vm1.StorageProfile.ImageReference.Offer $imgRef.Offer; + Assert-AreEqual $vm1.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; + Assert-AreEqual $vm1.StorageProfile.ImageReference.Sku $imgRef.Skus; + Assert-AreEqual $vm1.StorageProfile.ImageReference.Version $imgRef.Version; + + Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Name $dataDiskName1; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Caching 'ReadOnly'; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].DiskSizeGB 10; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Lun 1; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].CreateOption 'Empty'; + + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Name $dataDiskName2; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Caching 'ReadOnly'; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].DiskSizeGB 11; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Lun 2; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].CreateOption 'Empty'; + + Assert-AreEqual $vm1.OSProfile.AdminUsername $user; + Assert-AreEqual $vm1.OSProfile.ComputerName $computerName; + Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; + + $vm1 = Set-AzureVMDataDisk -VM $vm1 -Caching 'ReadWrite' -Lun 1; + $vm1 = Set-AzureVMDataDisk -VM $vm1 -Name $dataDiskName2 -Caching 'ReadWrite'; + + # Update + Update-AzureVM -ResourceGroupName $rgname -VM $vm1; + + $vm2 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; + Assert-AreEqual $vm2.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $vm2.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + + Assert-AreEqual $vm2.StorageProfile.ImageReference.Offer $imgRef.Offer; + Assert-AreEqual $vm2.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; + Assert-AreEqual $vm2.StorageProfile.ImageReference.Sku $imgRef.Skus; + Assert-AreEqual $vm2.StorageProfile.ImageReference.Version $imgRef.Version; + + Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Name $dataDiskName1; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Caching 'ReadWrite'; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].DiskSizeGB 10; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Lun 1; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; + Assert-AreEqual $vm1.StorageProfile.DataDisks[0].CreateOption 'Empty'; + + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Name $dataDiskName2; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Caching 'ReadWrite'; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].DiskSizeGB 11; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Lun 2; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; + Assert-AreEqual $vm1.StorageProfile.DataDisks[1].CreateOption 'Empty'; + + Assert-AreEqual $vm2.OSProfile.AdminUsername $user; + Assert-AreEqual $vm2.OSProfile.ComputerName $computerName; + Assert-AreEqual $vm2.HardwareProfile.VirtualMachineSize $vmsize; + Assert-NotNull $vm2.Location; + + $vms = Get-AzureVM -ResourceGroupName $rgname; + Assert-AreNotEqual $vms $null; + + # Remove All VMs + Get-AzureVM -ResourceGroupName $rgname | Remove-AzureVM -ResourceGroupName $rgname -Force; + $vms = Get-AzureVM -ResourceGroupName $rgname; + Assert-AreEqual $vms $null; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS -Test Virtual Machines Data Disks +Test Virtual Machines Data Disks Negative #> -function Test-VirtualMachineDataDisk +function Test-VirtualMachineDataDiskNegative { # Setup $rgname = Get-ComputeTestResourceName @@ -865,7 +1054,6 @@ function Test-VirtualMachineDataDisk } } - <# .SYNOPSIS Test Virtual Machines Plan diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json index fba92ea522ad..74036e67e95a 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "68651" + "70066" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14976" ], "x-ms-request-id": [ - "c85d1860-50a3-4f18-8428-38843f2999ad" + "477d2d7f-2e51-4e80-8e82-aaa1798bbd82" ], "x-ms-correlation-request-id": [ - "c85d1860-50a3-4f18-8428-38843f2999ad" + "477d2d7f-2e51-4e80-8e82-aaa1798bbd82" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072756Z:c85d1860-50a3-4f18-8428-38843f2999ad" + "WESTUS:20150821T022552Z:477d2d7f-2e51-4e80-8e82-aaa1798bbd82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:27:56 GMT" + "Fri, 21 Aug 2015 02:25:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14975" ], "x-ms-request-id": [ - "108dbfd9-2bcc-46bd-ad55-f6fe19e4e466" + "43b4a5be-7239-4da7-877d-cc714ad38a3f" ], "x-ms-correlation-request-id": [ - "108dbfd9-2bcc-46bd-ad55-f6fe19e4e466" + "43b4a5be-7239-4da7-877d-cc714ad38a3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072756Z:108dbfd9-2bcc-46bd-ad55-f6fe19e4e466" + "WESTUS:20150821T022552Z:43b4a5be-7239-4da7-877d-cc714ad38a3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:27:56 GMT" + "Fri, 21 Aug 2015 02:25:52 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -121,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14965" ], "x-ms-request-id": [ - "8b7fe266-10a4-48b7-8663-5a4cf27a428c" + "452243e8-3293-4f06-bb92-3da50c34a927" ], "x-ms-correlation-request-id": [ - "8b7fe266-10a4-48b7-8663-5a4cf27a428c" + "452243e8-3293-4f06-bb92-3da50c34a927" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072840Z:8b7fe266-10a4-48b7-8663-5a4cf27a428c" + "WESTUS:20150821T024023Z:452243e8-3293-4f06-bb92-3da50c34a927" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:28:39 GMT" + "Fri, 21 Aug 2015 02:40:22 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -160,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696\",\r\n \"name\": \"crptestps2696\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548\",\r\n \"name\": \"crptestps5548\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "7fc57353-8a3b-42fc-9f04-ebbecc8490f3" + "c041370b-3902-4bbd-b50a-95edaf9215b1" ], "x-ms-correlation-request-id": [ - "7fc57353-8a3b-42fc-9f04-ebbecc8490f3" + "c041370b-3902-4bbd-b50a-95edaf9215b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072756Z:7fc57353-8a3b-42fc-9f04-ebbecc8490f3" + "WESTUS:20150821T022553Z:c041370b-3902-4bbd-b50a-95edaf9215b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:27:56 GMT" + "Fri, 21 Aug 2015 02:25:52 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14974" ], "x-ms-request-id": [ - "0aa5d09f-d211-41a0-b9d7-9a42a5655205" + "df3c4175-c9c7-4873-a84d-b7b671f5ccb3" ], "x-ms-correlation-request-id": [ - "0aa5d09f-d211-41a0-b9d7-9a42a5655205" + "df3c4175-c9c7-4873-a84d-b7b671f5ccb3" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072756Z:0aa5d09f-d211-41a0-b9d7-9a42a5655205" + "WESTUS:20150821T022553Z:df3c4175-c9c7-4873-a84d-b7b671f5ccb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:27:56 GMT" + "Fri, 21 Aug 2015 02:25:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:81f57099-0530-4890-8883-74e3bb4de6d5" + "westus:0f6a828e-930f-44dc-96f5-52bcc827dbd0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14914" ], "x-ms-correlation-request-id": [ - "041fb0ed-5a23-4e81-8069-ecb5646295f1" + "05a55ef0-75d0-4d88-a629-b5ede35e796f" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072756Z:041fb0ed-5a23-4e81-8069-ecb5646295f1" + "WESTUS:20150821T022553Z:05a55ef0-75d0-4d88-a629-b5ede35e796f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +292,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:27:56 GMT" + "Fri, 21 Aug 2015 02:25:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,7 +307,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps2696' under resource group 'crptestps2696' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps5548' under resource group 'crptestps5548' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -325,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "8e707a82-197c-403e-8919-396c4802d6fd" + "15e2815a-609f-4c6c-9459-f0a9e216f582" ], "x-ms-correlation-request-id": [ - "8e707a82-197c-403e-8919-396c4802d6fd" + "15e2815a-609f-4c6c-9459-f0a9e216f582" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072756Z:8e707a82-197c-403e-8919-396c4802d6fd" + "WESTUS:20150821T022554Z:15e2815a-609f-4c6c-9459-f0a9e216f582" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,14 +340,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:27:56 GMT" + "Fri, 21 Aug 2015 02:25:53 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -355,7 +355,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696\",\r\n \"etag\": \"W/\\\"4789823a-4006-4680-9873-c3c8350a8fe5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0037d082-7ef2-48bd-8464-43c6aa70b4a5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\",\r\n \"etag\": \"W/\\\"4789823a-4006-4680-9873-c3c8350a8fe5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548\",\r\n \"etag\": \"W/\\\"3409f284-6f0c-404a-ab4e-fca1feb29406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01550c55-272c-4805-9a2b-39f7313569c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\",\r\n \"etag\": \"W/\\\"3409f284-6f0c-404a-ab4e-fca1feb29406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -370,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "a502c7c5-c51c-4f69-8a86-2ce5886ad76e" + "8221e2ff-da12-4b52-b0ee-5541a6ff5645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,30 +379,30 @@ "no-cache" ], "ETag": [ - "W/\"4789823a-4006-4680-9873-c3c8350a8fe5\"" + "W/\"3409f284-6f0c-404a-ab4e-fca1feb29406\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14995" ], "x-ms-correlation-request-id": [ - "ba51600d-ca8e-4db5-aa52-6b425cf162c2" + "d2874080-ccdb-4802-9f5c-3e38773fc5db" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072807Z:ba51600d-ca8e-4db5-aa52-6b425cf162c2" + "WESTUS:20150821T022605Z:d2874080-ccdb-4802-9f5c-3e38773fc5db" ], "Date": [ - "Thu, 13 Aug 2015 07:28:07 GMT" + "Fri, 21 Aug 2015 02:26:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -410,7 +410,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696\",\r\n \"etag\": \"W/\\\"4789823a-4006-4680-9873-c3c8350a8fe5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0037d082-7ef2-48bd-8464-43c6aa70b4a5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\",\r\n \"etag\": \"W/\\\"4789823a-4006-4680-9873-c3c8350a8fe5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548\",\r\n \"etag\": \"W/\\\"3409f284-6f0c-404a-ab4e-fca1feb29406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01550c55-272c-4805-9a2b-39f7313569c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\",\r\n \"etag\": \"W/\\\"3409f284-6f0c-404a-ab4e-fca1feb29406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -425,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "ca3ebdb3-c26f-49ca-994e-4b856c7adb10" + "443fcac2-5dee-4343-a4fa-56ad0ec7e5cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -434,32 +434,32 @@ "no-cache" ], "ETag": [ - "W/\"4789823a-4006-4680-9873-c3c8350a8fe5\"" + "W/\"3409f284-6f0c-404a-ab4e-fca1feb29406\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14994" ], "x-ms-correlation-request-id": [ - "c46fb011-80b2-4f87-97e8-bbd74130204f" + "7f8ffbcc-f1f1-4f61-8757-0f3dd79ac81c" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072807Z:c46fb011-80b2-4f87-97e8-bbd74130204f" + "WESTUS:20150821T022605Z:7f8ffbcc-f1f1-4f61-8757-0f3dd79ac81c" ], "Date": [ - "Thu, 13 Aug 2015 07:28:07 GMT" + "Fri, 21 Aug 2015 02:26:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualnetworks/vnetcrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMjY5Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps2696\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps2696\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps5548\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -471,7 +471,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696\",\r\n \"etag\": \"W/\\\"1666bc6b-aa63-4d29-b54a-9b960475eaff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0037d082-7ef2-48bd-8464-43c6aa70b4a5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\",\r\n \"etag\": \"W/\\\"1666bc6b-aa63-4d29-b54a-9b960475eaff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548\",\r\n \"etag\": \"W/\\\"bbe01844-17de-465c-8201-9c6e9555d587\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"01550c55-272c-4805-9a2b-39f7313569c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\",\r\n \"etag\": \"W/\\\"bbe01844-17de-465c-8201-9c6e9555d587\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1026" @@ -489,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "4537d7e5-375e-4bb4-99e8-1b51b76afb71" + "e7928c8e-e096-49be-a038-0f9798bde070" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/4537d7e5-375e-4bb4-99e8-1b51b76afb71?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e7928c8e-e096-49be-a038-0f9798bde070?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,20 +508,20 @@ "1198" ], "x-ms-correlation-request-id": [ - "4afa5e48-9d92-4905-8594-b815f65d0681" + "833a3b77-382d-40d8-8489-fee499989a7f" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072757Z:4afa5e48-9d92-4905-8594-b815f65d0681" + "WESTUS:20150821T022555Z:833a3b77-382d-40d8-8489-fee499989a7f" ], "Date": [ - "Thu, 13 Aug 2015 07:27:56 GMT" + "Fri, 21 Aug 2015 02:25:54 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/4537d7e5-375e-4bb4-99e8-1b51b76afb71?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUzN2Q3ZTUtMzc1ZS00YmI0LTk5ZTgtMWI1MWI3NmFmYjcxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e7928c8e-e096-49be-a038-0f9798bde070?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTc5MjhjOGUtZTA5Ni00OWJlLWEwMzgtMGY5Nzk4YmRlMDcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -547,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "1704d44e-4448-4af6-9d22-4d4d1e78d954" + "534b7c07-d575-44ba-ab45-e2fb574412ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,23 +560,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-correlation-request-id": [ - "edbe5734-f99c-4770-935d-76b7a841ac5c" + "09d43aa8-664a-4f0a-a0bb-3fe52e671b0b" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072757Z:edbe5734-f99c-4770-935d-76b7a841ac5c" + "WESTUS:20150821T022555Z:09d43aa8-664a-4f0a-a0bb-3fe52e671b0b" ], "Date": [ - "Thu, 13 Aug 2015 07:27:56 GMT" + "Fri, 21 Aug 2015 02:25:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/4537d7e5-375e-4bb4-99e8-1b51b76afb71?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDUzN2Q3ZTUtMzc1ZS00YmI0LTk5ZTgtMWI1MWI3NmFmYjcxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e7928c8e-e096-49be-a038-0f9798bde070?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTc5MjhjOGUtZTA5Ni00OWJlLWEwMzgtMGY5Nzk4YmRlMDcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -602,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "1e0da595-f221-4033-b760-bfc442190a94" + "03968513-40bd-4ca8-855a-e45e856bf1e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,23 +615,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14996" ], "x-ms-correlation-request-id": [ - "f5e4b9ac-f5b9-4967-8bf5-7e3374a9715f" + "fe167a7d-9b38-4f6b-8bdd-f56362cb1895" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072807Z:f5e4b9ac-f5b9-4967-8bf5-7e3374a9715f" + "WESTUS:20150821T022605Z:fe167a7d-9b38-4f6b-8bdd-f56362cb1895" ], "Date": [ - "Thu, 13 Aug 2015 07:28:06 GMT" + "Fri, 21 Aug 2015 02:26:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTU0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,7 +639,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps2696' under resource group 'crptestps2696' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps5548' under resource group 'crptestps5548' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -657,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "8f4f048c-419d-4ffa-8a37-e52c940f0d7e" + "ec093e21-3a70-4cb0-a3de-4d17efeb6c7c" ], "x-ms-correlation-request-id": [ - "8f4f048c-419d-4ffa-8a37-e52c940f0d7e" + "ec093e21-3a70-4cb0-a3de-4d17efeb6c7c" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072807Z:8f4f048c-419d-4ffa-8a37-e52c940f0d7e" + "WESTUS:20150821T022605Z:ec093e21-3a70-4cb0-a3de-4d17efeb6c7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,14 +672,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:28:07 GMT" + "Fri, 21 Aug 2015 02:26:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTU0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,7 +687,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\",\r\n \"etag\": \"W/\\\"208d698e-76cc-489c-8783-581d7f0b85ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"010c1f15-96ff-406f-9655-2d1ca132e779\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2696\",\r\n \"fqdn\": \"pubipcrptestps2696.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\",\r\n \"etag\": \"W/\\\"baa7b5d7-783c-4104-8c77-a1a30c7f30b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"81fd6592-02bd-4ae4-8cab-4054571b2201\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5548\",\r\n \"fqdn\": \"pubipcrptestps5548.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -702,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "5c8383ce-d564-45f2-a62a-2e3289f0f38c" + "e2e62794-0436-4f15-af47-fd12a043c707" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,30 +711,30 @@ "no-cache" ], "ETag": [ - "W/\"208d698e-76cc-489c-8783-581d7f0b85ad\"" + "W/\"baa7b5d7-783c-4104-8c77-a1a30c7f30b2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-correlation-request-id": [ - "3f8b9c93-180c-47ea-88b0-d41914938a55" + "ce12ab07-53de-4181-b298-4782203c6d56" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072809Z:3f8b9c93-180c-47ea-88b0-d41914938a55" + "WESTUS:20150821T022617Z:ce12ab07-53de-4181-b298-4782203c6d56" ], "Date": [ - "Thu, 13 Aug 2015 07:28:08 GMT" + "Fri, 21 Aug 2015 02:26:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTU0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -742,7 +742,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\",\r\n \"etag\": \"W/\\\"208d698e-76cc-489c-8783-581d7f0b85ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"010c1f15-96ff-406f-9655-2d1ca132e779\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2696\",\r\n \"fqdn\": \"pubipcrptestps2696.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\",\r\n \"etag\": \"W/\\\"baa7b5d7-783c-4104-8c77-a1a30c7f30b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"81fd6592-02bd-4ae4-8cab-4054571b2201\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5548\",\r\n \"fqdn\": \"pubipcrptestps5548.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -757,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "b9117bf5-fc40-42cd-a7cc-05236fbf89da" + "990b19fd-77ed-42f5-ab64-6fe173c9f3f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,32 +766,32 @@ "no-cache" ], "ETag": [ - "W/\"208d698e-76cc-489c-8783-581d7f0b85ad\"" + "W/\"baa7b5d7-783c-4104-8c77-a1a30c7f30b2\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-correlation-request-id": [ - "d7653875-bc57-4309-b6b0-728d09d19c56" + "11fb4d07-46b9-42ee-a212-7048b48da06a" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072809Z:d7653875-bc57-4309-b6b0-728d09d19c56" + "WESTUS:20150821T022617Z:11fb4d07-46b9-42ee-a212-7048b48da06a" ], "Date": [ - "Thu, 13 Aug 2015 07:28:08 GMT" + "Fri, 21 Aug 2015 02:26:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMjY5Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTU0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2696\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps2696\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5548\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps5548\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -803,7 +803,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\",\r\n \"etag\": \"W/\\\"57c9b0a4-c441-47b6-a637-992da7410c24\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"010c1f15-96ff-406f-9655-2d1ca132e779\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps2696\",\r\n \"fqdn\": \"pubipcrptestps2696.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\",\r\n \"etag\": \"W/\\\"f721448a-2788-4c99-990d-ad17f7d8d002\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"81fd6592-02bd-4ae4-8cab-4054571b2201\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5548\",\r\n \"fqdn\": \"pubipcrptestps5548.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -821,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "c74789de-387b-4d78-ab03-ff4e585f3ec9" + "93dd30bb-6402-4390-8d0f-6d4e749d1dda" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c74789de-387b-4d78-ab03-ff4e585f3ec9?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/93dd30bb-6402-4390-8d0f-6d4e749d1dda?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,20 +840,75 @@ "1197" ], "x-ms-correlation-request-id": [ - "05bede91-c888-4972-baae-eb69c7d02f17" + "59eaff74-920f-4d09-a943-d8769d1f86da" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072808Z:05bede91-c888-4972-baae-eb69c7d02f17" + "WESTUS:20150821T022606Z:59eaff74-920f-4d09-a943-d8769d1f86da" ], "Date": [ - "Thu, 13 Aug 2015 07:28:08 GMT" + "Fri, 21 Aug 2015 02:26:06 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c74789de-387b-4d78-ab03-ff4e585f3ec9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzc0Nzg5ZGUtMzg3Yi00ZDc4LWFiMDMtZmY0ZTU4NWYzZWM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/93dd30bb-6402-4390-8d0f-6d4e749d1dda?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTNkZDMwYmItNjQwMi00MzkwLThkMGYtNmQ0ZTc0OWQxZGRhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5fe504a4-c91f-43a3-86e5-9ab4793ef480" + ], + "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": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "950c31d1-c473-4adb-9e60-c07e353030fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T022606Z:950c31d1-c473-4adb-9e60-c07e353030fa" + ], + "Date": [ + "Fri, 21 Aug 2015 02:26:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/93dd30bb-6402-4390-8d0f-6d4e749d1dda?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTNkZDMwYmItNjQwMi00MzkwLThkMGYtNmQ0ZTc0OWQxZGRhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,7 +934,7 @@ "no-cache" ], "x-ms-request-id": [ - "1f43f645-8634-414f-a080-293aa7b1cfc9" + "539db567-41b0-4c8b-a563-bff6a48a5bc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -892,23 +947,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14991" ], "x-ms-correlation-request-id": [ - "9986ec6f-8176-455d-8a12-e1d4e402751c" + "2ac6c5a5-7a70-4611-9377-a06096360e0b" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072809Z:9986ec6f-8176-455d-8a12-e1d4e402751c" + "WESTUS:20150821T022617Z:2ac6c5a5-7a70-4611-9377-a06096360e0b" ], "Date": [ - "Thu, 13 Aug 2015 07:28:08 GMT" + "Fri, 21 Aug 2015 02:26:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,7 +971,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps2696' under resource group 'crptestps2696' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps5548' under resource group 'crptestps5548' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -934,13 +989,13 @@ "gateway" ], "x-ms-request-id": [ - "b9995964-6e41-46ef-afce-4f5b28ca4fc7" + "982a3c49-fe73-4c9c-bf49-ba78ef8cf89b" ], "x-ms-correlation-request-id": [ - "b9995964-6e41-46ef-afce-4f5b28ca4fc7" + "982a3c49-fe73-4c9c-bf49-ba78ef8cf89b" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072809Z:b9995964-6e41-46ef-afce-4f5b28ca4fc7" + "WESTUS:20150821T022617Z:982a3c49-fe73-4c9c-bf49-ba78ef8cf89b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -949,14 +1004,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:28:08 GMT" + "Fri, 21 Aug 2015 02:26:16 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -964,10 +1019,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"288a6c97-f353-431a-99cf-e8483097e049\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fae0a95e-a65b-4abd-a820-feb884cf92b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1405" + "1467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -979,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "973a0d6e-94fb-453b-adb7-b46773f905ac" + "3e0f2482-adc8-47b7-85cd-310f7bd1b85e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -988,30 +1043,30 @@ "no-cache" ], "ETag": [ - "W/\"40065fe5-48b7-46da-92a2-90b94bd85567\"" + "W/\"458ff455-294d-4d5f-83e3-dcddecf23884\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14986" ], "x-ms-correlation-request-id": [ - "a959b391-ddd6-440e-9c84-b08fad1fb7a4" + "9bb1301e-cc5e-4e61-9b45-2bf5404ea4fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072810Z:a959b391-ddd6-440e-9c84-b08fad1fb7a4" + "WESTUS:20150821T022618Z:9bb1301e-cc5e-4e61-9b45-2bf5404ea4fe" ], "Date": [ - "Thu, 13 Aug 2015 07:28:09 GMT" + "Fri, 21 Aug 2015 02:26:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,10 +1074,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"288a6c97-f353-431a-99cf-e8483097e049\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fae0a95e-a65b-4abd-a820-feb884cf92b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1405" + "1467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1034,7 +1089,7 @@ "no-cache" ], "x-ms-request-id": [ - "23dd2790-c9d0-4d9c-b9af-dab8f001d5e2" + "193a1b08-2bee-48d9-84c3-2199ea524c1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1043,32 +1098,32 @@ "no-cache" ], "ETag": [ - "W/\"40065fe5-48b7-46da-92a2-90b94bd85567\"" + "W/\"458ff455-294d-4d5f-83e3-dcddecf23884\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14985" ], "x-ms-correlation-request-id": [ - "2440e877-fdd0-49d5-8220-2cbd78cf37e1" + "6f8b453a-0fe8-4a60-84b2-5eccd09f884b" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072810Z:2440e877-fdd0-49d5-8220-2cbd78cf37e1" + "WESTUS:20150821T022618Z:6f8b453a-0fe8-4a60-84b2-5eccd09f884b" ], "Date": [ - "Thu, 13 Aug 2015 07:28:09 GMT" + "Fri, 21 Aug 2015 02:26:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps2696\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps5548\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1080,10 +1135,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps2696\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"288a6c97-f353-431a-99cf-e8483097e049\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"40065fe5-48b7-46da-92a2-90b94bd85567\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps2696\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/virtualNetworks/vnetcrptestps2696/subnets/subnetcrptestps2696\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fae0a95e-a65b-4abd-a820-feb884cf92b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1405" + "1467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1095,10 +1150,10 @@ "no-cache" ], "x-ms-request-id": [ - "833a9571-57d4-4b98-a82e-464480f98260" + "2a7575ba-9f25-4c9b-923e-3ba145987745" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/833a9571-57d4-4b98-a82e-464480f98260?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/2a7575ba-9f25-4c9b-923e-3ba145987745?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,20 +1169,20 @@ "1196" ], "x-ms-correlation-request-id": [ - "b05f7e68-36ce-4d18-8576-27d1ca64872f" + "e9b04458-30ab-480f-a393-cacea7cf1024" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072809Z:b05f7e68-36ce-4d18-8576-27d1ca64872f" + "WESTUS:20150821T022617Z:e9b04458-30ab-480f-a393-cacea7cf1024" ], "Date": [ - "Thu, 13 Aug 2015 07:28:08 GMT" + "Fri, 21 Aug 2015 02:26:17 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/833a9571-57d4-4b98-a82e-464480f98260?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODMzYTk1NzEtNTdkNC00Yjk4LWE4MmUtNDY0NDgwZjk4MjYwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/2a7575ba-9f25-4c9b-923e-3ba145987745?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmE3NTc1YmEtOWYyNS00YzliLTkyM2UtM2JhMTQ1OTg3NzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1153,7 +1208,7 @@ "no-cache" ], "x-ms-request-id": [ - "df4f0784-4485-4457-9557-a18d702b8ce7" + "d974cf25-f9b4-4b97-9c81-8c73fcfd6ade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1166,23 +1221,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14987" ], "x-ms-correlation-request-id": [ - "938232dd-c69f-4b49-b7ed-4ccd244aff1a" + "8dd11450-d316-4652-bbc8-ba1913754669" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072809Z:938232dd-c69f-4b49-b7ed-4ccd244aff1a" + "WESTUS:20150821T022618Z:8dd11450-d316-4652-bbc8-ba1913754669" ], "Date": [ - "Thu, 13 Aug 2015 07:28:09 GMT" + "Fri, 21 Aug 2015 02:26:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1193,7 +1248,7 @@ "88" ], "x-ms-client-request-id": [ - "418ce801-ed25-4e3d-9c11-279971a6a985" + "3488c5f0-978a-4c7e-aea8-0d90c578ca96" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1217,44 +1272,44 @@ "25" ], "x-ms-request-id": [ - "e2389718-9dae-4733-bd7b-ec42250dfe1a" + "cd411cc9-e34d-4898-adad-7dc162d2f355" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/e2389718-9dae-4733-bd7b-ec42250dfe1a?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cd411cc9-e34d-4898-adad-7dc162d2f355?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-correlation-request-id": [ - "67bde019-3025-4fec-9968-83e5531381a5" + "79e7ef39-3c0f-43a1-9efa-fe04ed96595a" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072812Z:67bde019-3025-4fec-9968-83e5531381a5" + "WESTUS:20150821T022619Z:79e7ef39-3c0f-43a1-9efa-fe04ed96595a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 07:28:12 GMT" + "Fri, 21 Aug 2015 02:26:19 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/e2389718-9dae-4733-bd7b-ec42250dfe1a?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UyMzg5NzE4LTlkYWUtNDczMy1iZDdiLWVjNDIyNTBkZmUxYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cd411cc9-e34d-4898-adad-7dc162d2f355?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NkNDExY2M5LWUzNGQtNDg5OC1hZGFkLTdkYzE2MmQyZjM1NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3993028b-ed93-4ff1-9c6b-691008f6486c" + "6ea30ec2-b820-4364-8508-3ae1a97eb65d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1278,44 +1333,44 @@ "25" ], "x-ms-request-id": [ - "efd1a467-4d61-428b-96a3-32c8799639eb" + "ed1287bb-884a-4080-bd5d-bd10c7aeaf42" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/e2389718-9dae-4733-bd7b-ec42250dfe1a?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cd411cc9-e34d-4898-adad-7dc162d2f355?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14984" ], "x-ms-correlation-request-id": [ - "6e7e010d-c37f-4dc6-bb40-8aab9d989da1" + "eccd0533-8ac2-4430-abf1-7f524f8a3731" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072813Z:6e7e010d-c37f-4dc6-bb40-8aab9d989da1" + "WESTUS:20150821T022620Z:eccd0533-8ac2-4430-abf1-7f524f8a3731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 07:28:12 GMT" + "Fri, 21 Aug 2015 02:26:19 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/e2389718-9dae-4733-bd7b-ec42250dfe1a?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UyMzg5NzE4LTlkYWUtNDczMy1iZDdiLWVjNDIyNTBkZmUxYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cd411cc9-e34d-4898-adad-7dc162d2f355?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NkNDExY2M5LWUzNGQtNDg5OC1hZGFkLTdkYzE2MmQyZjM1NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e556e42-beb4-4337-9b97-1839fca2ee36" + "f2064589-d994-4111-88c6-3b4de504600d" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1336,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "ca307f20-be5a-4947-ba40-098cd50921ce" + "1bddc6ce-2911-441d-a046-2a14bd712077" ], "Cache-Control": [ "no-cache" @@ -1346,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14983" ], "x-ms-correlation-request-id": [ - "fadaa47a-de50-4ffd-b0be-12a5f505a90d" + "932bb32e-d9a4-459c-b493-5fe6db097ed0" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072838Z:fadaa47a-de50-4ffd-b0be-12a5f505a90d" + "WESTUS:20150821T022645Z:932bb32e-d9a4-459c-b493-5fe6db097ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 07:28:38 GMT" + "Fri, 21 Aug 2015 02:26:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccbc9cd1-ba40-4e56-85ac-7f7c43cdb7f6" + "f173d713-7536-4db3-bb3a-6c3301380494" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696\",\r\n \"name\": \"stocrptestps2696\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2696.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2696.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2696.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:28:11.0681863Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548\",\r\n \"name\": \"stocrptestps5548\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5548.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5548.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5548.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-21T02:26:19.3418645Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1391,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "708450ab-77dc-405a-b0e3-87c987534105" + "17b7e7c3-1b09-4e60-a9ce-cc80bbd6538c" ], "Cache-Control": [ "no-cache" @@ -1401,37 +1456,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14982" ], "x-ms-correlation-request-id": [ - "58d3cec4-a5fa-4265-b936-19d4a66b5244" + "d220577e-27ad-4512-970c-7392e919d2aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072838Z:58d3cec4-a5fa-4265-b936-19d4a66b5244" + "WESTUS:20150821T022645Z:d220577e-27ad-4512-970c-7392e919d2aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 07:28:38 GMT" + "Fri, 21 Aug 2015 02:26:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMyNjk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d82fee53-56c8-4a41-87df-66d726905edd" + "f341b383-955c-4553-9ad1-472d0cd198c5" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Storage/storageAccounts/stocrptestps2696\",\r\n \"name\": \"stocrptestps2696\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps2696.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps2696.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps2696.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T07:28:11.0681863Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548\",\r\n \"name\": \"stocrptestps5548\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5548.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5548.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5548.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-21T02:26:19.3418645Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1446,7 +1501,7 @@ "no-cache" ], "x-ms-request-id": [ - "b3cc4d4c-9370-4163-8952-30417fdbbc26" + "126f157d-4942-4b4e-912f-368f09d09510" ], "Cache-Control": [ "no-cache" @@ -1456,19 +1511,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14981" ], "x-ms-correlation-request-id": [ - "990256be-f37e-4f6d-86c2-389137f9284e" + "c8d9c25d-e316-425e-baa8-59e7f62617db" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072838Z:990256be-f37e-4f6d-86c2-389137f9284e" + "WESTUS:20150821T022645Z:c8d9c25d-e316-425e-baa8-59e7f62617db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 07:28:38 GMT" + "Fri, 21 Aug 2015 02:26:45 GMT" ] }, "StatusCode": 200 @@ -1483,10 +1538,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "55135" + "55855" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1501,7 +1556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5cdf47d-2038-43ed-bc9c-3eab445d9d7e" + "7cd3ed19-5c4c-4ba6-b879-88ba73d77b43" ], "Cache-Control": [ "no-cache" @@ -1511,16 +1566,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14962" ], "x-ms-correlation-request-id": [ - "b84d6733-5eb9-472e-a3a4-f31591b4acaf" + "82e05e5a-a932-4129-95cb-7ab1eafdd23d" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072838Z:b84d6733-5eb9-472e-a3a4-f31591b4acaf" + "WESTUS:20150821T022646Z:82e05e5a-a932-4129-95cb-7ab1eafdd23d" ], "Date": [ - "Thu, 13 Aug 2015 07:28:38 GMT" + "Fri, 21 Aug 2015 02:26:46 GMT" ] }, "StatusCode": 200 @@ -1553,7 +1608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ed5ace7-3220-4414-9991-70db3822369b" + "2ae5042a-71e3-4afc-9a6c-b7876b72b49c" ], "Cache-Control": [ "no-cache" @@ -1563,16 +1618,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14961" ], "x-ms-correlation-request-id": [ - "5ce3abb2-9be1-4e39-92c1-6c25e35c6230" + "6de69fd9-874b-4edc-a934-b22110743590" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072839Z:5ce3abb2-9be1-4e39-92c1-6c25e35c6230" + "WESTUS:20150821T022647Z:6de69fd9-874b-4edc-a934-b22110743590" ], "Date": [ - "Thu, 13 Aug 2015 07:28:39 GMT" + "Fri, 21 Aug 2015 02:26:46 GMT" ] }, "StatusCode": 200 @@ -1587,10 +1642,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1799" + "1475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1605,7 +1660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1809f6d-6d1e-423e-a608-eace479532ff" + "6c9ca835-bfe8-4cc9-9601-7b1a537979a3" ], "Cache-Control": [ "no-cache" @@ -1615,16 +1670,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14960" ], "x-ms-correlation-request-id": [ - "c733ecab-5357-44ef-9100-ca9cfbc1cb55" + "b3f47dc6-ec9c-426f-ae10-3b3e1cf0cebd" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072839Z:c733ecab-5357-44ef-9100-ca9cfbc1cb55" + "WESTUS:20150821T022647Z:b3f47dc6-ec9c-426f-ae10-3b3e1cf0cebd" ], "Date": [ - "Thu, 13 Aug 2015 07:28:39 GMT" + "Fri, 21 Aug 2015 02:26:46 GMT" ] }, "StatusCode": 200 @@ -1657,7 +1712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e1f7859-228e-477c-95c9-7098b674b1ce" + "fcc65595-7a72-4dbb-90b4-434f6d3c8c21" ], "Cache-Control": [ "no-cache" @@ -1667,16 +1722,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14959" ], "x-ms-correlation-request-id": [ - "7ad22f01-8b8c-4261-9253-bee5224ee74d" + "f4d34bb4-0276-4401-8fa0-fd7f0dee9b7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072839Z:7ad22f01-8b8c-4261-9253-bee5224ee74d" + "WESTUS:20150821T022647Z:f4d34bb4-0276-4401-8fa0-fd7f0dee9b7d" ], "Date": [ - "Thu, 13 Aug 2015 07:28:39 GMT" + "Fri, 21 Aug 2015 02:26:46 GMT" ] }, "StatusCode": 200 @@ -1709,7 +1764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7db72cd2-4a64-414a-9fd9-b44e652cd978" + "ad9b08c3-716c-4cf7-aedb-2285c793a466" ], "Cache-Control": [ "no-cache" @@ -1719,40 +1774,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14958" ], "x-ms-correlation-request-id": [ - "87cf496c-18a0-45c8-91f2-d87db7328dac" + "1bf283a7-d178-42ab-8e91-03b5103a11a4" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072839Z:87cf496c-18a0-45c8-91f2-d87db7328dac" + "WESTUS:20150821T022647Z:1bf283a7-d178-42ab-8e91-03b5103a11a4" ], "Date": [ - "Thu, 13 Aug 2015 07:28:39 GMT" + "Fri, 21 Aug 2015 02:26:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Compute/virtualMachines/vmcrptestps2696?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczI2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2696.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2696.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps2696.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps2696\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps2696/providers/Microsoft.Network/networkInterfaces/niccrptestps2696\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps2696\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps5548\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5548\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1681" + "1722" ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"dataDisk.lun\",\r\n \"message\": \"The maximum number of data disks allowed to be attached to a VM is 1.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "1952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1763,14 +1818,17 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "1bd7d186-0ec4-4ad6-9810-10a0c8ae7764" + "d27bb43d-1323-48b2-bd35-96b80ab50b69" ], "Cache-Control": [ "no-cache" @@ -1780,34 +1838,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "b2dd7e3c-64b9-46a6-be7d-6a9d82301e48" + "b990c343-fa93-4a47-bab0-15c57eea26a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072840Z:b2dd7e3c-64b9-46a6-be7d-6a9d82301e48" + "WESTUS:20150821T022648Z:b990c343-fa93-4a47-bab0-15c57eea26a7" ], "Date": [ - "Thu, 13 Aug 2015 07:28:40 GMT" + "Fri, 21 Aug 2015 02:26:47 GMT" ] }, - "StatusCode": 400 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps2696?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczI2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": 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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5548\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1804" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "1969" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1815,53 +1882,57 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ceca7cc8-81df-4d8f-b9db-c64a7c41ff37?api-version=2015-06-15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "73b7e18b-6485-4f6c-b3ab-fbced65f6b5b" + "ceca7cc8-81df-4d8f-b9db-c64a7c41ff37" ], - "x-ms-correlation-request-id": [ - "73b7e18b-6485-4f6c-b3ab-fbced65f6b5b" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150813T072840Z:73b7e18b-6485-4f6c-b3ab-fbced65f6b5b" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "ebb708d0-02dc-4eae-8f99-3a2d1548cb63" ], - "Date": [ - "Thu, 13 Aug 2015 07:28:39 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150821T023721Z:ebb708d0-02dc-4eae-8f99-3a2d1548cb63" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Fri, 21 Aug 2015 02:37:20 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1869,53 +1940,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "a07f8d20-3dbc-40fa-94fe-d79c61e8e940" + "edada671-1a9b-41e9-9940-6ec73e045a7c" ], - "x-ms-correlation-request-id": [ - "a07f8d20-3dbc-40fa-94fe-d79c61e8e940" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150813T072840Z:a07f8d20-3dbc-40fa-94fe-d79c61e8e940" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "e6974a25-0a47-49f7-a822-07241cc12fa5" ], - "Date": [ - "Thu, 13 Aug 2015 07:28:39 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150821T022648Z:e6974a25-0a47-49f7-a822-07241cc12fa5" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Fri, 21 Aug 2015 02:26:47 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1923,53 +1995,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "abde617f-18d8-489d-b121-2a9c0dbf5388" + "f9fde9a0-229e-443b-8541-8ef516245fca" ], - "x-ms-correlation-request-id": [ - "abde617f-18d8-489d-b121-2a9c0dbf5388" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150813T072855Z:abde617f-18d8-489d-b121-2a9c0dbf5388" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "1943d546-e696-42e9-b71f-67842c440720" ], - "Date": [ - "Thu, 13 Aug 2015 07:28:55 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150821T022718Z:1943d546-e696-42e9-b71f-67842c440720" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Fri, 21 Aug 2015 02:27:18 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1977,53 +2050,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "a0e84670-83ff-4616-8888-0c90bb94ba6e" + "5c7ce871-0c4e-4b83-ad6e-e59187160a85" ], - "x-ms-correlation-request-id": [ - "a0e84670-83ff-4616-8888-0c90bb94ba6e" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150813T072910Z:a0e84670-83ff-4616-8888-0c90bb94ba6e" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "8c031870-a746-42c8-b912-c4a7aea6a6fe" ], - "Date": [ - "Thu, 13 Aug 2015 07:29:09 GMT" + "x-ms-routing-request-id": [ + "WESTUS:20150821T022748Z:8c031870-a746-42c8-b912-c4a7aea6a6fe" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Fri, 21 Aug 2015 02:27:48 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2031,39 +2105,1847 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "ce457149-e146-4681-baa8-a3381fa3eb61" - ], - "x-ms-correlation-request-id": [ - "ce457149-e146-4681-baa8-a3381fa3eb61" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150813T072925Z:ce457149-e146-4681-baa8-a3381fa3eb61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3c9612a5-7f20-43a2-ae8f-bd9603ba2b2d" ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Thu, 13 Aug 2015 07:29:25 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "bcc19394-eb99-49a2-8a56-a1ba7c4f29ab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T022818Z:bcc19394-eb99-49a2-8a56-a1ba7c4f29ab" + ], + "Date": [ + "Fri, 21 Aug 2015 02:28:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "39883b95-4a2e-44a3-9d45-3ccacc556da9" + ], + "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": [ + "b0407be6-3812-46b5-a2fe-22bd9f2b0091" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T022849Z:b0407be6-3812-46b5-a2fe-22bd9f2b0091" + ], + "Date": [ + "Fri, 21 Aug 2015 02:28:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "ba4138f1-1d0f-4d47-991c-b04f71d1a014" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "4620c375-1d0a-4872-a6b3-b8e2963b65cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T022919Z:4620c375-1d0a-4872-a6b3-b8e2963b65cc" + ], + "Date": [ + "Fri, 21 Aug 2015 02:29:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "ba828ce4-6afc-4af5-90c5-c462a3f14ff6" + ], + "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": [ + "4298c062-2a72-4333-93b8-11009a85bd51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T022949Z:4298c062-2a72-4333-93b8-11009a85bd51" + ], + "Date": [ + "Fri, 21 Aug 2015 02:29:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "72d7a0e1-5ab6-4b82-bc28-48ddb3d5d847" + ], + "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": [ + "5465dd75-4cb1-4c14-bbb3-e67dc39242a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023019Z:5465dd75-4cb1-4c14-bbb3-e67dc39242a8" + ], + "Date": [ + "Fri, 21 Aug 2015 02:30:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "c8115c9e-2d70-460a-9cf9-798e0ad920d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "f6811248-8920-41e5-af17-b31a41ab86fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023049Z:f6811248-8920-41e5-af17-b31a41ab86fe" + ], + "Date": [ + "Fri, 21 Aug 2015 02:30:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "74484a6e-98d6-4c32-8ab7-f093be395179" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "77860c1f-96f9-43d0-909c-da0d02b41cb6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023119Z:77860c1f-96f9-43d0-909c-da0d02b41cb6" + ], + "Date": [ + "Fri, 21 Aug 2015 02:31:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "818e8b4c-39fd-4c73-85ff-ede6fdbfab46" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "33dce41a-cc81-4d07-ac7a-3edb91339edf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023149Z:33dce41a-cc81-4d07-ac7a-3edb91339edf" + ], + "Date": [ + "Fri, 21 Aug 2015 02:31:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "ad324b68-addd-4cef-9173-f17e37f0ed73" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "ea4cac75-4faf-4a1c-90a0-a1f432102297" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023219Z:ea4cac75-4faf-4a1c-90a0-a1f432102297" + ], + "Date": [ + "Fri, 21 Aug 2015 02:32:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "516bced9-bf8d-4341-bb50-7a6ab7a1c223" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "519f838c-efff-4cd4-ab3f-2c49d37c6062" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023249Z:519f838c-efff-4cd4-ab3f-2c49d37c6062" + ], + "Date": [ + "Fri, 21 Aug 2015 02:32:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "9c5eb9c2-21a7-47dc-8462-e09e6e29b608" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "ef7d7dff-d853-4aad-b140-2d3c25c351be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023320Z:ef7d7dff-d853-4aad-b140-2d3c25c351be" + ], + "Date": [ + "Fri, 21 Aug 2015 02:33:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "3ba1ee1b-372f-4902-b80f-dbf1c4d64ab0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "8682fb19-7700-4fc8-a1f9-560cf819b7f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023350Z:8682fb19-7700-4fc8-a1f9-560cf819b7f9" + ], + "Date": [ + "Fri, 21 Aug 2015 02:33:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "e0e9be18-82e2-4dda-aec0-88cc60fe4ddd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "a7cde231-2947-4a03-865e-f772c607ab37" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023420Z:a7cde231-2947-4a03-865e-f772c607ab37" + ], + "Date": [ + "Fri, 21 Aug 2015 02:34:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "830a06a0-3a72-4be0-8b9b-72087e88b379" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "c440b9c6-c0e7-4fe2-b0bd-a2c3625aa138" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023450Z:c440b9c6-c0e7-4fe2-b0bd-a2c3625aa138" + ], + "Date": [ + "Fri, 21 Aug 2015 02:34:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "21f2cd7b-fe29-4f3d-a3f3-59da3ea7c7e1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "8bbad70b-6720-49a4-9f64-5a102bb17284" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023520Z:8bbad70b-6720-49a4-9f64-5a102bb17284" + ], + "Date": [ + "Fri, 21 Aug 2015 02:35:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "0a242ce9-e1e3-4eeb-a2f7-3a8feb2f79ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "8f07efc2-8e8d-4d47-b2eb-3ea6993a6e3b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023550Z:8f07efc2-8e8d-4d47-b2eb-3ea6993a6e3b" + ], + "Date": [ + "Fri, 21 Aug 2015 02:35:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "c61477b3-937d-4a7f-8910-a5f692406bca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "3b607893-a353-40d1-9ab2-6efb67b1b2ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023620Z:3b607893-a353-40d1-9ab2-6efb67b1b2ae" + ], + "Date": [ + "Fri, 21 Aug 2015 02:36:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "1f5a62b6-1c09-4cf3-8894-2b58824110b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "a4003139-47da-4fc1-9fe1-4f580133afe9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023650Z:a4003139-47da-4fc1-9fe1-4f580133afe9" + ], + "Date": [ + "Fri, 21 Aug 2015 02:36:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\",\r\n \"endTime\": \"2015-08-20T19:37:18.1833186-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "953d80b4-4dbf-4adb-9886-a769c386e2f8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "6a007b5d-bcf5-450d-bf5e-cd93b2cc8d9b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023720Z:6a007b5d-bcf5-450d-bf5e-cd93b2cc8d9b" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1953" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "8c4cf3d3-fb54-47f4-a886-53401d42b660" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "a56e7162-6db8-4d6d-8bb4-c5cd2ca11fae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023721Z:a56e7162-6db8-4d6d-8bb4-c5cd2ca11fae" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "2b726858-5d1e-4d4d-a2de-2973a1abc450" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "29529bf9-c55c-4ad5-b738-c5588c4026f5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023751Z:29529bf9-c55c-4ad5-b738-c5588c4026f5" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ceca7cc8-81df-4d8f-b9db-c64a7c41ff37?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2VjYTdjYzgtODFkZi00ZDhmLWI5ZGItYzY0YTdjNDFmZjM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ceca7cc8-81df-4d8f-b9db-c64a7c41ff37\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:22.0427684-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "3e82f1f2-5e41-4bc0-8e64-415b5d20906e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "dcfebe31-4fa4-48d3-b3c2-03e8bcb784c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023721Z:dcfebe31-4fa4-48d3-b3c2-03e8bcb784c4" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ceca7cc8-81df-4d8f-b9db-c64a7c41ff37?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2VjYTdjYzgtODFkZi00ZDhmLWI5ZGItYzY0YTdjNDFmZjM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"ceca7cc8-81df-4d8f-b9db-c64a7c41ff37\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-20T19:37:22.0427684-07:00\",\r\n \"endTime\": \"2015-08-20T19:37:51.3896917-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "dd987a48-81bd-4318-88fa-5f429fd46e7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "98fd5a6a-73b8-4286-bc81-a8245547aa5c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023751Z:98fd5a6a-73b8-4286-bc81-a8245547aa5c" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "aa86bf08-8299-4024-8c12-5d1567526337" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "bbf04a45-176a-4235-a10e-b5660bb83de9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023751Z:bbf04a45-176a-4235-a10e-b5660bb83de9" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "ce3587b3-0d26-4768-8a8c-56309f588a00" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "4cd0231d-79f0-4dc8-9fa1-8a9c01c2fff8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023751Z:4cd0231d-79f0-4dc8-9fa1-8a9c01c2fff8" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "df1f9ef9-b4ce-4858-8448-ab8c87969fba" + ], + "x-ms-correlation-request-id": [ + "df1f9ef9-b4ce-4858-8448-ab8c87969fba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024023Z:df1f9ef9-b4ce-4858-8448-ab8c87969fba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:40:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "544908d8-bf91-4cd7-84cb-37d8697c8f39" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "ade6307a-fc38-425e-bb51-7505cf97765b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023752Z:ade6307a-fc38-425e-bb51-7505cf97765b" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "80738916-a7ab-417d-904b-cf31f61a9855" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "78338349-5ad1-4b54-8fd6-0fb216fdbf2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023752Z:78338349-5ad1-4b54-8fd6-0fb216fdbf2c" + ], + "Date": [ + "Fri, 21 Aug 2015 02:37:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "08964720-1bdb-42bd-b870-da17db751836" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "b82127df-dece-4739-aeb3-b8e5bd16b610" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023822Z:b82127df-dece-4739-aeb3-b8e5bd16b610" + ], + "Date": [ + "Fri, 21 Aug 2015 02:38:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "ad39afd4-c831-4b95-a9ef-25373d6c419d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "e9bdd415-4b74-4159-961c-db3ac884ce80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023852Z:e9bdd415-4b74-4159-961c-db3ac884ce80" + ], + "Date": [ + "Fri, 21 Aug 2015 02:38:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "d56f7301-3edb-4a60-af7c-b546a51f89f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "dfc00421-b2f5-44a6-80b9-63635a4f7071" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023923Z:dfc00421-b2f5-44a6-80b9-63635a4f7071" + ], + "Date": [ + "Fri, 21 Aug 2015 02:39:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "b3a48343-15b1-4d08-92f8-d66d378294db" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "439d0371-85e2-4e6b-8ea9-d968b27dc692" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T023953Z:439d0371-85e2-4e6b-8ea9-d968b27dc692" + ], + "Date": [ + "Fri, 21 Aug 2015 02:39:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\",\r\n \"endTime\": \"2015-08-20T19:40:06.2775498-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "80114bf9-242c-47a1-9567-923d8c694cca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "ac1e3847-4530-409e-a616-5f2a9ec7cacd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024023Z:ac1e3847-4530-409e-a616-5f2a9ec7cacd" + ], + "Date": [ + "Fri, 21 Aug 2015 02:40:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "afb107e8-3816-45b1-9e7c-69bd4358e067" + ], + "x-ms-correlation-request-id": [ + "afb107e8-3816-45b1-9e7c-69bd4358e067" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024023Z:afb107e8-3816-45b1-9e7c-69bd4358e067" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:40:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2089,16 +3971,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14964" ], "x-ms-request-id": [ - "006b5117-07cd-4a38-a606-3ea8558e4284" + "9d317e55-a861-4207-9bb2-67a1239a5ead" ], "x-ms-correlation-request-id": [ - "006b5117-07cd-4a38-a606-3ea8558e4284" + "9d317e55-a861-4207-9bb2-67a1239a5ead" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072940Z:006b5117-07cd-4a38-a606-3ea8558e4284" + "WESTUS:20150821T024023Z:9d317e55-a861-4207-9bb2-67a1239a5ead" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2107,17 +3989,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:29:39 GMT" + "Fri, 21 Aug 2015 02:40:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2143,16 +4025,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14963" ], "x-ms-request-id": [ - "e0a7309c-6a91-4e0a-872f-0e2770447e61" + "d15a8844-bc90-430f-8d08-c9961c918ee7" ], "x-ms-correlation-request-id": [ - "e0a7309c-6a91-4e0a-872f-0e2770447e61" + "d15a8844-bc90-430f-8d08-c9961c918ee7" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T072955Z:e0a7309c-6a91-4e0a-872f-0e2770447e61" + "WESTUS:20150821T024039Z:d15a8844-bc90-430f-8d08-c9961c918ee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2161,17 +4043,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:29:55 GMT" + "Fri, 21 Aug 2015 02:40:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,16 +4079,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14962" ], "x-ms-request-id": [ - "137e58e3-3891-4e1c-89ea-b972e83aea21" + "53a9e263-ff3d-43d1-af07-b1131787df7e" ], "x-ms-correlation-request-id": [ - "137e58e3-3891-4e1c-89ea-b972e83aea21" + "53a9e263-ff3d-43d1-af07-b1131787df7e" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T073010Z:137e58e3-3891-4e1c-89ea-b972e83aea21" + "WESTUS:20150821T024054Z:53a9e263-ff3d-43d1-af07-b1131787df7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2215,17 +4097,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:30:09 GMT" + "Fri, 21 Aug 2015 02:40:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyNjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TmprMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2247,17 +4129,233 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14961" + ], + "x-ms-request-id": [ + "6bbaa039-a1b4-4144-b5a4-0c1567c2978c" + ], + "x-ms-correlation-request-id": [ + "6bbaa039-a1b4-4144-b5a4-0c1567c2978c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024109Z:6bbaa039-a1b4-4144-b5a4-0c1567c2978c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:41:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "3e55c652-71d4-4fc7-93fc-dbe8aa3c862a" + ], + "x-ms-correlation-request-id": [ + "3e55c652-71d4-4fc7-93fc-dbe8aa3c862a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024124Z:3e55c652-71d4-4fc7-93fc-dbe8aa3c862a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:41:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "95beed82-d658-4463-a2a5-2ecfc9bcfe8e" + ], + "x-ms-correlation-request-id": [ + "95beed82-d658-4463-a2a5-2ecfc9bcfe8e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024139Z:95beed82-d658-4463-a2a5-2ecfc9bcfe8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:41:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "2887a857-6079-447d-a36d-1b2222eb2477" + ], + "x-ms-correlation-request-id": [ + "2887a857-6079-447d-a36d-1b2222eb2477" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024154Z:2887a857-6079-447d-a36d-1b2222eb2477" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:41:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" ], "x-ms-request-id": [ - "a239b237-e92a-4d7d-8e53-2f2c6ffd5913" + "9b5b6ca2-018a-4966-94e1-bc33dbfe6a14" ], "x-ms-correlation-request-id": [ - "a239b237-e92a-4d7d-8e53-2f2c6ffd5913" + "9b5b6ca2-018a-4966-94e1-bc33dbfe6a14" ], "x-ms-routing-request-id": [ - "WESTUS:20150813T073025Z:a239b237-e92a-4d7d-8e53-2f2c6ffd5913" + "WESTUS:20150821T024209Z:9b5b6ca2-018a-4966-94e1-bc33dbfe6a14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2266,7 +4364,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 07:30:25 GMT" + "Fri, 21 Aug 2015 02:42:09 GMT" ] }, "StatusCode": 200 @@ -2274,7 +4372,7 @@ ], "Names": { "Test-VirtualMachineDataDisk": [ - "crptestps2696" + "crptestps5548" ] }, "Variables": { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDiskNegative.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDiskNegative.json new file mode 100644 index 000000000000..6ceb0c8b5bd6 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDiskNegative.json @@ -0,0 +1,2285 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "70066" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "c46c062f-b4b4-45b5-b38e-b35703c46bf9" + ], + "x-ms-correlation-request-id": [ + "c46c062f-b4b4-45b5-b38e-b35703c46bf9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024819Z:c46c062f-b4b4-45b5-b38e-b35703c46bf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1248?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "60033cd1-dce6-4b1f-9aef-392305826603" + ], + "x-ms-correlation-request-id": [ + "60033cd1-dce6-4b1f-9aef-392305826603" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024819Z:60033cd1-dce6-4b1f-9aef-392305826603" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:18 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1248?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "3f604348-1112-43ac-8632-ef9707dc9a18" + ], + "x-ms-correlation-request-id": [ + "3f604348-1112-43ac-8632-ef9707dc9a18" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024905Z:3f604348-1112-43ac-8632-ef9707dc9a18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:05 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1248?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248\",\r\n \"name\": \"crptestps1248\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "83173764-c9d7-4f36-bafe-582076c1f25f" + ], + "x-ms-correlation-request-id": [ + "83173764-c9d7-4f36-bafe-582076c1f25f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024819Z:83173764-c9d7-4f36-bafe-582076c1f25f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:19 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "43aecafc-a915-48fe-b09d-0484f15d38f7" + ], + "x-ms-correlation-request-id": [ + "43aecafc-a915-48fe-b09d-0484f15d38f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024819Z:43aecafc-a915-48fe-b09d-0484f15d38f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1248/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:8d8e1146-3b1c-42bf-9525-a5d77bdcaf5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "3c5537e3-1d69-4a2b-bb19-1f71e7fe004f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024819Z:3c5537e3-1d69-4a2b-bb19-1f71e7fe004f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps1248' under resource group 'crptestps1248' 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": [ + "60822d34-edb4-4d51-b510-9502a3fb447e" + ], + "x-ms-correlation-request-id": [ + "60822d34-edb4-4d51-b510-9502a3fb447e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024820Z:60822d34-edb4-4d51-b510-9502a3fb447e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:19 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248\",\r\n \"etag\": \"W/\\\"28ec345d-1528-4c30-970d-c6a047136f18\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6e74a1b3-027d-44c7-accb-869a37172609\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248/subnets/subnetcrptestps1248\",\r\n \"etag\": \"W/\\\"28ec345d-1528-4c30-970d-c6a047136f18\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1028" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e6275961-489e-4d24-8e86-a5ab07d35bde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"28ec345d-1528-4c30-970d-c6a047136f18\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "23fbe2c3-41b1-4a38-a469-2997eb4260d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024821Z:23fbe2c3-41b1-4a38-a469-2997eb4260d8" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248\",\r\n \"etag\": \"W/\\\"28ec345d-1528-4c30-970d-c6a047136f18\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6e74a1b3-027d-44c7-accb-869a37172609\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248/subnets/subnetcrptestps1248\",\r\n \"etag\": \"W/\\\"28ec345d-1528-4c30-970d-c6a047136f18\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1028" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3cce923-0628-4ba3-bd18-25377dfe2cbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"28ec345d-1528-4c30-970d-c6a047136f18\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "644fe9cd-9f0f-4731-a582-9f66acff35ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024821Z:644fe9cd-9f0f-4731-a582-9f66acff35ac" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTI0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps1248\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps1248\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "502" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248\",\r\n \"etag\": \"W/\\\"2ccfb7bc-140c-4a11-8588-2c14e14c8ce0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6e74a1b3-027d-44c7-accb-869a37172609\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248/subnets/subnetcrptestps1248\",\r\n \"etag\": \"W/\\\"2ccfb7bc-140c-4a11-8588-2c14e14c8ce0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1026" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e0749ed0-919f-40c6-b4f8-4dda29e64ed0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e0749ed0-919f-40c6-b4f8-4dda29e64ed0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "ba120d94-2105-4e44-9ae5-10e2dd0a15cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024821Z:ba120d94-2105-4e44-9ae5-10e2dd0a15cc" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e0749ed0-919f-40c6-b4f8-4dda29e64ed0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTA3NDllZDAtOTE5Zi00MGM2LWI0ZjgtNGRkYTI5ZTY0ZWQwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a4c0df49-a61c-40cd-aeee-878cd50c35bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "05c82f6f-4371-43fa-b447-749a1172b221" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024821Z:05c82f6f-4371-43fa-b447-749a1172b221" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps1248' under resource group 'crptestps1248' 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": [ + "1ca878a7-950d-43f7-8c89-8218570c3a76" + ], + "x-ms-correlation-request-id": [ + "1ca878a7-950d-43f7-8c89-8218570c3a76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024821Z:1ca878a7-950d-43f7-8c89-8218570c3a76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248\",\r\n \"etag\": \"W/\\\"2fb1f063-53ea-4991-9226-3fabe3cfc735\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1e280ccb-591b-4a9b-b2eb-af5c334e969d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1248\",\r\n \"fqdn\": \"pubipcrptestps1248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9291a975-5a3f-499c-b3b4-13102e7d9447" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2fb1f063-53ea-4991-9226-3fabe3cfc735\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "5d43ba98-723a-442a-a0d5-f319d3c20dd7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024833Z:5d43ba98-723a-442a-a0d5-f319d3c20dd7" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248\",\r\n \"etag\": \"W/\\\"2fb1f063-53ea-4991-9226-3fabe3cfc735\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1e280ccb-591b-4a9b-b2eb-af5c334e969d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1248\",\r\n \"fqdn\": \"pubipcrptestps1248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "931aab5e-9add-4c1c-a1da-adbc22aa86ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2fb1f063-53ea-4991-9226-3fabe3cfc735\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "92c1ac86-f08f-4e79-a897-f8c8e3f5530f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024833Z:92c1ac86-f08f-4e79-a897-f8c8e3f5530f" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTI0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1248\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps1248\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "256" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248\",\r\n \"etag\": \"W/\\\"f9510899-1233-481b-8c56-276feb4fe51a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1e280ccb-591b-4a9b-b2eb-af5c334e969d\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1248\",\r\n \"fqdn\": \"pubipcrptestps1248.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e6ac75a1-1541-4fe7-99f6-2d2c73c0f8ef" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e6ac75a1-1541-4fe7-99f6-2d2c73c0f8ef?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "637528ce-8b0f-4588-b2bc-155fd1324fd7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024822Z:637528ce-8b0f-4588-b2bc-155fd1324fd7" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e6ac75a1-1541-4fe7-99f6-2d2c73c0f8ef?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTZhYzc1YTEtMTU0MS00ZmU3LTk5ZjYtMmQyYzczYzBmOGVmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e5680849-01f1-4de9-aad2-bf6e0442eb23" + ], + "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": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "cb2c8940-842c-4bd9-a47b-902eb2a7c2a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024822Z:cb2c8940-842c-4bd9-a47b-902eb2a7c2a0" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e6ac75a1-1541-4fe7-99f6-2d2c73c0f8ef?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTZhYzc1YTEtMTU0MS00ZmU3LTk5ZjYtMmQyYzczYzBmOGVmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "48374019-9191-462c-adb1-b999de3a44f0" + ], + "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": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "b4c07237-3e63-4d25-b31c-b337b6da78c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024832Z:b4c07237-3e63-4d25-b31c-b337b6da78c1" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps1248' under resource group 'crptestps1248' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6fd969b6-4b81-46f0-9568-d6c2a0092ca6" + ], + "x-ms-correlation-request-id": [ + "6fd969b6-4b81-46f0-9568-d6c2a0092ca6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024833Z:6fd969b6-4b81-46f0-9568-d6c2a0092ca6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248\",\r\n \"etag\": \"W/\\\"96108a8c-d39d-4509-86a3-144d6b0bcdbd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cfcc23f7-0f1f-4818-922e-4d061ba9666c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"96108a8c-d39d-4509-86a3-144d6b0bcdbd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248/subnets/subnetcrptestps1248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1467" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "29df727d-aeb5-4daf-98b0-454bd2b4d7ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"96108a8c-d39d-4509-86a3-144d6b0bcdbd\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "3ec374f9-4c2e-43fa-864e-be89b6d353bd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024833Z:3ec374f9-4c2e-43fa-864e-be89b6d353bd" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248\",\r\n \"etag\": \"W/\\\"96108a8c-d39d-4509-86a3-144d6b0bcdbd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cfcc23f7-0f1f-4818-922e-4d061ba9666c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"96108a8c-d39d-4509-86a3-144d6b0bcdbd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248/subnets/subnetcrptestps1248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1467" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a1d17fbc-d96c-4542-9285-53388564d2e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"96108a8c-d39d-4509-86a3-144d6b0bcdbd\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "8c1e5695-342a-4627-9a7b-4d0b56414e41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024834Z:8c1e5695-342a-4627-9a7b-4d0b56414e41" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248/subnets/subnetcrptestps1248\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps1248\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "897" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps1248\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248\",\r\n \"etag\": \"W/\\\"96108a8c-d39d-4509-86a3-144d6b0bcdbd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cfcc23f7-0f1f-4818-922e-4d061ba9666c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"96108a8c-d39d-4509-86a3-144d6b0bcdbd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1248\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1248/subnets/subnetcrptestps1248\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1467" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c099421c-46a8-4b5d-a35a-b137dbc98864" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c099421c-46a8-4b5d-a35a-b137dbc98864?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "501050e1-cae7-45a9-8453-7f850ddb76cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024833Z:501050e1-cae7-45a9-8453-7f850ddb76cd" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c099421c-46a8-4b5d-a35a-b137dbc98864?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzA5OTQyMWMtNDZhOC00YjVkLWEzNWEtYjEzN2RiYzk4ODY0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b41aa80d-8610-4491-99aa-564bed7798d8" + ], + "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": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "2976067f-92c5-4e1d-bf14-d7940e629d80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024833Z:2976067f-92c5-4e1d-bf14-d7940e629d80" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Storage/storageAccounts/stocrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "4e8340e6-2b26-443d-b966-c6c1d4150ca5" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "ae2929ef-36f6-46c9-8852-bbf235ee028a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/ae2929ef-36f6-46c9-8852-bbf235ee028a?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "c106077d-113e-4f7c-ac57-bae7c8aab094" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024837Z:c106077d-113e-4f7c-ac57-bae7c8aab094" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:37 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/ae2929ef-36f6-46c9-8852-bbf235ee028a?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2FlMjkyOWVmLTM2ZjYtNDZjOS04ODUyLWJiZjIzNWVlMDI4YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "617b94a3-9b44-4923-a348-834c737b37a1" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "bed6a4dd-28fa-4d23-bef5-19358421ec4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/ae2929ef-36f6-46c9-8852-bbf235ee028a?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "de968f10-0db2-432b-ad42-2cc73eadc19d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024837Z:de968f10-0db2-432b-ad42-2cc73eadc19d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 21 Aug 2015 02:48:37 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/ae2929ef-36f6-46c9-8852-bbf235ee028a?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2FlMjkyOWVmLTM2ZjYtNDZjOS04ODUyLWJiZjIzNWVlMDI4YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b416b68-c8fa-4fbf-9a70-a151ea6f02d6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "66" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "24e86a65-df5a-4607-b22a-22ed738dfc7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "8c547a18-fffc-4a28-85c7-fe156edb5dd3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024902Z:8c547a18-fffc-4a28-85c7-fe156edb5dd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Storage/storageAccounts/stocrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb75c0bf-af4b-49af-825c-e372875a7a08" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Storage/storageAccounts/stocrptestps1248\",\r\n \"name\": \"stocrptestps1248\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1248.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1248.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1248.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-21T02:48:35.1472152Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4e6a4b6d-c797-468d-8186-e1d4abf17b0a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "2c02c3dd-be9c-42f5-86f0-35a0ca5a7a6d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024902Z:2c02c3dd-be9c-42f5-86f0-35a0ca5a7a6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Storage/storageAccounts/stocrptestps1248?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75ab8e48-ce29-46ff-b099-bc7c09dcd99b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Storage/storageAccounts/stocrptestps1248\",\r\n \"name\": \"stocrptestps1248\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1248.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1248.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1248.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-21T02:48:35.1472152Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e5ef3806-0107-4398-866b-7ffd4a4d328a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "a7538332-6245-4c9a-91b1-78cbef65dded" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024903Z:a7538332-6245-4c9a-91b1-78cbef65dded" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "55855" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0e15848-7dd7-4bfc-a5cb-9ee470d4a30e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "e9f86e2c-7aa6-48e3-b17a-440bf5cd66eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024903Z:e9f86e2c-7aa6-48e3-b17a-440bf5cd66eb" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "258" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b13b9129-7eef-4447-a8a9-aa84d68c532c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "bf9121ab-3dd4-46d6-8572-3585802000a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024904Z:bf9121ab-3dd4-46d6-8572-3585802000a1" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1475" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5bde46ee-f52d-4f25-9146-437309ddb17e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "7668be45-a42e-4b73-b077-08b33692042d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024904Z:7668be45-a42e-4b73-b077-08b33692042d" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "874" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b39bfaf1-ad39-4f23-8176-c01d3ff50acf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "cea42b32-000a-4cf2-a530-1dced85d9c75" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024904Z:cea42b32-000a-4cf2-a530-1dced85d9c75" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "65b8f584-5a64-45a8-8cd0-69c0e4c1702b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "b826b618-4e15-44e8-832d-d7664f777892" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024904Z:b826b618-4e15-44e8-832d-d7664f777892" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Compute/virtualMachines/vmcrptestps1248?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1248.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1248.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1248.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps1248\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1248/providers/Microsoft.Network/networkInterfaces/niccrptestps1248\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps1248\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1681" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"dataDisk.lun\",\r\n \"message\": \"The maximum number of data disks allowed to be attached to a VM is 1.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "095910db-a089-4f75-824c-62c2517c00db" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "03ae9a50-dd6a-4be3-8646-5ac5be16ef20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024905Z:03ae9a50-dd6a-4be3-8646-5ac5be16ef20" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:04 GMT" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1248?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "474fec75-c6e1-420c-945a-7757fb55d283" + ], + "x-ms-correlation-request-id": [ + "474fec75-c6e1-420c-945a-7757fb55d283" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024905Z:474fec75-c6e1-420c-945a-7757fb55d283" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "c16c3dbb-be11-44ed-bca9-990736be3b5d" + ], + "x-ms-correlation-request-id": [ + "c16c3dbb-be11-44ed-bca9-990736be3b5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024905Z:c16c3dbb-be11-44ed-bca9-990736be3b5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "c7b9eaf5-bf39-4c38-bd91-c7f1cce04a74" + ], + "x-ms-correlation-request-id": [ + "c7b9eaf5-bf39-4c38-bd91-c7f1cce04a74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024920Z:c7b9eaf5-bf39-4c38-bd91-c7f1cce04a74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "55e8d22d-53a0-4c85-b37f-bea4df45456a" + ], + "x-ms-correlation-request-id": [ + "55e8d22d-53a0-4c85-b37f-bea4df45456a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024935Z:55e8d22d-53a0-4c85-b37f-bea4df45456a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "3be6c639-1288-4658-a4bd-5fe302b25529" + ], + "x-ms-correlation-request-id": [ + "3be6c639-1288-4658-a4bd-5fe302b25529" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T024950Z:3be6c639-1288-4658-a4bd-5fe302b25529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:49:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "62d22a6f-e84f-4e94-8eea-ecac3253ce24" + ], + "x-ms-correlation-request-id": [ + "62d22a6f-e84f-4e94-8eea-ecac3253ce24" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T025006Z:62d22a6f-e84f-4e94-8eea-ecac3253ce24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:50:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "17c913e4-671b-4ae3-935e-d3812c539fd6" + ], + "x-ms-correlation-request-id": [ + "17c913e4-671b-4ae3-935e-d3812c539fd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T025021Z:17c913e4-671b-4ae3-935e-d3812c539fd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:50:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "9b338faf-4d5e-44fa-8865-424ae8505843" + ], + "x-ms-correlation-request-id": [ + "9b338faf-4d5e-44fa-8865-424ae8505843" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T025036Z:9b338faf-4d5e-44fa-8865-424ae8505843" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:50:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-request-id": [ + "83b50ded-7b2f-4a11-8288-afc8c4a1992e" + ], + "x-ms-correlation-request-id": [ + "83b50ded-7b2f-4a11-8288-afc8c4a1992e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150821T025051Z:83b50ded-7b2f-4a11-8288-afc8c4a1992e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 21 Aug 2015 02:50:50 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachineDataDiskNegative": [ + "crptestps1248" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 2305ee4dfd3c..6d07016ca0b2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -259,6 +259,7 @@ + diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index 5f20a5cc2e6b..6832f94dfc52 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -232,6 +232,15 @@ public static string CustomScriptExtensionTryToUseTheFirstSpecifiedFileAsRunScri } } + ///

+ /// Looks up a localized string similar to A data disk, {0}, is not currently assigned for this VM. Use Add-AzureVMDataDisk to add it.. + /// + public static string DataDiskNotAssignedForVM { + get { + return ResourceManager.GetString("DataDiskNotAssignedForVM", resourceCulture); + } + } + /// /// Looks up a localized string similar to Remove Extension. /// diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index f60d285d8211..572d6e237889 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -281,4 +281,7 @@ The file needs to be a PowerShell script (.ps1 or .psm1). {0} + + A data disk, {0}, is not currently assigned for this VM. Use Add-AzureVMDataDisk to add it. + \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMDataDiskCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMDataDiskCommand.cs new file mode 100644 index 000000000000..ecff888b5dc3 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMDataDiskCommand.cs @@ -0,0 +1,129 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet( + VerbsCommon.Set, + ProfileNouns.DataDisk), + OutputType( + typeof(PSVirtualMachine))] + public class SetAzureVMDataDiskCommand : AzurePSCmdlet + { + private const string NameParameterSet = "ChangeWithName"; + private const string LunParameterSet = "ChangeWithLun"; + + [Alias("VMProfile")] + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMProfile)] + [ValidateNotNullOrEmpty] + public PSVirtualMachine VM { get; set; } + + [Parameter( + Mandatory = true, + Position = 1, + ParameterSetName = NameParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMDataDiskName)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + Position = 3, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMDataDiskCaching)] + [ValidateNotNullOrEmpty] + [ValidateSet(ValidateSetValues.ReadOnly, ValidateSetValues.ReadWrite)] + public string Caching { get; set; } + + [Parameter( + Mandatory = false, + Position = 4, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMDataDiskSizeInGB)] + [AllowNull] + public int? DiskSizeInGB { get; set; } + + [Parameter( + Mandatory = true, + Position = 5, + ParameterSetName = LunParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMDataDiskLun)] + [ValidateNotNullOrEmpty] + public int? Lun { get; set; } + + public override void ExecuteCmdlet() + { + var storageProfile = this.VM.StorageProfile; + + if (storageProfile == null) + { + storageProfile = new StorageProfile(); + } + + if (storageProfile.DataDisks == null) + { + storageProfile.DataDisks = new List(); + } + + var dataDisk = (this.ParameterSetName.Equals(LunParameterSet)) + ? storageProfile.DataDisks.SingleOrDefault(disk => disk.Lun == this.Lun) + : storageProfile.DataDisks.SingleOrDefault(disk => disk.Name == this.Name); + + if (dataDisk == null) + { + var missingDisk = (this.ParameterSetName.Equals(LunParameterSet)) + ? string.Format("LUN # {0}", this.Lun) + : "Name: " + this.Name; + ThrowTerminatingError( + new ErrorRecord( + new InvalidOperationException(string.Format(CultureInfo.InvariantCulture, Properties.Resources.DataDiskNotAssignedForVM, missingDisk)), + string.Empty, + ErrorCategory.InvalidData, + null)); + } + else + { + if (! string.IsNullOrWhiteSpace(this.Caching)) + { + dataDisk.Caching = this.Caching; + } + if (this.DiskSizeInGB != null) + { + dataDisk.DiskSizeGB = this.DiskSizeInGB; + } + } + + this.VM.StorageProfile = storageProfile; + + WriteObject(this.VM); + } + } +} From ab49b76dbac528c8bffafb5556226695365eab30 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Fri, 21 Aug 2015 11:19:38 -0700 Subject: [PATCH 13/37] Include odata query filter for a single resource get --- .../Cmdlets/Implementation/GetAzureResourceCmdlet.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs index 00b585219bed..3f5d838d80cc 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs @@ -353,12 +353,20 @@ private async Task GetResource() .DetermineApiVersion(resourceId: resourceId) .ConfigureAwait(continueOnCapturedContext: false); + var odataQuery = QueryFilterBuilder.CreateFilter( + resourceType: null, + resourceName: null, + tagName: null, + tagValue: null, + filter: this.ODataQuery); + return await this .GetResourcesClient() .GetResource( resourceId: resourceId, apiVersion: apiVersion, - cancellationToken: this.CancellationToken.Value) + cancellationToken: this.CancellationToken.Value, + odataQuery: odataQuery) .ConfigureAwait(continueOnCapturedContext: false); } From 53b59b0497dc70e3b5b5b95be139e3fa64b5ee66 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Fri, 21 Aug 2015 12:07:22 -0700 Subject: [PATCH 14/37] Formatting Get image cmdles as a table --- ...osoft.Azure.Commands.Compute.format.ps1xml | 220 +++++++++--------- 1 file changed, 111 insertions(+), 109 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml index 9c1b4c5c02f0..e623e12ba414 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml +++ b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml @@ -111,7 +111,6 @@ --> - Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageBase @@ -134,143 +133,146 @@ - Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher - - - - - - - Id - - - - Location - - - + + + + + + + + + + PublisherName - - - - - + + + Location + + + Id + + + + + - Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer - - - - - - - Id - - - - Location - - - - PublisherName - - - + + + + + + + + + + + Offer - - - - - + + + PublisherName + + + Location + + + Id + + + + + - Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku - - - - - - - Id - - - - Location - - - - PublisherName - - - - Offer - - - + + + + + + + + + + + + Skus - - - - - + + + Offer + + + PublisherName + + + Location + + + Id + + + + + - Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage - - - - - - - Id - - - - Location - - - - PublisherName - - - - Offer - - - - Skus - - - + + + + + + + + + + + + + + Version - - - + + FilterExpression - - - - - + + + Skus + + + Offer + + + PublisherName + + + Location + + + Id + + + + + - Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail From bbd04472202ff405e954b60ddcf608b9b282704a Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Fri, 21 Aug 2015 14:17:59 -0700 Subject: [PATCH 15/37] Fix virtual machine datadisk test --- .../ScenarioTests/VirtualMachineTests.ps1 | 46 +- .../TestVirtualMachineDataDisk.json | 1552 ++++++----------- 2 files changed, 584 insertions(+), 1014 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 index cc2526f53f60..d3d5c5838d47 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 @@ -839,16 +839,17 @@ function Test-VirtualMachineDataDisk $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; $dataDiskName1 = 'testDataDisk1'; $dataDiskName2 = 'testDataDisk2'; + $dataDiskName3 = 'testDataDisk3'; $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; $p = Add-AzureVMDataDisk -VM $p -Name $dataDiskName1 -Caching 'ReadOnly' -DiskSizeInGB 5 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; $p = Add-AzureVMDataDisk -VM $p -Name $dataDiskName2 -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; - $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; + $p = Add-AzureVMDataDisk -VM $p -Name $dataDiskName3 -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Remove-AzureVMDataDisk -VM $p -Name $dataDiskName3; $p = Set-AzureVMDataDisk -VM $p -Name $dataDiskName1 -DiskSizeInGB 10; - Assert-ThrowsContains { Set-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadWrite'; } "not currently assigned for this VM"; + Assert-ThrowsContains { Set-AzureVMDataDisk -VM $p -Name $dataDiskName3 -Caching 'ReadWrite'; } "not currently assigned for this VM"; Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; @@ -897,6 +898,7 @@ function Test-VirtualMachineDataDisk # Get VM $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; + Assert-AreEqual $vm1.Name $vmname; Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 1; Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; @@ -906,7 +908,7 @@ function Test-VirtualMachineDataDisk Assert-AreEqual $vm1.StorageProfile.ImageReference.Sku $imgRef.Skus; Assert-AreEqual $vm1.StorageProfile.ImageReference.Version $imgRef.Version; - Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; + Assert-AreEqual $vm1.StorageProfile.DataDisks.Count 2; Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Name $dataDiskName1; Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Caching 'ReadOnly'; Assert-AreEqual $vm1.StorageProfile.DataDisks[0].DiskSizeGB 10; @@ -927,6 +929,7 @@ function Test-VirtualMachineDataDisk $vm1 = Set-AzureVMDataDisk -VM $vm1 -Caching 'ReadWrite' -Lun 1; $vm1 = Set-AzureVMDataDisk -VM $vm1 -Name $dataDiskName2 -Caching 'ReadWrite'; + $vm1 = Add-AzureVMDataDisk -VM $vm1 -Name $dataDiskName3 -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; # Update Update-AzureVM -ResourceGroupName $rgname -VM $vm1; @@ -940,20 +943,27 @@ function Test-VirtualMachineDataDisk Assert-AreEqual $vm2.StorageProfile.ImageReference.Sku $imgRef.Skus; Assert-AreEqual $vm2.StorageProfile.ImageReference.Version $imgRef.Version; - Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; - Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Name $dataDiskName1; - Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Caching 'ReadWrite'; - Assert-AreEqual $vm1.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $vm1.StorageProfile.DataDisks[0].Lun 1; - Assert-AreEqual $vm1.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; - Assert-AreEqual $vm1.StorageProfile.DataDisks[0].CreateOption 'Empty'; - - Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Name $dataDiskName2; - Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Caching 'ReadWrite'; - Assert-AreEqual $vm1.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $vm1.StorageProfile.DataDisks[1].Lun 2; - Assert-AreEqual $vm1.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; - Assert-AreEqual $vm1.StorageProfile.DataDisks[1].CreateOption 'Empty'; + Assert-AreEqual $vm2.StorageProfile.DataDisks.Count 3; + Assert-AreEqual $vm2.StorageProfile.DataDisks[0].Name $dataDiskName1; + Assert-AreEqual $vm2.StorageProfile.DataDisks[0].Caching 'ReadWrite'; + Assert-AreEqual $vm2.StorageProfile.DataDisks[0].DiskSizeGB 10; + Assert-AreEqual $vm2.StorageProfile.DataDisks[0].Lun 1; + Assert-AreEqual $vm2.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; + Assert-AreEqual $vm2.StorageProfile.DataDisks[0].CreateOption 'Empty'; + + Assert-AreEqual $vm2.StorageProfile.DataDisks[1].Name $dataDiskName2; + Assert-AreEqual $vm2.StorageProfile.DataDisks[1].Caching 'ReadWrite'; + Assert-AreEqual $vm2.StorageProfile.DataDisks[1].DiskSizeGB 11; + Assert-AreEqual $vm2.StorageProfile.DataDisks[1].Lun 2; + Assert-AreEqual $vm2.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; + Assert-AreEqual $vm2.StorageProfile.DataDisks[1].CreateOption 'Empty'; + + Assert-AreEqual $vm2.StorageProfile.DataDisks[2].Name $dataDiskName3; + Assert-AreEqual $vm2.StorageProfile.DataDisks[2].Caching 'ReadOnly'; + Assert-AreEqual $vm2.StorageProfile.DataDisks[2].DiskSizeGB 12; + Assert-AreEqual $vm2.StorageProfile.DataDisks[2].Lun 3; + Assert-AreEqual $vm2.StorageProfile.DataDisks[2].VirtualHardDisk.Uri $dataDiskVhdUri3; + Assert-AreEqual $vm2.StorageProfile.DataDisks[2].CreateOption 'Empty'; Assert-AreEqual $vm2.OSProfile.AdminUsername $user; Assert-AreEqual $vm2.OSProfile.ComputerName $computerName; diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json index 74036e67e95a..ab33a4190146 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14967" ], "x-ms-request-id": [ - "477d2d7f-2e51-4e80-8e82-aaa1798bbd82" + "9fab925e-c20c-4c07-bed7-c929ee23c04a" ], "x-ms-correlation-request-id": [ - "477d2d7f-2e51-4e80-8e82-aaa1798bbd82" + "9fab925e-c20c-4c07-bed7-c929ee23c04a" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022552Z:477d2d7f-2e51-4e80-8e82-aaa1798bbd82" + "WESTUS:20150821T205855Z:9fab925e-c20c-4c07-bed7-c929ee23c04a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:25:52 GMT" + "Fri, 21 Aug 2015 20:58:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8237?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14966" ], "x-ms-request-id": [ - "43b4a5be-7239-4da7-877d-cc714ad38a3f" + "0a461683-8e6f-4898-9f1e-3027885c84d6" ], "x-ms-correlation-request-id": [ - "43b4a5be-7239-4da7-877d-cc714ad38a3f" + "0a461683-8e6f-4898-9f1e-3027885c84d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022552Z:43b4a5be-7239-4da7-877d-cc714ad38a3f" + "WESTUS:20150821T205855Z:0a461683-8e6f-4898-9f1e-3027885c84d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:25:52 GMT" + "Fri, 21 Aug 2015 20:58:55 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8237?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -121,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14933" ], "x-ms-request-id": [ - "452243e8-3293-4f06-bb92-3da50c34a927" + "8e24854e-51e4-40c4-bb8e-3556c5c3eccf" ], "x-ms-correlation-request-id": [ - "452243e8-3293-4f06-bb92-3da50c34a927" + "8e24854e-51e4-40c4-bb8e-3556c5c3eccf" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024023Z:452243e8-3293-4f06-bb92-3da50c34a927" + "WESTUS:20150821T210927Z:8e24854e-51e4-40c4-bb8e-3556c5c3eccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,14 +139,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:40:22 GMT" + "Fri, 21 Aug 2015 21:09:26 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8237?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -160,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548\",\r\n \"name\": \"crptestps5548\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237\",\r\n \"name\": \"crptestps8237\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-request-id": [ - "c041370b-3902-4bbd-b50a-95edaf9215b1" + "56f0adeb-4a24-42a8-96da-756a03051f17" ], "x-ms-correlation-request-id": [ - "c041370b-3902-4bbd-b50a-95edaf9215b1" + "56f0adeb-4a24-42a8-96da-756a03051f17" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022553Z:c041370b-3902-4bbd-b50a-95edaf9215b1" + "WESTUS:20150821T205856Z:56f0adeb-4a24-42a8-96da-756a03051f17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:25:52 GMT" + "Fri, 21 Aug 2015 20:58:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14965" ], "x-ms-request-id": [ - "df3c4175-c9c7-4873-a84d-b7b671f5ccb3" + "7bdd0fbc-92c3-4971-ad07-9eca662b0a17" ], "x-ms-correlation-request-id": [ - "df3c4175-c9c7-4873-a84d-b7b671f5ccb3" + "7bdd0fbc-92c3-4971-ad07-9eca662b0a17" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022553Z:df3c4175-c9c7-4873-a84d-b7b671f5ccb3" + "WESTUS:20150821T205856Z:7bdd0fbc-92c3-4971-ad07-9eca662b0a17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +241,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:25:52 GMT" + "Fri, 21 Aug 2015 20:58:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8237/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:0f6a828e-930f-44dc-96f5-52bcc827dbd0" + "westus:89bfe3fb-d6d0-4509-8bb8-d1405c8ab400" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14973" ], "x-ms-correlation-request-id": [ - "05a55ef0-75d0-4d88-a629-b5ede35e796f" + "b1e15434-572b-4472-8d02-5013007e70b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022553Z:05a55ef0-75d0-4d88-a629-b5ede35e796f" + "WESTUS:20150821T205856Z:b1e15434-572b-4472-8d02-5013007e70b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +292,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:25:53 GMT" + "Fri, 21 Aug 2015 20:58:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODIzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,7 +307,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps5548' under resource group 'crptestps5548' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps8237' under resource group 'crptestps8237' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -325,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "15e2815a-609f-4c6c-9459-f0a9e216f582" + "3c1174c2-6969-49a7-9552-79fa11599289" ], "x-ms-correlation-request-id": [ - "15e2815a-609f-4c6c-9459-f0a9e216f582" + "3c1174c2-6969-49a7-9552-79fa11599289" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022554Z:15e2815a-609f-4c6c-9459-f0a9e216f582" + "WESTUS:20150821T205857Z:3c1174c2-6969-49a7-9552-79fa11599289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,14 +340,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:25:53 GMT" + "Fri, 21 Aug 2015 20:58:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODIzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -355,7 +355,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548\",\r\n \"etag\": \"W/\\\"3409f284-6f0c-404a-ab4e-fca1feb29406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01550c55-272c-4805-9a2b-39f7313569c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\",\r\n \"etag\": \"W/\\\"3409f284-6f0c-404a-ab4e-fca1feb29406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237\",\r\n \"etag\": \"W/\\\"0201562a-56f3-4361-a8b5-78945c3fec1b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2dd127ea-3a9b-4951-b134-5007ec6c6af2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237/subnets/subnetcrptestps8237\",\r\n \"etag\": \"W/\\\"0201562a-56f3-4361-a8b5-78945c3fec1b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -370,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "8221e2ff-da12-4b52-b0ee-5541a6ff5645" + "72461b26-1586-4e5a-99be-2357a1b0db05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "ETag": [ - "W/\"3409f284-6f0c-404a-ab4e-fca1feb29406\"" + "W/\"0201562a-56f3-4361-a8b5-78945c3fec1b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -389,20 +389,20 @@ "14995" ], "x-ms-correlation-request-id": [ - "d2874080-ccdb-4802-9f5c-3e38773fc5db" + "9b399667-18a5-42d1-881b-1cdfffcb38b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022605Z:d2874080-ccdb-4802-9f5c-3e38773fc5db" + "WESTUS:20150821T205908Z:9b399667-18a5-42d1-881b-1cdfffcb38b4" ], "Date": [ - "Fri, 21 Aug 2015 02:26:05 GMT" + "Fri, 21 Aug 2015 20:59:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODIzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -410,7 +410,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548\",\r\n \"etag\": \"W/\\\"3409f284-6f0c-404a-ab4e-fca1feb29406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01550c55-272c-4805-9a2b-39f7313569c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\",\r\n \"etag\": \"W/\\\"3409f284-6f0c-404a-ab4e-fca1feb29406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237\",\r\n \"etag\": \"W/\\\"0201562a-56f3-4361-a8b5-78945c3fec1b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2dd127ea-3a9b-4951-b134-5007ec6c6af2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237/subnets/subnetcrptestps8237\",\r\n \"etag\": \"W/\\\"0201562a-56f3-4361-a8b5-78945c3fec1b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -425,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "443fcac2-5dee-4343-a4fa-56ad0ec7e5cc" + "5491c060-d30a-4b58-96bf-78077dac289d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -434,7 +434,7 @@ "no-cache" ], "ETag": [ - "W/\"3409f284-6f0c-404a-ab4e-fca1feb29406\"" + "W/\"0201562a-56f3-4361-a8b5-78945c3fec1b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -444,22 +444,22 @@ "14994" ], "x-ms-correlation-request-id": [ - "7f8ffbcc-f1f1-4f61-8757-0f3dd79ac81c" + "9058c904-4d1d-4d3d-add3-f6e1b54c991c" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022605Z:7f8ffbcc-f1f1-4f61-8757-0f3dd79ac81c" + "WESTUS:20150821T205908Z:9058c904-4d1d-4d3d-add3-f6e1b54c991c" ], "Date": [ - "Fri, 21 Aug 2015 02:26:05 GMT" + "Fri, 21 Aug 2015 20:59:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualnetworks/vnetcrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNTU0OD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualnetworks/vnetcrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzODIzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps5548\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetcrptestps8237\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps8237\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -471,7 +471,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548\",\r\n \"etag\": \"W/\\\"bbe01844-17de-465c-8201-9c6e9555d587\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"01550c55-272c-4805-9a2b-39f7313569c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\",\r\n \"etag\": \"W/\\\"bbe01844-17de-465c-8201-9c6e9555d587\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237\",\r\n \"etag\": \"W/\\\"f7ad9e60-ed67-4974-b944-e3eac2198976\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2dd127ea-3a9b-4951-b134-5007ec6c6af2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237/subnets/subnetcrptestps8237\",\r\n \"etag\": \"W/\\\"f7ad9e60-ed67-4974-b944-e3eac2198976\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1026" @@ -489,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "e7928c8e-e096-49be-a038-0f9798bde070" + "2d3ee75f-df7f-425d-9a6c-481a05e32419" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e7928c8e-e096-49be-a038-0f9798bde070?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/2d3ee75f-df7f-425d-9a6c-481a05e32419?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,23 +505,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "833a3b77-382d-40d8-8489-fee499989a7f" + "67c723f7-baf3-460f-9a2f-89f460a91bee" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022555Z:833a3b77-382d-40d8-8489-fee499989a7f" + "WESTUS:20150821T205857Z:67c723f7-baf3-460f-9a2f-89f460a91bee" ], "Date": [ - "Fri, 21 Aug 2015 02:25:54 GMT" + "Fri, 21 Aug 2015 20:58:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e7928c8e-e096-49be-a038-0f9798bde070?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTc5MjhjOGUtZTA5Ni00OWJlLWEwMzgtMGY5Nzk4YmRlMDcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/2d3ee75f-df7f-425d-9a6c-481a05e32419?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQzZWU3NWYtZGY3Zi00MjVkLTlhNmMtNDgxYTA1ZTMyNDE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -547,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "534b7c07-d575-44ba-ab45-e2fb574412ca" + "cdc08d1d-0335-4e80-953e-af7a28204f15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -563,20 +563,20 @@ "14997" ], "x-ms-correlation-request-id": [ - "09d43aa8-664a-4f0a-a0bb-3fe52e671b0b" + "12df64e4-f091-42b6-a515-dcd2dcef47b2" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022555Z:09d43aa8-664a-4f0a-a0bb-3fe52e671b0b" + "WESTUS:20150821T205857Z:12df64e4-f091-42b6-a515-dcd2dcef47b2" ], "Date": [ - "Fri, 21 Aug 2015 02:25:54 GMT" + "Fri, 21 Aug 2015 20:58:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e7928c8e-e096-49be-a038-0f9798bde070?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTc5MjhjOGUtZTA5Ni00OWJlLWEwMzgtMGY5Nzk4YmRlMDcwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/2d3ee75f-df7f-425d-9a6c-481a05e32419?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmQzZWU3NWYtZGY3Zi00MjVkLTlhNmMtNDgxYTA1ZTMyNDE5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -602,7 +602,7 @@ "no-cache" ], "x-ms-request-id": [ - "03968513-40bd-4ca8-855a-e45e856bf1e6" + "818cf993-a209-482f-894d-4bdfe208ee82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,20 +618,20 @@ "14996" ], "x-ms-correlation-request-id": [ - "fe167a7d-9b38-4f6b-8bdd-f56362cb1895" + "047c63a8-6e3b-48c1-aee9-d6531cc7b2f2" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022605Z:fe167a7d-9b38-4f6b-8bdd-f56362cb1895" + "WESTUS:20150821T205907Z:047c63a8-6e3b-48c1-aee9-d6531cc7b2f2" ], "Date": [ - "Fri, 21 Aug 2015 02:26:05 GMT" + "Fri, 21 Aug 2015 20:59:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTU0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODIzNy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,7 +639,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps5548' under resource group 'crptestps5548' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps8237' under resource group 'crptestps8237' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -657,13 +657,13 @@ "gateway" ], "x-ms-request-id": [ - "ec093e21-3a70-4cb0-a3de-4d17efeb6c7c" + "f9e1e647-4a32-4e09-8ecb-ab9d912f8ba2" ], "x-ms-correlation-request-id": [ - "ec093e21-3a70-4cb0-a3de-4d17efeb6c7c" + "f9e1e647-4a32-4e09-8ecb-ab9d912f8ba2" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022605Z:ec093e21-3a70-4cb0-a3de-4d17efeb6c7c" + "WESTUS:20150821T205908Z:f9e1e647-4a32-4e09-8ecb-ab9d912f8ba2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,14 +672,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:26:05 GMT" + "Fri, 21 Aug 2015 20:59:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTU0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODIzNy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,7 +687,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\",\r\n \"etag\": \"W/\\\"baa7b5d7-783c-4104-8c77-a1a30c7f30b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"81fd6592-02bd-4ae4-8cab-4054571b2201\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5548\",\r\n \"fqdn\": \"pubipcrptestps5548.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237\",\r\n \"etag\": \"W/\\\"27ccfc1d-e4f6-49c5-9721-fd101a27e700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7faed92-7764-4550-8a69-066f9844c5d7\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8237\",\r\n \"fqdn\": \"pubipcrptestps8237.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -702,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "e2e62794-0436-4f15-af47-fd12a043c707" + "9318ae0b-789a-4232-83f7-e925b51767b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,7 +711,7 @@ "no-cache" ], "ETag": [ - "W/\"baa7b5d7-783c-4104-8c77-a1a30c7f30b2\"" + "W/\"27ccfc1d-e4f6-49c5-9721-fd101a27e700\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -721,20 +721,20 @@ "14990" ], "x-ms-correlation-request-id": [ - "ce12ab07-53de-4181-b298-4782203c6d56" + "d3a7243e-fe1e-4c0f-9cdd-5950700a2be6" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022617Z:ce12ab07-53de-4181-b298-4782203c6d56" + "WESTUS:20150821T205919Z:d3a7243e-fe1e-4c0f-9cdd-5950700a2be6" ], "Date": [ - "Fri, 21 Aug 2015 02:26:16 GMT" + "Fri, 21 Aug 2015 20:59:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTU0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODIzNy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -742,7 +742,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\",\r\n \"etag\": \"W/\\\"baa7b5d7-783c-4104-8c77-a1a30c7f30b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"81fd6592-02bd-4ae4-8cab-4054571b2201\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5548\",\r\n \"fqdn\": \"pubipcrptestps5548.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237\",\r\n \"etag\": \"W/\\\"27ccfc1d-e4f6-49c5-9721-fd101a27e700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e7faed92-7764-4550-8a69-066f9844c5d7\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8237\",\r\n \"fqdn\": \"pubipcrptestps8237.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -757,7 +757,7 @@ "no-cache" ], "x-ms-request-id": [ - "990b19fd-77ed-42f5-ab64-6fe173c9f3f0" + "1c660e55-28db-4304-b312-627d4408e424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,7 +766,7 @@ "no-cache" ], "ETag": [ - "W/\"baa7b5d7-783c-4104-8c77-a1a30c7f30b2\"" + "W/\"27ccfc1d-e4f6-49c5-9721-fd101a27e700\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -776,22 +776,22 @@ "14989" ], "x-ms-correlation-request-id": [ - "11fb4d07-46b9-42ee-a212-7048b48da06a" + "181b1719-cb78-4228-a127-828b3ea9ed90" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022617Z:11fb4d07-46b9-42ee-a212-7048b48da06a" + "WESTUS:20150821T205919Z:181b1719-cb78-4228-a127-828b3ea9ed90" ], "Date": [ - "Fri, 21 Aug 2015 02:26:16 GMT" + "Fri, 21 Aug 2015 20:59:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNTU0OC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzODIzNy8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5548\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps5548\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8237\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps8237\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -803,7 +803,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\",\r\n \"etag\": \"W/\\\"f721448a-2788-4c99-990d-ad17f7d8d002\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"81fd6592-02bd-4ae4-8cab-4054571b2201\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps5548\",\r\n \"fqdn\": \"pubipcrptestps5548.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237\",\r\n \"etag\": \"W/\\\"62c0f107-2067-40d4-ba57-419149e8b549\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e7faed92-7764-4550-8a69-066f9844c5d7\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps8237\",\r\n \"fqdn\": \"pubipcrptestps8237.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -821,10 +821,10 @@ "10" ], "x-ms-request-id": [ - "93dd30bb-6402-4390-8d0f-6d4e749d1dda" + "bf905feb-009a-4744-97a7-9a49b4b6b9e4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/93dd30bb-6402-4390-8d0f-6d4e749d1dda?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/bf905feb-009a-4744-97a7-9a49b4b6b9e4?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -837,23 +837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "59eaff74-920f-4d09-a943-d8769d1f86da" + "24b17c9a-5e7f-4afe-95a2-02a0d2b7f54e" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022606Z:59eaff74-920f-4d09-a943-d8769d1f86da" + "WESTUS:20150821T205909Z:24b17c9a-5e7f-4afe-95a2-02a0d2b7f54e" ], "Date": [ - "Fri, 21 Aug 2015 02:26:06 GMT" + "Fri, 21 Aug 2015 20:59:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/93dd30bb-6402-4390-8d0f-6d4e749d1dda?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTNkZDMwYmItNjQwMi00MzkwLThkMGYtNmQ0ZTc0OWQxZGRhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/bf905feb-009a-4744-97a7-9a49b4b6b9e4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY5MDVmZWItMDA5YS00NzQ0LTk3YTctOWE0OWI0YjZiOWU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,7 +879,7 @@ "no-cache" ], "x-ms-request-id": [ - "5fe504a4-c91f-43a3-86e5-9ab4793ef480" + "ca7557c9-4300-429e-9aed-4cea032f0f9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -895,20 +895,20 @@ "14992" ], "x-ms-correlation-request-id": [ - "950c31d1-c473-4adb-9e60-c07e353030fa" + "2633ed2b-7deb-47c1-9f6d-f753a26aee12" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022606Z:950c31d1-c473-4adb-9e60-c07e353030fa" + "WESTUS:20150821T205909Z:2633ed2b-7deb-47c1-9f6d-f753a26aee12" ], "Date": [ - "Fri, 21 Aug 2015 02:26:06 GMT" + "Fri, 21 Aug 2015 20:59:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/93dd30bb-6402-4390-8d0f-6d4e749d1dda?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTNkZDMwYmItNjQwMi00MzkwLThkMGYtNmQ0ZTc0OWQxZGRhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/bf905feb-009a-4744-97a7-9a49b4b6b9e4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY5MDVmZWItMDA5YS00NzQ0LTk3YTctOWE0OWI0YjZiOWU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -934,7 +934,7 @@ "no-cache" ], "x-ms-request-id": [ - "539db567-41b0-4c8b-a563-bff6a48a5bc2" + "c00504d2-fff2-458d-b86b-5090fc7fd841" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -950,20 +950,20 @@ "14991" ], "x-ms-correlation-request-id": [ - "2ac6c5a5-7a70-4611-9377-a06096360e0b" + "da4ea9c3-5487-41b1-b715-7db8f995cd15" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022617Z:2ac6c5a5-7a70-4611-9377-a06096360e0b" + "WESTUS:20150821T205919Z:da4ea9c3-5487-41b1-b715-7db8f995cd15" ], "Date": [ - "Fri, 21 Aug 2015 02:26:16 GMT" + "Fri, 21 Aug 2015 20:59:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,7 +971,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps5548' under resource group 'crptestps5548' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps8237' under resource group 'crptestps8237' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -989,13 +989,13 @@ "gateway" ], "x-ms-request-id": [ - "982a3c49-fe73-4c9c-bf49-ba78ef8cf89b" + "21154941-e2d5-4d0b-bfcb-abfd1b5c6d7f" ], "x-ms-correlation-request-id": [ - "982a3c49-fe73-4c9c-bf49-ba78ef8cf89b" + "21154941-e2d5-4d0b-bfcb-abfd1b5c6d7f" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022617Z:982a3c49-fe73-4c9c-bf49-ba78ef8cf89b" + "WESTUS:20150821T205919Z:21154941-e2d5-4d0b-bfcb-abfd1b5c6d7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1004,14 +1004,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:26:16 GMT" + "Fri, 21 Aug 2015 20:59:19 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,7 +1019,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fae0a95e-a65b-4abd-a820-feb884cf92b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\",\r\n \"etag\": \"W/\\\"fe49745d-35b0-4dd8-bd3d-eb11ccb7a4f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"997ed4f1-be63-4c2f-90c1-87517918cca5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"fe49745d-35b0-4dd8-bd3d-eb11ccb7a4f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237/subnets/subnetcrptestps8237\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1467" @@ -1034,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "3e0f2482-adc8-47b7-85cd-310f7bd1b85e" + "d8cd43e2-c236-4f75-89a9-8ab97da99393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1043,7 +1043,7 @@ "no-cache" ], "ETag": [ - "W/\"458ff455-294d-4d5f-83e3-dcddecf23884\"" + "W/\"fe49745d-35b0-4dd8-bd3d-eb11ccb7a4f3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1053,20 +1053,20 @@ "14986" ], "x-ms-correlation-request-id": [ - "9bb1301e-cc5e-4e61-9b45-2bf5404ea4fe" + "f1e644a3-6543-4e94-8de6-43c6d1acd732" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022618Z:9bb1301e-cc5e-4e61-9b45-2bf5404ea4fe" + "WESTUS:20150821T205920Z:f1e644a3-6543-4e94-8de6-43c6d1acd732" ], "Date": [ - "Fri, 21 Aug 2015 02:26:17 GMT" + "Fri, 21 Aug 2015 20:59:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1074,7 +1074,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fae0a95e-a65b-4abd-a820-feb884cf92b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\",\r\n \"etag\": \"W/\\\"fe49745d-35b0-4dd8-bd3d-eb11ccb7a4f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"997ed4f1-be63-4c2f-90c1-87517918cca5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"fe49745d-35b0-4dd8-bd3d-eb11ccb7a4f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237/subnets/subnetcrptestps8237\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1467" @@ -1089,7 +1089,7 @@ "no-cache" ], "x-ms-request-id": [ - "193a1b08-2bee-48d9-84c3-2199ea524c1d" + "7b5c3bbb-ae98-4687-91bc-3e3de45b8c63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1098,7 @@ "no-cache" ], "ETag": [ - "W/\"458ff455-294d-4d5f-83e3-dcddecf23884\"" + "W/\"fe49745d-35b0-4dd8-bd3d-eb11ccb7a4f3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1108,22 +1108,22 @@ "14985" ], "x-ms-correlation-request-id": [ - "6f8b453a-0fe8-4a60-84b2-5eccd09f884b" + "c9d036d2-a266-4e40-ac9e-aadefe320996" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022618Z:6f8b453a-0fe8-4a60-84b2-5eccd09f884b" + "WESTUS:20150821T205920Z:c9d036d2-a266-4e40-ac9e-aadefe320996" ], "Date": [ - "Fri, 21 Aug 2015 02:26:17 GMT" + "Fri, 21 Aug 2015 20:59:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps5548\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237/subnets/subnetcrptestps8237\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps8237\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1135,7 +1135,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps5548\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fae0a95e-a65b-4abd-a820-feb884cf92b0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"458ff455-294d-4d5f-83e3-dcddecf23884\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps5548\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/virtualNetworks/vnetcrptestps5548/subnets/subnetcrptestps5548\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps8237\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\",\r\n \"etag\": \"W/\\\"fe49745d-35b0-4dd8-bd3d-eb11ccb7a4f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"997ed4f1-be63-4c2f-90c1-87517918cca5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"fe49745d-35b0-4dd8-bd3d-eb11ccb7a4f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps8237\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/virtualNetworks/vnetcrptestps8237/subnets/subnetcrptestps8237\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1467" @@ -1150,10 +1150,10 @@ "no-cache" ], "x-ms-request-id": [ - "2a7575ba-9f25-4c9b-923e-3ba145987745" + "9837b52d-5c0a-43db-a663-96fdb4eab995" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/2a7575ba-9f25-4c9b-923e-3ba145987745?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/9837b52d-5c0a-43db-a663-96fdb4eab995?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1166,23 +1166,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "e9b04458-30ab-480f-a393-cacea7cf1024" + "55f5ccf9-a9ed-44af-b945-48da1cd73350" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022617Z:e9b04458-30ab-480f-a393-cacea7cf1024" + "WESTUS:20150821T205920Z:55f5ccf9-a9ed-44af-b945-48da1cd73350" ], "Date": [ - "Fri, 21 Aug 2015 02:26:17 GMT" + "Fri, 21 Aug 2015 20:59:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/2a7575ba-9f25-4c9b-923e-3ba145987745?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmE3NTc1YmEtOWYyNS00YzliLTkyM2UtM2JhMTQ1OTg3NzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/9837b52d-5c0a-43db-a663-96fdb4eab995?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTgzN2I1MmQtNWMwYS00M2RiLWE2NjMtOTZmZGI0ZWFiOTk1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1208,7 +1208,7 @@ "no-cache" ], "x-ms-request-id": [ - "d974cf25-f9b4-4b97-9c81-8c73fcfd6ade" + "db9d022f-5114-43f2-af31-59d91bcc946a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,20 +1224,20 @@ "14987" ], "x-ms-correlation-request-id": [ - "8dd11450-d316-4652-bbc8-ba1913754669" + "969a3121-f100-4bef-a168-01b7b47463a7" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022618Z:8dd11450-d316-4652-bbc8-ba1913754669" + "WESTUS:20150821T205920Z:969a3121-f100-4bef-a168-01b7b47463a7" ], "Date": [ - "Fri, 21 Aug 2015 02:26:17 GMT" + "Fri, 21 Aug 2015 20:59:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Storage/storageAccounts/stocrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4MjM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1248,7 +1248,7 @@ "88" ], "x-ms-client-request-id": [ - "3488c5f0-978a-4c7e-aea8-0d90c578ca96" + "ed6d092d-5e1b-4071-982a-e453b351f091" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1272,44 +1272,44 @@ "25" ], "x-ms-request-id": [ - "cd411cc9-e34d-4898-adad-7dc162d2f355" + "b77c692f-1f58-460f-bee0-e2ed452f5037" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cd411cc9-e34d-4898-adad-7dc162d2f355?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b77c692f-1f58-460f-bee0-e2ed452f5037?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "79e7ef39-3c0f-43a1-9efa-fe04ed96595a" + "897dc3c2-a912-45c2-a369-8e1017b4a124" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022619Z:79e7ef39-3c0f-43a1-9efa-fe04ed96595a" + "WESTUS:20150821T205924Z:897dc3c2-a912-45c2-a369-8e1017b4a124" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 21 Aug 2015 02:26:19 GMT" + "Fri, 21 Aug 2015 20:59:23 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cd411cc9-e34d-4898-adad-7dc162d2f355?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NkNDExY2M5LWUzNGQtNDg5OC1hZGFkLTdkYzE2MmQyZjM1NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b77c692f-1f58-460f-bee0-e2ed452f5037?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I3N2M2OTJmLTFmNTgtNDYwZi1iZWUwLWUyZWQ0NTJmNTAzNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ea30ec2-b820-4364-8508-3ae1a97eb65d" + "42bc9e7b-3fdc-4560-8211-0e5e4a8d262b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1333,44 +1333,44 @@ "25" ], "x-ms-request-id": [ - "ed1287bb-884a-4080-bd5d-bd10c7aeaf42" + "0e2e3179-b98c-43c9-a805-a78db9dc601e" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cd411cc9-e34d-4898-adad-7dc162d2f355?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b77c692f-1f58-460f-bee0-e2ed452f5037?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14972" ], "x-ms-correlation-request-id": [ - "eccd0533-8ac2-4430-abf1-7f524f8a3731" + "ec72e6cd-a68a-4bb5-a736-2b08cb63e534" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022620Z:eccd0533-8ac2-4430-abf1-7f524f8a3731" + "WESTUS:20150821T205925Z:ec72e6cd-a68a-4bb5-a736-2b08cb63e534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 21 Aug 2015 02:26:19 GMT" + "Fri, 21 Aug 2015 20:59:24 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/cd411cc9-e34d-4898-adad-7dc162d2f355?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NkNDExY2M5LWUzNGQtNDg5OC1hZGFkLTdkYzE2MmQyZjM1NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b77c692f-1f58-460f-bee0-e2ed452f5037?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I3N2M2OTJmLTFmNTgtNDYwZi1iZWUwLWUyZWQ0NTJmNTAzNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2064589-d994-4111-88c6-3b4de504600d" + "80cee6b2-8eaa-4275-b3a6-3bab1c202fd7" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1391,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "1bddc6ce-2911-441d-a046-2a14bd712077" + "ec06a872-f6d1-4961-a25e-6ed80d8fede7" ], "Cache-Control": [ "no-cache" @@ -1401,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14971" ], "x-ms-correlation-request-id": [ - "932bb32e-d9a4-459c-b493-5fe6db097ed0" + "901c2488-7387-43ae-bb52-de355888f4a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022645Z:932bb32e-d9a4-459c-b493-5fe6db097ed0" + "WESTUS:20150821T205950Z:901c2488-7387-43ae-bb52-de355888f4a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 21 Aug 2015 02:26:45 GMT" + "Fri, 21 Aug 2015 20:59:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Storage/storageAccounts/stocrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4MjM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f173d713-7536-4db3-bb3a-6c3301380494" + "4da24d59-3af9-47d5-8ddb-fa2054c4041b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548\",\r\n \"name\": \"stocrptestps5548\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5548.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5548.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5548.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-21T02:26:19.3418645Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Storage/storageAccounts/stocrptestps8237\",\r\n \"name\": \"stocrptestps8237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8237.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8237.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8237.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-21T20:59:23.3154925Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1446,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "17b7e7c3-1b09-4e60-a9ce-cc80bbd6538c" + "2d1003a4-0a97-4355-ad53-bf78e4ca245d" ], "Cache-Control": [ "no-cache" @@ -1456,37 +1456,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14970" ], "x-ms-correlation-request-id": [ - "d220577e-27ad-4512-970c-7392e919d2aa" + "16f05cbc-d6fe-403e-8057-8ff80cabd620" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022645Z:d220577e-27ad-4512-970c-7392e919d2aa" + "WESTUS:20150821T205950Z:16f05cbc-d6fe-403e-8057-8ff80cabd620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 21 Aug 2015 02:26:45 GMT" + "Fri, 21 Aug 2015 20:59:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM1NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Storage/storageAccounts/stocrptestps8237?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM4MjM3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f341b383-955c-4553-9ad1-472d0cd198c5" + "6f4b72e1-994d-4651-b7ad-0cf368b7167a" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Storage/storageAccounts/stocrptestps5548\",\r\n \"name\": \"stocrptestps5548\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps5548.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps5548.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps5548.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-21T02:26:19.3418645Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Storage/storageAccounts/stocrptestps8237\",\r\n \"name\": \"stocrptestps8237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps8237.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps8237.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps8237.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-21T20:59:23.3154925Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1501,7 +1501,7 @@ "no-cache" ], "x-ms-request-id": [ - "126f157d-4942-4b4e-912f-368f09d09510" + "62f909ef-c12a-4609-9a5c-83dd464a0428" ], "Cache-Control": [ "no-cache" @@ -1511,19 +1511,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14969" ], "x-ms-correlation-request-id": [ - "c8d9c25d-e316-425e-baa8-59e7f62617db" + "129ad2d8-0fa4-458e-a3e6-b92615bbd515" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022645Z:c8d9c25d-e316-425e-baa8-59e7f62617db" + "WESTUS:20150821T205950Z:129ad2d8-0fa4-458e-a3e6-b92615bbd515" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Fri, 21 Aug 2015 02:26:45 GMT" + "Fri, 21 Aug 2015 20:59:50 GMT" ] }, "StatusCode": 200 @@ -1556,7 +1556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7cd3ed19-5c4c-4ba6-b879-88ba73d77b43" + "e3167551-1070-45d6-a5be-4a01fb078de4" ], "Cache-Control": [ "no-cache" @@ -1566,16 +1566,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14964" ], "x-ms-correlation-request-id": [ - "82e05e5a-a932-4129-95cb-7ab1eafdd23d" + "c664f9da-f1f1-436c-b77f-7173839fb3b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022646Z:82e05e5a-a932-4129-95cb-7ab1eafdd23d" + "WESTUS:20150821T205951Z:c664f9da-f1f1-436c-b77f-7173839fb3b3" ], "Date": [ - "Fri, 21 Aug 2015 02:26:46 GMT" + "Fri, 21 Aug 2015 20:59:50 GMT" ] }, "StatusCode": 200 @@ -1608,7 +1608,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ae5042a-71e3-4afc-9a6c-b7876b72b49c" + "2beb79b9-8d20-4b8b-8d28-f4eba243be7a" ], "Cache-Control": [ "no-cache" @@ -1618,16 +1618,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14963" ], "x-ms-correlation-request-id": [ - "6de69fd9-874b-4edc-a934-b22110743590" + "fae0777d-3750-4682-8e79-686b0b6fd0b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022647Z:6de69fd9-874b-4edc-a934-b22110743590" + "WESTUS:20150821T205951Z:fae0777d-3750-4682-8e79-686b0b6fd0b1" ], "Date": [ - "Fri, 21 Aug 2015 02:26:46 GMT" + "Fri, 21 Aug 2015 20:59:50 GMT" ] }, "StatusCode": 200 @@ -1660,7 +1660,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c9ca835-bfe8-4cc9-9601-7b1a537979a3" + "bdd29db3-4b49-43f5-ad62-d63c92cf5a1b" ], "Cache-Control": [ "no-cache" @@ -1670,16 +1670,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14962" ], "x-ms-correlation-request-id": [ - "b3f47dc6-ec9c-426f-ae10-3b3e1cf0cebd" + "248c0b64-25fb-4372-9388-85a8152a7c39" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022647Z:b3f47dc6-ec9c-426f-ae10-3b3e1cf0cebd" + "WESTUS:20150821T205951Z:248c0b64-25fb-4372-9388-85a8152a7c39" ], "Date": [ - "Fri, 21 Aug 2015 02:26:46 GMT" + "Fri, 21 Aug 2015 20:59:51 GMT" ] }, "StatusCode": 200 @@ -1712,7 +1712,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fcc65595-7a72-4dbb-90b4-434f6d3c8c21" + "7126b078-ab8d-466f-bc5a-5de691078016" ], "Cache-Control": [ "no-cache" @@ -1722,16 +1722,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14961" ], "x-ms-correlation-request-id": [ - "f4d34bb4-0276-4401-8fa0-fd7f0dee9b7d" + "c163fd33-123f-4c31-9e03-97f7358559cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022647Z:f4d34bb4-0276-4401-8fa0-fd7f0dee9b7d" + "WESTUS:20150821T205951Z:c163fd33-123f-4c31-9e03-97f7358559cf" ], "Date": [ - "Fri, 21 Aug 2015 02:26:46 GMT" + "Fri, 21 Aug 2015 20:59:51 GMT" ] }, "StatusCode": 200 @@ -1764,7 +1764,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad9b08c3-716c-4cf7-aedb-2285c793a466" + "680a5839-1766-4526-8775-f6bb9dbcea8d" ], "Cache-Control": [ "no-cache" @@ -1774,25 +1774,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14960" ], "x-ms-correlation-request-id": [ - "1bf283a7-d178-42ab-8e91-03b5103a11a4" + "4d5bd5a4-4384-438c-a92e-476a5e858fe3" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022647Z:1bf283a7-d178-42ab-8e91-03b5103a11a4" + "WESTUS:20150821T205952Z:4d5bd5a4-4384-438c-a92e-476a5e858fe3" ], "Date": [ - "Fri, 21 Aug 2015 02:26:46 GMT" + "Fri, 21 Aug 2015 20:59:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps5548\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5548\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps8237\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps8237\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1804,7 +1804,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237\",\r\n \"name\": \"vmcrptestps8237\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1952" @@ -1819,7 +1819,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1828,7 +1828,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "d27bb43d-1323-48b2-bd35-96b80ab50b69" + "c504747b-79ed-486b-b34e-3fb66f815e66" ], "Cache-Control": [ "no-cache" @@ -1838,40 +1838,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "b990c343-fa93-4a47-bab0-15c57eea26a7" + "f007444a-6ae2-4b92-8852-8cc27572d71f" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022648Z:b990c343-fa93-4a47-bab0-15c57eea26a7" + "WESTUS:20150821T205952Z:f007444a-6ae2-4b92-8852-8cc27572d71f" ], "Date": [ - "Fri, 21 Aug 2015 02:26:47 GMT" + "Fri, 21 Aug 2015 20:59:52 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": 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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps5548\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps8237\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "1804" + "2100" ], "User-Agent": [ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237\",\r\n \"name\": \"vmcrptestps8237\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "1969" + "2265" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1883,7 +1883,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ceca7cc8-81df-4d8f-b9db-c64a7c41ff37?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c6c540e3-d89f-4da8-a1c4-772100151b45?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1892,7 +1892,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "ceca7cc8-81df-4d8f-b9db-c64a7c41ff37" + "c6c540e3-d89f-4da8-a1c4-772100151b45" ], "Cache-Control": [ "no-cache" @@ -1902,23 +1902,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "ebb708d0-02dc-4eae-8f99-3a2d1548cb63" + "f104d5f0-c90e-46cf-ac69-ccfa57f47cd9" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023721Z:ebb708d0-02dc-4eae-8f99-3a2d1548cb63" + "WESTUS:20150821T210625Z:f104d5f0-c90e-46cf-ac69-ccfa57f47cd9" ], "Date": [ - "Fri, 21 Aug 2015 02:37:20 GMT" + "Fri, 21 Aug 2015 21:06:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1926,7 +1926,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1947,7 +1947,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "edada671-1a9b-41e9-9940-6ec73e045a7c" + "ca6e5cd7-ec91-43af-81c2-aec1ab0e0f9b" ], "Cache-Control": [ "no-cache" @@ -1957,78 +1957,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "e6974a25-0a47-49f7-a822-07241cc12fa5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150821T022648Z:e6974a25-0a47-49f7-a822-07241cc12fa5" - ], - "Date": [ - "Fri, 21 Aug 2015 02:26:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" - ], - "x-ms-request-id": [ - "f9fde9a0-229e-443b-8541-8ef516245fca" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14959" ], "x-ms-correlation-request-id": [ - "1943d546-e696-42e9-b71f-67842c440720" + "d079d464-7c68-4fac-aae9-016d2373d737" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022718Z:1943d546-e696-42e9-b71f-67842c440720" + "WESTUS:20150821T205953Z:d079d464-7c68-4fac-aae9-016d2373d737" ], "Date": [ - "Fri, 21 Aug 2015 02:27:18 GMT" + "Fri, 21 Aug 2015 20:59:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +1981,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2057,7 +2002,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "5c7ce871-0c4e-4b83-ad6e-e59187160a85" + "7b0a0c62-400c-4fef-b586-b06e1556be3f" ], "Cache-Control": [ "no-cache" @@ -2067,23 +2012,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14958" ], "x-ms-correlation-request-id": [ - "8c031870-a746-42c8-b912-c4a7aea6a6fe" + "f9c979ea-5426-447f-a48b-138c1b41a6ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022748Z:8c031870-a746-42c8-b912-c4a7aea6a6fe" + "WESTUS:20150821T210023Z:f9c979ea-5426-447f-a48b-138c1b41a6ec" ], "Date": [ - "Fri, 21 Aug 2015 02:27:48 GMT" + "Fri, 21 Aug 2015 21:00:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2091,7 +2036,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2112,7 +2057,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "3c9612a5-7f20-43a2-ae8f-bd9603ba2b2d" + "ce513526-c613-46a9-af83-ffb8afafee33" ], "Cache-Control": [ "no-cache" @@ -2122,23 +2067,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14957" ], "x-ms-correlation-request-id": [ - "bcc19394-eb99-49a2-8a56-a1ba7c4f29ab" + "775b12d6-d6a2-4e86-a4fb-3dedc0ef1d96" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022818Z:bcc19394-eb99-49a2-8a56-a1ba7c4f29ab" + "WESTUS:20150821T210053Z:775b12d6-d6a2-4e86-a4fb-3dedc0ef1d96" ], "Date": [ - "Fri, 21 Aug 2015 02:28:18 GMT" + "Fri, 21 Aug 2015 21:00:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2146,7 +2091,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2167,7 +2112,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "39883b95-4a2e-44a3-9d45-3ccacc556da9" + "5daf4e5d-fc71-4344-98bf-12270c93cc15" ], "Cache-Control": [ "no-cache" @@ -2177,23 +2122,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14956" ], "x-ms-correlation-request-id": [ - "b0407be6-3812-46b5-a2fe-22bd9f2b0091" + "cea9bae9-81ef-4d55-ac7d-e3cb0e872132" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022849Z:b0407be6-3812-46b5-a2fe-22bd9f2b0091" + "WESTUS:20150821T210123Z:cea9bae9-81ef-4d55-ac7d-e3cb0e872132" ], "Date": [ - "Fri, 21 Aug 2015 02:28:48 GMT" + "Fri, 21 Aug 2015 21:01:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2201,7 +2146,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2222,7 +2167,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "ba4138f1-1d0f-4d47-991c-b04f71d1a014" + "18417c4a-5a62-4cab-b0b0-497fa6a68477" ], "Cache-Control": [ "no-cache" @@ -2232,23 +2177,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14955" ], "x-ms-correlation-request-id": [ - "4620c375-1d0a-4872-a6b3-b8e2963b65cc" + "1ae7c2b9-ad2a-45ce-ae99-79f3fb82dd4b" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022919Z:4620c375-1d0a-4872-a6b3-b8e2963b65cc" + "WESTUS:20150821T210153Z:1ae7c2b9-ad2a-45ce-ae99-79f3fb82dd4b" ], "Date": [ - "Fri, 21 Aug 2015 02:29:18 GMT" + "Fri, 21 Aug 2015 21:01:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2256,7 +2201,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2277,7 +2222,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "ba828ce4-6afc-4af5-90c5-c462a3f14ff6" + "9b229fdf-2ad8-415c-aefd-a525126cf6fa" ], "Cache-Control": [ "no-cache" @@ -2287,23 +2232,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14954" ], "x-ms-correlation-request-id": [ - "4298c062-2a72-4333-93b8-11009a85bd51" + "c1615266-a7bc-4223-be4c-ee6080b74a16" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T022949Z:4298c062-2a72-4333-93b8-11009a85bd51" + "WESTUS:20150821T210223Z:c1615266-a7bc-4223-be4c-ee6080b74a16" ], "Date": [ - "Fri, 21 Aug 2015 02:29:49 GMT" + "Fri, 21 Aug 2015 21:02:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2311,7 +2256,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2332,7 +2277,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "72d7a0e1-5ab6-4b82-bc28-48ddb3d5d847" + "6771056e-3ad6-409f-9321-274f3d8a9e22" ], "Cache-Control": [ "no-cache" @@ -2345,20 +2290,20 @@ "14951" ], "x-ms-correlation-request-id": [ - "5465dd75-4cb1-4c14-bbb3-e67dc39242a8" + "f25d06b0-54c5-4449-98d1-b27163eb7e7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023019Z:5465dd75-4cb1-4c14-bbb3-e67dc39242a8" + "WESTUS:20150821T210253Z:f25d06b0-54c5-4449-98d1-b27163eb7e7d" ], "Date": [ - "Fri, 21 Aug 2015 02:30:18 GMT" + "Fri, 21 Aug 2015 21:02:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2366,7 +2311,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2387,7 +2332,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "c8115c9e-2d70-460a-9cf9-798e0ad920d0" + "b3744be4-1f0c-42d2-bddf-df4ff26b41a0" ], "Cache-Control": [ "no-cache" @@ -2400,20 +2345,20 @@ "14950" ], "x-ms-correlation-request-id": [ - "f6811248-8920-41e5-af17-b31a41ab86fe" + "03e716dc-ff37-4221-9b1a-021d0a9d9bec" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023049Z:f6811248-8920-41e5-af17-b31a41ab86fe" + "WESTUS:20150821T210323Z:03e716dc-ff37-4221-9b1a-021d0a9d9bec" ], "Date": [ - "Fri, 21 Aug 2015 02:30:49 GMT" + "Fri, 21 Aug 2015 21:03:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2421,7 +2366,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2442,7 +2387,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "74484a6e-98d6-4c32-8ab7-f093be395179" + "687b46f8-fdd6-4cc0-beeb-d52b7cfa7b75" ], "Cache-Control": [ "no-cache" @@ -2455,20 +2400,20 @@ "14949" ], "x-ms-correlation-request-id": [ - "77860c1f-96f9-43d0-909c-da0d02b41cb6" + "c0af4c2e-467b-4470-a374-a90a1c0d651a" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023119Z:77860c1f-96f9-43d0-909c-da0d02b41cb6" + "WESTUS:20150821T210354Z:c0af4c2e-467b-4470-a374-a90a1c0d651a" ], "Date": [ - "Fri, 21 Aug 2015 02:31:19 GMT" + "Fri, 21 Aug 2015 21:03:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2476,7 +2421,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2497,7 +2442,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "818e8b4c-39fd-4c73-85ff-ede6fdbfab46" + "a9903dff-dae1-439b-a34c-7153b1322e55" ], "Cache-Control": [ "no-cache" @@ -2510,20 +2455,20 @@ "14948" ], "x-ms-correlation-request-id": [ - "33dce41a-cc81-4d07-ac7a-3edb91339edf" + "80670261-fa8d-4356-bd8f-e2274c5949db" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023149Z:33dce41a-cc81-4d07-ac7a-3edb91339edf" + "WESTUS:20150821T210424Z:80670261-fa8d-4356-bd8f-e2274c5949db" ], "Date": [ - "Fri, 21 Aug 2015 02:31:49 GMT" + "Fri, 21 Aug 2015 21:04:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2531,7 +2476,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2552,7 +2497,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "ad324b68-addd-4cef-9173-f17e37f0ed73" + "b8091a54-d05b-448b-95bb-47738fa3f9ed" ], "Cache-Control": [ "no-cache" @@ -2562,23 +2507,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14947" ], "x-ms-correlation-request-id": [ - "ea4cac75-4faf-4a1c-90a0-a1f432102297" + "f5fddfeb-614d-49ad-8041-08966fcd8ebd" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023219Z:ea4cac75-4faf-4a1c-90a0-a1f432102297" + "WESTUS:20150821T210454Z:f5fddfeb-614d-49ad-8041-08966fcd8ebd" ], "Date": [ - "Fri, 21 Aug 2015 02:32:19 GMT" + "Fri, 21 Aug 2015 21:04:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2586,7 +2531,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2607,7 +2552,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "516bced9-bf8d-4341-bb50-7a6ab7a1c223" + "0466c8b3-03e2-4f94-8ee1-70f95e3328d9" ], "Cache-Control": [ "no-cache" @@ -2617,408 +2562,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "519f838c-efff-4cd4-ab3f-2c49d37c6062" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150821T023249Z:519f838c-efff-4cd4-ab3f-2c49d37c6062" - ], - "Date": [ - "Fri, 21 Aug 2015 02:32:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" - ], - "x-ms-request-id": [ - "9c5eb9c2-21a7-47dc-8462-e09e6e29b608" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" - ], - "x-ms-correlation-request-id": [ - "ef7d7dff-d853-4aad-b140-2d3c25c351be" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150821T023320Z:ef7d7dff-d853-4aad-b140-2d3c25c351be" - ], - "Date": [ - "Fri, 21 Aug 2015 02:33:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" - ], - "x-ms-request-id": [ - "3ba1ee1b-372f-4902-b80f-dbf1c4d64ab0" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" - ], - "x-ms-correlation-request-id": [ - "8682fb19-7700-4fc8-a1f9-560cf819b7f9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150821T023350Z:8682fb19-7700-4fc8-a1f9-560cf819b7f9" - ], - "Date": [ - "Fri, 21 Aug 2015 02:33:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" - ], - "x-ms-request-id": [ - "e0e9be18-82e2-4dda-aec0-88cc60fe4ddd" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" - ], - "x-ms-correlation-request-id": [ - "a7cde231-2947-4a03-865e-f772c607ab37" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150821T023420Z:a7cde231-2947-4a03-865e-f772c607ab37" - ], - "Date": [ - "Fri, 21 Aug 2015 02:34:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" - ], - "x-ms-request-id": [ - "830a06a0-3a72-4be0-8b9b-72087e88b379" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-correlation-request-id": [ - "c440b9c6-c0e7-4fe2-b0bd-a2c3625aa138" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150821T023450Z:c440b9c6-c0e7-4fe2-b0bd-a2c3625aa138" - ], - "Date": [ - "Fri, 21 Aug 2015 02:34:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" - ], - "x-ms-request-id": [ - "21f2cd7b-fe29-4f3d-a3f3-59da3ea7c7e1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-correlation-request-id": [ - "8bbad70b-6720-49a4-9f64-5a102bb17284" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150821T023520Z:8bbad70b-6720-49a4-9f64-5a102bb17284" - ], - "Date": [ - "Fri, 21 Aug 2015 02:35:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" - ], - "x-ms-request-id": [ - "0a242ce9-e1e3-4eeb-a2f7-3a8feb2f79ef" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" - ], - "x-ms-correlation-request-id": [ - "8f07efc2-8e8d-4d47-b2eb-3ea6993a6e3b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150821T023550Z:8f07efc2-8e8d-4d47-b2eb-3ea6993a6e3b" - ], - "Date": [ - "Fri, 21 Aug 2015 02:35:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "141" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" - ], - "x-ms-request-id": [ - "c61477b3-937d-4a7f-8910-a5f692406bca" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14946" ], "x-ms-correlation-request-id": [ - "3b607893-a353-40d1-9ab2-6efb67b1b2ae" + "c94e106c-a6d5-449e-9263-7cf0e0b28dae" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023620Z:3b607893-a353-40d1-9ab2-6efb67b1b2ae" + "WESTUS:20150821T210524Z:c94e106c-a6d5-449e-9263-7cf0e0b28dae" ], "Date": [ - "Fri, 21 Aug 2015 02:36:19 GMT" + "Fri, 21 Aug 2015 21:05:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3026,7 +2586,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3047,7 +2607,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "1f5a62b6-1c09-4cf3-8894-2b58824110b9" + "1a3f40fb-bb82-48a7-9919-21ad99706aec" ], "Cache-Control": [ "no-cache" @@ -3057,23 +2617,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14945" ], "x-ms-correlation-request-id": [ - "a4003139-47da-4fc1-9fe1-4f580133afe9" + "c99a3578-1a45-4f8b-a714-8245ddb53a23" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023650Z:a4003139-47da-4fc1-9fe1-4f580133afe9" + "WESTUS:20150821T210554Z:c99a3578-1a45-4f8b-a714-8245ddb53a23" ], "Date": [ - "Fri, 21 Aug 2015 02:36:50 GMT" + "Fri, 21 Aug 2015 21:05:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/d27bb43d-1323-48b2-bd35-96b80ab50b69?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI3YmI0M2QtMTMyMy00OGIyLWJkMzUtOTZiODBhYjUwYjY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c504747b-79ed-486b-b34e-3fb66f815e66?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzUwNDc0N2ItNzllZC00ODZiLWIzNGUtM2ZiNjZmODE1ZTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3081,7 +2641,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"d27bb43d-1323-48b2-bd35-96b80ab50b69\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-20T19:26:48.7109681-07:00\",\r\n \"endTime\": \"2015-08-20T19:37:18.1833186-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c504747b-79ed-486b-b34e-3fb66f815e66\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-21T13:59:53.1111518-07:00\",\r\n \"endTime\": \"2015-08-21T14:06:23.3189694-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -3102,7 +2662,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "953d80b4-4dbf-4adb-9886-a769c386e2f8" + "3617193d-6de1-479b-984e-2e9d1afaf8cb" ], "Cache-Control": [ "no-cache" @@ -3112,23 +2672,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14944" ], "x-ms-correlation-request-id": [ - "6a007b5d-bcf5-450d-bf5e-cd93b2cc8d9b" + "bf6fb0eb-6661-40d0-8b93-a89bde214dfe" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023720Z:6a007b5d-bcf5-450d-bf5e-cd93b2cc8d9b" + "WESTUS:20150821T210624Z:bf6fb0eb-6661-40d0-8b93-a89bde214dfe" ], "Date": [ - "Fri, 21 Aug 2015 02:37:20 GMT" + "Fri, 21 Aug 2015 21:06:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3136,7 +2696,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237\",\r\n \"name\": \"vmcrptestps8237\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1953" @@ -3157,7 +2717,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "8c4cf3d3-fb54-47f4-a886-53401d42b660" + "d0bbca38-bb10-4171-b4b9-fccc6b47bb37" ], "Cache-Control": [ "no-cache" @@ -3167,23 +2727,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14943" ], "x-ms-correlation-request-id": [ - "a56e7162-6db8-4d6d-8bb4-c5cd2ca11fae" + "3fbf9899-40c7-4fc4-a422-8cb7e83fb3b7" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023721Z:a56e7162-6db8-4d6d-8bb4-c5cd2ca11fae" + "WESTUS:20150821T210624Z:3fbf9899-40c7-4fc4-a422-8cb7e83fb3b7" ], "Date": [ - "Fri, 21 Aug 2015 02:37:20 GMT" + "Fri, 21 Aug 2015 21:06:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3191,10 +2751,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237\",\r\n \"name\": \"vmcrptestps8237\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "1970" + "2266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3212,7 +2772,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "2b726858-5d1e-4d4d-a2de-2973a1abc450" + "54e9afa8-6c3d-4776-9c8d-a936690d180f" ], "Cache-Control": [ "no-cache" @@ -3222,23 +2782,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14940" ], "x-ms-correlation-request-id": [ - "29529bf9-c55c-4ad5-b738-c5588c4026f5" + "97a5e7c5-cef1-420f-8a4d-f6c5b0ca085f" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023751Z:29529bf9-c55c-4ad5-b738-c5588c4026f5" + "WESTUS:20150821T210655Z:97a5e7c5-cef1-420f-8a4d-f6c5b0ca085f" ], "Date": [ - "Fri, 21 Aug 2015 02:37:51 GMT" + "Fri, 21 Aug 2015 21:06:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ceca7cc8-81df-4d8f-b9db-c64a7c41ff37?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2VjYTdjYzgtODFkZi00ZDhmLWI5ZGItYzY0YTdjNDFmZjM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c6c540e3-d89f-4da8-a1c4-772100151b45?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzZjNTQwZTMtZDg5Zi00ZGE4LWExYzQtNzcyMTAwMTUxYjQ1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3246,7 +2806,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ceca7cc8-81df-4d8f-b9db-c64a7c41ff37\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:22.0427684-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6c540e3-d89f-4da8-a1c4-772100151b45\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T14:06:25.6471639-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3267,7 +2827,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "3e82f1f2-5e41-4bc0-8e64-415b5d20906e" + "9379ad83-09a7-4eab-a9b7-fd5d9b2b0a9a" ], "Cache-Control": [ "no-cache" @@ -3277,23 +2837,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14942" ], "x-ms-correlation-request-id": [ - "dcfebe31-4fa4-48d3-b3c2-03e8bcb784c4" + "ec1cc595-77fd-463c-85f6-c4fb0cc4429a" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023721Z:dcfebe31-4fa4-48d3-b3c2-03e8bcb784c4" + "WESTUS:20150821T210625Z:ec1cc595-77fd-463c-85f6-c4fb0cc4429a" ], "Date": [ - "Fri, 21 Aug 2015 02:37:20 GMT" + "Fri, 21 Aug 2015 21:06:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/ceca7cc8-81df-4d8f-b9db-c64a7c41ff37?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2VjYTdjYzgtODFkZi00ZDhmLWI5ZGItYzY0YTdjNDFmZjM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/c6c540e3-d89f-4da8-a1c4-772100151b45?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzZjNTQwZTMtZDg5Zi00ZGE4LWExYzQtNzcyMTAwMTUxYjQ1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3301,7 +2861,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"ceca7cc8-81df-4d8f-b9db-c64a7c41ff37\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-20T19:37:22.0427684-07:00\",\r\n \"endTime\": \"2015-08-20T19:37:51.3896917-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6c540e3-d89f-4da8-a1c4-772100151b45\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-21T14:06:25.6471639-07:00\",\r\n \"endTime\": \"2015-08-21T14:06:55.3972661-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -3322,7 +2882,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "dd987a48-81bd-4318-88fa-5f429fd46e7c" + "fbbb4fdd-8d54-4286-a7d8-dd1a99928228" ], "Cache-Control": [ "no-cache" @@ -3332,23 +2892,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14941" ], "x-ms-correlation-request-id": [ - "98fd5a6a-73b8-4286-bc81-a8245547aa5c" + "50ffe0b0-7fa5-44c9-925f-ff384aeaeb7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023751Z:98fd5a6a-73b8-4286-bc81-a8245547aa5c" + "WESTUS:20150821T210655Z:50ffe0b0-7fa5-44c9-925f-ff384aeaeb7b" ], "Date": [ - "Fri, 21 Aug 2015 02:37:51 GMT" + "Fri, 21 Aug 2015 21:06:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3356,10 +2916,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237\",\r\n \"name\": \"vmcrptestps8237\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2243" + "2579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3377,7 +2937,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "aa86bf08-8299-4024-8c12-5d1567526337" + "2d557d63-8652-43e5-88f7-780ebbfa24f0" ], "Cache-Control": [ "no-cache" @@ -3387,23 +2947,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14939" ], "x-ms-correlation-request-id": [ - "bbf04a45-176a-4235-a10e-b5660bb83de9" + "691b0e52-6f9b-4885-a75a-3f077cf614ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023751Z:bbf04a45-176a-4235-a10e-b5660bb83de9" + "WESTUS:20150821T210655Z:691b0e52-6f9b-4885-a75a-3f077cf614ff" ], "Date": [ - "Fri, 21 Aug 2015 02:37:51 GMT" + "Fri, 21 Aug 2015 21:06:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3411,10 +2971,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps5548.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\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 \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Network/networkInterfaces/niccrptestps5548\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548\",\r\n \"name\": \"vmcrptestps5548\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps8237.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Network/networkInterfaces/niccrptestps8237\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237\",\r\n \"name\": \"vmcrptestps8237\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2243" + "2579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3432,7 +2992,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "ce3587b3-0d26-4768-8a8c-56309f588a00" + "34783688-3856-4da9-b24e-bc5be6b8de3d" ], "Cache-Control": [ "no-cache" @@ -3442,23 +3002,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14938" ], "x-ms-correlation-request-id": [ - "4cd0231d-79f0-4dc8-9fa1-8a9c01c2fff8" + "0e310d53-8e4d-459c-9b1f-850737296b76" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023751Z:4cd0231d-79f0-4dc8-9fa1-8a9c01c2fff8" + "WESTUS:20150821T210655Z:0e310d53-8e4d-459c-9b1f-850737296b76" ], "Date": [ - "Fri, 21 Aug 2015 02:37:51 GMT" + "Fri, 21 Aug 2015 21:06:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3481,16 +3041,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14931" ], "x-ms-request-id": [ - "df1f9ef9-b4ce-4858-8448-ab8c87969fba" + "abbb6606-a503-49b7-b7c8-fe19b35ae621" ], "x-ms-correlation-request-id": [ - "df1f9ef9-b4ce-4858-8448-ab8c87969fba" + "abbb6606-a503-49b7-b7c8-fe19b35ae621" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024023Z:df1f9ef9-b4ce-4858-8448-ab8c87969fba" + "WESTUS:20150821T210927Z:abbb6606-a503-49b7-b7c8-fe19b35ae621" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3499,14 +3059,14 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:40:23 GMT" + "Fri, 21 Aug 2015 21:09:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps5548/providers/Microsoft.Compute/virtualMachines/vmcrptestps5548?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczU1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps8237/providers/Microsoft.Compute/virtualMachines/vmcrptestps8237?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -3526,7 +3086,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f994c940-fdd5-4824-98c8-62cdfef7d9a9?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3535,36 +3095,36 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "544908d8-bf91-4cd7-84cb-37d8697c8f39" + "f994c940-fdd5-4824-98c8-62cdfef7d9a9" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f994c940-fdd5-4824-98c8-62cdfef7d9a9?monitor=true&api-version=2015-06-15" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "ade6307a-fc38-425e-bb51-7505cf97765b" + "f2514464-2f55-4549-a8ff-127b7c3390ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023752Z:ade6307a-fc38-425e-bb51-7505cf97765b" + "WESTUS:20150821T210656Z:f2514464-2f55-4549-a8ff-127b7c3390ac" ], "Date": [ - "Fri, 21 Aug 2015 02:37:51 GMT" + "Fri, 21 Aug 2015 21:06:55 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f994c940-fdd5-4824-98c8-62cdfef7d9a9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk5NGM5NDAtZmRkNS00ODI0LTk4YzgtNjJjZGZlZjdkOWE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3572,7 +3132,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f994c940-fdd5-4824-98c8-62cdfef7d9a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T14:06:56.7410279-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3593,7 +3153,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "80738916-a7ab-417d-904b-cf31f61a9855" + "84b8db1b-5678-4a2a-858e-7985af05649a" ], "Cache-Control": [ "no-cache" @@ -3603,23 +3163,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14937" ], "x-ms-correlation-request-id": [ - "78338349-5ad1-4b54-8fd6-0fb216fdbf2c" + "63447596-b3da-4af2-aeea-9315338618fe" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023752Z:78338349-5ad1-4b54-8fd6-0fb216fdbf2c" + "WESTUS:20150821T210656Z:63447596-b3da-4af2-aeea-9315338618fe" ], "Date": [ - "Fri, 21 Aug 2015 02:37:51 GMT" + "Fri, 21 Aug 2015 21:06:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f994c940-fdd5-4824-98c8-62cdfef7d9a9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk5NGM5NDAtZmRkNS00ODI0LTk4YzgtNjJjZGZlZjdkOWE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3627,7 +3187,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f994c940-fdd5-4824-98c8-62cdfef7d9a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T14:06:56.7410279-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3648,7 +3208,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "08964720-1bdb-42bd-b870-da17db751836" + "4e12886a-64a9-4a7a-9d49-0f17a5b7426f" ], "Cache-Control": [ "no-cache" @@ -3658,23 +3218,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14936" ], "x-ms-correlation-request-id": [ - "b82127df-dece-4739-aeb3-b8e5bd16b610" + "9a4c2d91-5fa5-432a-9c41-888d4d824eea" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023822Z:b82127df-dece-4739-aeb3-b8e5bd16b610" + "WESTUS:20150821T210726Z:9a4c2d91-5fa5-432a-9c41-888d4d824eea" ], "Date": [ - "Fri, 21 Aug 2015 02:38:22 GMT" + "Fri, 21 Aug 2015 21:07:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f994c940-fdd5-4824-98c8-62cdfef7d9a9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk5NGM5NDAtZmRkNS00ODI0LTk4YzgtNjJjZGZlZjdkOWE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3682,7 +3242,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f994c940-fdd5-4824-98c8-62cdfef7d9a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T14:06:56.7410279-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3703,7 +3263,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "ad39afd4-c831-4b95-a9ef-25373d6c419d" + "dd881ebd-4ac5-4b10-8de4-873c1d5739f4" ], "Cache-Control": [ "no-cache" @@ -3713,23 +3273,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14935" ], "x-ms-correlation-request-id": [ - "e9bdd415-4b74-4159-961c-db3ac884ce80" + "473aa745-66d2-43f2-aee6-98d27ea0c4a3" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023852Z:e9bdd415-4b74-4159-961c-db3ac884ce80" + "WESTUS:20150821T210756Z:473aa745-66d2-43f2-aee6-98d27ea0c4a3" ], "Date": [ - "Fri, 21 Aug 2015 02:38:52 GMT" + "Fri, 21 Aug 2015 21:07:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f994c940-fdd5-4824-98c8-62cdfef7d9a9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk5NGM5NDAtZmRkNS00ODI0LTk4YzgtNjJjZGZlZjdkOWE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3737,7 +3297,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f994c940-fdd5-4824-98c8-62cdfef7d9a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T14:06:56.7410279-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3758,7 +3318,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "d56f7301-3edb-4a60-af7c-b546a51f89f0" + "005caf40-aa69-4b35-adc0-aef327034baa" ], "Cache-Control": [ "no-cache" @@ -3768,23 +3328,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14934" ], "x-ms-correlation-request-id": [ - "dfc00421-b2f5-44a6-80b9-63635a4f7071" + "887b4d93-430e-4f79-8623-32c2aa85a58b" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023923Z:dfc00421-b2f5-44a6-80b9-63635a4f7071" + "WESTUS:20150821T210826Z:887b4d93-430e-4f79-8623-32c2aa85a58b" ], "Date": [ - "Fri, 21 Aug 2015 02:39:22 GMT" + "Fri, 21 Aug 2015 21:08:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f994c940-fdd5-4824-98c8-62cdfef7d9a9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk5NGM5NDAtZmRkNS00ODI0LTk4YzgtNjJjZGZlZjdkOWE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3792,7 +3352,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f994c940-fdd5-4824-98c8-62cdfef7d9a9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T14:06:56.7410279-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3813,7 +3373,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "b3a48343-15b1-4d08-92f8-d66d378294db" + "84bdabb9-50d1-47e5-add9-6e1febff4a2e" ], "Cache-Control": [ "no-cache" @@ -3823,23 +3383,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14933" ], "x-ms-correlation-request-id": [ - "439d0371-85e2-4e6b-8ea9-d968b27dc692" + "1bfac09f-e041-4c47-954c-c625ee7c25f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T023953Z:439d0371-85e2-4e6b-8ea9-d968b27dc692" + "WESTUS:20150821T210857Z:1bfac09f-e041-4c47-954c-c625ee7c25f6" ], "Date": [ - "Fri, 21 Aug 2015 02:39:52 GMT" + "Fri, 21 Aug 2015 21:08:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/544908d8-bf91-4cd7-84cb-37d8697c8f39?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTQ0OTA4ZDgtYmY5MS00Y2Q3LTg0Y2ItMzdkODY5N2M4ZjM5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/f994c940-fdd5-4824-98c8-62cdfef7d9a9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjk5NGM5NDAtZmRkNS00ODI0LTk4YzgtNjJjZGZlZjdkOWE5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3847,10 +3407,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"544908d8-bf91-4cd7-84cb-37d8697c8f39\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-20T19:37:53.2959856-07:00\",\r\n \"endTime\": \"2015-08-20T19:40:06.2775498-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"f994c940-fdd5-4824-98c8-62cdfef7d9a9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-21T14:06:56.7410279-07:00\",\r\n \"endTime\": \"2015-08-21T14:09:19.300721-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3868,7 +3428,7 @@ "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" ], "x-ms-request-id": [ - "80114bf9-242c-47a1-9567-923d8c694cca" + "c578d026-3dec-4d61-aab2-e263bd377540" ], "Cache-Control": [ "no-cache" @@ -3878,23 +3438,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14932" ], "x-ms-correlation-request-id": [ - "ac1e3847-4530-409e-a616-5f2a9ec7cacd" + "94b945c9-d552-4924-b67a-d597bdd7c084" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024023Z:ac1e3847-4530-409e-a616-5f2a9ec7cacd" + "WESTUS:20150821T210927Z:94b945c9-d552-4924-b67a-d597bdd7c084" ], "Date": [ - "Fri, 21 Aug 2015 02:40:23 GMT" + "Fri, 21 Aug 2015 21:09:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps5548?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczU1NDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps8237?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgyMzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -3920,13 +3480,13 @@ "1196" ], "x-ms-request-id": [ - "afb107e8-3816-45b1-9e7c-69bd4358e067" + "ee52b77c-dd88-47c3-aead-a336bec6e5c9" ], "x-ms-correlation-request-id": [ - "afb107e8-3816-45b1-9e7c-69bd4358e067" + "ee52b77c-dd88-47c3-aead-a336bec6e5c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024023Z:afb107e8-3816-45b1-9e7c-69bd4358e067" + "WESTUS:20150821T210927Z:ee52b77c-dd88-47c3-aead-a336bec6e5c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3935,17 +3495,17 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:40:22 GMT" + "Fri, 21 Aug 2015 21:09:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpNM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3971,16 +3531,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14932" ], "x-ms-request-id": [ - "9d317e55-a861-4207-9bb2-67a1239a5ead" + "a78f5274-7701-45d2-9eae-d9cdef6712fc" ], "x-ms-correlation-request-id": [ - "9d317e55-a861-4207-9bb2-67a1239a5ead" + "a78f5274-7701-45d2-9eae-d9cdef6712fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024023Z:9d317e55-a861-4207-9bb2-67a1239a5ead" + "WESTUS:20150821T210927Z:a78f5274-7701-45d2-9eae-d9cdef6712fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3989,17 +3549,17 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:40:23 GMT" + "Fri, 21 Aug 2015 21:09:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpNM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4025,16 +3585,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14931" ], "x-ms-request-id": [ - "d15a8844-bc90-430f-8d08-c9961c918ee7" + "1a11d58f-94d1-4215-92ff-8f956b7f3b11" ], "x-ms-correlation-request-id": [ - "d15a8844-bc90-430f-8d08-c9961c918ee7" + "1a11d58f-94d1-4215-92ff-8f956b7f3b11" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024039Z:d15a8844-bc90-430f-8d08-c9961c918ee7" + "WESTUS:20150821T210942Z:1a11d58f-94d1-4215-92ff-8f956b7f3b11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4043,17 +3603,17 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:40:38 GMT" + "Fri, 21 Aug 2015 21:09:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpNM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4079,16 +3639,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14930" ], "x-ms-request-id": [ - "53a9e263-ff3d-43d1-af07-b1131787df7e" + "a28eaf3e-1fab-4d25-86bf-17cf9e29ccb7" ], "x-ms-correlation-request-id": [ - "53a9e263-ff3d-43d1-af07-b1131787df7e" + "a28eaf3e-1fab-4d25-86bf-17cf9e29ccb7" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024054Z:53a9e263-ff3d-43d1-af07-b1131787df7e" + "WESTUS:20150821T210957Z:a28eaf3e-1fab-4d25-86bf-17cf9e29ccb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4097,17 +3657,17 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:40:53 GMT" + "Fri, 21 Aug 2015 21:09:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpNM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4133,16 +3693,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14935" ], "x-ms-request-id": [ - "6bbaa039-a1b4-4144-b5a4-0c1567c2978c" + "7a2e921d-f6e5-4dfb-93bd-6c1d1b4170a5" ], "x-ms-correlation-request-id": [ - "6bbaa039-a1b4-4144-b5a4-0c1567c2978c" + "7a2e921d-f6e5-4dfb-93bd-6c1d1b4170a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024109Z:6bbaa039-a1b4-4144-b5a4-0c1567c2978c" + "WESTUS:20150821T211012Z:7a2e921d-f6e5-4dfb-93bd-6c1d1b4170a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4151,17 +3711,17 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:41:08 GMT" + "Fri, 21 Aug 2015 21:10:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpNM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4187,16 +3747,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14934" ], "x-ms-request-id": [ - "3e55c652-71d4-4fc7-93fc-dbe8aa3c862a" + "0eca9b55-4ec7-4f60-9e44-6264af3e9399" ], "x-ms-correlation-request-id": [ - "3e55c652-71d4-4fc7-93fc-dbe8aa3c862a" + "0eca9b55-4ec7-4f60-9e44-6264af3e9399" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024124Z:3e55c652-71d4-4fc7-93fc-dbe8aa3c862a" + "WESTUS:20150821T211027Z:0eca9b55-4ec7-4f60-9e44-6264af3e9399" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4205,17 +3765,17 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:41:23 GMT" + "Fri, 21 Aug 2015 21:10:26 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpNM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4241,16 +3801,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14933" ], "x-ms-request-id": [ - "95beed82-d658-4463-a2a5-2ecfc9bcfe8e" + "2cf7bf83-25d8-4383-bd3b-bf96e624d37c" ], "x-ms-correlation-request-id": [ - "95beed82-d658-4463-a2a5-2ecfc9bcfe8e" + "2cf7bf83-25d8-4383-bd3b-bf96e624d37c" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024139Z:95beed82-d658-4463-a2a5-2ecfc9bcfe8e" + "WESTUS:20150821T211042Z:2cf7bf83-25d8-4383-bd3b-bf96e624d37c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4259,17 +3819,17 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:41:38 GMT" + "Fri, 21 Aug 2015 21:10:42 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpNM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4295,16 +3855,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14932" ], "x-ms-request-id": [ - "2887a857-6079-447d-a36d-1b2222eb2477" + "1ef0bbf2-6fac-49cd-bd77-fbc53d6475b4" ], "x-ms-correlation-request-id": [ - "2887a857-6079-447d-a36d-1b2222eb2477" + "1ef0bbf2-6fac-49cd-bd77-fbc53d6475b4" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024154Z:2887a857-6079-447d-a36d-1b2222eb2477" + "WESTUS:20150821T211057Z:1ef0bbf2-6fac-49cd-bd77-fbc53d6475b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4313,17 +3873,17 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:41:53 GMT" + "Fri, 21 Aug 2015 21:10:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM1NTQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0xTlRRNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjM3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpNM0xWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4346,16 +3906,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14931" ], "x-ms-request-id": [ - "9b5b6ca2-018a-4966-94e1-bc33dbfe6a14" + "891a09cd-4e06-4588-a733-a096a6696c55" ], "x-ms-correlation-request-id": [ - "9b5b6ca2-018a-4966-94e1-bc33dbfe6a14" + "891a09cd-4e06-4588-a733-a096a6696c55" ], "x-ms-routing-request-id": [ - "WESTUS:20150821T024209Z:9b5b6ca2-018a-4966-94e1-bc33dbfe6a14" + "WESTUS:20150821T211113Z:891a09cd-4e06-4588-a733-a096a6696c55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4364,7 +3924,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Aug 2015 02:42:09 GMT" + "Fri, 21 Aug 2015 21:11:12 GMT" ] }, "StatusCode": 200 @@ -4372,7 +3932,7 @@ ], "Names": { "Test-VirtualMachineDataDisk": [ - "crptestps5548" + "crptestps8237" ] }, "Variables": { From e3e7ecb40b4a055ddba25768681974b837b1e513 Mon Sep 17 00:00:00 2001 From: pikumarmsft Date: Mon, 24 Aug 2015 16:56:10 +0530 Subject: [PATCH 16/37] Removing unused parameter in disableProtection. --- .../Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs | 2 ++ .../Cmdlets/Item/Disable-AzureRMBackupProtection .cs | 6 ------ .../Cmdlets/Item/Enable-AzureRMBackupProtection .cs | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs index 46d975b9255b..ac217acd4b19 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs @@ -93,5 +93,7 @@ internal static class AzureBackupCmdletHelpMessage public const string WeekNumber = "List of Week Numbers of the month"; public const string MonthsOfYear = "List of Months of the year"; public const string Retention = "Retention duration value"; + + public const string PolicyObject = "Policy object for enabling protection"; } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection .cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection .cs index ef40407e65df..af9f3f04e048 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection .cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection .cs @@ -40,12 +40,6 @@ public SwitchParameter RemoveRecoveryPoints } private bool DeleteBackupData; - [Parameter(Position = 2, Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.Reason)] - public string Reason { get; set; } - - [Parameter(Position = 3, Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.Comments)] - public string Comments { get; set; } - public override void ExecuteCmdlet() { ExecutionBlock(() => diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection .cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection .cs index 1c7a6f518c05..1f52a7b7e487 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection .cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection .cs @@ -32,7 +32,7 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets [Cmdlet(VerbsLifecycle.Enable, "AzureRMBackupProtection"), OutputType(typeof(AzureRMBackupJob))] public class EnableAzureRMBackupProtection : AzureRMBackupItemCmdletBase { - [Parameter(Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.PolicyName)] + [Parameter(Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.PolicyObject)] [ValidateNotNullOrEmpty] public AzureRMBackupProtectionPolicy Policy { get; set; } From a3a261640f03914d94353deeb3d11190084076a7 Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Mon, 24 Aug 2015 17:00:28 +0530 Subject: [PATCH 17/37] PS Side bugfix to change containerType filter to type in list container. Re-recording reg and unreg test cases to remove hacks in the test cases. --- .../AzureBackupContainerTests.ps1 | 3 +- .../AzureBackupContainerScenarioTests.json | 84 +++++------ ...eBackupRegisterContainerScenarioTests.json | 136 +++++++++--------- ...ackupUnregisterContainerScenarioTests.json | 134 ++++++++--------- ...re.Management.BackupServicesManagement.dll | Bin 237568 -> 237568 bytes 5 files changed, 178 insertions(+), 179 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 index 75e3b265546e..b8cc114d0723 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupContainerTests.ps1 @@ -54,13 +54,12 @@ $IaasVMManagedResourceName = "hydrarecordvm" $IaasVMManagedResourceGroupName = "hydrarecordvm" $VaultResourceName = "backuprn" $VaultResourceRGName = "backuprg" -$RegisterTestVM = "powershellbvt" function Test-RegisterAzureBackupContainer { $vault = Get-AzureRMBackupVault -Name $VaultResourceName - $jobId = Register-AzureRMBackupContainer -vault $vault -Name $RegisterTestVM -ServiceName $RegisterTestVM + $jobId = Register-AzureRMBackupContainer -vault $vault -Name $IaasVMManagedResourceName -ServiceName $IaasVMManagedResourceGroupName Assert-NotNull $jobId 'Job should not be null'; } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupContainerScenarioTests.json b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupContainerScenarioTests.json index 411e120318d9..8f59c920de1a 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupContainerScenarioTests.json +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupContainerScenarioTests.json @@ -10,13 +10,13 @@ "en-us" ], "x-ms-client-request-id": [ - "b6ee8175-6285-48e1-8d88-b04a52c65045-2015-08-14 10:25:36Z-PS" + "36086411-570f-4a0c-b6b1-3dab5e799d22-2015-08-24 11:14:28Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"backuprn\",\r\n \"etag\": \"fef5d39d-ff91-43f7-9127-3b9a171a9f0c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn\",\r\n \"type\": \"Microsoft.Backup/BackupVault\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"backuprn\",\r\n \"etag\": \"bbe62c5f-f8f3-4927-9b53-ac4befce53b0\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn\",\r\n \"type\": \"Microsoft.Backup/BackupVault\"\r\n}", "ResponseHeaders": { "Content-Length": [ "344" @@ -31,28 +31,28 @@ "no-cache" ], "x-ms-request-id": [ - "cf75119f-1291-4957-806b-483e8181a98f" + "ef33055f-ef57-402d-acb0-2c5a3df1a7ac" ], "x-ms-client-request-id": [ - "b6ee8175-6285-48e1-8d88-b04a52c65045-2015-08-14 10:25:36Z-PS" + "36086411-570f-4a0c-b6b1-3dab5e799d22-2015-08-24 11:14:28Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "cf75119f-1291-4957-806b-483e8181a98f" + "ef33055f-ef57-402d-acb0-2c5a3df1a7ac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T102539Z:cf75119f-1291-4957-806b-483e8181a98f" + "CENTRALUS:20150824T111431Z:ef33055f-ef57-402d-acb0-2c5a3df1a7ac" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 10:25:38 GMT" + "Mon, 24 Aug 2015 11:14:31 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -70,16 +70,16 @@ "en-us" ], "x-ms-client-request-id": [ - "b6ee8175-6285-48e1-8d88-b04a52c65045-2015-08-14 10:25:36Z-PS" + "36086411-570f-4a0c-b6b1-3dab5e799d22-2015-08-24 11:14:28Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"resourceId\": 1774108198771083879,\r\n \"properties\": {\r\n \"storageType\": \"LocallyRedundant\",\r\n \"storageTypeState\": \"Locked\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"resourceId\": 6476019202094164610,\r\n \"properties\": {\r\n \"storageType\": \"GeoRedundant\",\r\n \"storageTypeState\": \"Locked\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "110" + "106" ], "Content-Type": [ "application/json" @@ -91,29 +91,29 @@ "no-cache" ], "x-ms-request-id": [ - "cc0d7b18-86d0-4f2f-94dc-48e3288b1846" + "560174f4-2b3a-461b-b319-bbd482816924" ], "x-ms-client-request-id": [ - "b6ee8175-6285-48e1-8d88-b04a52c65045-2015-08-14 10:25:36Z-PS", - "b6ee8175-6285-48e1-8d88-b04a52c65045-2015-08-14 10:25:36Z-PS" + "36086411-570f-4a0c-b6b1-3dab5e799d22-2015-08-24 11:14:28Z-PS", + "36086411-570f-4a0c-b6b1-3dab5e799d22-2015-08-24 11:14:28Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14998" ], "x-ms-correlation-request-id": [ - "cc0d7b18-86d0-4f2f-94dc-48e3288b1846" + "560174f4-2b3a-461b-b319-bbd482816924" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T102540Z:cc0d7b18-86d0-4f2f-94dc-48e3288b1846" + "CENTRALUS:20150824T111432Z:560174f4-2b3a-461b-b319-bbd482816924" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 10:25:40 GMT" + "Mon, 24 Aug 2015 11:14:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -122,8 +122,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers?api-version=2014-09-01&$filter=containerType%20eq%20'IaasVM'", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSYkZmlsdGVyPWNvbnRhaW5lclR5cGUlMjBlcSUyMCdJYWFzVk0n", + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers?api-version=2014-09-01&$filter=type%20eq%20'IaasVM'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSYkZmlsdGVyPXR5cGUlMjBlcSUyMCdJYWFzVk0n", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -131,10 +131,10 @@ "en-us" ], "x-ms-client-request-id": [ - "56b1a915-da7a-4109-97cd-4a546fabdbde-2015-08-14 10:25:40Z-PS" + "0ae364d6-7a9e-40e4-8658-f0e06c0de7c8-2015-08-24 11:14:32Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"friendlyName\": \"hydrarecordvm\",\r\n \"status\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"IaasVM\",\r\n \"parentContainerId\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/hydrarecordvm\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/iaasvmcontainer;hydrarecordvm;hydrarecordvm\",\r\n \"name\": \"iaasvmcontainer;hydrarecordvm;hydrarecordvm\",\r\n \"type\": \"Microsoft.Backup/BackupVault/containers\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", @@ -152,29 +152,29 @@ "no-cache" ], "x-ms-request-id": [ - "f88725ce-30e4-4405-a6f9-5eae2f9bc9d3" + "a4e766c4-feff-4839-8717-22543e0d3986" ], "x-ms-client-request-id": [ - "56b1a915-da7a-4109-97cd-4a546fabdbde-2015-08-14 10:25:40Z-PS", - "56b1a915-da7a-4109-97cd-4a546fabdbde-2015-08-14 10:25:40Z-PS" + "0ae364d6-7a9e-40e4-8658-f0e06c0de7c8-2015-08-24 11:14:32Z-PS", + "0ae364d6-7a9e-40e4-8658-f0e06c0de7c8-2015-08-24 11:14:32Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "f88725ce-30e4-4405-a6f9-5eae2f9bc9d3" + "a4e766c4-feff-4839-8717-22543e0d3986" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T102543Z:f88725ce-30e4-4405-a6f9-5eae2f9bc9d3" + "CENTRALUS:20150824T111435Z:a4e766c4-feff-4839-8717-22543e0d3986" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 10:25:43 GMT" + "Mon, 24 Aug 2015 11:14:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers?api-version=2014-09-01&$filter=containerType%20eq%20'IaasVM'%20and%20friendlyName%20eq%20'hydrarecordvm'", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSYkZmlsdGVyPWNvbnRhaW5lclR5cGUlMjBlcSUyMCdJYWFzVk0nJTIwYW5kJTIwZnJpZW5kbHlOYW1lJTIwZXElMjAnaHlkcmFyZWNvcmR2bSc=", + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers?api-version=2014-09-01&$filter=type%20eq%20'IaasVM'%20and%20friendlyName%20eq%20'hydrarecordvm'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSYkZmlsdGVyPXR5cGUlMjBlcSUyMCdJYWFzVk0nJTIwYW5kJTIwZnJpZW5kbHlOYW1lJTIwZXElMjAnaHlkcmFyZWNvcmR2bSc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,10 +195,10 @@ "en-us" ], "x-ms-client-request-id": [ - "fff73c43-0e6e-4137-b54f-4e1bc214edf6-2015-08-14 10:25:43Z-PS" + "fd17ac5f-faf7-46a1-9eb2-660f7e7d9af4-2015-08-24 11:14:36Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"friendlyName\": \"hydrarecordvm\",\r\n \"status\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"IaasVM\",\r\n \"parentContainerId\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/hydrarecordvm\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/iaasvmcontainer;hydrarecordvm;hydrarecordvm\",\r\n \"name\": \"iaasvmcontainer;hydrarecordvm;hydrarecordvm\",\r\n \"type\": \"Microsoft.Backup/BackupVault/containers\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", @@ -216,29 +216,29 @@ "no-cache" ], "x-ms-request-id": [ - "e5e16955-fb54-4c23-a222-baedd71224d5" + "aa47c965-a832-4c87-986d-da50f79d4cd2" ], "x-ms-client-request-id": [ - "fff73c43-0e6e-4137-b54f-4e1bc214edf6-2015-08-14 10:25:43Z-PS", - "fff73c43-0e6e-4137-b54f-4e1bc214edf6-2015-08-14 10:25:43Z-PS" + "fd17ac5f-faf7-46a1-9eb2-660f7e7d9af4-2015-08-24 11:14:36Z-PS", + "fd17ac5f-faf7-46a1-9eb2-660f7e7d9af4-2015-08-24 11:14:36Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14998" ], "x-ms-correlation-request-id": [ - "e5e16955-fb54-4c23-a222-baedd71224d5" + "aa47c965-a832-4c87-986d-da50f79d4cd2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T102544Z:e5e16955-fb54-4c23-a222-baedd71224d5" + "CENTRALUS:20150824T111436Z:aa47c965-a832-4c87-986d-da50f79d4cd2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 10:25:44 GMT" + "Mon, 24 Aug 2015 11:14:36 GMT" ], "Server": [ "Microsoft-IIS/8.0" diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupRegisterContainerScenarioTests.json b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupRegisterContainerScenarioTests.json index 7cc891273d27..8d769a6f217d 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupRegisterContainerScenarioTests.json +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupRegisterContainerScenarioTests.json @@ -10,16 +10,16 @@ "en-us" ], "x-ms-client-request-id": [ - "6e091fde-9338-4f63-b81c-12565d6486f4-2015-08-18 15:40:22Z-PS" + "0b564194-6328-4a17-aa8c-719de153d988-2015-08-24 11:25:05Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn\",\r\n \"name\": \"backuprn\",\r\n \"type\": \"Microsoft.Backup/BackupVault\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn1\",\r\n \"name\": \"backuprn1\",\r\n \"type\": \"Microsoft.Backup/BackupVault\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn\",\r\n \"name\": \"backuprn\",\r\n \"type\": \"Microsoft.Backup/BackupVault\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "458" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31,16 +31,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-request-id": [ - "82213eae-32b6-407e-98f1-1907fc2f47a0" + "cff6fdf6-25c4-496d-a9e3-b9760455ccf0" ], "x-ms-correlation-request-id": [ - "82213eae-32b6-407e-98f1-1907fc2f47a0" + "cff6fdf6-25c4-496d-a9e3-b9760455ccf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150818T154023Z:82213eae-32b6-407e-98f1-1907fc2f47a0" + "CENTRALUS:20150824T112507Z:cff6fdf6-25c4-496d-a9e3-b9760455ccf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,7 +49,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Aug 2015 15:40:23 GMT" + "Mon, 24 Aug 2015 11:25:06 GMT" ] }, "StatusCode": 200 @@ -64,13 +64,13 @@ "en-us" ], "x-ms-client-request-id": [ - "6e091fde-9338-4f63-b81c-12565d6486f4-2015-08-18 15:40:22Z-PS" + "0b564194-6328-4a17-aa8c-719de153d988-2015-08-24 11:25:05Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"resourceId\": 3420983535961922368,\r\n \"properties\": {\r\n \"storageType\": \"GeoRedundant\",\r\n \"storageTypeState\": \"Locked\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"resourceId\": 6476019202094164610,\r\n \"properties\": {\r\n \"storageType\": \"GeoRedundant\",\r\n \"storageTypeState\": \"Locked\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "106" @@ -85,29 +85,29 @@ "no-cache" ], "x-ms-request-id": [ - "de793bd2-316c-41e1-8c4c-9c279ed82e85" + "4503ceed-b420-4738-927f-a806a68c0fae" ], "x-ms-client-request-id": [ - "6e091fde-9338-4f63-b81c-12565d6486f4-2015-08-18 15:40:22Z-PS", - "6e091fde-9338-4f63-b81c-12565d6486f4-2015-08-18 15:40:22Z-PS" + "0b564194-6328-4a17-aa8c-719de153d988-2015-08-24 11:25:05Z-PS", + "0b564194-6328-4a17-aa8c-719de153d988-2015-08-24 11:25:05Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "de793bd2-316c-41e1-8c4c-9c279ed82e85" + "4503ceed-b420-4738-927f-a806a68c0fae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150818T154033Z:de793bd2-316c-41e1-8c4c-9c279ed82e85" + "CENTRALUS:20150824T112509Z:4503ceed-b420-4738-927f-a806a68c0fae" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 18 Aug 2015 15:40:33 GMT" + "Mon, 24 Aug 2015 11:25:09 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -116,8 +116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers?api-version=2014-09-01&$filter=containerType%20eq%20'IaasVM'%20and%20friendlyName%20eq%20'powershellbvt'%20and%20status%20eq%20'NotRegistered'", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSYkZmlsdGVyPWNvbnRhaW5lclR5cGUlMjBlcSUyMCdJYWFzVk0nJTIwYW5kJTIwZnJpZW5kbHlOYW1lJTIwZXElMjAncG93ZXJzaGVsbGJ2dCclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdOb3RSZWdpc3RlcmVkJw==", + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers?api-version=2014-09-01&$filter=type%20eq%20'IaasVM'%20and%20friendlyName%20eq%20'hydrarecordvm'%20and%20status%20eq%20'NotRegistered'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSYkZmlsdGVyPXR5cGUlMjBlcSUyMCdJYWFzVk0nJTIwYW5kJTIwZnJpZW5kbHlOYW1lJTIwZXElMjAnaHlkcmFyZWNvcmR2bSclMjBhbmQlMjBzdGF0dXMlMjBlcSUyMCdOb3RSZWdpc3RlcmVkJw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -125,13 +125,13 @@ "en-us" ], "x-ms-client-request-id": [ - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS" + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"friendlyName\": \"powershellbvt\",\r\n \"status\": \"NotRegistered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"IaasVM\",\r\n \"parentContainerId\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/powershellbvt\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/iaasvmcontainer;powershellbvt;powershellbvt\",\r\n \"name\": \"iaasvmcontainer;powershellbvt;powershellbvt\",\r\n \"type\": \"Microsoft.Backup/BackupVault/containers\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"friendlyName\": \"hydrarecordvm\",\r\n \"status\": \"NotRegistered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"IaasVM\",\r\n \"parentContainerId\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/hydrarecordvm\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/iaasvmcontainer;hydrarecordvm;hydrarecordvm\",\r\n \"name\": \"iaasvmcontainer;hydrarecordvm;hydrarecordvm\",\r\n \"type\": \"Microsoft.Backup/BackupVault/containers\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "609" @@ -146,29 +146,29 @@ "no-cache" ], "x-ms-request-id": [ - "5c0187c9-f3d8-4a00-9cc2-fb2c2092753b" + "460a48bd-cf32-40e5-84fe-6f160054bf90" ], "x-ms-client-request-id": [ - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS", - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS" + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS", + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "5c0187c9-f3d8-4a00-9cc2-fb2c2092753b" + "460a48bd-cf32-40e5-84fe-6f160054bf90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150818T154036Z:5c0187c9-f3d8-4a00-9cc2-fb2c2092753b" + "CENTRALUS:20150824T112512Z:460a48bd-cf32-40e5-84fe-6f160054bf90" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 18 Aug 2015 15:40:36 GMT" + "Mon, 24 Aug 2015 11:25:12 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -180,8 +180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/registeredContainers/iaasvmcontainer%3Bpowershellbvt%3Bpowershellbvt?api-version=2014-09-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL3JlZ2lzdGVyZWRDb250YWluZXJzL2lhYXN2bWNvbnRhaW5lciUzQnBvd2Vyc2hlbGxidnQlM0Jwb3dlcnNoZWxsYnZ0P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/registeredContainers/iaasvmcontainer%3Bhydrarecordvm%3Bhydrarecordvm?api-version=2014-09-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL3JlZ2lzdGVyZWRDb250YWluZXJzL2lhYXN2bWNvbnRhaW5lciUzQmh5ZHJhcmVjb3Jkdm0lM0JoeWRyYXJlY29yZHZtP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -189,16 +189,16 @@ "en-us" ], "x-ms-client-request-id": [ - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS" + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS" ], "x-ms-version": [ "2013-03-01" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "\"8fe78e98-472c-4f34-889f-504c16c7c6a9\"", + "ResponseBody": "\"fba7c4ab-d6e2-4f32-b2ca-aef55703fbe7\"", "ResponseHeaders": { "Content-Length": [ "38" @@ -213,29 +213,29 @@ "no-cache" ], "x-ms-request-id": [ - "ddf87ac3-99d2-4ab1-af09-20a581bfb084" + "e63b35e3-796d-4902-983f-9c36eda26651" ], "x-ms-client-request-id": [ - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS", - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS" + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS", + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "999998" ], "x-ms-correlation-request-id": [ - "ddf87ac3-99d2-4ab1-af09-20a581bfb084" + "e63b35e3-796d-4902-983f-9c36eda26651" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150818T154038Z:ddf87ac3-99d2-4ab1-af09-20a581bfb084" + "CENTRALUS:20150824T112513Z:e63b35e3-796d-4902-983f-9c36eda26651" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 18 Aug 2015 15:40:38 GMT" + "Mon, 24 Aug 2015 11:25:13 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -247,8 +247,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/operationResults/8fe78e98-472c-4f34-889f-504c16c7c6a9?api-version=2014-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL29wZXJhdGlvblJlc3VsdHMvOGZlNzhlOTgtNDcyYy00ZjM0LTg4OWYtNTA0YzE2YzdjNmE5P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestUri": "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/operationResults/fba7c4ab-d6e2-4f32-b2ca-aef55703fbe7?api-version=2014-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL29wZXJhdGlvblJlc3VsdHMvZmJhN2M0YWItZDZlMi00ZjMyLWIyY2EtYWVmNTU3MDNmYmU3P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -256,13 +256,13 @@ "en-us" ], "x-ms-client-request-id": [ - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS" + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"\"\r\n },\r\n \"jobList\": [\r\n \"2df287f4-5ba0-4530-b7bd-f78c34bace8a\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"\"\r\n },\r\n \"jobList\": [\r\n \"065302f5-8700-41d7-848c-db7bf575496f\"\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -277,29 +277,29 @@ "no-cache" ], "x-ms-request-id": [ - "6f678bec-a5b8-49c0-885d-a820d913b40e" + "bcff8db2-3edf-4d3d-9ec3-f62927076c13" ], "x-ms-client-request-id": [ - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS", - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS" + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS", + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "6f678bec-a5b8-49c0-885d-a820d913b40e" + "bcff8db2-3edf-4d3d-9ec3-f62927076c13" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150818T154039Z:6f678bec-a5b8-49c0-885d-a820d913b40e" + "CENTRALUS:20150824T112514Z:bcff8db2-3edf-4d3d-9ec3-f62927076c13" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 18 Aug 2015 15:40:39 GMT" + "Mon, 24 Aug 2015 11:25:14 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -311,8 +311,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/jobs/2df287f4-5ba0-4530-b7bd-f78c34bace8a?api-version=2014-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2pvYnMvMmRmMjg3ZjQtNWJhMC00NTMwLWI3YmQtZjc4YzM0YmFjZThhP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestUri": "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/jobs/065302f5-8700-41d7-848c-db7bf575496f?api-version=2014-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2pvYnMvMDY1MzAyZjUtODcwMC00MWQ3LTg0OGMtZGI3YmY1NzU0OTZmP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -320,16 +320,16 @@ "en-us" ], "x-ms-client-request-id": [ - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS" + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"powershellbvt\",\r\n \"Cloud Service\": \"powershellbvt\"\r\n },\r\n \"progressPercentage\": null,\r\n \"dynamicErrorMessage\": null,\r\n \"workloadType\": \"IaasVM\",\r\n \"operation\": \"Register\",\r\n \"status\": \"InProgress\",\r\n \"startTimestamp\": \"2015-08-18T15:40:36.3766125Z\",\r\n \"endTimestamp\": \"2001-01-01T00:00:00Z\",\r\n \"duration\": \"00:00:02.8034889\",\r\n \"entityFriendlyName\": \"powershellbvt\",\r\n \"actionsInfo\": null,\r\n \"errorDetails\": null\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/jobs/2df287f4-5ba0-4530-b7bd-f78c34bace8a\",\r\n \"name\": \"2df287f4-5ba0-4530-b7bd-f78c34bace8a\",\r\n \"type\": \"Microsoft.Backup/BackupVault/jobs\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hydrarecordvm\",\r\n \"Cloud Service\": \"hydrarecordvm\"\r\n },\r\n \"progressPercentage\": null,\r\n \"dynamicErrorMessage\": null,\r\n \"workloadType\": \"IaasVM\",\r\n \"operation\": \"Register\",\r\n \"status\": \"InProgress\",\r\n \"startTimestamp\": \"2015-08-24T11:25:13.5885186Z\",\r\n \"endTimestamp\": \"2001-01-01T00:00:00Z\",\r\n \"duration\": \"00:00:01.7311888\",\r\n \"entityFriendlyName\": \"hydrarecordvm\",\r\n \"actionsInfo\": null,\r\n \"errorDetails\": null\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/jobs/065302f5-8700-41d7-848c-db7bf575496f\",\r\n \"name\": \"065302f5-8700-41d7-848c-db7bf575496f\",\r\n \"type\": \"Microsoft.Backup/BackupVault/jobs\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "677" + "681" ], "Content-Type": [ "application/json" @@ -341,29 +341,29 @@ "no-cache" ], "x-ms-request-id": [ - "5569d853-28fe-4006-8a64-8880c5005433" + "24b49ff0-d366-4b0a-b199-15bb6fb1905a" ], "x-ms-client-request-id": [ - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS", - "ebc2e8e9-92ea-4c9e-8bd9-c1f2eee14183-2015-08-18 15:40:33Z-PS" + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS", + "ce6d85f1-e475-4bc4-97d1-4640f7a987e2-2015-08-24 11:25:09Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "5569d853-28fe-4006-8a64-8880c5005433" + "24b49ff0-d366-4b0a-b199-15bb6fb1905a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150818T154040Z:5569d853-28fe-4006-8a64-8880c5005433" + "CENTRALUS:20150824T112515Z:24b49ff0-d366-4b0a-b199-15bb6fb1905a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 18 Aug 2015 15:40:39 GMT" + "Mon, 24 Aug 2015 11:25:14 GMT" ], "Server": [ "Microsoft-IIS/8.0" diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupUnregisterContainerScenarioTests.json b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupUnregisterContainerScenarioTests.json index 1224f18479e4..ae40b6f82111 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupUnregisterContainerScenarioTests.json +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/SessionRecords/Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests.AzureBackupContainerTests/AzureBackupUnregisterContainerScenarioTests.json @@ -10,16 +10,16 @@ "en-us" ], "x-ms-client-request-id": [ - "6c250745-4225-438b-89da-eea604d94145-2015-08-14 11:07:31Z-PS" + "f789315e-ee4c-41f6-b039-b10eba85d1d1-2015-08-24 11:17:53Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn\",\r\n \"name\": \"backuprn\",\r\n \"type\": \"Microsoft.Backup/BackupVault\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/hydrarecording/providers/Microsoft.Backup/BackupVault/hydrarecordingrn\",\r\n \"name\": \"hydrarecordingrn\",\r\n \"type\": \"Microsoft.Backup/BackupVault\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/pragrawa-rg/providers/Microsoft.Backup/BackupVault/pragrawa-rg01\",\r\n \"name\": \"pragrawa-rg01\",\r\n \"type\": \"Microsoft.Backup/BackupVault\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn\",\r\n \"name\": \"backuprn\",\r\n \"type\": \"Microsoft.Backup/BackupVault\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "710" + "237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -31,16 +31,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14999" ], "x-ms-request-id": [ - "7b4de7bb-3574-414c-aae9-c32bb5270182" + "a9f3ef9b-6d96-42d5-8e81-1bcc49e70a0d" ], "x-ms-correlation-request-id": [ - "7b4de7bb-3574-414c-aae9-c32bb5270182" + "a9f3ef9b-6d96-42d5-8e81-1bcc49e70a0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T110732Z:7b4de7bb-3574-414c-aae9-c32bb5270182" + "CENTRALUS:20150824T111755Z:a9f3ef9b-6d96-42d5-8e81-1bcc49e70a0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,7 +49,7 @@ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 11:07:31 GMT" + "Mon, 24 Aug 2015 11:17:54 GMT" ] }, "StatusCode": 200 @@ -64,16 +64,16 @@ "en-us" ], "x-ms-client-request-id": [ - "6c250745-4225-438b-89da-eea604d94145-2015-08-14 11:07:31Z-PS" + "f789315e-ee4c-41f6-b039-b10eba85d1d1-2015-08-24 11:17:53Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupVaultServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"resourceId\": 1774108198771083879,\r\n \"properties\": {\r\n \"storageType\": \"LocallyRedundant\",\r\n \"storageTypeState\": \"Locked\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"resourceId\": 6476019202094164610,\r\n \"properties\": {\r\n \"storageType\": \"GeoRedundant\",\r\n \"storageTypeState\": \"Locked\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "110" + "106" ], "Content-Type": [ "application/json" @@ -85,29 +85,29 @@ "no-cache" ], "x-ms-request-id": [ - "ecaf0dbd-787b-4a9d-97c3-a33a5a7379ea" + "de1bdb9f-c8d6-4850-879d-5411551f6b66" ], "x-ms-client-request-id": [ - "6c250745-4225-438b-89da-eea604d94145-2015-08-14 11:07:31Z-PS", - "6c250745-4225-438b-89da-eea604d94145-2015-08-14 11:07:31Z-PS" + "f789315e-ee4c-41f6-b039-b10eba85d1d1-2015-08-24 11:17:53Z-PS", + "f789315e-ee4c-41f6-b039-b10eba85d1d1-2015-08-24 11:17:53Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14998" ], "x-ms-correlation-request-id": [ - "ecaf0dbd-787b-4a9d-97c3-a33a5a7379ea" + "de1bdb9f-c8d6-4850-879d-5411551f6b66" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T110743Z:ecaf0dbd-787b-4a9d-97c3-a33a5a7379ea" + "CENTRALUS:20150824T111757Z:de1bdb9f-c8d6-4850-879d-5411551f6b66" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 11:07:43 GMT" + "Mon, 24 Aug 2015 11:17:57 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -116,8 +116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers?api-version=2014-09-01&$filter=containerType%20eq%20'IaasVM'%20and%20friendlyName%20eq%20'hydrarecordvm'", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSYkZmlsdGVyPWNvbnRhaW5lclR5cGUlMjBlcSUyMCdJYWFzVk0nJTIwYW5kJTIwZnJpZW5kbHlOYW1lJTIwZXElMjAnaHlkcmFyZWNvcmR2bSc=", + "RequestUri": "/Subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers?api-version=2014-09-01&$filter=type%20eq%20'IaasVM'%20and%20friendlyName%20eq%20'hydrarecordvm'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSYkZmlsdGVyPXR5cGUlMjBlcSUyMCdJYWFzVk0nJTIwYW5kJTIwZnJpZW5kbHlOYW1lJTIwZXElMjAnaHlkcmFyZWNvcmR2bSc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -125,10 +125,10 @@ "en-us" ], "x-ms-client-request-id": [ - "b9f77ba4-d5ce-4d54-a761-eeb4c9d2659d-2015-08-14 11:07:43Z-PS" + "5a5bbcb5-4c64-4689-a931-876ed94f5e6d-2015-08-24 11:17:57Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"friendlyName\": \"hydrarecordvm\",\r\n \"status\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"IaasVM\",\r\n \"parentContainerId\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/hydrarecordvm\"\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/containers/iaasvmcontainer;hydrarecordvm;hydrarecordvm\",\r\n \"name\": \"iaasvmcontainer;hydrarecordvm;hydrarecordvm\",\r\n \"type\": \"Microsoft.Backup/BackupVault/containers\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", @@ -146,29 +146,29 @@ "no-cache" ], "x-ms-request-id": [ - "bd731385-07df-4cb9-a3d9-5b46c4e6095d" + "bd6380f3-37fa-4714-b73c-0f0f033d2783" ], "x-ms-client-request-id": [ - "b9f77ba4-d5ce-4d54-a761-eeb4c9d2659d-2015-08-14 11:07:43Z-PS", - "b9f77ba4-d5ce-4d54-a761-eeb4c9d2659d-2015-08-14 11:07:43Z-PS" + "5a5bbcb5-4c64-4689-a931-876ed94f5e6d-2015-08-24 11:17:57Z-PS", + "5a5bbcb5-4c64-4689-a931-876ed94f5e6d-2015-08-24 11:17:57Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14999" ], "x-ms-correlation-request-id": [ - "bd731385-07df-4cb9-a3d9-5b46c4e6095d" + "bd6380f3-37fa-4714-b73c-0f0f033d2783" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T110746Z:bd731385-07df-4cb9-a3d9-5b46c4e6095d" + "CENTRALUS:20150824T111800Z:bd6380f3-37fa-4714-b73c-0f0f033d2783" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 11:07:45 GMT" + "Mon, 24 Aug 2015 11:18:00 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -189,13 +189,13 @@ "en-us" ], "x-ms-client-request-id": [ - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS" + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "\"957ed0ce-e696-4dad-ac6b-efface1b4e7c\"", + "ResponseBody": "\"85bc9c9b-ba94-474d-a5bf-a191afe58f53\"", "ResponseHeaders": { "Content-Length": [ "38" @@ -210,29 +210,29 @@ "no-cache" ], "x-ms-request-id": [ - "891112b4-4467-4309-b256-7c0eb0409dac" + "30abba00-f4b3-4b16-9e12-20924b4a4950" ], "x-ms-client-request-id": [ - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS", - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS" + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS", + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "999994" + "999999" ], "x-ms-correlation-request-id": [ - "891112b4-4467-4309-b256-7c0eb0409dac" + "30abba00-f4b3-4b16-9e12-20924b4a4950" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T110747Z:891112b4-4467-4309-b256-7c0eb0409dac" + "CENTRALUS:20150824T111801Z:30abba00-f4b3-4b16-9e12-20924b4a4950" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 11:07:46 GMT" + "Mon, 24 Aug 2015 11:18:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -244,8 +244,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/operationResults/957ed0ce-e696-4dad-ac6b-efface1b4e7c?api-version=2014-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL29wZXJhdGlvblJlc3VsdHMvOTU3ZWQwY2UtZTY5Ni00ZGFkLWFjNmItZWZmYWNlMWI0ZTdjP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestUri": "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/operationResults/85bc9c9b-ba94-474d-a5bf-a191afe58f53?api-version=2014-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL29wZXJhdGlvblJlc3VsdHMvODViYzljOWItYmE5NC00NzRkLWE1YmYtYTE5MWFmZTU4ZjUzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -253,16 +253,16 @@ "en-us" ], "x-ms-client-request-id": [ - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS" + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"BMSUserErrorContainerHasDatasources\",\r\n \"message\": \"Failed to unregister a registered item. This item contains protected child items. Please stop protection and then delete the protected child items before attempting to unregister the parent item.\"\r\n },\r\n \"jobList\": [\r\n \"15ba1ed4-4d41-478f-aca7-63eaef3435fe\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"\"\r\n },\r\n \"jobList\": [\r\n \"8bd0c467-995d-4d78-bfbd-47e3a9b8e5e5\"\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "333" + "107" ], "Content-Type": [ "application/json" @@ -274,29 +274,29 @@ "no-cache" ], "x-ms-request-id": [ - "4aefa749-f224-4cd5-b002-739c5995d37c" + "9e8e346a-17bc-4462-b5d0-8926d6da4755" ], "x-ms-client-request-id": [ - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS", - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS" + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS", + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14998" ], "x-ms-correlation-request-id": [ - "4aefa749-f224-4cd5-b002-739c5995d37c" + "9e8e346a-17bc-4462-b5d0-8926d6da4755" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T110748Z:4aefa749-f224-4cd5-b002-739c5995d37c" + "CENTRALUS:20150824T111802Z:9e8e346a-17bc-4462-b5d0-8926d6da4755" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 11:07:47 GMT" + "Mon, 24 Aug 2015 11:18:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -308,8 +308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/jobs/15ba1ed4-4d41-478f-aca7-63eaef3435fe?api-version=2014-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2pvYnMvMTViYTFlZDQtNGQ0MS00NzhmLWFjYTctNjNlYWVmMzQzNWZlP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestUri": "/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/jobs/8bd0c467-995d-4d78-bfbd-47e3a9b8e5e5?api-version=2014-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjUzMDNhMGItZmFlNC00Y2RiLWI0NGQtMGU0YzAzMmRkZTI2L3Jlc291cmNlR3JvdXBzL2JhY2t1cHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmFja3VwL0JhY2t1cFZhdWx0L2JhY2t1cHJuL2pvYnMvOGJkMGM0NjctOTk1ZC00ZDc4LWJmYmQtNDdlM2E5YjhlNWU1P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -317,16 +317,16 @@ "en-us" ], "x-ms-client-request-id": [ - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS" + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS" ], "User-Agent": [ - "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/0.0.0.0" + "Microsoft.Azure.Management.BackupServices.BackupServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hydrarecordvm\",\r\n \"Cloud Service\": \"hydrarecordvm\"\r\n },\r\n \"progressPercentage\": null,\r\n \"dynamicErrorMessage\": null,\r\n \"workloadType\": \"IaasVM\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"Failed\",\r\n \"startTimestamp\": \"2015-08-14T11:07:47.5082523Z\",\r\n \"endTimestamp\": \"2015-08-14T11:07:47.5082523Z\",\r\n \"duration\": \"00:00:00\",\r\n \"entityFriendlyName\": \"hydrarecordvm\",\r\n \"actionsInfo\": null,\r\n \"errorDetails\": [\r\n {\r\n \"errorCode\": 134607755,\r\n \"errorTitle\": \"\",\r\n \"errorString\": \"Failed to unregister a registered item.\",\r\n \"recommendations\": [\r\n \"This item contains protected child items. Please stop protection and then delete the protected child items before attempting to unregister the parent item.\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/jobs/15ba1ed4-4d41-478f-aca7-63eaef3435fe\",\r\n \"name\": \"15ba1ed4-4d41-478f-aca7-63eaef3435fe\",\r\n \"type\": \"Microsoft.Backup/BackupVault/jobs\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"hydrarecordvm\",\r\n \"Cloud Service\": \"hydrarecordvm\"\r\n },\r\n \"progressPercentage\": null,\r\n \"dynamicErrorMessage\": null,\r\n \"workloadType\": \"IaasVM\",\r\n \"operation\": \"UnRegister\",\r\n \"status\": \"InProgress\",\r\n \"startTimestamp\": \"2015-08-24T11:18:01.4252877Z\",\r\n \"endTimestamp\": \"2001-01-01T00:00:00Z\",\r\n \"duration\": \"00:00:01.9029908\",\r\n \"entityFriendlyName\": \"hydrarecordvm\",\r\n \"actionsInfo\": null,\r\n \"errorDetails\": null\r\n },\r\n \"id\": \"/subscriptions/f5303a0b-fae4-4cdb-b44d-0e4c032dde26/resourceGroups/backuprg/providers/Microsoft.Backup/BackupVault/backuprn/jobs/8bd0c467-995d-4d78-bfbd-47e3a9b8e5e5\",\r\n \"name\": \"8bd0c467-995d-4d78-bfbd-47e3a9b8e5e5\",\r\n \"type\": \"Microsoft.Backup/BackupVault/jobs\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "946" + "683" ], "Content-Type": [ "application/json" @@ -338,29 +338,29 @@ "no-cache" ], "x-ms-request-id": [ - "0b84a442-b6b5-413f-bb5d-e0508aa17b94" + "d75f2a52-ad01-4fb2-b33d-1fd04f44602a" ], "x-ms-client-request-id": [ - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS", - "13d99ef1-f619-4217-b0af-709dd2f65ab4-2015-08-14 11:07:46Z-PS" + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS", + "cfb8a2b4-2e84-464c-9e60-1d056e6f7d36-2015-08-24 11:18:00Z-PS" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14997" ], "x-ms-correlation-request-id": [ - "0b84a442-b6b5-413f-bb5d-e0508aa17b94" + "d75f2a52-ad01-4fb2-b33d-1fd04f44602a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20150814T110748Z:0b84a442-b6b5-413f-bb5d-e0508aa17b94" + "CENTRALUS:20150824T111803Z:d75f2a52-ad01-4fb2-b33d-1fd04f44602a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 14 Aug 2015 11:07:48 GMT" + "Mon, 24 Aug 2015 11:18:03 GMT" ], "Server": [ "Microsoft-IIS/8.0" diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll index 8d17f28fd78401e256a95af6fa638924a891299b..dbee840b00a565f994214904eaaec53fc98424a9 100644 GIT binary patch delta 6547 zcmd5>dt6l2_Mf%SJa{|9z%a~kh5=Kv1o4&O1imOmO#v0+q9|ErYJ!-ijHsamWQw?x zjhcd{W}0P<{*HLBirzFI6+TMqR%*Ahy!av`^Obk)eP+P=_22KGAD<8B?7i0BYp=c5 z+TXR#o&^md3mQU}l}i`T|Ep@T4AZLK&I)nvlr%#%_}3t5jJm2AbI^H76NLSrJd!4g z#*i*F8#=*@^ktY2X%vWAH#Z+Nz?!S2-kvma(gGuBL8OEBkBqd8lr#mzJr*?D{3eY? z|6sI66Hv(6y)7@bu`b`o+7lVCuS8biI!|-t1s!aob)VYl_2_=2USfG&K&BZ^85(JU z(?u>KMMBC_r-7buTF4EFzTc>JgJUejq-Ax>yzJB%3&hd!F)os>W&35Kj@lm+4p}U{ z3LHYlotSWvr={t0WSS5=8m6%M@yOW_>x6XHKN*|f#X3ormc}*9G`77H^4K+`dh*(T zPoUWIL`N3@^OSV@5nzvJa_8H6IOCa^&{x9VrXDc{a$V~=(&znPFjMzn89LLIgY)27 zdV6pexP(s|9grFdGwJBm0<&4i&Gs=jn;k8t(HC~6U!=x^pT{r+7qNK;4*iTkJ+%(+ z2r0Dha2MoK_wbaE7Y&*Mzx-GE6u-jd^poKoU^Bfw`~Wo2{~56!&eQC)1S9d&6qpR^ zD3hTumaa@ofMj|!ZHWG9&hn$5WJb_#>2@fmPo{5!4fJ+;lIZ|v1$k!$6<+eA&DmzU zBqMG`Ww&F(vBW25+?j+fdjyoaK+jATwIZzy`M~h@q?#G&wam0(*-rz^q;aS^W^a3294!4V3 z@?-DzMdoa`%tPhwNiNAm54zivP=ET^DVZAP$|S*`y0JNMZV8t#{klxQpUWj=6ua=K zEiHEOxyOprVHlO?xnL^Io|lF`+k)-0^uoNS;Sf!o?}FpBbbbL3pBwZ0KmzT)pbnjJ zYQZ{m#>|%&qdX|#@{&q~yrL2=?_(rQrG5+3FcPvC)}ho}3%S%s7ICR77jdbdFA`D* zm2#;irCe(JSGd%JuW+g9WnAi#G9mS7Sq7w2xx5c#(Wmg4M``&Cm_iK|$w+?!pINjN zpLw1SE6z#L95`lJ@FWxwcNo!V!+r>Jb;DDSU<=SQ1M%1=572R{Hyr1oAs? zJ`9U#*QGW(YiTIhXvNZeFZ`Hsz7Kw$p@Eh0;PLdS6yY;#*(!iz9@FxkfGG3?O~Cki ziKd2V0yPC*WHBKAd`da~{6ZUa4IG$gC5@oRUoS%(dTK>4qXP$<^xk0BBMz-u!Exx* z6(jKJsP3&VSJ7zNst8(G?S&A3`c18s#xSQ*08*fLdSKxtn$8m7H+(v19UG(%<%0Xsob!L@c(X@^&7hfir_PF)+}QyhD1)($fZ zaB9Obp?FN4h5G-^PUC8~V03;_o1|_bRv5{-PDiKI`O|)Nd>eIjd>i$3-fgr;ts<#& zom1ULM|H;f0Gc}{g3ep#-AX4^R;C@+*Qs0S?46{e7uUb0Zs%b!qUKHSR^q%{iSurS z>+toPzOC?H@P>(qV=r!~3B+6)yxl(l0%^qVSm;Fi?Cu2F^y%Fj9DyOC#%PUJ;vSD} z;?BZn;Tq2afA6ie){A0e5+5V7BXRR~VI!TfZvrlGX5S-vlpJy>9=`P?9dZG=9YTvf z%CXqnaoMx^ynjMl{nGT2uYM7%gMVN-Xy)Na7(@#WhhZgDdbqWosXy$kXL4F=8C#=F zCbSbs`)Q+rj%~D%(snA^^8U(33v8v^8(ri?I~8m>)pXoKZnhJE`^52BA{$k}EyK3U zr~)n@)`-K#8bvk3yMZSxq)}4Qx8DgFifQf%UP1}rU}h!iR^7a#SHpTn>) zJn{2d=uZo-=aHOHcEbm7-hKe0C>JJ8%Z`{h5eTaX>y z#xDI6d%&GYOHvzq{(bD}cjAN8l3$$C@94h67SH}WN4=#9dy7D8ZNl_e@Oz6BHctWr zOO?O^3iq&xX8Zt9>HCq64iG+8DR(*LqKSK&b=QK30RAb!W@w=kdO^5a9onG9p`And z;bARWC?Wkrh4Wdp4pJb8eWe2z( zU^4KG?q>U~FwM*d5qBiAeF@vm21KGzk1{=y3k9~#2Hl_&J7W}K`v%+B{vEN zLI_94*0eo`y(hynut*7WKu~@!MST9`nwV4_X z$*;u9!~2cL+I56Ds8o_V!Xcj{qr0FZZ-?>ExJ3LqfxAySXU3)*#8riEo(Bw;$`W~vKT6#is@1bFug8Uf%MMh>g@l~9O^N5>23sv*A z3A*2W(|bW!XrcQ3JOT&%%!>55;QLNXrbHVKhbs-ep!K}`KQJ>7d9-k{H-WSoH%y<) zH!dv9PXOkSbp$He2n=|9{e1w$lOMyCrUB?L4BCz<7_>3$sT2{kvr`~E5JPY22zX8; z3$@bq7P$d>ejtV_!D%pxSjSp?$L0_0DaxD-m?U*wj`iqY%--Be)~S`VD)hW!%!DK( z)U)9eVX<}fU(2pnnkPaO7Q`%M5osH6Jl|!>372qH<7NG$TvbjZQz;7aycZ$$}q$NW6 z$qjdPaFIn5VrNi-pl7$Tye6=*z9ry9Kp0;FeMmQ}IE(X2@CY=NfSvTmL3kjQTP0xD zLLdt%!^r+tNh;%!ozCWzgD=Uvi~h_{X+v|?R1Uo@gGAjVcu(BNd$a<4)sQl^0({py zY+B`g2>(eX9%+8T<6!w!sE~0PVsWuiD5O$`aSEnv4ijQXITA2@YL}sU>3GYd&aAG2 za4cI?pb+C+NWmkG7d|t{6mikRzNp1uuv(g0bljOcCCd-ve7Ea4|Z)W*x?8ZszsQ)Y-NLL1@?E9h=XmY6-&JF zD>&G9yq(8RV_S)>gCkn#pj_GjzE5&?cguZN8M77PaHHy{8s0vlx`=(oJD07(7{+(7 zjTc-3Gl#u{+GYuBlwlJ$qgvv?JHYR@_^lUvWE<`h0g&gpnb^kN^E)rLgSYdMi&i2^2(UfnGL6!uYl*C3<924vO z4XKG&%gDhoY_F@nnQ5|s_%9SqLkT1;;x=b$|X;ihwS;7vc5kEs2ukL9MF+sJ983ZV@XYD z<9ar}36mtXi(6E-y9q;LtDT>FrKJf56ZnKBUjYw%&VIfE50NH2b6kZ^{yf!$5qFiA zry2b+EuwcSd;ThPfYD0jRa^zOac~*N*0w+>F7kd0DzcSbYJo@j_AvHkX2i(H?cu%> z(f+ulL^bRa(Raoh*z>RUWw#(~MFNaq4Khh2|7<;`TN8hQg0vyy%f`0=_*tu82$?zJ1zPE delta 6559 zcmd5>dt6l2_Mf%SJa{|93+D(G7_hoAVDoxu#@A;mH^{KP^7Ux}?He5&q;)65==F$^q*-D)gFvPk4jC@d ze20^CBSk{WCWnExI;`N$)*J`B==w)mNwk*LZT7HJBdsukJ|5{Lv$gDyOw>t-B7-28 zrB`|;-HZ$(MOvD^T&D3+Q=yoxibGCAlmlk7QOVf69OWRnS{i#*rcu!jC}N#Rb>~EX zMWDhxc7PM$b$98&e*(0)pS-(U58t}y#E+1$_i93NZTkMFzP?Km0L)W*Rba z0A$h;6P=JxT@%LyJY&%0d*waLr+5`M&=V75-~hco@i4T}cPH(DYcwk@-e~dCRnZfkF^f0KQkEZW}cWHNelIdg4^7G8{E4=MRuV$I) z#ta{NpxP+;75dQ5EDQG2p+CKtq3Bb*aeTn@86otY$(8zd`D`Qa&7R^=Wd(X<1@_4L z^OSH=_(f_$3{g zIUYJ`d1f*R@S(>t8&!2|TmdfQi)r5U{TI!&Y1&#yrjI_h8#j6DG0!F=JaQs>6syQm zHyPpCWJMOL=YwlIJR==Kz0YAKZTUkID(64lqg>4YQf>e$w`V$6?w9F8xx^VBnsmg`Wz12ZdoKVb0wX>2j5Ju0M1y$~s zXNBr9(%ye!K0fc669@a;S#w0}Y?<5U1*hEe^1FIY*YYKOr|bL@nf&ZS3mh`FER{)& zPCa62*beliZ?(wuIczo<)T7me?E?my6Dd>eGMTg))U!2mSt+?@U=>Mt`YtV72=O#+ zxswd>VyokjvUBqYDFob6e$06wO6 zmy_J~VsDN><}#N|e7xzcHZI9TkGP^qe{cHGX_*>U$|S{`y0AHVWhs|Xa9yTft>h9i zik*1OHWfSh+~(qR$fk0M6G~`SNgBFrC$>B3Hzj|B^E7pp6TYPDR^{{H`DxW~NTK(y zu0vm(UR{sASiEKf%7aoaFR4_>TT#m8eT1YE>h*LQ213@;btv`5(_HEUYq`|wwOs0% zwLD5i$;WTcP9 zXD(fb&m#8+q` z$Dos2CgIawHB4WlBGJN{U|Lw^!4GfxS#1c7WDcVMBVW&S-@@B8oyBW?5DsWgm6dK| zkLdezZ1AIe{+?A_O9FdCR%z@b&@K;OYwU`t%`G2^alV zjg?NXnV{dvMVnEygZ^5hqo-*nRG~6l#WrK4`DR6b|(hr`Pw9P2T{T}j(Q!PU*}Cn*704`)$v{Iuk-98 z8kMq9N4-Pc#Q=524j-C5Bbb)ddv-Dqb(Lw%jyiQGcY7x3=(jtbQ+IQ(7_s$b&rV`J zJBjt|gzNC>%buNZZT%bOAc8Gw*y@WJ)PIk+51#tq15uDjhaVUS^XVTCG}z?;QCalH zDRDiHZQ`1S&%)jA{(l{&4QUo7#ymbo!8-CAmYrrc*&vJNH(9X$S=ZEC#q4kLR58CU1vBG`1*q^Nx z&>Py5I9e-j7o z?%Zz>f^NBA`Dc_Kv4AM1KY z3oW$d#tctU{V6wQ*&X58d1ILMlRzHSf>r(-mYq)TwpoAeV?X^n_G`$N&AqeN{Epp) z?ECuI>wd>hxoNXb>SM3EgI#bl&QGoN#X-GH4>nodhi)GC)FtfC1bPb-rpHR(Q<<<5 z2@EV%0xKNjP8I=;rHM*EgmiR(aI;Fe#VOq;?re6y7DN#6Zva-Lg@Nb=;c9hgqZWrc z1Nr%3U0Nt5lLLkGS(OgPzykJ(4xF%t1?%y}*ku0N%_{V85I+$n830o?dzQb7*bxI@ zvSx{1fG314y0eMhC+`h1vW0!%yxyseUQj5hC&3)RDKPGY)s!u zb~ucN01lA7IeP=!EyJInO0n2sh#sO@YJW(8T}p9(F6djfKZZ+S7h)hR%s+^)I~3P_ zZm~u~@+z?G@O<2{eghyD>XoDcaJ0vf5rfc?kwN_XEfGJ<_z`6zAA)d!i0D`5dI+6c zZ{(+x#m8bBF^hk@F|23}?8Zar>0!*2gi^AC#35z*SX-ibHzlF>tAm8U#Mq7`96OtT zxp80MR~z@m%4ArmAA{N!7V}TGM1yFnFvkK$;1VYWgAKrrel*XaZdtUw@n3;z>S~%I0Lwb#C z(P#6G3k&lTfN7+jKs}q30`u|p*A$2&{#K7!kC~#z2rS6tGQ` zV6Mm)YMJY)aDDXrKoltcX)uL^JZ*QrV zK--b95anMkxTS+`7C}fDgHpu1Q6Vg+9YWcNQgFbd?D0|oY+=P6;C`Y4Pcy&Nv9r8NRLHm)VYtF56jCXVa0(`Dju2wVdL&@v)NV%g zX5-C{I=-PH=Ulkm}+Z|=aR_Lic*uL#xBh4YA_+XveAq+a0Uo9e>*~Z4z3fLbk z5j$(B6-&JMBiPwx-Y#Niv8_ba!7(j7tbEr1J)h$2*3LVuGUG3Zgw3j-w(@p|>LT_r z@0e}E7{)iSjh9*iE+2UVwapdQD8nXhMzzG@H-O(~@tZF8z%JY+VjoX&i?NNn=l5Lf z9o{Yy7hTHrT~Mio`E1?Wc-6<)F8;d3&b$q;ph;YA42*HgPPZ@#dulIctvqG-Uf4-Q zM(MqQI>hGgLzx%Z`h6m?e7_Gy88CYeZiFZlp3w+3XwvT+;eWvY4!CqBuu(xIM45IN zp2S-&cK8E$09x5EAHcn+Ys?WCgjkSq1m1=VOm`I0;Ifi=6!uD367m4L=QtXqHB^nA zImaOsC*i%|s9q!09>)m#mtY7>iT+*95b7~kBzvM6MHE=oxJ&^jV2pfnPVGltfHOL^K4pOyF-A}sUZAoGyo15%UyH}9^ddxK5Wad* z6b2$tq%VXAM4+T#o2zi{M;yC`cP@l7(@%Il8^3@QiA0Af+OIfR&SE3J7AQIEYdEYU zFNZM)A)zd(9c|pq9&g9|xIawXoU#M$7!s{v{M;*D?J%Ceb(VYu+=vy|uE0IS6wd4& zFwmQ484Gb$YI%myZ`LAk=ds)lhyj;U(SfVLK@KjDuN_{g^IMY@4DbYzCDb6 znHe$iaeKJ0M6^F{DNzmkMD(5UC+uBd6MllTSnfpr46kxcnr>jZ@jAPC0}i7?2fI~; z+PnJ{dR-{Q;%|b^kQa`*c;yb3*8!pW*SLxNZ%Bb)=ZU zCv2O6M3G>b9W;<9v3rjfiGx*2mKQ;MoW-_y6JB8L^(MT)VisSrAfN>chQi4N3xWHv z0$@4*#KvCpB?nNs*?uG*cCi=y2rs#Q@gr?IXki}(5*bnC-+{PNjGYCT$pUkW%&U%b zs8COh*TFWKaqTtAduG1&ZuW}>-!qk=LF7ZcduF%rn-7<`7>rAtV8#%!#NrTwWplHd z75aq}J2`=f$Fo9eI0@x(!*AEw=Q1&{@^E4yU)x235QM*Tf^UR+rUc~{rwoozD>j*g zk@N@^f&{lfMs7}osJI2;FGzsJtWhS3WL<=MummH*jw3Hg0*wSAixaj*s8u(oDAZ15 zFWVdV+d=fy$(lv?g2t%9_PD93WAMGU?AQRJ92+3L8eoZ;t;y3Y)GX5EXmauWgr-n4 zMJX66y>DW9LnVtcc$`%36R6RQ>^gHQ{j_H6%T1MaTRZ(eQ<~DHb)zAHP23`FkHud@ zrlMdC!T)g3Xa?aAAA_nSO~&Lglh?lf?}zTW?o6o-%s8x@o)If4wkpX0{`vT;NzdOV z7R#hC-_?C2_Arwu3)m{H_U6M-rbbfOR!Jt1pzN)Y!uY%OMQIq2x}l0`yVL=d@rM5Z D4_!FE From c590953e0d37edb0cc88c61c994bcca606bcc808 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Mon, 24 Aug 2015 11:49:36 -0700 Subject: [PATCH 18/37] Update Set-AzureVMDataDisk cmdlet --- .../Config/SetAzureVMDataDiskCommand.cs | 56 ++++++++++--------- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMDataDiskCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMDataDiskCommand.cs index ecff888b5dc3..9da45e2d5b0f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMDataDiskCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMDataDiskCommand.cs @@ -53,9 +53,18 @@ public class SetAzureVMDataDiskCommand : AzurePSCmdlet [ValidateNotNullOrEmpty] public string Name { get; set; } + [Parameter( + Mandatory = true, + Position = 1, + ParameterSetName = LunParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMDataDiskLun)] + [ValidateNotNullOrEmpty] + public int? Lun { get; set; } + [Parameter( Mandatory = false, - Position = 3, + Position = 2, ValueFromPipelineByPropertyName = true, HelpMessage = HelpMessages.VMDataDiskCaching)] [ValidateNotNullOrEmpty] @@ -64,33 +73,19 @@ public class SetAzureVMDataDiskCommand : AzurePSCmdlet [Parameter( Mandatory = false, - Position = 4, + Position = 3, ValueFromPipelineByPropertyName = true, HelpMessage = HelpMessages.VMDataDiskSizeInGB)] [AllowNull] public int? DiskSizeInGB { get; set; } - [Parameter( - Mandatory = true, - Position = 5, - ParameterSetName = LunParameterSet, - ValueFromPipelineByPropertyName = true, - HelpMessage = HelpMessages.VMDataDiskLun)] - [ValidateNotNullOrEmpty] - public int? Lun { get; set; } - public override void ExecuteCmdlet() { var storageProfile = this.VM.StorageProfile; - if (storageProfile == null) + if (storageProfile == null || storageProfile.DataDisks == null) { - storageProfile = new StorageProfile(); - } - - if (storageProfile.DataDisks == null) - { - storageProfile.DataDisks = new List(); + ThrowDataDiskNotExistError(); } var dataDisk = (this.ParameterSetName.Equals(LunParameterSet)) @@ -99,15 +94,7 @@ public override void ExecuteCmdlet() if (dataDisk == null) { - var missingDisk = (this.ParameterSetName.Equals(LunParameterSet)) - ? string.Format("LUN # {0}", this.Lun) - : "Name: " + this.Name; - ThrowTerminatingError( - new ErrorRecord( - new InvalidOperationException(string.Format(CultureInfo.InvariantCulture, Properties.Resources.DataDiskNotAssignedForVM, missingDisk)), - string.Empty, - ErrorCategory.InvalidData, - null)); + ThrowDataDiskNotExistError(); } else { @@ -125,5 +112,20 @@ public override void ExecuteCmdlet() WriteObject(this.VM); } + + private void ThrowDataDiskNotExistError() + { + var missingDisk = (this.ParameterSetName.Equals(LunParameterSet)) + ? string.Format("LUN # {0}", this.Lun) + : "Name: " + this.Name; + + ThrowTerminatingError + (new ErrorRecord( + new InvalidOperationException(string.Format(CultureInfo.InvariantCulture, + Properties.Resources.DataDiskNotAssignedForVM, missingDisk)), + string.Empty, + ErrorCategory.InvalidData, + null)); + } } } From ffffce4f47e01e073a34ce8aadae51c832f77c80 Mon Sep 17 00:00:00 2001 From: Adam Kromm Date: Thu, 20 Aug 2015 10:42:44 -0700 Subject: [PATCH 19/37] Adding Get-AzureSq1LocationCapabilities cmdlet. --- .../Commands.Sql.Test.csproj | 5 +- .../Sql/Commands.Sql.Test/packages.config | 2 +- .../Sql/Commands.Sql/Commands.Sql.csproj | 16 +- .../AzureSqlServerFirewallRuleAdapter.cs | 3 - .../AzureSqlServerFirewallRuleCommunicator.cs | 8 +- .../Cmdlet/GetAzureSqlLocationCapability.cs | 201 ++++++++++++++++++ .../Model/EditionCapabilities.cs | 38 ++++ .../Model/LocationCapabilityModel.cs | 39 ++++ .../Model/MaxSizeCapability.cs | 36 ++++ .../Model/ServerVersionCapabilities.cs | 38 ++++ .../Model/ServiceObjectiveCapability.cs | 44 ++++ .../AzureSqlLocationCapabilitiesAdapter.cs | 132 ++++++++++++ ...zureSqlLocationCapabilitiesCommunicator.cs | 88 ++++++++ .../Sql/Commands.Sql/packages.config | 2 +- 14 files changed, 634 insertions(+), 18 deletions(-) create mode 100644 src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs create mode 100644 src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilities.cs create mode 100644 src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs create mode 100644 src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapability.cs create mode 100644 src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilities.cs create mode 100644 src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapability.cs create mode 100644 src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs create mode 100644 src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesCommunicator.cs diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index e3a73b077cb3..28e7b3295f49 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -51,9 +51,6 @@ False ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll
- - ..\..\..\packages\Microsoft.Azure.Management.Sql.0.29.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll - ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll @@ -72,7 +69,7 @@ ..\..\..\packages\Microsoft.Azure.Graph.RBAC.1.7.0-preview\lib\net40\Microsoft.Azure.Graph.RBAC.dll - ..\..\..\packages\Microsoft.Azure.Management.Sql.0.36.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll + ..\..\..\packages\Microsoft.Azure.Management.Sql.0.37.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config index ef62fa673ae9..b2879cb9da8f 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql.Test/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index a5ed86ef9b5f..569a0d3c827f 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -93,6 +93,14 @@ + + + + + + + + @@ -217,10 +225,6 @@ ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.1.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True - - ..\..\..\packages\Microsoft.Azure.Management.Sql.0.36.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll - False - False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll @@ -229,6 +233,10 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + ..\..\..\packages\Microsoft.Azure.Management.Sql.0.37.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll + False + ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll diff --git a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Services/AzureSqlServerFirewallRuleAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Services/AzureSqlServerFirewallRuleAdapter.cs index e6bc6245980d..7afceaa33737 100644 --- a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Services/AzureSqlServerFirewallRuleAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Services/AzureSqlServerFirewallRuleAdapter.cs @@ -12,15 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; using System.Collections.Generic; using System.Linq; -using Microsoft.Azure.Commands.Sql.Common; using Microsoft.Azure.Commands.Sql.FirewallRule.Model; using Microsoft.Azure.Commands.Sql.FirewallRule.Services; using Microsoft.Azure.Commands.Sql.Services; using Microsoft.Azure.Common.Authentication.Models; -using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; namespace Microsoft.Azure.Commands.Sql.FirewallRule.Adapter diff --git a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Services/AzureSqlServerFirewallRuleCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Services/AzureSqlServerFirewallRuleCommunicator.cs index 613a7c7e16b8..4a8b1c86b7b8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Services/AzureSqlServerFirewallRuleCommunicator.cs +++ b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Services/AzureSqlServerFirewallRuleCommunicator.cs @@ -12,15 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System; +using System.Collections.Generic; +using Microsoft.Azure.Commands.Sql.Common; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; -using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; -using Microsoft.WindowsAzure.Management.Storage; -using System; -using System.Collections.Generic; -using Microsoft.Azure.Commands.Sql.Common; namespace Microsoft.Azure.Commands.Sql.FirewallRule.Services { diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs new file mode 100644 index 000000000000..b22c4d43ce22 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs @@ -0,0 +1,201 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Sql.Location_Capabilities.Model; +using Microsoft.Azure.Commands.Sql.Location_Capabilities.Services; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System.Linq; + +namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Cmdlet +{ + /// + /// Defines the Get-AzureSqlLocationCapability cmdlet + /// + [Cmdlet(VerbsCommon.Get, "AzureSqlLocationCapability", + ConfirmImpact = ConfirmImpact.None, + DefaultParameterSetName = _filtered)] + public class GetAzureSqlLocationCapability : AzurePSCmdlet + { + /// + /// Parameter set name for when the cmdlet is invoked without specifying -Default + /// + private const string _filtered = "FilterResults"; + + /// + /// Parameter set name for when the cmdlet is invoked with the -Default switch specified + /// + private const string _default = "DefaultResults"; + + /// + /// Gets or sets the name of the Location + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = "The name of the Location for which to get the capabilities")] + [ValidateNotNullOrEmpty] + public string LocationName { get; set; } + + /// + /// Gets or sets the name of the server version + /// + [Parameter(Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the server version for which to get the capabilities", + ParameterSetName = _filtered)] + [ValidateNotNullOrEmpty] + public string ServerVersionName { get; set; } + + /// + /// Gets or sets the name of the database edition + /// + [Parameter(Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the database edition for which to get the capabilities", + ParameterSetName = _filtered)] + [ValidateNotNullOrEmpty] + public string EditionName { get; set; } + + /// + /// Gets or sets the name of the edition service level objective + /// + [Parameter(Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the edition Service Objective for which to get the capabilities", + ParameterSetName = _filtered)] + [ValidateNotNullOrEmpty] + public string ServiceObjectiveName { get; set; } + + [Parameter(Mandatory = false, + HelpMessage = "Indicates that the results should be filtered such that only defaults are shown", + ParameterSetName = _default)] + public SwitchParameter Defaults { get; set; } + + /// + /// Executes the cmdlet + /// + public override void ExecuteCmdlet() + { + AzureSqlLocationCapabilitiesAdapter adapter = new AzureSqlLocationCapabilitiesAdapter(Profile, Profile.Context.Subscription); + LocationCapabilityModel model = adapter.GetLocationCapabilities(LocationName); + + switch(ParameterSetName) + { + case _default: + { + FilterByDefaults(model); + } + break; + case _filtered: + { + if (this.MyInvocation.BoundParameters.ContainsKey("ServerVersionName")) + { + FilterByServerVersion(model); + } + if (this.MyInvocation.BoundParameters.ContainsKey("EditionName")) + { + FilterByEditionName(model); + } + if (this.MyInvocation.BoundParameters.ContainsKey("ServiceObjectiveName")) + { + FilterByServiceObjectiveName(model); + } + } + break; + } + + this.WriteObject(model); + } + + /// + /// Filter the results based on what is marked as status + /// + /// The model to filter + private void FilterByDefaults(LocationCapabilityModel model) + { + model.SupportedServerVersions = model.SupportedServerVersions.Where(v => { return v.Status == "Default"; }).ToList(); + + // Get all defaults + var defaultVersion = model.SupportedServerVersions; + defaultVersion[0].SupportedEditions = defaultVersion[0].SupportedEditions.Where(v => { return v.Status == "Default"; }).ToList(); + var defaultEdition = defaultVersion[0].SupportedEditions; + defaultEdition[0].SupportedServiceLevelObjectives = defaultEdition[0].SupportedServiceLevelObjectives.Where(v => { return v.Status == "Default"; }).ToList(); + var defaultServiceObjective = defaultEdition[0].SupportedServiceLevelObjectives; + + // Assign defaults back to model. + defaultServiceObjective[0].SupportedMaxSizes = defaultServiceObjective[0].SupportedMaxSizes.Where(v => { return v.Status == "Default"; }).ToList(); + defaultEdition[0].SupportedServiceLevelObjectives = defaultServiceObjective; + defaultVersion[0].SupportedEditions = defaultEdition; + model.SupportedServerVersions = defaultVersion; + } + + /// + /// Filter the results based on the Service Objective Name + /// + /// The model to filter + private void FilterByServiceObjectiveName(LocationCapabilityModel model) + { + foreach (var version in model.SupportedServerVersions) + { + foreach (var edition in version.SupportedEditions) + { + // Remove all service objectives with a name that does not match the desired value + edition.SupportedServiceLevelObjectives = + edition.SupportedServiceLevelObjectives + .Where(slo => { return slo.ServiceObjectiveName == this.ServiceObjectiveName; }) + .ToList(); + } + + // Remove editions that have no supported service objectives after filtering + version.SupportedEditions = version.SupportedEditions.Where(e => e.SupportedServiceLevelObjectives.Count > 0).ToList(); + } + + // Remove server versions that have no supported editions after filtering + model.SupportedServerVersions = model.SupportedServerVersions.Where(v => v.SupportedEditions.Count > 0).ToList(); + } + + /// + /// Filter the results based on the Edition Name + /// + /// The model to filter + private void FilterByEditionName(LocationCapabilityModel model) + { + foreach(var version in model.SupportedServerVersions) + { + // Remove all editions that do not match the desired edition name + version.SupportedEditions = + version.SupportedEditions + .Where(e => { return e.EditionName == this.EditionName; }) + .ToList(); + } + + // Remove server versions that have no supported editions after filtering + model.SupportedServerVersions = model.SupportedServerVersions.Where(v => v.SupportedEditions.Count > 0).ToList(); + } + + /// + /// Filter the results based on the server version name + /// + /// The model to filter + private void FilterByServerVersion(LocationCapabilityModel model) + { + // Remove all server versions that don't match the desired name + model.SupportedServerVersions = + model.SupportedServerVersions + .Where(obj => { return obj.ServerVersionName == this.ServerVersionName; }) + .ToList(); + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilities.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilities.cs new file mode 100644 index 000000000000..a3e9d0b553f7 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilities.cs @@ -0,0 +1,38 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model +{ + /// + /// Represents an Edition for an Azure SQL Database and its capabilities + /// + public class EditionCapabilities + { + /// + /// Gets or sets the name of the Edition + /// + public string EditionName { get; set; } + + /// + /// Gets or sets the status of the Edition with respect to Azure SQL Server version for the current subscription + /// + public string Status { get; set; } + + /// + /// Gets or sets the list of supported Service Level Objectives and their capabilities. + /// + public IList SupportedServiceLevelObjectives { get; set; } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs new file mode 100644 index 000000000000..28f9335ae5dc --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model +{ + /// + /// Represents the capabilities available in a region + /// + public class LocationCapabilityModel + { + /// + /// Gets or sets the name of the region + /// + public string LocationName { get; set; } + + /// + /// Gets or sets the status of the region with respect to Azure SQL for the current subscription + /// + public string Status { get; set; } + + /// + /// Gets or sets a list of all the supported server versions and their capabilities + /// + public IList SupportedServerVersions { get; set; } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapability.cs new file mode 100644 index 000000000000..06163a74522e --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapability.cs @@ -0,0 +1,36 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model +{ + /// + /// Represents a supported Azure SQL Database Maximum size + /// + public class MaxSizeCapability + { + /// + /// Gets or sets the max size limit + /// + public int Limit { get; set; } + + /// + /// Gets or sets the units for the max size limit + /// + public string Unit { get; set; } + + /// + /// Gets or sets the status for this max size for the given: Subscription, Server Version, Edition, Service Level Objective combination. + /// + public string Status { get; set; } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilities.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilities.cs new file mode 100644 index 000000000000..e2e94fe87847 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilities.cs @@ -0,0 +1,38 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model +{ + /// + /// Represents the capabilities of a server version + /// + public class ServerVersionCapabilities + { + /// + /// Gets or sets the name of the Server Version + /// + public string ServerVersionName { get; set; } + + /// + /// Gets or sets the status of the Azure SQL Server Version with respect to the current subscription + /// + public string Status { get; set; } + + /// + /// Gets or sets the list of supported datababase Editions and their capabilities + /// + public IList SupportedEditions { get; set; } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapability.cs new file mode 100644 index 000000000000..a6a3a58332ee --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapability.cs @@ -0,0 +1,44 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model +{ + /// + /// Represents a Service Level Objective and its capabilities + /// + public class ServiceObjectiveCapability + { + /// + /// Gets or sets the name of the Service Level Objective + /// + public string ServiceObjectiveName { get; set; } + + /// + /// Gets or sets the status of the Service Level Objective for the given: Subscription, Server Version, Database Edition combination. + /// + public string Status { get; set; } + + /// + /// Gets or sets the unique ID of the Service Level Objecive + /// + public Guid Id { get; set; } + + /// + /// Gets or sets the list of supported max sizes and their capabilities + /// + public IList SupportedMaxSizes { get; internal set; } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs new file mode 100644 index 000000000000..4e65ce71b0c9 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs @@ -0,0 +1,132 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using Microsoft.Azure; +using Microsoft.Azure.Commands.Sql.Location_Capabilities.Model; +using Microsoft.Azure.Commands.Sql.Services; +using Microsoft.Azure.Common.Authentication.Models; + +namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Services +{ + public class AzureSqlLocationCapabilitiesAdapter + { + /// + /// The communicator for interacting with the service APIs + /// + private AzureSqlLocationCapabilitiesCommunicator _communicator; + + /// + /// Gets or sets the Azure profile + /// + public AzureProfile Profile { get; set; } + + /// + /// Constructs a firewall rule adapter + /// + /// The current azure profile + /// The current azure subscription + public AzureSqlLocationCapabilitiesAdapter(AzureProfile profile, AzureSubscription subscription) + { + Profile = profile; + _communicator = new AzureSqlLocationCapabilitiesCommunicator(Profile, subscription); + } + + /// + /// Gets the capabilities for the specified location + /// + /// The name of the location for which to get the capabilities + /// + public LocationCapabilityModel GetLocationCapabilities(string locationName) + { + var resp = _communicator.Get(locationName, Util.GenerateTracingId()); + return CreateLocationCapabilityModel(resp); + } + + /// + /// Converts from an API object to a PowerShell object + /// + /// The object to transform + /// The converted location capability model + private LocationCapabilityModel CreateLocationCapabilityModel(Management.Sql.Models.LocationCapability resp) + { + LocationCapabilityModel model = new LocationCapabilityModel(); + model.LocationName = resp.Name; + model.Status = resp.Status; + model.SupportedServerVersions = resp.SupportedServerVersions.Select(v => { return CreateSupportedVersionsModel(v); }).ToList(); + return model; + } + + /// + /// Converts from an API object to a PowerShell object + /// + /// The object to transform + /// The converted server version capability model + private ServerVersionCapabilities CreateSupportedVersionsModel(Management.Sql.Models.ServerVersionCapability v) + { + ServerVersionCapabilities version = new ServerVersionCapabilities(); + version.ServerVersionName = v.Name; + version.Status = v.Status; + version.SupportedEditions = v.SupportedEditions.Select(e => { return CreateSupportedEditionModel(e); }).ToList(); + return version; + } + + /// + /// Converts from an API object to a PowerShell object + /// + /// The object to transform + /// The converted database edition capability model + private EditionCapabilities CreateSupportedEditionModel(Management.Sql.Models.EditionCapability e) + { + EditionCapabilities edition = new EditionCapabilities(); + edition.EditionName = e.Name; + edition.Status = e.Status; + edition.SupportedServiceLevelObjectives = e.SupportedServiceObjectives.Select(slo => { return CreateSupportedSLOModel(slo); }).ToList(); + return edition; + } + + /// + /// Converts from an API object to a PowerShell object + /// + /// The object to transform + /// The converted edition Service Level Objective capability model + private ServiceObjectiveCapability CreateSupportedSLOModel(Management.Sql.Models.ServiceObjectiveCapability s) + { + ServiceObjectiveCapability slo = new ServiceObjectiveCapability(); + + slo.Id = s.Id; + slo.ServiceObjectiveName = s.Name; + slo.Status = s.Status; + slo.SupportedMaxSizes = s.SupportedMaxSizes.Select(m => { return CreateSupportedMaxSizeModel(m); }).ToList(); + + return slo; + } + + /// + /// Converts from an API object to a PowerShell object + /// + /// The object to transform + /// The converted database max size capability model + private MaxSizeCapability CreateSupportedMaxSizeModel(Management.Sql.Models.MaxSizeCapability m) + { + MaxSizeCapability maxSize = new MaxSizeCapability(); + + maxSize.Limit = m.Limit; + maxSize.Status = m.Status; + maxSize.Unit = m.Unit; + + return maxSize; + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesCommunicator.cs new file mode 100644 index 000000000000..6af264037c20 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesCommunicator.cs @@ -0,0 +1,88 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; + +namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Services +{ + /// + /// Communicator class for communicating between APIs and powershell cmdlet + /// + public class AzureSqlLocationCapabilitiesCommunicator + { + /// + /// The SQL Management Client to be used by the communicator + /// + private static SqlManagementClient SqlClient { get; set; } + + /// + /// Gets or set the Azure subscription + /// + private static AzureSubscription Subscription { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public AzureProfile Profile { get; set; } + + /// + /// Creates a communicator for Azure Sql Databases FirewallRules + /// + /// + /// + public AzureSqlLocationCapabilitiesCommunicator(AzureProfile profile, AzureSubscription subscription) + { + Profile = profile; + if (subscription != Subscription) + { + Subscription = subscription; + SqlClient = null; + } + } + + /// + /// Gets the Location Capabilities for the specified region for the current subscription. + /// + /// The name of the region for which to get the location capabilities + /// The client request ID to use + /// The location capabilities for the region + public LocationCapability Get(string locationName, string clientRequestId) + { + return GetCurrentSqlClient(clientRequestId).Capabilities.Get(locationName).Capabilities; + } + + /// + /// Retrieve the SQL Management client for the currently selected subscription, adding the session and request + /// id tracing headers for the current cmdlet invocation. + /// + /// The SQL Management client for the currently selected subscription. + private SqlManagementClient GetCurrentSqlClient(String clientRequestId) + { + // Get the SQL management client for the current subscription + if (SqlClient == null) + { + SqlClient = AzureSession.ClientFactory.CreateClient(Profile, Subscription, AzureEnvironment.Endpoint.ResourceManager); + } + + SqlClient.HttpClient.DefaultRequestHeaders.Remove(Constants.ClientRequestIdHeaderName); + SqlClient.HttpClient.DefaultRequestHeaders.Add(Constants.ClientRequestIdHeaderName, clientRequestId); + + return SqlClient; + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/packages.config b/src/ResourceManager/Sql/Commands.Sql/packages.config index 921846e9d034..97c8df2ae80d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql/packages.config @@ -5,7 +5,7 @@ - + From 4e7c996d8d432b46424703286d6c5c4ec08c62fd Mon Sep 17 00:00:00 2001 From: Adam Kromm Date: Thu, 20 Aug 2015 10:48:03 -0700 Subject: [PATCH 20/37] Renaming some classes. --- .../Sql/Commands.Sql/Commands.Sql.csproj | 8 ++++---- ...Capabilities.cs => EditionCapabilityModel.cs} | 4 ++-- .../Model/LocationCapabilityModel.cs | 2 +- ...zeCapability.cs => MaxSizeCapabilityModel.cs} | 2 +- ...lities.cs => ServerVersionCapabilityModel.cs} | 4 ++-- ...ity.cs => ServiceObjectiveCapabilityModel.cs} | 4 ++-- .../AzureSqlLocationCapabilitiesAdapter.cs | 16 ++++++++-------- 7 files changed, 20 insertions(+), 20 deletions(-) rename src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/{EditionCapabilities.cs => EditionCapabilityModel.cs} (90%) rename src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/{MaxSizeCapability.cs => MaxSizeCapabilityModel.cs} (97%) rename src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/{ServerVersionCapabilities.cs => ServerVersionCapabilityModel.cs} (91%) rename src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/{ServiceObjectiveCapability.cs => ServiceObjectiveCapabilityModel.cs} (92%) diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index 569a0d3c827f..c4e3c2966c61 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -94,11 +94,11 @@ - + - - - + + + diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilities.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilityModel.cs similarity index 90% rename from src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilities.cs rename to src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilityModel.cs index a3e9d0b553f7..c507f260c410 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilities.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilityModel.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model /// /// Represents an Edition for an Azure SQL Database and its capabilities /// - public class EditionCapabilities + public class EditionCapabilityModel { /// /// Gets or sets the name of the Edition @@ -33,6 +33,6 @@ public class EditionCapabilities /// /// Gets or sets the list of supported Service Level Objectives and their capabilities. /// - public IList SupportedServiceLevelObjectives { get; set; } + public IList SupportedServiceLevelObjectives { get; set; } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs index 28f9335ae5dc..f7c305c3737c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs @@ -34,6 +34,6 @@ public class LocationCapabilityModel /// /// Gets or sets a list of all the supported server versions and their capabilities /// - public IList SupportedServerVersions { get; set; } + public IList SupportedServerVersions { get; set; } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapabilityModel.cs similarity index 97% rename from src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapability.cs rename to src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapabilityModel.cs index 06163a74522e..e606253e0fa8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapability.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/MaxSizeCapabilityModel.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model /// /// Represents a supported Azure SQL Database Maximum size /// - public class MaxSizeCapability + public class MaxSizeCapabilityModel { /// /// Gets or sets the max size limit diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilities.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilityModel.cs similarity index 91% rename from src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilities.cs rename to src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilityModel.cs index e2e94fe87847..eedf012e77e7 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilities.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServerVersionCapabilityModel.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model /// /// Represents the capabilities of a server version /// - public class ServerVersionCapabilities + public class ServerVersionCapabilityModel { /// /// Gets or sets the name of the Server Version @@ -33,6 +33,6 @@ public class ServerVersionCapabilities /// /// Gets or sets the list of supported datababase Editions and their capabilities /// - public IList SupportedEditions { get; set; } + public IList SupportedEditions { get; set; } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapabilityModel.cs similarity index 92% rename from src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapability.cs rename to src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapabilityModel.cs index a6a3a58332ee..a25d2bbdfbd8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapability.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/ServiceObjectiveCapabilityModel.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Model /// /// Represents a Service Level Objective and its capabilities /// - public class ServiceObjectiveCapability + public class ServiceObjectiveCapabilityModel { /// /// Gets or sets the name of the Service Level Objective @@ -39,6 +39,6 @@ public class ServiceObjectiveCapability /// /// Gets or sets the list of supported max sizes and their capabilities /// - public IList SupportedMaxSizes { get; internal set; } + public IList SupportedMaxSizes { get; internal set; } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs index 4e65ce71b0c9..68057e853a32 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs @@ -73,9 +73,9 @@ private LocationCapabilityModel CreateLocationCapabilityModel(Management.Sql.Mod /// /// The object to transform /// The converted server version capability model - private ServerVersionCapabilities CreateSupportedVersionsModel(Management.Sql.Models.ServerVersionCapability v) + private ServerVersionCapabilityModel CreateSupportedVersionsModel(Management.Sql.Models.ServerVersionCapability v) { - ServerVersionCapabilities version = new ServerVersionCapabilities(); + ServerVersionCapabilityModel version = new ServerVersionCapabilityModel(); version.ServerVersionName = v.Name; version.Status = v.Status; version.SupportedEditions = v.SupportedEditions.Select(e => { return CreateSupportedEditionModel(e); }).ToList(); @@ -87,9 +87,9 @@ private ServerVersionCapabilities CreateSupportedVersionsModel(Management.Sql.Mo /// /// The object to transform /// The converted database edition capability model - private EditionCapabilities CreateSupportedEditionModel(Management.Sql.Models.EditionCapability e) + private EditionCapabilityModel CreateSupportedEditionModel(Management.Sql.Models.EditionCapability e) { - EditionCapabilities edition = new EditionCapabilities(); + EditionCapabilityModel edition = new EditionCapabilityModel(); edition.EditionName = e.Name; edition.Status = e.Status; edition.SupportedServiceLevelObjectives = e.SupportedServiceObjectives.Select(slo => { return CreateSupportedSLOModel(slo); }).ToList(); @@ -101,9 +101,9 @@ private EditionCapabilities CreateSupportedEditionModel(Management.Sql.Models.Ed /// /// The object to transform /// The converted edition Service Level Objective capability model - private ServiceObjectiveCapability CreateSupportedSLOModel(Management.Sql.Models.ServiceObjectiveCapability s) + private ServiceObjectiveCapabilityModel CreateSupportedSLOModel(Management.Sql.Models.ServiceObjectiveCapability s) { - ServiceObjectiveCapability slo = new ServiceObjectiveCapability(); + ServiceObjectiveCapabilityModel slo = new ServiceObjectiveCapabilityModel(); slo.Id = s.Id; slo.ServiceObjectiveName = s.Name; @@ -118,9 +118,9 @@ private ServiceObjectiveCapability CreateSupportedSLOModel(Management.Sql.Models /// /// The object to transform /// The converted database max size capability model - private MaxSizeCapability CreateSupportedMaxSizeModel(Management.Sql.Models.MaxSizeCapability m) + private MaxSizeCapabilityModel CreateSupportedMaxSizeModel(Management.Sql.Models.MaxSizeCapability m) { - MaxSizeCapability maxSize = new MaxSizeCapability(); + MaxSizeCapabilityModel maxSize = new MaxSizeCapabilityModel(); maxSize.Limit = m.Limit; maxSize.Status = m.Status; From dda805ba07f1d49a6d9baeaecaab03bbc41ca1b1 Mon Sep 17 00:00:00 2001 From: Adam Kromm Date: Thu, 20 Aug 2015 14:58:19 -0700 Subject: [PATCH 21/37] Adding tests, and converting others to check-in tests --- .../Commands.Sql.Test.csproj | 8 + .../ScenarioTests/AuditingTests.cs | 52 ++-- .../ScenarioTests/Common.ps1 | 1 - .../ScenarioTests/DataMaskingTests.cs | 14 +- .../ScenarioTests/DatabaseActivationTests.cs | 4 +- .../ScenarioTests/DatabaseBackupTests.cs | 2 +- .../ScenarioTests/DatabaseCrudTests.cs | 16 +- .../ScenarioTests/ElasticPoolCrudTests.cs | 10 +- .../ScenarioTests/IndexRecommendationTests.cs | 4 +- .../LocationCapabilitiesTests.cs | 30 ++ .../LocationCapabilitiesTests.ps1 | 79 +++++ .../RecommendedElasticPoolTests.cs | 2 +- .../ServerActiveDirectoryAdministratorTest.cs | 2 +- .../ScenarioTests/ServerCrudTests.cs | 8 +- .../ScenarioTests/ServerUpgradeTests.cs | 6 +- .../ScenarioTests/ServiceTierAdvisorTests.cs | 4 +- .../TransparentDataEncryptionCrudTests.cs | 4 +- .../TestLocationCapabilities.json | 281 ++++++++++++++++++ ...AzureSqlDatabaseActivationAttributeTest.cs | 4 +- .../AzureSqlDatabaseAttributeTests.cs | 8 +- .../AzureSqlDatabaseBackupAttributeTests.cs | 2 +- ...tabaseIndexRecommendationAttributeTests.cs | 6 +- .../AzureSqlDatabaseServerAttributeTests.cs | 8 +- ...atabaseServerFirewallRuleAttributeTests.cs | 8 +- ...aseServerServiceObjectiveAttributeTests.cs | 2 +- ...zureSqlLocationCapabilityAttributeTests.cs | 40 +++ .../AzureSqlServerUpgradeAttributeTests.cs | 6 +- ...zureSqlServiceTierAdvisorAttributeTests.cs | 6 +- .../Cmdlet/GetAzureSqlLocationCapability.cs | 12 +- .../Model/EditionCapabilityModel.cs | 4 +- .../AzureSqlLocationCapabilitiesAdapter.cs | 2 +- 31 files changed, 536 insertions(+), 99 deletions(-) create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.cs create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.ps1 create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.LocationCapabilitiesTests/TestLocationCapabilities.json create mode 100644 src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlLocationCapabilityAttributeTests.cs diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index 28e7b3295f49..42723306cf17 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -189,6 +189,9 @@ + + Always + PreserveNewest @@ -207,6 +210,7 @@ Always + @@ -225,6 +229,7 @@ + @@ -486,6 +491,9 @@ Always + + Always + PreserveNewest diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.cs index f084b9948cd4..c6bf513ae7ab 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/AuditingTests.cs @@ -44,182 +44,182 @@ protected override void SetupManagementClients() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyWithStorage() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyWithStorage"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyWithStorageV2() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyWithStorageV2"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerUpdatePolicyWithStorage() { RunPowerShellTest("Test-AuditingServerUpdatePolicyWithStorage"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyWithEventTypes() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyWithEventTypes"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerUpdatePolicyWithEventTypes() { RunPowerShellTest("Test-AuditingServerUpdatePolicyWithEventTypes"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDisableDatabaseAuditing() { RunPowerShellTest("Test-AuditingDisableDatabaseAuditing"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDisableServerAuditing() { RunPowerShellTest("Test-AuditingDisableServerAuditing"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseDisableEnableKeepProperties() { RunPowerShellTest("Test-AuditingDatabaseDisableEnableKeepProperties"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerDisableEnableKeepProperties() { RunPowerShellTest("Test-AuditingServerDisableEnableKeepProperties"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingUseServerDefault() { RunPowerShellTest("Test-AuditingUseServerDefault"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingFailedDatabaseUpdatePolicyWithNoStorage() { RunPowerShellTest("Test-AuditingFailedDatabaseUpdatePolicyWithNoStorage"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingFailedServerUpdatePolicyWithNoStorage() { RunPowerShellTest("Test-AuditingFailedServerUpdatePolicyWithNoStorage"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingFailedUseServerDefault() { RunPowerShellTest("Test-AuditingFailedUseServerDefault"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyWithEventTypeShortcuts() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyWithEventTypeShortcuts"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerUpdatePolicyWithEventTypeShortcuts() { RunPowerShellTest("Test-AuditingServerUpdatePolicyWithEventTypeShortcuts"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyKeepPreviousStorage() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyKeepPreviousStorage"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerUpdatePolicyKeepPreviousStorage() { RunPowerShellTest("Test-AuditingServerUpdatePolicyKeepPreviousStorage"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingFailWithBadDatabaseIndentity() { RunPowerShellTest("Test-AuditingFailWithBadDatabaseIndentity"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingFailWithBadServerIndentity() { RunPowerShellTest("Test-AuditingFailWithBadServerIndentity"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseStorageKeyRotation() { RunPowerShellTest("Test-AuditingDatabaseStorageKeyRotation"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerStorageKeyRotation() { RunPowerShellTest("Test-AuditingServerStorageKeyRotation"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerUpdatePolicyWithRetention() { RunPowerShellTest("Test-AuditingServerUpdatePolicyWithRetention"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyWithRetention() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyWithRetention"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingServerRetentionKeepProperties() { RunPowerShellTest("Test-AuditingServerRetentionKeepProperties"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseRetentionKeepProperties() { RunPowerShellTest("Test-AuditingDatabaseRetentionKeepProperties"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestAuditingDatabaseUpdatePolicyWithSameNameStorageOnDifferentRegion() { RunPowerShellTest("Test-AuditingDatabaseUpdatePolicyWithSameNameStorageOnDifferentRegion"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 index db018d20c055..b52116cb13d4 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 @@ -171,7 +171,6 @@ function Create-ResourceGroupForTest () return $rg } - <# .SYNOPSIS removes a resource group that was used for testing diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.cs index e42e87c6f920..45966ecabf5a 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.cs @@ -22,49 +22,49 @@ public class DataMaskingTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseDataMaskingPolicyEnablementToggling() { RunPowerShellTest("Test-DatabaseDataMaskingPolicyEnablementToggling"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseDataMaskingPrivilegedLoginsChanges() { RunPowerShellTest("Test-DatabaseDataMaskingPrivilegedLoginsChanges"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseDataMaskingBasicRuleLifecycle() { RunPowerShellTest("Test-DatabaseDataMaskingBasicRuleLifecycle"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseDataMaskingNumberRuleLifecycle() { RunPowerShellTest("Test-DatabaseDataMaskingNumberRuleLifecycle"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseDataMaskingTextRuleLifecycle() { RunPowerShellTest("Test-DatabaseDataMaskingTextRuleLifecycle"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseDataMaskingRuleCreationFailures() { RunPowerShellTest("Test-DatabaseDataMaskingRuleCreationFailures"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseDataMaskingRuleCreationWithoutPolicy() { RunPowerShellTest("Test-DatabaseDataMaskingRuleCreationWithoutPolicy"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseActivationTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseActivationTests.cs index 636e9fca1c92..68d7866fd7f1 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseActivationTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseActivationTests.cs @@ -21,14 +21,14 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class DatabaseActivationTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabasePauseResume() { RunPowerShellTest("Test-DatabasePauseResume"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabasePauseResumePiped() { RunPowerShellTest("Test-DatabasePauseResumePiped"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseBackupTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseBackupTests.cs index e85c4ae2773d..36a4bb78d185 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseBackupTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseBackupTests.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class DatabaseBackupTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestListDatabaseRestorePoints() { RunPowerShellTest("Test-ListDatabaseRestorePoints"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.cs index 97530df919c9..9a23b6e80a9b 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.cs @@ -21,56 +21,56 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class DatabaseCrudTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseCreate() { RunPowerShellTest("Test-CreateDatabase"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseUpdate() { RunPowerShellTest("Test-UpdateDatabase"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseGet() { RunPowerShellTest("Test-GetDatabase"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseRemove() { RunPowerShellTest("Test-RemoveDatabase"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseCreateV2() { RunPowerShellTest("Test-CreateDatabaseV2"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseUpdateV2() { RunPowerShellTest("Test-UpdateDatabaseV2"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseGetV2() { RunPowerShellTest("Test-GetDatabaseV2"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseRemoveV2() { RunPowerShellTest("Test-RemoveDatabaseV2"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs index 3b5b030343c4..4875004a22b4 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs @@ -21,35 +21,35 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class ElasticPoolCrudTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.Sql)] public void TestElasticPoolCreate() { RunPowerShellTest("Test-CreateElasticPool"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestElasticPoolUpdate() { RunPowerShellTest("Test-UpdateElasticPool"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestElasticPoolGet() { RunPowerShellTest("Test-GetElasticPool"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestElasticPoolMetricGet() { RunPowerShellTest("Test-GetElasticPoolMetric"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestElasticPoolRemove() { RunPowerShellTest("Test-RemoveElasticPool"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/IndexRecommendationTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/IndexRecommendationTests.cs index 628e740dc997..ff5a2a424e94 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/IndexRecommendationTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/IndexRecommendationTests.cs @@ -21,14 +21,14 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class IndexRecommendationTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetIndexRecommendation() { RunPowerShellTest("Test-GetIndexRecommendations"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCreateIndex() { RunPowerShellTest("Test-CreateIndex"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.cs new file mode 100644 index 000000000000..a26fd18ee04d --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.cs @@ -0,0 +1,30 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ScenarioTest.SqlTests; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests +{ + public class LocationCapabilitiesTests : SqlTestsBase + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestLocationCapabilities() + { + RunPowerShellTest("Test-LocationCapabilities"); + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.ps1 new file mode 100644 index 000000000000..f82164ad067e --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.ps1 @@ -0,0 +1,79 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# + .SYNOPSIS + Tests the Get-AzureSqlLocationCapabilities cmdlet +#> +function Test-LocationCapabilities +{ + $location = "North Europe" + $all = Get-AzureSqlLocationCapability $location + Validate-LocationCapabilities $all + + $default = Get-AzureSqlLocationCapability $location -Defaults + Validate-LocationCapabilities $default + + $version = Get-AzureSqlLocationCapability $location -ServerVersionName "12.0" + Validate-LocationCapabilities $default + + $edition = Get-AzureSqlLocationCapability $location -EditionName "Premium" + Validate-LocationCapabilities $default + + $so = Get-AzureSqlLocationCapability $location -ServiceObjectiveName "S3" + Validate-LocationCapabilities $default + +} + +<# + .SYNOPSIS + Validates that a LocationCapabilities object is valid and has all properties filled out +#> +function Validate-LocationCapabilities ($capabilities) +{ + Assert-NotNull $capabilities + Assert-AreEqual $capabilities.Status "Available" + Assert-True {$capabilities.SupportedServerVersions.Count -gt 0} + + foreach($version in $capabilities.SupportedServerVersions) { + Assert-NotNull $version + Assert-NotNull $version.ServerVersionName + Assert-NotNull $version.Status + Assert-True {$version.SupportedEditions.Count -gt 0} + + foreach($edition in $version.SupportedEditions) { + Assert-NotNull $edition + Assert-NotNull $edition.EditionName + Assert-NotNull $edition.Status + Assert-True {$edition.SupportedServiceObjectives.Count -gt 0} + + foreach($so in $edition.SupportedServiceObjectives) { + Assert-NotNull $so + Assert-NotNull $so.ServiceObjectiveName + Assert-NotNull $so.Status + Assert-NotNull $so.Id + Assert-AreNotEqual $so.Id [System.Guid]::Empty + Assert-True {$so.SupportedMaxSizes.Count -gt 0} + + foreach($size in $so.SupportedMaxSizes) { + Assert-NotNull $size + Assert-NotNull $size.Limit + Assert-True { $size.Limit -gt 0 } + Assert-NotNull $size.Unit + Assert-NotNull $size.Status + } + } + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/RecommendedElasticPoolTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/RecommendedElasticPoolTests.cs index 4d36ad820cec..68ebde253e6e 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/RecommendedElasticPoolTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/RecommendedElasticPoolTests.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class RecommendedElasticPoolTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void ListRecommendedElasticPools() { RunPowerShellTest("Test-ElasticPoolRecommendation"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerActiveDirectoryAdministratorTest.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerActiveDirectoryAdministratorTest.cs index 486b8a4eedce..838166176e7c 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerActiveDirectoryAdministratorTest.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerActiveDirectoryAdministratorTest.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class ServerActiveDirectoryAdministratorTest : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestServerActiveDirectoryAdministratorCRUD() { RunPowerShellTest("Test-ServerActiveDirectoryAdministrator"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerCrudTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerCrudTests.cs index 410ef64590cf..40dc86c04a32 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerCrudTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerCrudTests.cs @@ -21,28 +21,28 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class ServerCrudTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestServerCreate() { RunPowerShellTest("Test-CreateServer"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestServerUpdate() { RunPowerShellTest("Test-UpdateServer"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestServerGet() { RunPowerShellTest("Test-GetServer"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestServerRemove() { RunPowerShellTest("Test-RemoveServer"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerUpgradeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerUpgradeTests.cs index 4a8a547ff192..4b0747da07f9 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerUpgradeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServerUpgradeTests.cs @@ -21,21 +21,21 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class ServerUpgradeTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestServerUpgradeWithUpgradeHint() { RunPowerShellTest("Test-ServerUpgradeWithUpgradeHint"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestServerUpgradeAndCancel() { RunPowerShellTest("Test-ServerUpgradeAndCancel"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestServerUpgradeNegative() { RunPowerShellTest("Test-ServerUpgradeNegative"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServiceTierAdvisorTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServiceTierAdvisorTests.cs index 23a8b965ff57..32dd9fc956f3 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServiceTierAdvisorTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ServiceTierAdvisorTests.cs @@ -21,14 +21,14 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class ServiceTierAdvisorTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetUpgradeDatabaseHint() { RunPowerShellTest("Test-GetUpgradeDatabaseHint"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetUpgradeServerHint() { RunPowerShellTest("Test-GetUpgradeServerHint"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/TransparentDataEncryptionCrudTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/TransparentDataEncryptionCrudTests.cs index d79a412c911c..7f292f591ad5 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/TransparentDataEncryptionCrudTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/TransparentDataEncryptionCrudTests.cs @@ -21,14 +21,14 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests public class TransparentDataEncryptionCrudTests : SqlTestsBase { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseTransparentDataEncryptionUpdate() { RunPowerShellTest("Test-UpdateTransparentDataEncryption"); } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDatabaseTransparentDataEncryptionGet() { RunPowerShellTest("Test-GetTransparentDataEncryption"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.LocationCapabilitiesTests/TestLocationCapabilities.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.LocationCapabilitiesTests/TestLocationCapabilities.json new file mode 100644 index 000000000000..8192e55c7044 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.LocationCapabilitiesTests/TestLocationCapabilities.json @@ -0,0 +1,281 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/providers/Microsoft.Sql/locations/North%20Europe/capabilities?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9Ob3J0aCUyMEV1cm9wZS9jYXBhYmlsaXRpZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4b52a261-ea8f-4e05-8441-c0c13db8c9ac" + ] + }, + "ResponseBody": "{\r\n \"name\": \"North Europe\",\r\n \"status\": \"Available\",\r\n \"supportedServerVersions\": [\r\n {\r\n \"name\": \"12.0\",\r\n \"status\": \"Default\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Default\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7c4c615-cfb1-464b-b252-925be0a19446\",\r\n \"name\": \"P3\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc\",\r\n \"name\": \"P4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"dd00d544-bbc0-4f61-ba60-cdce0c410288\",\r\n \"name\": \"P11\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1000,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1024,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9395" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "068312c4-ed1b-4e78-8034-71a017961d4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "2a75aa79-d999-4e28-a551-ff343f95b2ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T214432Z:2a75aa79-d999-4e28-a551-ff343f95b2ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 21:44:31 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/providers/Microsoft.Sql/locations/North%20Europe/capabilities?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9Ob3J0aCUyMEV1cm9wZS9jYXBhYmlsaXRpZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f73464f-9a4a-4d8f-87ec-f8c5245ff35e" + ] + }, + "ResponseBody": "{\r\n \"name\": \"North Europe\",\r\n \"status\": \"Available\",\r\n \"supportedServerVersions\": [\r\n {\r\n \"name\": \"12.0\",\r\n \"status\": \"Default\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Default\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7c4c615-cfb1-464b-b252-925be0a19446\",\r\n \"name\": \"P3\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc\",\r\n \"name\": \"P4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"dd00d544-bbc0-4f61-ba60-cdce0c410288\",\r\n \"name\": \"P11\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1000,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1024,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9395" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "3338f322-da34-4b6c-b184-f08a27f7316f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "d0a6651c-f859-4166-9461-1f4952e5dac6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T214433Z:d0a6651c-f859-4166-9461-1f4952e5dac6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 21:44:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/providers/Microsoft.Sql/locations/North%20Europe/capabilities?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9Ob3J0aCUyMEV1cm9wZS9jYXBhYmlsaXRpZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5aaa561d-ea7b-445e-b533-45d15a7aa055" + ] + }, + "ResponseBody": "{\r\n \"name\": \"North Europe\",\r\n \"status\": \"Available\",\r\n \"supportedServerVersions\": [\r\n {\r\n \"name\": \"12.0\",\r\n \"status\": \"Default\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Default\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7c4c615-cfb1-464b-b252-925be0a19446\",\r\n \"name\": \"P3\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc\",\r\n \"name\": \"P4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"dd00d544-bbc0-4f61-ba60-cdce0c410288\",\r\n \"name\": \"P11\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1000,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1024,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9395" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "13dadfe9-da25-4672-9f31-bf54103a9928" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "1da78283-c63b-48be-9d14-3a81650afe1b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T214433Z:1da78283-c63b-48be-9d14-3a81650afe1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 21:44:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/providers/Microsoft.Sql/locations/North%20Europe/capabilities?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9Ob3J0aCUyMEV1cm9wZS9jYXBhYmlsaXRpZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c5142f90-e0bd-4341-b7d5-058c7357977d" + ] + }, + "ResponseBody": "{\r\n \"name\": \"North Europe\",\r\n \"status\": \"Available\",\r\n \"supportedServerVersions\": [\r\n {\r\n \"name\": \"12.0\",\r\n \"status\": \"Default\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Default\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7c4c615-cfb1-464b-b252-925be0a19446\",\r\n \"name\": \"P3\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc\",\r\n \"name\": \"P4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"dd00d544-bbc0-4f61-ba60-cdce0c410288\",\r\n \"name\": \"P11\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1000,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1024,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9395" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "a89210eb-3817-4dae-a509-6ca597d15f5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "a3417bc5-d4b9-4eab-967b-e376b2621204" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T214433Z:a3417bc5-d4b9-4eab-967b-e376b2621204" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 21:44:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/providers/Microsoft.Sql/locations/North%20Europe/capabilities?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9Ob3J0aCUyMEV1cm9wZS9jYXBhYmlsaXRpZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3f6a0cb7-822b-44ee-af7a-a6f67e0fb877" + ] + }, + "ResponseBody": "{\r\n \"name\": \"North Europe\",\r\n \"status\": \"Available\",\r\n \"supportedServerVersions\": [\r\n {\r\n \"name\": \"12.0\",\r\n \"status\": \"Default\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Default\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"a7c4c615-cfb1-464b-b252-925be0a19446\",\r\n \"name\": \"P3\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc\",\r\n \"name\": \"P4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"dd00d544-bbc0-4f61-ba60-cdce0c410288\",\r\n \"name\": \"P11\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1000,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1024,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9395" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7f27c6fe-c0b4-4c78-897b-f445aef08485" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "ac87f35a-510e-480a-9895-4cfedfdfa940" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T214433Z:ac87f35a-510e-480a-9895-4cfedfdfa940" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 21:44:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "a4d55cc0-84ec-49a6-84fd-ac40300fe684", + "TenantId": "d4880c76-2879-4dbe-9ea1-762bc7d5b2e5", + "Domain": "aad251.ccsctp.net", + "User": "admin@aad251.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseActivationAttributeTest.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseActivationAttributeTest.cs index 640bbaabb930..c720b121c854 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseActivationAttributeTest.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseActivationAttributeTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlDatabaseActivationAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void SuspendAzureSqlDatabaseAttributes() { Type type = typeof(SuspendAzureSqlDatabase); @@ -37,7 +37,7 @@ public void SuspendAzureSqlDatabaseAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void ResumeAzureSqlDatabaseAttributes() { Type type = typeof(ResumeAzureSqlDatabase); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseAttributeTests.cs index efe3e4fff9b4..9b33db8af177 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseAttributeTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlDatabaseAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void NewAzureSqlDatabaseAttributes() { Type type = typeof(NewAzureSqlDatabase); @@ -41,7 +41,7 @@ public void NewAzureSqlDatabaseAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void SetAzureSqlDatabaseAttributes() { Type type = typeof(SetAzureSqlDatabase); @@ -57,7 +57,7 @@ public void SetAzureSqlDatabaseAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void RemoveAzureSqlDatabaseAttributes() { Type type = typeof(RemoveAzureSqlDatabase); @@ -69,7 +69,7 @@ public void RemoveAzureSqlDatabaseAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlDatabaseAttributes() { Type type = typeof(GetAzureSqlDatabase); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseBackupAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseBackupAttributeTests.cs index 808798500c87..3a3b4ee93025 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseBackupAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseBackupAttributeTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlDatabaseBackupAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlDatabaseRestorePointsAttributes() { Type type = typeof(GetAzureSqlDatabaseRestorePoints); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseIndexRecommendationAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseIndexRecommendationAttributeTests.cs index a06adc85302c..99dc103fb6d9 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseIndexRecommendationAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseIndexRecommendationAttributeTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlDatabaseIndexRecommendationAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlIndexRecommendationAttributes() { Type type = typeof(GetAzureSqlDatabaseIndexRecommendations); @@ -37,7 +37,7 @@ public void GetAzureSqlIndexRecommendationAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void StartAzureSqlDatabaseExecuteIndexRecommendationAttributes() { Type type = typeof(StartAzureSqlDatabaseExecuteIndexRecommendation); @@ -49,7 +49,7 @@ public void StartAzureSqlDatabaseExecuteIndexRecommendationAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void StopAzureSqlDatabaseExecuteIndexRecommendationAttributes() { Type type = typeof(StopAzureSqlDatabaseExecuteIndexRecommendation); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerAttributeTests.cs index 3781f14bae93..d1c1b56ab0a3 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerAttributeTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlServerAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void NewAzureSqlServerAttributes() { Type type = typeof(NewAzureSqlServer); @@ -37,7 +37,7 @@ public void NewAzureSqlServerAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void SetAzureSqlServerAttributes() { Type type = typeof(SetAzureSqlServer); @@ -51,7 +51,7 @@ public void SetAzureSqlServerAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void RemoveAzureSqlServerAttributes() { Type type = typeof(RemoveAzureSqlServer); @@ -62,7 +62,7 @@ public void RemoveAzureSqlServerAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlServerAttributes() { Type type = typeof(GetAzureSqlServer); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerFirewallRuleAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerFirewallRuleAttributeTests.cs index 484959182a4c..5928c85a35bc 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerFirewallRuleAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerFirewallRuleAttributeTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlServerFirewallRuleAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void NewAzureSqlServerFirewallRuleAttributes() { Type type = typeof(NewAzureSqlServerFirewallRule); @@ -38,7 +38,7 @@ public void NewAzureSqlServerFirewallRuleAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void SetAzureSqlServerFirewallRuleAttributes() { Type type = typeof(SetAzureSqlServerFirewallRule); @@ -52,7 +52,7 @@ public void SetAzureSqlServerFirewallRuleAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void RemoveAzureSqlServerFirewallRuleAttributes() { Type type = typeof(RemoveAzureSqlServerFirewallRule); @@ -64,7 +64,7 @@ public void RemoveAzureSqlServerFirewallRuleAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlServerFirewallRuleAttributes() { Type type = typeof(GetAzureSqlServerFirewallRule); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerServiceObjectiveAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerServiceObjectiveAttributeTests.cs index 17db240a2eab..ae5c3f0cd965 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerServiceObjectiveAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlDatabaseServerServiceObjectiveAttributeTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlDatabaseServerServiceObjectiveAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlDatabaseServerServiceObjectiveAttributes() { Type type = typeof(GetAzureSqlServerServiceObjective); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlLocationCapabilityAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlLocationCapabilityAttributeTests.cs new file mode 100644 index 000000000000..a59e285727e4 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlLocationCapabilityAttributeTests.cs @@ -0,0 +1,40 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Commands.Sql.Location_Capabilities.Cmdlet; +using Microsoft.Azure.Commands.Sql.Test.Utilities; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.Sql.Test.UnitTests +{ + public class AzureSqlLocationCapabilityAttributeTests + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureSqlDatabaseAttributes() + { + Type type = typeof(GetAzureSqlLocationCapability); + UnitTestHelper.CheckCmdletModifiesData(type, supportsShouldProcess: false); + UnitTestHelper.CheckConfirmImpact(type, System.Management.Automation.ConfirmImpact.None); + + UnitTestHelper.CheckCmdletParameterAttributes(type, "LocationName", isMandatory: true, valueFromPipelineByName: true); + UnitTestHelper.CheckCmdletParameterAttributes(type, "ServerVersionName", isMandatory: false, valueFromPipelineByName: true); + UnitTestHelper.CheckCmdletParameterAttributes(type, "EditionName", isMandatory: false, valueFromPipelineByName: true); + UnitTestHelper.CheckCmdletParameterAttributes(type, "ServiceObjectiveName", isMandatory: false, valueFromPipelineByName: true); + UnitTestHelper.CheckCmdletParameterAttributes(type, "Defaults", isMandatory: false, valueFromPipelineByName: false); + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlServerUpgradeAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlServerUpgradeAttributeTests.cs index 169c9497f3b6..129dfdb8f082 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlServerUpgradeAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlServerUpgradeAttributeTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlServerUpgradeAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void StartAzureSqlServerUpgradeAttributes() { Type type = typeof(StartAzureSqlServerUpgrade); @@ -36,7 +36,7 @@ public void StartAzureSqlServerUpgradeAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void StopAzureSqlServerUpgradeAttributes() { Type type = typeof(StopAzureSqlServerUpgrade); @@ -47,7 +47,7 @@ public void StopAzureSqlServerUpgradeAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlServerUpgradeAttributes() { Type type = typeof(GetAzureSqlServerUpgrade); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlServiceTierAdvisorAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlServiceTierAdvisorAttributeTests.cs index 6148ec5dd6dc..25e36a1b55bf 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlServiceTierAdvisorAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlServiceTierAdvisorAttributeTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests public class AzureSqlServiceTierAdvisorAttributeTests { [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlDatabaseUpgradeHintAttributes() { Type type = typeof(GetAzureSqlDatabaseUpgradeHint); @@ -39,7 +39,7 @@ public void GetAzureSqlDatabaseUpgradeHintAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlServerUpgradeHintAttributes() { Type type = typeof(GetAzureSqlServerUpgradeHint); @@ -51,7 +51,7 @@ public void GetAzureSqlServerUpgradeHintAttributes() } [Fact] - [Trait(Category.Sql, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetAzureSqlDatabaseExpandedAttributes() { Type type = typeof(GetAzureSqlDatabaseExpanded); diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs index b22c4d43ce22..2d288f0c05f3 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs @@ -131,12 +131,12 @@ private void FilterByDefaults(LocationCapabilityModel model) var defaultVersion = model.SupportedServerVersions; defaultVersion[0].SupportedEditions = defaultVersion[0].SupportedEditions.Where(v => { return v.Status == "Default"; }).ToList(); var defaultEdition = defaultVersion[0].SupportedEditions; - defaultEdition[0].SupportedServiceLevelObjectives = defaultEdition[0].SupportedServiceLevelObjectives.Where(v => { return v.Status == "Default"; }).ToList(); - var defaultServiceObjective = defaultEdition[0].SupportedServiceLevelObjectives; + defaultEdition[0].SupportedServiceObjectives = defaultEdition[0].SupportedServiceObjectives.Where(v => { return v.Status == "Default"; }).ToList(); + var defaultServiceObjective = defaultEdition[0].SupportedServiceObjectives; // Assign defaults back to model. defaultServiceObjective[0].SupportedMaxSizes = defaultServiceObjective[0].SupportedMaxSizes.Where(v => { return v.Status == "Default"; }).ToList(); - defaultEdition[0].SupportedServiceLevelObjectives = defaultServiceObjective; + defaultEdition[0].SupportedServiceObjectives = defaultServiceObjective; defaultVersion[0].SupportedEditions = defaultEdition; model.SupportedServerVersions = defaultVersion; } @@ -152,14 +152,14 @@ private void FilterByServiceObjectiveName(LocationCapabilityModel model) foreach (var edition in version.SupportedEditions) { // Remove all service objectives with a name that does not match the desired value - edition.SupportedServiceLevelObjectives = - edition.SupportedServiceLevelObjectives + edition.SupportedServiceObjectives = + edition.SupportedServiceObjectives .Where(slo => { return slo.ServiceObjectiveName == this.ServiceObjectiveName; }) .ToList(); } // Remove editions that have no supported service objectives after filtering - version.SupportedEditions = version.SupportedEditions.Where(e => e.SupportedServiceLevelObjectives.Count > 0).ToList(); + version.SupportedEditions = version.SupportedEditions.Where(e => e.SupportedServiceObjectives.Count > 0).ToList(); } // Remove server versions that have no supported editions after filtering diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilityModel.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilityModel.cs index c507f260c410..0c075896b134 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilityModel.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/EditionCapabilityModel.cs @@ -31,8 +31,8 @@ public class EditionCapabilityModel public string Status { get; set; } /// - /// Gets or sets the list of supported Service Level Objectives and their capabilities. + /// Gets or sets the list of supported Service Objectives and their capabilities. /// - public IList SupportedServiceLevelObjectives { get; set; } + public IList SupportedServiceObjectives { get; set; } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs index 68057e853a32..0c99848ffb9e 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs @@ -92,7 +92,7 @@ private EditionCapabilityModel CreateSupportedEditionModel(Management.Sql.Models EditionCapabilityModel edition = new EditionCapabilityModel(); edition.EditionName = e.Name; edition.Status = e.Status; - edition.SupportedServiceLevelObjectives = e.SupportedServiceObjectives.Select(slo => { return CreateSupportedSLOModel(slo); }).ToList(); + edition.SupportedServiceObjectives = e.SupportedServiceObjectives.Select(slo => { return CreateSupportedSLOModel(slo); }).ToList(); return edition; } From 9620ec11cdd032cfb03b36811fd220102cecc722 Mon Sep 17 00:00:00 2001 From: Adam Kromm Date: Fri, 21 Aug 2015 11:04:43 -0700 Subject: [PATCH 22/37] Renaming cmdlet Renaming the Get-AzureSqlLocationCapability cmdlet to Get-AzureSqlCapability. --- .../Commands.Sql.Test.csproj | 2 +- .../ScenarioTests/ElasticPoolCrudTests.cs | 2 +- .../LocationCapabilitiesTests.ps1 | 26 +++++++++---------- ...cs => AzureSqlCapabilityAttributeTests.cs} | 6 ++--- .../Sql/Commands.Sql/Commands.Sql.csproj | 6 ++--- ...Capability.cs => GetAzureSqlCapability.cs} | 8 +++--- ...pter.cs => AzureSqlCapabilitiesAdapter.cs} | 8 +++--- ...cs => AzureSqlCapabilitiesCommunicator.cs} | 4 +-- 8 files changed, 31 insertions(+), 31 deletions(-) rename src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/{AzureSqlLocationCapabilityAttributeTests.cs => AzureSqlCapabilityAttributeTests.cs} (91%) rename src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/{GetAzureSqlLocationCapability.cs => GetAzureSqlCapability.cs} (96%) rename src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/{AzureSqlLocationCapabilitiesAdapter.cs => AzureSqlCapabilitiesAdapter.cs} (94%) rename src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/{AzureSqlLocationCapabilitiesCommunicator.cs => AzureSqlCapabilitiesCommunicator.cs} (95%) diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index 42723306cf17..8bcc1aacb2b5 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -229,7 +229,7 @@ - + diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs index 4875004a22b4..edb3f4b6136b 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs @@ -20,8 +20,8 @@ namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests { public class ElasticPoolCrudTests : SqlTestsBase { + // Currently the test runs too long to be marked as a check-in test. [Fact] - [Trait(Category.AcceptanceType, Category.Sql)] public void TestElasticPoolCreate() { RunPowerShellTest("Test-CreateElasticPool"); diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.ps1 index f82164ad067e..96f467cea1fb 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.ps1 @@ -14,25 +14,25 @@ <# .SYNOPSIS - Tests the Get-AzureSqlLocationCapabilities cmdlet + Tests the Get-AzureSqlCapability cmdlet #> -function Test-LocationCapabilities +function Test-Capabilities { $location = "North Europe" - $all = Get-AzureSqlLocationCapability $location - Validate-LocationCapabilities $all + $all = Get-AzureSqlCapability $location + Validate-Capabilities $all - $default = Get-AzureSqlLocationCapability $location -Defaults - Validate-LocationCapabilities $default + $default = Get-AzureSqlCapability $location -Defaults + Validate-Capabilities $default - $version = Get-AzureSqlLocationCapability $location -ServerVersionName "12.0" - Validate-LocationCapabilities $default + $version = Get-AzureSqlCapability $location -ServerVersionName "12.0" + Validate-Capabilities $default - $edition = Get-AzureSqlLocationCapability $location -EditionName "Premium" - Validate-LocationCapabilities $default + $edition = Get-AzureSqlCapability $location -EditionName "Premium" + Validate-Capabilities $default - $so = Get-AzureSqlLocationCapability $location -ServiceObjectiveName "S3" - Validate-LocationCapabilities $default + $so = Get-AzureSqlCapability $location -ServiceObjectiveName "S3" + Validate-Capabilities $default } @@ -40,7 +40,7 @@ function Test-LocationCapabilities .SYNOPSIS Validates that a LocationCapabilities object is valid and has all properties filled out #> -function Validate-LocationCapabilities ($capabilities) +function Validate-Capabilities ($capabilities) { Assert-NotNull $capabilities Assert-AreEqual $capabilities.Status "Available" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlLocationCapabilityAttributeTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlCapabilityAttributeTests.cs similarity index 91% rename from src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlLocationCapabilityAttributeTests.cs rename to src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlCapabilityAttributeTests.cs index a59e285727e4..5d067b0e3a98 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlLocationCapabilityAttributeTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/UnitTests/AzureSqlCapabilityAttributeTests.cs @@ -20,13 +20,13 @@ namespace Microsoft.Azure.Commands.Sql.Test.UnitTests { - public class AzureSqlLocationCapabilityAttributeTests + public class AzureSqlCapabilityAttributeTests { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void NewAzureSqlDatabaseAttributes() + public void GetAzureSqlCapabilityAttributes() { - Type type = typeof(GetAzureSqlLocationCapability); + Type type = typeof(GetAzureSqlCapability); UnitTestHelper.CheckCmdletModifiesData(type, supportsShouldProcess: false); UnitTestHelper.CheckConfirmImpact(type, System.Management.Automation.ConfirmImpact.None); diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index c4e3c2966c61..853eae3903c6 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -93,14 +93,14 @@ - + - - + + diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs similarity index 96% rename from src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs rename to src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs index 2d288f0c05f3..10b9b1f7dfc7 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlLocationCapability.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs @@ -21,12 +21,12 @@ namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Cmdlet { /// - /// Defines the Get-AzureSqlLocationCapability cmdlet + /// Defines the Get-AzureSqlCapability cmdlet /// - [Cmdlet(VerbsCommon.Get, "AzureSqlLocationCapability", + [Cmdlet(VerbsCommon.Get, "AzureSqlCapability", ConfirmImpact = ConfirmImpact.None, DefaultParameterSetName = _filtered)] - public class GetAzureSqlLocationCapability : AzurePSCmdlet + public class GetAzureSqlCapability : AzurePSCmdlet { /// /// Parameter set name for when the cmdlet is invoked without specifying -Default @@ -88,7 +88,7 @@ public class GetAzureSqlLocationCapability : AzurePSCmdlet /// public override void ExecuteCmdlet() { - AzureSqlLocationCapabilitiesAdapter adapter = new AzureSqlLocationCapabilitiesAdapter(Profile, Profile.Context.Subscription); + AzureSqlCapabilitiesAdapter adapter = new AzureSqlCapabilitiesAdapter(Profile, Profile.Context.Subscription); LocationCapabilityModel model = adapter.GetLocationCapabilities(LocationName); switch(ParameterSetName) diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlCapabilitiesAdapter.cs similarity index 94% rename from src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs rename to src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlCapabilitiesAdapter.cs index 0c99848ffb9e..d40b064582f1 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlCapabilitiesAdapter.cs @@ -20,12 +20,12 @@ namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Services { - public class AzureSqlLocationCapabilitiesAdapter + public class AzureSqlCapabilitiesAdapter { /// /// The communicator for interacting with the service APIs /// - private AzureSqlLocationCapabilitiesCommunicator _communicator; + private AzureSqlCapabilitiesCommunicator _communicator; /// /// Gets or sets the Azure profile @@ -37,10 +37,10 @@ public class AzureSqlLocationCapabilitiesAdapter /// /// The current azure profile /// The current azure subscription - public AzureSqlLocationCapabilitiesAdapter(AzureProfile profile, AzureSubscription subscription) + public AzureSqlCapabilitiesAdapter(AzureProfile profile, AzureSubscription subscription) { Profile = profile; - _communicator = new AzureSqlLocationCapabilitiesCommunicator(Profile, subscription); + _communicator = new AzureSqlCapabilitiesCommunicator(Profile, subscription); } /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlCapabilitiesCommunicator.cs similarity index 95% rename from src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesCommunicator.cs rename to src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlCapabilitiesCommunicator.cs index 6af264037c20..3c9a6309a69e 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlLocationCapabilitiesCommunicator.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Services/AzureSqlCapabilitiesCommunicator.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Services /// /// Communicator class for communicating between APIs and powershell cmdlet /// - public class AzureSqlLocationCapabilitiesCommunicator + public class AzureSqlCapabilitiesCommunicator { /// /// The SQL Management Client to be used by the communicator @@ -45,7 +45,7 @@ public class AzureSqlLocationCapabilitiesCommunicator /// /// /// - public AzureSqlLocationCapabilitiesCommunicator(AzureProfile profile, AzureSubscription subscription) + public AzureSqlCapabilitiesCommunicator(AzureProfile profile, AzureSubscription subscription) { Profile = profile; if (subscription != Subscription) From 2b36b14f60d863476558403fe6c43882e6ec8d3f Mon Sep 17 00:00:00 2001 From: Adam Kromm Date: Fri, 21 Aug 2015 11:16:13 -0700 Subject: [PATCH 23/37] Fixing test name. --- .../ScenarioTests/LocationCapabilitiesTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.cs index a26fd18ee04d..5928f25d5c9b 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/LocationCapabilitiesTests.cs @@ -24,7 +24,7 @@ public class LocationCapabilitiesTests : SqlTestsBase [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestLocationCapabilities() { - RunPowerShellTest("Test-LocationCapabilities"); + RunPowerShellTest("Test-Capabilities"); } } } From 911fb816481587f10748741bddafdd85ea4887cd Mon Sep 17 00:00:00 2001 From: Adam Kromm Date: Mon, 24 Aug 2015 16:02:18 -0700 Subject: [PATCH 24/37] Adding custom output for Capabilities cmdlet When filtering the results of the Capabilites cmdlet, custom output is provided. --- .../AzureResourceManager.psd1 | 5 +- .../Sql/Commands.Sql/Commands.Sql.csproj | 3 + .../Cmdlet/GetAzureSqlCapability.cs | 114 +++++++++++++++++- .../Model/LocationCapabilityModel.cs | 5 + ...Microsoft.Azure.Commands.Sql.format.ps1xml | 41 +++++++ 5 files changed, 165 insertions(+), 3 deletions(-) create mode 100644 src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.format.ps1xml diff --git a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 index 3cb5633edfd6..ae14cbff45f4 100644 --- a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 +++ b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 @@ -72,10 +72,11 @@ FormatsToProcess = @( '.\Compute\Microsoft.Azure.Commands.Compute.format.generated.ps1xml', '.\Network\Microsoft.Azure.Commands.Network.format.ps1xml', '.\Storage\Microsoft.WindowsAzure.Commands.Storage.format.ps1xml', - '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.format.ps1xml', + '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.format.ps1xml', '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.format.ps1xml', '.\AzureBackup\Microsoft.Azure.Commands.AzureBackup.format.ps1xml', - '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml' + '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml', + '.\Sql\Microsoft.Azure.Commands.Sql.format.ps1xml' ) # Modules to import as nested modules of the module specified in ModuleToProcess diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index 853eae3903c6..394e47a8b9ce 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -139,6 +139,9 @@ + + Always + diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs index 10b9b1f7dfc7..98f63b5dfb1a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs @@ -17,6 +17,7 @@ using Microsoft.Azure.Commands.Sql.Location_Capabilities.Services; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Linq; +using System.Text; namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Cmdlet { @@ -90,12 +91,14 @@ public override void ExecuteCmdlet() { AzureSqlCapabilitiesAdapter adapter = new AzureSqlCapabilitiesAdapter(Profile, Profile.Context.Subscription); LocationCapabilityModel model = adapter.GetLocationCapabilities(LocationName); + int depth = 0; switch(ParameterSetName) { case _default: { FilterByDefaults(model); + depth = 3; } break; case _filtered: @@ -103,20 +106,129 @@ public override void ExecuteCmdlet() if (this.MyInvocation.BoundParameters.ContainsKey("ServerVersionName")) { FilterByServerVersion(model); + depth = 1; } if (this.MyInvocation.BoundParameters.ContainsKey("EditionName")) { FilterByEditionName(model); + depth = 2; } if (this.MyInvocation.BoundParameters.ContainsKey("ServiceObjectiveName")) { FilterByServiceObjectiveName(model); + depth = 3; } } break; } - this.WriteObject(model); + if(depth > 0) + { + model.ExpandedDetails = CreateExpandedDetails(model, depth); + } + + this.WriteObject(model, true); + } + + /// + /// Given a constructs a formatted string of its expanded details to the desired depth. + /// + /// The model details + /// The depth to expand to + /// The formatted string containing the model details + private string CreateExpandedDetails(LocationCapabilityModel model, int depth) + { + StringBuilder builder = new StringBuilder(); + + foreach(var version in model.SupportedServerVersions) + { + string versionInfo = GetVersionInformation(version); + + if(depth > 1) + { + ExpandEdition(depth, builder, version, versionInfo); + } + else + { + builder.AppendLine(versionInfo); + } + } + + return builder.ToString(); + } + + /// + /// Formats all the supported editions in as strings prefixed with + /// and appends them to the + /// + /// How deep to expand the information + /// The string builder to append the information + /// The version object to expand and format + /// The prefix to apply to the information strings + private void ExpandEdition(int depth, StringBuilder builder, ServerVersionCapabilityModel version, string prefix) + { + foreach (var edition in version.SupportedEditions) + { + string editionInfo = GetEditionInformation(prefix, edition); + + if (depth > 2) + { + ExpandServiceObjective(builder, edition, editionInfo); + } + else + { + builder.AppendLine(editionInfo); + } + } + } + + /// + /// Formats all the supported service objectives in as strings prefixed with + /// and appends them to the + /// + /// The string building to add the formatted string to + /// The edition containing the supported service objectives + /// The prefix for the formatted string + private void ExpandServiceObjective(StringBuilder builder, EditionCapabilityModel edition, string prefix) + { + foreach (var slo in edition.SupportedServiceObjectives) + { + string serviceObjectiveInfo = GetServiceObjectiveInformation(prefix, slo); + + builder.AppendLine(serviceObjectiveInfo); + } + } + + /// + /// Gets the string formatting of the server version object + /// + /// The server version information to format as a string + /// The formatted string containing the server version information + private string GetVersionInformation(ServerVersionCapabilityModel version) + { + return string.Format("Version: {0} ({1})", version.ServerVersionName, version.Status); + } + + /// + /// Gets the string formatting of the edition object + /// + /// The prefix before the edition information + /// The edition information to format and append to the end of the baseString + /// The formatted string containing the edition information + private string GetEditionInformation(string baseString, EditionCapabilityModel edition) + { + return string.Format("{0} -> Edition: {1} ({2})", baseString, edition.EditionName, edition.Status); + } + + /// + /// Gets the string formatting of the service objective object + /// + /// The prefix before the service objective information + /// The service objective information to append + /// The formatted string containing the service objective information + private string GetServiceObjectiveInformation(string baseString, ServiceObjectiveCapabilityModel objective) + { + return string.Format("{0} -> Service Objective: {1} ({2})", baseString, objective.ServiceObjectiveName, objective.Status); } /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs index f7c305c3737c..72b89198c76d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Model/LocationCapabilityModel.cs @@ -35,5 +35,10 @@ public class LocationCapabilityModel /// Gets or sets a list of all the supported server versions and their capabilities /// public IList SupportedServerVersions { get; set; } + + /// + /// Gets or sets a formatted string containing the expanded details of the model + /// + public string ExpandedDetails { get; set; } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.format.ps1xml b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.format.ps1xml new file mode 100644 index 000000000000..0429996f5b82 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.format.ps1xml @@ -0,0 +1,41 @@ + + + + + Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel + + Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel + + + + + + + + LocationName + + + + Status + + + + ExpandedDetails + + ExpandedDetails + + + + + SupportedServerVersions + + $_.ExpandedDetails -eq $null + + + + + + + + + From bd4939ed84aec96ded47ef098f62cdf4fdc67618 Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Tue, 25 Aug 2015 10:38:34 +0530 Subject: [PATCH 25/37] Taking dependency on the latest nuget and deleting the DLL. --- .../Commands.AzureBackup.Test.csproj | 3 +-- .../Commands.AzureBackup.Test/packages.config | 2 +- .../Commands.AzureBackup.csproj | 3 +-- ...ure.Management.BackupServicesManagement.dll | Bin 237568 -> 0 bytes .../Commands.AzureBackup/packages.config | 2 +- 5 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj index 569187754c5a..f99f5cc0a02b 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj @@ -40,8 +40,7 @@ ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.1.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll - False - ..\Commands.AzureBackup\Resources\Microsoft.Azure.Management.BackupServicesManagement.dll + ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.4-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll False diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config index 3692e89e3c49..d41075f32d33 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj index 9562723b6b0a..71c94def5725 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -57,8 +57,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - False - Resources\Microsoft.Azure.Management.BackupServicesManagement.dll + ..\..\..\packages\Microsoft.Azure.Management.BackupServices.1.0.4-preview\lib\net40\Microsoft.Azure.Management.BackupServicesManagement.dll False diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Resources/Microsoft.Azure.Management.BackupServicesManagement.dll deleted file mode 100644 index dbee840b00a565f994214904eaaec53fc98424a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237568 zcmeFad6*tYaXD5ZsE#H<;Y;0qEA>a1c?;0C>cEAV5 z28<0j;Rr{#ZvqJra0o{TA%r8CTm<3+2uBRq30DXK%YnbIcV@M+{C%F^AK6Fh zd8fLnyQ;dUr>gpxQ_g#3ZDOrfn}q+r|9!3Y30(QNOVY8E+mJnN;a^OveYE?li#{>o zxwH!2Ci?#m$xpycHq*Bue&b3ap01J1Fh#@H*n>31N%-rbKu(ec?Z`_o!Yb1 z6n)zMTJ7Ws6Kjuu`&-YlwSBu5ESfT5O0D)9aMq>J>pq6x1Ni+}a$B1rzXRo)fDR_| z2T1_u-^AKQcM+BU+|}F?guelldlG-3+!>Skqwx3biM3vU{^KJPYeyBb#=ITKSQoS| z+#l}|thw>v3vR^yjelt5qO68*iw2U5*0e@imjWQXfkzSab+~$eyU<)~S_iL*fk<9! z;91Iga~s|sk4%1^M!n*Xyalz%wQKeTwb6J&ZGu1#KRGst>a|)A3Y(asj7haswOV7{ z1mO$!VJ%1q?is9gteUrOa_xiN!fH6HH%Nvj)Fw41hm#ln?%e&I!cVO>4_E%@J!K2= zew;f*P3_&(HL3!>RTYIN2+qdCMT+Q?k|>gkY*lz|wW_tZLC zELLFlc4v?vQD(LS(t0g2J0kQ*s=Dg4}yf3)@J~S z=94plCZvg>n~oUlcEk&i1MP@vhH8c=D8q^t0@amdaa)h&E6{3H>H>*nX~KjYONP-o zrO<7qP^iln%9K!wtJ<#MsSy33DefcksmJt5WSgzcrkv@d@8VAI?9;&J}_I4BT>X?37ZT9tTsN;T=S#bcEsq9 zJ?U{$l}qF0fX+HMUV+QPweHbb!~%#mQ!f@TvW0*@cCwjmlzo=NS@B9D6U!FXVzVis zW7T$*Cn(TQk;E81Oc(A;j~9mRAhDlsEDo6d$S~N~d;*~60zB+Zbgf#m4+#f^5hOjP z2o@Br#(g}51ng_cWN%~*!D}5jUWebUUz4FZ0T^0e%vuI$kjRs~C4g=fVRR4c*r3Qx z`+WFpb;O7_0%K;p32CFN-W46qAKmrtXfu8c?F(k66gLRF(^GjJh0-R~yMsuCn%Vov z4Sd-p%xiQ9^`58tQNV<-N3r{b7=<-aSgqczxfs(KBh~mS zYVh??vJ9!-AUK4kHKUOzb1Q481r<^cBR41YHUMVE+mSY=)Tczp@JDaGH`;+8kb0Jp zx;H)DN!=Sn!U&{Jz;BQ+uhARSr#{t>7sI@8s$v_ddm{|7J@sDAY)lKnX-4jHF{qPh z7f4Waknk?vjl1+ja*!|`_!3m2W9D!-6jKnFdgxP1L%#>~@m?e|<9$dQ)9cft{roYb zJ|j97KZZs}j^lk8gkgFbE1GR2pOK!yTW#+dK?H#ZYmoeQs31s)`cBw1^BQ3o#&~o0 z;BtaqPQ(RGETttZq%k9?*PrU2P8HR)SfipD(MdqA&(O@i=w#eA8bR1dPh#c%OV4X> z=0&Ffm7MVAR#bPg5O`X$FU#I`MTu??t($$poI@z%MwA^KmW++QAnZ#|A+sY-;$c<3 z`_co#KH<>;DuEV5gZ)52rvfA>sEwGbL%qhQA!A|BQxgU!%&G~^fWe4PM^1DGk|{w# z-E_uJpgQ&$xz!F8p9us&$~z>mrb05Qo20`uN9Hw+l z^R_1@@8h!#=A&~PlY)g$sjj8Ng_ELlnEB|;T0WyYdbSX)LJhmoThJM6*H5n1XhJT7 zF-AE52w#DbDMH?<9$Ye!B!KZh?4=s?Jz=wU^oh}VC?170)&;d2kcVQ!dM!vfe%5Of zQ`&U(+N6}$TfH_p<)B-yO`DYR1&$w+Q@(HUqa)?uTCYXVL4m0Znl;nuYYA_A>j84X z;$XcdGDpt^=9Ix&=c)y2z*3gRx{exN1@w)=+Qb|A>;=i0APL*bMRYl?!ng3-S;PBX`3)vcnmldNw8=sagWfP^ZE+MrTO2Z} zEpFj>n-UJy=iyxnhbr=LG$ZlBn8KIS@aLVhquTuj2UU7Fyz_8+v>a5QFMo={QGFhc zA)oc4=sbL?!cklvK26~$E)U1J$Z}9z9**Iaa1@t^hYCk=c{rRN;-ff)PedPnFWQ2C zL39OLiM?k8`tC?6Bz|M`?MNvYeqYJo6b8Q&{-yx<{U-h<)A;?L9I?nKe*c2M$sB(F zn!m{qe#4XQNXbOdIunLT%JvQVr9p6^&Vz`r<0Zn_XIr}>)Z7zaCH$=dkk1~5hFSyi z1knmqkLM7>3`U+Faigw8vFb)m>Wi)hU6zBFlXb8rrtB!eq?G+Apo`QI#1MN>1_{=& ze|&YIGf7FUSF!LlsII)o8uk4?5ej;q7+os@K_UNtS2%Tn(N^_6IYJXW^9pAj$J#n3 zja|oh70xoRL79Eh? z(o6B1!-jNK{07}5>96XscG%uy$0_9VdBbCxe-6>f2*+cZhnw*Wk7*u`XO8&j?h2Rj zi+5-VTbIFss2&dQJe+3jH`lNepLgU>Jt%ri_G z@$ixKEu17c9){E@C;LzK?D;Y&oI5YIY=+1_7bLk)J*f9CwXj})iX>RJq}%> zD~a1?w3raBwGD-PIKo2fRMxl@)o3sdT`^bKkE;qh(-lUXaTWGNRbe-~!iZB<7^U#z zgp>|(LRHQED5LdODTsI)CS;5_6O0-xAvfK|3o{bY3p27w*}Gg%#Smb^j0ceyBrdh# zLztFXn2~Hsn2~4*GxB2bA~rAq5QFvP!;GYqFe9@}n9*`WA`@mLNW+Z$Wqb7#jOw{C zqh$4^mk}cyx~jsAPvRZbTnM+SIhRR45)M-uX4E2>MkCbk5E8JjU{;e0GZI`8W^`E^ zW|RTN4>MlKIyPwWPWxhSo9c++hZ&dEmuZ-Bd40Kt8TTX1$dNh-m#5eAI(jbB`tl&c z%LHMk#==MD;=Lav%xo+V>MKl~afPDy3pGk>l8^fGEY5g23(GWF9%qDuQ)@mz6}}Os zpp5kX*vvSij+~-RyqbEz$!NLQ8fR23i`ZVAF{(!zXIxodsd2{rh%>6#D^vK#R_v8Q zgep|*C9o!ggqe+%L4B18G_F!~Blb!SG_Ev(#=#&QOjYo5IhYsiQaOTzckyoArB{%J zgz3N+p%Z;K4fjAZ1$ikS0*zXS(C-1gA81@%U#)@0q56;p8dD84t_i|5>2<7Vwh?_O zy`Hz);zL0+#fr`-Ly!(i^r?Z~VNFzAKxzVsU5pKuK|asZQ1qkv9jPaq0v7VK1xQ2k!5$rGjU_+S|7wPA3q(f9?P@2#6Av3EsBb(M;kWoE;59Z3qSH5< zfQK96n*o_x8yQ524U{|&*Kkt&0zhlstp{z{oU2_uHJsdD{7!b;k%;6V3_Idg;`RjDQ&mX_JFo0USVl}mC;TK zr+{`!DeV-c?FDUbyu{LmlZ-AKQ^TpComxseRcWVzc3Qm9(hg;`)5GbYonA^iU1?{4 zc1FBRXrbrRGg^fCK^vCRhDuw9n(Og&q3v#+laV&U21pyFqzxtQ18H9z8q$k1(*Cd? zr2VC&{Yp9$q%-4&a*Td+3wsi~=O=#m``_)hOv1<1AF5unDp7b!EDfaHx z)mfdh!da+uR(qX&a4EFT*`49+7^bHTP(tn$H7A?{@;RmCbCi5;XE@jB$<*$YH7}e8 z@_D7?^OXFk&hRLsD?{!SHb0yX^7*CY^Obx-XSl%X3(~vM%uWWBzch%KO$P9$G4N>1 zX_wOh9PF%$8RVD250M7E%xVwkQRNL{T7#&(_vZr^G3+lRqP!QvMG-=hm=BmG^8sGQ zKr|{9tipW2^U#{8>d#;^Ao5t7j6mf=-1Cp{E;QHqc%5Df9}jPN`6K+(7`7jRb#b2u zH`%pM0>=My0XU%Z1hh;hMk#7Vo%D&XKpxB;nJ1tD#CZZbYn&&bi^h2Z+Uqh;K=VoF z31}T)0^o%xClzA{(*u;NUQ2kZ(*uxz(*p!Vw*gba>|C=lk4`pyT&!8S0l9~VdH;-*;-4|g_-B?I5*h!DAob7q%QjNMKa;G!G$ls%+*SE!U34k7GTFpr zEfPLs>Yr&5OmoXX6wGRJ{u#j){+Y{C|4g0_&p%5X!l%&AGACnKh}_KTjqBzb24fkb zamooXeAlgfg$PF=t`K=KucKIfCM!f_IL%gwFfYGCM6ml)5|^wHc_GWnbX@May%8gC zVTFi4Z;!->~Zd!-X??Gw4<2LpRk-J#YY-zF} zoRQwmTa_FuL@?*)tq>vVAy$Y;X$cF-uMm-9jf$#Qh}_1?bFUcJ-ptGVHr~*0yIlx8 zEtyx-a4(+BLcbWNZn#23yFryQ@B%w~Z*M zjTgFYyyh)Ij)emTL##o&LWFgAD@2^CtWj9rA&Hk6g}f=Q5TPDv60&02d7@Wq66RKj zNZ0f*dGA|n_F>q2zl9jhm(j|*i^*+FIR7d3-pf%I+Q%Acg*D3ew&i;E zUh;~z+$)O{9ludYK)*x~6)*yMawx3#qEOGGEP+YMGCbYA3#|_!Zc?)5>RS8l0DycB%)_KGMkEY zjpA&_KR{lPxYXK&rM4r{U_0_+@gmxe1YmGtJr%YivyAO%xgn9U9SKs~k-uyM7Hmh! z>P!ES7>Rv`pO)>YMKFzS=j(fj7D13GnAPNLM}jMCN0+6xqdYsl?dTBNY{&aqy|Eo# z!>H}3oDk#Cwj(t`+wqOOj=mHrR~KWxSZoPhUCg|^?I_s&DTzyL$Jel|OvmH49sL1{ zwuBBJ6ehDB%cWM^(Uba+wxdejo4%Qxs?@L@>qcr0&q2bxyzMC1M(Q%#QROZdgL%$& zHU1s6d zc03v|{`YK04r@8v@d_Z%Gqxi~Puh;O1!z0+O-$R7_LbO<9F`?!$X;fRNEs<%M3Q?L zk-SwS63b|4L=xbPNZOEBfhQX?d<$|9!-o7lZOHdP=H}a(a8qCN^+?2qd^^gjwjtlq zmh0P)?`+Gx(%F#7yV`PTpryay`Pj26*u-Oo1k(8Oy?~#PUoo;?OXX3Y>*0qzVlZ%2*(= z6wbo*C_D?(hi=PkKp(oZ6k3WKB-CvMC(gq3N>|+%Db&JzKgtRcra23ffKm&S#rhT| z5j_i&*;J%!6lY<60C_>;QfoPuT9`zGg~^M>6AP07jIOMw!op;hu`n$+Br+BzL26<0 zmu*!mN(v0jkW`&xO%*&gRg595zxWtV76PA@Ja@=O5 zKMK*T&@qC-WM*W!)M`e0QXkTcRH=K@KPRUuHOxpX-1S0`%*&gRf^DQOGb2^*axs|a z%t+qFyXiuGh#VwLOUy`LT#5%XQtJ@Y0&5J%kx4 zr6nvRZ$?V7Mn%#?yck6n|YZT$s3xHe<}o?mI`L1uc&eAhGwL8gDPdH8F@G| zsu}rbWLC{c;kz&Wh_Fw1!Hg7;n2|(5pXY^UB(LRWBy)0RBze zZ;ECl_2`?CqSsP0Qo5#RM)JPRj1*lSmrZr$suEZMzYd5(sZ3-;QAo&DPgXBR;|3cDFlK2eFC+Utf&X;%8 zE&v^N|A!;1&7L&UVNV(fu_uj`+>=JyT67Tx7wknF;$E~n@jJH{4X=s82bi+l$sA=QIe9x))7%q8(=$veJ;RNwp>53!!2s&tHOrAo-M}pGL}V=IyORAL9Cg zaAb{~m+Joe?lKz#XpFbo5`~NY008(Aw2qRae`&YO2f9$zLk^bufai(d|uMO zk@O2lxf`@io<)>rgOP`HkcWhjhm@3uw3$2`pGkR6bPUS;2Y>YH@`3DNS-GF5LKVX8GqsBR0P zDuaY7wh*e%CWJZc%}3Xd);$-S>zm!43y#P^xH)}<*U>K`t#1w@Jg)Gf z8fzap0RK5inAzAI)VG*D7h4p)KP5FvYm$%p=4{W!zp${r^c%d4U?}WK|CK+3gck+7 zanp{c^EvPfHWrf;QPy~O#xGML-8hS<&JMyuOKP31edzoCIL!R$<)Bj1+!*~kH%1HX za|^W0ucGzGcerzg+1}39jVPo`E9+{#x==C%s2bHlCi zt9i?%`e8@(0Di}Y#jTFTZ{}It>R8FR7QY9H_E zwQyQE{m{?%*YXcf+4CJvZLK5U(<(Y`ESywyr5P2B6TP%6g|%=-7#>MinyOuC#+d9@ zbfr3km9A7bU8!E)l|9`j=3)%*$a&!cUvMMLL@uV+ov|h(5`?Shx;&`=J!slEU?r-l2!XGOXn)na- zFb~Vne;^!=U&Gs(M&wyxKepk>;2+LveSw_JjB)l$?lGR#dPp;_X2xsXIE&J5VQGA$ zy))nAhu!O9*uE~pzSg5GsNZy<3eFMB&r}6bZ0pR1s(wrI*<-1S#PM?PX@8wl)toUZ z6q?dUer_$C6V82R9{Jh&$j>nfC~s{M0jJ<)O7KLOHEbFmy=;@p;Ctn%ZDv_;7W(Bh2_JRBRHI43&H2CPn?Q?wt0pJIBc;^ z1`L-2<--=q;|=H|;~TaFeT~-*z4s;@$>Mu6Ly!N6U2ePSf!pIZ@OE)6Tof+8_omVw zxV^FmZg)L!d)5O7T31opMO7^-oM6vbrYmo}T@nuHc)LWY%f%pZ)p)zKLiCKLbi7?= z+G=^YG+b`R+vPgmE^8Zam+N@DEI!ilc8QL+OO2)~IN#){${TN2Kvgo{t{6*IB(557 zc_c-_x{|iZXiCT1m9;PmS3Wc2?Ft=lqcOXRuv0PKt{O{(%JFuv7On~hpPBJ?g^stY z#%{xk@pg3u`<3JEP%T^?4jsvOJD}t3>M>PbG2X60my_{!jZ%ke%Ew#jMWy5In)311 z5sWe3WJoQ^A#7+@5hd*o>T%fCQiiP(VGArc{7su zkCC8M2|&GtfVU!Py%=L!^funUUGn?VZ-UGP$*?qnP7nVxjz8Gbq*>6!1f)joy=b!> zW+mB*h_CUcEuuAy>T(gSZ2*{KdylCfqsM9NsPAycX=p@iNBS76(1_NKfQOW8 zL~9g01_?78JA(R7bDYLbMK=+x9eSL`4s)Ewt{~iHPm^d;a)vtW3L{vvDY55A;l#urLiZd z?=y#N?9+0M=Jx0z8+&qxZ0rxh{pr84c7N8v>j%usR!Z=ODT}QowJ=)rX%jUCX%xS0COxL*e^z_2FN@ zJkSg} zV<9@nNFFR?r{MfBg9M4z`|p6X-i5bT;rkRn1{`BFFW!uzKoioG%qUVvGNV|D zhc5xC;4v_#vvNYJ&>*3V1rkf)W)wXNZ${CFx>-UW>Sh#uXeqAhwt^Ekqv(|rB-DM8 zVq}0l`zOc=5~jHsMFRX8MQT%K6j`i4qew(=Mv>W6q-&Jf3`wI;^rTN9FGyT!X9`y! z)6OWe9+^=j8fFxEv3N40NC1X@){~!6B&EzKGRw>;T5d>WW)un18AblG4G08(Mp3f* z(kF?LJ-THxivNKjrtD)8O35_04p+e}JvXCBaK((G%hDM|d1U+<#s6R(#{P0jp97@_ ziB?Ape@2lzH;;zO<*N~!@k2fq!2v1=yV9TYI{ICt^{#+j2Ij_;M^2tdYlC@>uE2f{ z0;_ffyFVo{K0$$(A|@2OvI)iiWLcU1+Ko*_{c6p7t+DBkIb4pZBLZc}jLmXkhf!@# zSkKt(srRU{$)f;vsIaqy-yocl{*nx;uv3Bv&w~hiAznT~!o0?mz{V=d;% zrx;svYJhJ@sJP`~FfZCg{qX7FT`acdf02WP>A+W@4ISI#LJ9I-t<0tU8jAq(WIm%X(w{@ph+p3eHMg7V?3P0lm_rHdG8jP z&YntxQXV4FYPYc`^*aa--sQ~6Y>nyfVCTFVeeQm|_*bD`{?Y#V6dtzVcsUkqaZa9|Pphn>!vJu(cy?2+fY zmhe{1p2ceR5a7%n+C1-v$A)nl>&9*gl3yXaF&d7J^9`OTyQqD`8ZAVv zncrrRAkkWW4M^FEy=Yy&d3f=x8G$CGDY0hA=mriQl~_8jjRD(ya*K$T!29Hu(A#1t zmS+}td94ZAA}Jp_rxfbU6d%`_G(NNxH%O??3Qj)FAO`&2o>awwU6jYj1HBj&}tD(bEnWM znAPO$7lJG77nh~>i##O0{qj3Dys=-L_SJsT>WJanFE6UUNbQ%~>bJQSQ4}`_Z%cb9 z{OJGSu6|p<7G}8QmPh*0oMu57vllD65&KRxW$rYl%w0ivSE_=S%fY;87dkbH#>W|Or=|>6*g#oK?J2bA z+x8S%UtY=wQ%36$`l2cGlKM;3l)1ZpcP>D7PY~XdPGLo}rOkry?sO_|wZ-oaB8<)| z`VvGLf`qtg%iI&*qqfXFYRlYX17uQM!crP{2lba4Tjr%&uF=umYRlZ6vt?cugfB}w zSbOe$;#!<}nJvQ`+A^I&;Hk;HhlbyWFbd*{zNW^h9G*g}9idVi{fMLBlQgJ%yh1i! z9)vGXyU6Xx*D%YcjQ6G8!aw19~#3Q)sD;;wiKUW_Ez7$t}h~l(zH~T0@&Vg%&F+ zm9{p;(w3e=OP)Ug>%BJ8OP=)@S}ddm&r@V^qt;t`3azO(JB79v%ZDawy;Ee#qtce1 zLThNVQ)qkPDs);}t~FHJ(o<+jdn*(ZdPfPrLZ)~(g|CnnY}9L5DAtAY9^&f9=mTiK zur9mLW|Aft21I;b?AvWD-uyEuSYv47)SJ1>~bzMM0m2!YA6vLH<%3$eP zx1>0Tf*WlNF0>5dY}wwp2MmUN(T7lQ{NXlU{%IV%uy-uTTDbJ|Tre~I7WVlOJS-iJ znKof~7Y0xc!kkx5c|DlR4Y=2S}Z4zS-i3X&WZW6}hY%#($XT5;)- zxTL*O`uQf(E(njpp}21n+W9g`sI)jf7{}=@Y#Vi?ITuzp=Rgg`tw(X;z>zd(IA5k5 zm6t`~BJi@PjTh6JF!DO^p_2vS;&`3Nu}J18l@^B{gLX+9EtS7SmA^Dx94?JvVzA*B z$yBA%E(@1|c3C@Zt|u(>pC;)E%TeI+7zQ$1lTE^vkXq!5a0QB7(N^Rz3@bF}5Jid5 zBvJfU5k;rUm3C#g60|GZXk`dk+14c45U>hU_p;Q|8v<7OOdrV*u)^yzgW(_;9BgNh zL%?7ggV_+UnhZ*xS$#x(W`);hhQcB6GStS4-)GifNy8e`XNJ5!vo>4{+O=)8>@#b% z&#VjAgzIdd8S?tf`fxpH*SFK=`pkM?{nBSPpui1&pW%{6ZFfwSqR5SHMGoJEut#m= z{pcu-P3SY5;y;!?vr!frDeckW(V#uLjh2HMmr3eicC^n9!Hvz~rf_ro9(^V@%HkX? za7(xa1#W38aCotdDQn0~6U5E;Tf?oO-P%t3eLg3(aBH!PG+$4!d6Ny- zMy}=Ku?=OfM%h?K_h)=ngu}98N2}N#Zbuc{+p1vGZP%tdCfpVt6JI4yCuq5dQfYUD zJ3zamly*n-5suS4LAx`)MxSi&bvb;_@8!t#L%lI;;YL}#qZRH7ccH>vZ50kbOLV!4 z((Z;XcgOD&UG9=~GfKNB+ymM@ZL~5N>?ta8FdGc^)==DXlbP zHV(7l>bM#nH5smsJEGxgqc>a~A07{0j&I||AFfV7S2)28SI2w9)rsMWpgpmTmVN$2 z?eiyvCxj>2;p%vAxH>sJ8MG(2)8>Y&lYRZmaCHg_JS8_=Wmf%x@BoTD&{pK|^2vCb zM>exppNiq?)cEbvs}Fd?)oI~rpgpaPHa}dQ=CdQi)#>4>;py>46pf}kAS)5Ijn4?r zK!Inp7f7@DjJ7t;9+NX`;E&5JAG#^)g=hNJ5*&Z*Y4t)d$i?N#;922WVDPLq2L18$ zS&;5o@p?)Zp5=|FXNPBl_Uv|AGoGGZlrJ})o@2(-XQONxPoHhZ({sG>^xW`VRB>)w z73^E*YTr69e0F%A9Z%2k#?$k|^Fe!lDed_>o<0Y(&pD#;^nf>>UJzb@3NL7@&>v5q z3tc`pK3a5nfj6FB7+wh43)^UAJiV}}NH?BdR6}uv@$@3Uqa4Y2dVx2dUL0Nw1}`pW z@ZxF)FCl}4@$?d(!6O<^4|wD0rQxOE@X~e;Ii6nH#$h&|K9A3ujHk~#qVe>AH=Z60 z4}zD2ZM^v7>1F5&mznYOpf{dg9$pUG%iCz#=P%bje?@p%c!eEL4|?P2mEo13y|SG) zH=bVU>tDvxt5D!o*?5Z6^}G+zTpeDGGOung6Z~8)B{i+J_s5HhmCgW*p-QM88cb@79Hv-p7qw!9C}+z{S? zI&WyN6G4I-w9Zy%*vdXY!?>8Is1Y2jGBq42B_C1p8#}`rvk%Y+x%&Xk^TX$Z{Q0Hi z&sXxBI>Vc?56}p?`vA?&;mshwxs?27C4WI@_yVghgy~!$Gd`1VlBy^u@v=Es-ZXB- z!oJMbx#f z*6BThd*X+Mb$UEI0~TTJqqzF@o`6s$%Xu}fKKw@pzOk?#?_S)q{LdEP*CY1JavsFh zFXuEw$XV|sOcMC;*W;e}-z~t0F^59Ru4yk9y__=U+xyCwXwmMDhZ__#Z{t`EJhfOpHE(MqH)q{Vqh_N~pJ93sO!c zalV@~oSg6G{37SOIsYW{-3+s1n)^YJr!rfFX>RrotnTBjPIE8UX>J0dPXbd{_i>*4 zXY*vPUe8CF#!hX{N5P!D2!nhc6e{bg(LdyT6zID)IH!3R;7xkJ&D)sp`_^(~ip+C| z`Y14V$sKTogHq~kxy!s&evP(VZ=S<} zgu-)}(Mx8@nJG_ImQ-?P%FBC8IMb3DY|ZmHcdA83L;(G&C!GahFx4`fmxMP)qVgkC zh?bx3XCv6jeJU8=MD`%MoRP}5I8>xj0ov9bnF2i-92_Hr-}r_y($+`7aAASt9OecI zFW!;>feKB@k^puOS>RZSsZ%Qj$PrGRAhrAHAXvBOu@N`ar_0dKwz19|fSCR`@Yp-RtA(IS|( zzRc(FFQIdLfQsg^uH13~f-9B_xGY^RAP?Q#Lv1bFdaxuaG`41c*m`2i}F znFpw>;B|C5QXZg!hT`P$+DG~^R0jz&^9QI1dVfmlk^@xcv#`E&0WW%h%0m7O5?*}p z0Ko#4(^7(j0NtMCkEGBXhdOx?aNirTWD>E6l-oE|7>Z2+!yl2T97gLN%(qHOoKiHW zW^|eZP)bH|uk22907?O?10%AB!f`Q=avQ8_niV^m}Pc&K}}psX`TYm@`mZLy>fhGf+Cr87Kt;7}x%${hS`~ zTD8m!55TfD{B#PO;-xbyOJosv@3<>UC9v~PFH%fr&RAClsdYS9E9SIYte&H3SETcV;zK2 zhW<{kN~~P5y|)q8bz{Ccd!s*;WQv$PMDi%sIHjrp@HRF%<` zKJs&F;p}kEGxNyL(nsDL@{&g}Y-^($1?xAQ(4?>w&3+IOOo|%pLvvgzr zTr&(*@KZ5t9W@4e>994whKa2CM>1^Hb=W$pYS@x4S21iYK$nwYYk?WI7L*TLSs86_ zzy;;QmLoWvVe4()gW(;7vXH|TW(TpDNNuZy<{*^9ut4&$4niqIU*mPd2V6HCXm3X; zo#>?pp)9I}1L2})<{*@XdJu{^_N9UoY_83oA8))}jI(Uy;Hkx`tF}Qz#2|6ic*~O! z$~2YHl#aJc&3L;kT!QsZI^HhR@pft3c)Lu;+oeZ5-Y(Yh)*Sj$GTw@`n>& zO2*seW2uV7Rpaf73RPt^rQ>Z>3s;2EGc(>U*YVaI10%TuO(bAq;x_!|paH^lCkF$}vXetVvXg@-sErry z>}9OuCoAwgt#aqUJR5U;n<3kM zxcc*+0p>l|0=^zsAO68^g+Gj|58sJ-<*mSf0j@s$e{j!oRutx!I}vTW6!5DG^UE7B zugr3;#?>$9mj=G3aNf&@aL@7|Ex>O^fS=`j7+1fXn=!A zH?y2K7v`N8BDl_a58&$K--Wrm?_xB(9CK(Gq~(vHsLx@7^daEB+Jl?y+Ghace{Wux z!Tj8}c5VPN%9D9v&KYoCm~&m67v{Vk=Y=_cB=f?wK4l*?rylU5BjsakKe{6m1(+#j z$G}W6Z*`^^-Gb-95YYb79n{b7=TPR=oC%(IBQ%bIc@Wq^vRYECoyYGrlCDJ>U5_~p z{rV1Ru?VR)1lp19=KCn5#rIK2jPIk6n%_queaE!PDNCqD7oo@E8$8GGJ1L*S@7yUUqJneW(u6=lqR`Ne+sB_|s!cF40{(hZVs zL>jd$vC+u|xUQjGJB(bUgIpwpT%@F2q|M~n`LyKG@7Q?qM3+F`_%h3om4>qGH-*q% zuB~8JL!P50-HbH4(Gp7AV)Uu4qa3@89K?qlB!C>G$oSt){y$r6547%J1XT>ie`VU^ zbGi1=Zwd)d?wdlFTP7^`wx8jValCIq?LpF%bgQJpl5Rs9-DHapIoQwEQ;t1G4$?vn z5?khH*wvQH zl>>Hp#h$j@E4|#kZMk>3TwT(zA1E+Fj^!ocjbS6Vq=84f%t5aawEU6=GH;hFkg*^k z!xpkrAiF&X*$Wb~ZE?s_kdRe{1c@@U1CZ7?+LtsO2RH^fURoGh%pQJ$CZvf+(ZDg- z?TFEQJ$y@3t+J${63bf^Kpc*uQo&>S3KXhMRv@tyZb^ewX3B8~9QaVTOu>h`B@I5b z6j!xf!O1z<(g?2{)qMrUUF8&Pn@*AS^c|GK(Mx(nS#bWt+UP2tu;@(i4f14HQ+2AfCX$SozsiErMxu2iUjk9~8`L za_b)mu2}!zvS5SbX_F@sLvTloK^aRdNB6Og4f5O5J|ChW(dvlduYc&m!AwVkpwW#l zrEbO#Iqr$$B0sx&Ifj&r>m;dalU>m8+KD(-Nmy5x?Xcrg}gO7LWiJwdk5~d}eUG>GKcsMLU z>k#@qD9!h|dEC=}iaMh{BX{mo7=&SZ1}mB^O~zxO&f={~j?b>5Q;Foaqb-7jsOoZK zySAQ{5b9Y8p*<@>N=sNs{Q<^IddYj5UdE;n!Javu-^PfPZt*NYxh zcpAp38-8|GyFryQZbaF^VaceUT|Je|s)H?j_ob%^`-H25&B03?Yyq8$HWL)oMoc=` zyyhKj(hL|3=U`(A59{zgyXsVB-RtrWNxaOx=1uXltJI@?7juEN=oRKIdT{OGF8h|? zs%`0-=B-Uk-up|jCvhpZ=vq2l;j^nQ!~5)Nb|%)1lW~41p2w9i$lzPaA3AAm5QZYZ zyLzSvH`%op0mlEHFUWzd%@@S*DZU`zUi1ZN8qpV|K}27WgRc03w0^`FO^)p0yQaDDl)bymK9% z8o?K$JPZpL@sjYyjt6gH9|-hQh?x;gw7d~aEm?Dx8VC|<#zNExKF@qDKX>qDJc>_ba&RsR*7IJ4L*M_Z$U!kNW63bs~}Le1h! zkP{?Kb7nCC@nSS)(JW@MzFAB}&n#v(RqvY7nZ=hPFGyT!&D~P7m}oGId9iq6788ID z#(FBuVrCh$*m6T6V-^#nW-))+CNG%9lGT?!j~Iy^qsBCgAEP~oqeyB^9J4Lsk**Ea zBA7CItTi&m_LMl(X&M1!ML}46%RU!GSJ+p9PHnJ=>n6bI!KE6_^;R#kS{5 zfVMp?9oqJ^^Jv@i%^|iujXJUIX&s1dPZJJ5I#YH$Yvju-07gCqf|1W#HS!Tjp^;C3 zZ{*X)f8%u74~e~jLqReEgvPpX-8j#{T?^Xg?KJI2ncU2zg+xZwn^2aqq;XJBF#vsY zTP{spW8|y-oB#z+-Y72#Z}`ZusO*gY4fPEgK_*V#cxLU^=w-=4!Wu0^&EOY!5H+W7 z$sj?Z^*$ev)_2+s;}md=rM!5Cu|N~jlo-ZjUE;-+Sf1TS91hk}fisMSRG~pa84Dzq z!WqUMg=ZN1P-pD=P-htX&{AC0Z3QR4f$sD`Tq#FQ*%yNIAYtm8vYPiI$z$8Bo)IL{ zMt`lV9S0}Os!0cc789bi=1phIW;nt^>(q&;aVcL-i;(bbnk(#YstUUqbfz%kjH|G} ztt#v|#~E>|3ZoS9V!lB&rp-RW%~PV9`@vA_t-=-Y)OMfm3r4gOa?@?TkHCBDaU@!v zXZy1$*t=X$b+-R)$O{seTASXt{mG_;#EAympBIZKwm$(7gZ1QXe^N?FoLR>9x7?7( z*!~2m?ayDfR~Kx5$?8jQCq_1ORoVVeV!W+9L0F4mnma*Q!K@}{`x9JY`@1Z){bfMe z;)TR-WgW)$ciLCmU#laAZ~JeoZ`6?Zrurs#f-pzwAl#JR!|UjcNb8$|Xp2};jiE=r zh{#fqFtf2Ks2^=k5I$Pb`%_Y*v?iaA`ljpz;X7DZrpa>K`AyX01GJsrh}WZx^#0h) zJqS8-Qku+mE*D#EXHRU;cIFr4B__V5zQvs&tYU9TUq((<>@5N1fbj^izurZ$nc3J9 z)SKo6;ijS+vA5_6!uZa7FQQzHtwFdoRl&>UU|zIKN0K1nof^+~l7)n+JwX_K+nylo z%S-tX6xTY0zGxc`*M~JIzOBA3cY^TtAl#n5loidEHVeXS>C1VmqHhbRU={seIw?AF z)o{k?Y#J5cu2J#rHYzT~B`l?}EvO%3P7ppu%QZUMrY8t*%bg&+BM5h-FJ|qzx3Oz+ z=4FO6Z)iB*B?O+D%v*f;0$FJ_>T7D8%Hg^*?Fg0H_#z4q4ok?!&LG^GzJ%P4{0T;E zWxOxFTlgnjEoTm35*8PbSk6R2ZM@KO<~46QvtwKfTd_9srzjcWa4MxU{vd7)-Iyl` zlYBkQs{9GUyW|AnAHX!lv3573e@?B9d<7*oQ1XXx#jecHv)3N-1Ys8c1WnzM&yieD z5dJcG!|AA(;ytFPXO*5HOl{z3oK8J+r3;6ncEz6|DQWM@XiHBJHnh1Dgg<3z-=EQz zo*-;!r$irth~@y{Pg>fqXSAg!2pig|dc4py@H{R4D@*(9jJEUyVbbDr$kXNUq{a-; z&KUU{un<3J3z$E{Dy;MvVN*b;1=LYMT?_cQEnr(#KmOO1c=Ni%SlDDm^XNkS7`1ehWK0P=Mr2Hx0FMpbu97@eJVX=msB|PNzc}8Ebqj5x>#5u11N_w@6e~x6Lk&w3S~L!#QCyV zQtZgxp--iU>KgKuO1`QyT$LUAB(=LkpGuFsHROXzzPdA9ZS{qb)xCRcB%=HkPrNJ= z!JEb!9Qu@Lm(z!QHCYvN`cPg~HWrabmG`}A4Wjbi4@RuzOryNNJ!vOtfu<9n@MSvq&a%)k$pzUtt@vJ6TWb#M+PXqUbC}6t>H`%o- z0pou!MnNlbV)RASxk}F{x&p`u%t?%b#wueJbUGQMpgYYN1$`@tQP9+t7zN+xh)Db$ z%1OmAMMQ#9AtJ$BjYz=sV?=_0=*z&ArJRgM{0jVncUcd2FLDoK&hcK5R?a!zkFrcS zg0s|xql#YHmg|Khl2^CoUg?4r$pdY3vma@>Pz21jKq#nRdI)(;kj$#LuR#R zHt|TOS?3(J2&V1l5osRl$^{4?dKy z$D_=gczhSHqpv{9iAOl^GKHfPkIc(YJPLMyO5&1D3pO2;YZaDF%eW6MjI`McoGU~+RJIJg~JPO}^={tpe!V43R0y-7#C@2`SiOKK@uleu^ z$L;}xA$GoO+d~+Ib$AnxPF2?2FYlGa%glY=6ek|3M;iOAm=?U~)f)S`RfX)IJ|^#d zTVGZcims)@6($~ChMRb_^Nt^bP0xA97|+fsyhHd$o1XKIKc8Hyz21XMCX&AajQ>5G zo`ZASyd$Oq#ir*wfHpm?9oqD?^=Q-c#UVC54PUY8X(8Z8N6JwZKRQ$PJ3H?vZva^N zlm}KmZ`I1*p;kTtZr;)E{&D-vAQJcgV5c5NiT43HNZv2$2PFNVq$@c#s zDuyR;37!=T+)wA`U#}b zODwsO@d8}&ItxcmGcuA6GLjH7l9Do#Hk0Xe%Jda5liMc<4`ndgg(Utevd{^mzsJ?> z6V!cm!lTNh@*uF1Z$0Y1r2QTQ2SM@|l73Rszm)V-l71R#bdN2{$j0`=n>idg!^p-m zAR7yTY%GPcu^hG^OJe)6tW4H3pXv6y)iUYtR$C~$)e3vn2+a1X-4-I209j@=wg<^) zz#%@;vU8kk1sb4jrWnwgFJLml6+%&3j8fl@Ur|O zF9~n>mSj=cS^;kMho##iIC-a+wOeOZonF>xA&g%I$>%)?IvF5;lR<(+>-{T0THkDU zX#Wmy3~ao34y`~F(!_5@bL97yk#%usE3rI(jW`@RrGm%6oX)oksX|r51rkf)99oaU zb7+02b5eb%b7*~NDQ=KZw-ucH7`pR#7p3#6vf0g|D{wfhYf0fy+*R_)KSHFzBAaSYnLw$dh^@zVpH2AB$SUmAp2|)j6 zJ$ZkXl;W>4%lNC78xk3Rl_2$3`OCIw!C#fEzVs`^$R67&e|5}xaxH>sZk}AhtS0BG z5?tY`x~yg5s>;LUyQ*Jc9cG@~X&(+_D4R9Ip82+W@B$q-)H8@_bGaRN@|pb_b=wj_h$3tUu9vLCd*yD zl6i7}T;i;$jvACEbM?x_R#(px+jI5y*Z1o@`LXq5-8{L9eQf&Ap<{dqDjAwO0+>vWhG8{ZA zr8B;g(@BaiAs?Bg?Co0J+tp6aV@_%#mxE$zXLo!JDZ5&~&ZY?`g_H2%kdkVjM1&5O z%_Q&BIj715JI+PpH*+|_j-&KP-hdJt9o_LkTycW&LjZHCdunJWPfMrCsf^+@`5%!t z($33hOQ*?6iz(-BoiXmgBxaA!7$c6P1+2{qD4i=e1x(QbWhfbZp(w5>Ta!aSqjSjMp?_%maex0Q~J>#Hs)||9BxiXCY5%pfv z&}s93!teMGqy)AQZ1^5p3d0AUlF8BS)&y*Xr&=ST3wW@7WpcEub#qo}=}bE-g`*QT z;(un*(j5l3n7(l1WtfUyA%GX%FG>9`kY1 z+^1>@j=$N~dp|p_-n%e|Rn;IT2(9iN3OzB2nQ zaulv^ouAdPCR~F-eNEfTfJ5#YUFEYj9KuItW6>RGta_d2wVH4!dQu3yfZ|%f4Y(r6>F#z0pkl}C`XJgp_ak(i=yevS>o5nF%50dGW>p^IOS;aC$EGC%^5$93Gt~FjPQF-sj zh<9*3h}dajt%f_IhuNlPJ&2caO!SB}_Nv{Vhcqx(eh6C$E9PqNzzYU}8u=sqzj1#u zu6tnS`|wX--3V-5d>kwfzZUC2u>Y*~R$P7j^MIG2{C_UMCn5g)Q=CYX_SdT}Fvb(=tXR8i9|VR2)1+qNz1RqIs*4=zZV_>rDuVz5~o`y~#Jh6T;MpX{`&A zZy=k8B91erbq#2nT-e#Xg2|;!o{I#s2g$ck7J3M+5IpR~nAX3wpQr9D{H3 zlJLeBmBqC9wHUa>J%W>uX|Z-2!D7il!Wu2)o8ojo>_K)4&LbHlNVHyHPHO!p&9 zS7BK1Qm(Uwt}x<^tFRYU6?Tj(j5t+=v9bIhBpZ=?eWV9?dwqzfG06FN9I{PJL@OaT z&*1mnULPWQF--P2K1A-RbTQ2DAumW=YGadr43lh143lVxVe(?}A`U(TKn&KCk71Hh zVwlV_F-*%1iA)TWAdO-2mwk8(F-*zoOTSNyY?yvpF-$FjX)cDTU{;fhVG>*s!*p58 zWH^<<(~n_3$~sI8(`g?AHe#4s9WneECO5rc(y*t&O)ql%)&5{+%C}MwZb^T_>*&8C ztz*;6e!gdBHr72d2XEpaVW!#if)XZ#O-1h)YLuoiOze7LE?z4?U}2di#~s7;-$RUO z>05%*WHHQgu{DP2iS5NOx7N3643isS@G|Zh+8@j^Vh^WJl2a9XIAGXM#a;{}CrFst z7!K;#s)A7NJnWAVbR+h##xRFX3{$q#sNm&tFfZB#22ga6@J?fxKO_qYQyarX-?lMK zUtY?G7^c=C^u-wFG4*3KhPk7@BNxMz{U=YbqS;3D9VuSCR`eY~bet7^g+%R$t1(Q> z!f6b1r^YaM+PywfT*6X#T=y;$!`!9i8XfJ>80L;#40Cr7?oR)MwdX7k*W%2}Vwk*P z4D)dz@YG~1mf=5PR4y3xH8oDU%#BDW(rp}IpE?@NCy z{1dJ*Ob%cY!xYe|9PEgK+IV3Mlh?ch!jAE2gfwa+DN05RlS=7~Z^4bB8*{G@$?t#( zncwTPS3;3oSQqZKdwuRhiQMZ01D$(){++${kb8Yt{0>a%*G8U8a^36m3i5_Pq>KBM z1~I9PVh~dUKcIDypVA(Ff6|-sy*d_Gy%X#eN1+ zhIQ5>X@vXe3=`gkf>EV}Sizu+1C>TGK{5P6c$jp+iaa(iMuuf`wuuAH0k;wenqvY% zv%Nsj+;A=;0(09QNOs$~8VH&f&I#w)K+tS25Oh>{6ljksr9Dc!-h9x`w}GJ9Ef)w{ z5H0}if>PQAO1luW3vD21cFP5V2EqZ*4z$xAgzy8NPWGEX(0*+@}T@&rknurQUoUn&&H+;Vaf;^hiX3cG$S{yD0|BKuCht3zP>`SnXX-UcE zsiomkkS;AHU8 z4({IOsVIz4XVhLNqFs^Jxw11{nQflpyTRK$wJKZ%@>Qke8h33Bc7}sluuRBZuxxd> z8sw`>$yaObL!F2X+F+TGyI@&qjFitSm|vshYdaAlb-^&+<7NSeNe(6CpEcV|SBuKR0p8?W32Y!Dc zEcU;E!*k%p3yTRfAx%kGj9QSTUX@r9P|)xZap;;z1uh~cqzVlZ%2*(=6fPp>QFswC zAL^o9KGa3Td}t}I>b8Otx716@NvL!V5!8k(^>W}s37Pm;L;X%GW&zl5P)?9A^@C~x z@Pj9;Mizjv8h-&8DZStcvss~QI~P3pE%JiIr8X$y2Txd!1W$;D;0Z4lPl6`|V3=b) z`QQmDC3wOt6FjlpkjMm22-4sQf7x~}1WzQZFZ~@cvWK}Uc=7~>rOLCzwFsvC8b@|W zqJmjXE_gz4MexLBEtBAhJYrkCy-L4g9VU3se987CpEVEoM@!hv%{H}-|8dSM(VPyJ}P&)7|e@yp-K$i>WfS95IWI1guWO$8T)v_$rN?AG#PjKbUMkg%jYB``R#b6 z1qo3PvCBtFOIS#LmyZ-{R8+mor^d>2FDKXD%*!GtykX>If)IFGGB35^-gZTeQ#ah@ zquroN8JI?fG7d*Z-Q^RIS>5F$eD|djg?+*cyL<#BffJ&jHeMJw;Wcl|a=;rf7-Epx zT|TVC+vVd_W$n`P4oSSsF6B*emk;%5UpX{2MX%N>&F%7$u4!IQ#N@qil*%q2(X|XP zgXES$HY53m&B$A|8NoSiMgrP* z_1Nz#?MB_$(=!uN21ysxA0*w9_DDJfY4mox4FSAzuge9v?g8D%d1kK!>9ALVgxD)V zO74{)Z7sS8V-5E4oX@=xKf>?aK9EzuBD>;X{9|NsAIMK|730>_1;%Q^qrVU2rIw-g zeJy)^d3wP?kW7_ynxxZ_M(?!brVh%3iRWs(q{5pKzZ;E&dY;G zXfQgB@;qte`Ogx0ghyYVmsy6|+Xlht63j%lI;gm==AR*=@PY zoG+8iY0KqdHujYJxox=#tliv}m-#@!n_~el32*qy02{e)EYT){&D0}kc~^+cTgQit z1qm6p5Hb@8lNLe-f`p7&h&o5}G6=qGh2KFk6KU%s?at9c<^~BbEsX!hco(S9#P3D( z##@;z0M8tosaA20DzQB8fH)j&qypz038_N0$qFQv!Z}ACh36dkQ0MUYQ0E-^&{AC0 zb`>XmIptX1*<~syR^%yk5y1fUoiJ^kgnXSzR)FsdQODv7k!jx-BBkdGF`MdT^J-IJ zPO&3K-|0yg0fuk4W~udYd|!z5h%ZDm_(Hr`Jn@AHz*EI~^1cu$#TR0h@r5imBr?7b zLFx0)AJgF%%q^fL^6%^$-|YW{%9caZSG*TWmM2&V0aH)tN~$~i;? zS2#p2OC2J4thRU#(NUna4v}jDJ}vlADe~~0UzUzDg>f7=qFMS4CCv8rGb#bST-3oG$Fdg^`9uxEOnTAIM zj-4;Ail?ok6-gm5^m3bf_(7=slsBx0Ix#*vf|qtrqaK9ybcnUhHk~(2*YZ}y4}<7T zBmSK*oP&g@>fP1Dy3UK&bzZz~=f$P8goQN1px!X^;teg<=qc2B@h~?p-WP;@X~fF? zSFYFS%*(tx-q5>SDFmLX?5o;%cfPj9sT+EC+83&nfo0QB#^K1==numFbQPIZ?@svc zO9zF0!qvOua4gf}0ut|zD5#AWdUw3$y*ttj7!2p#A-2pqy4;7CovN&NSKcd$mw9)* zX-sg1={vF5ZoPT!%@Q#N~TdxHv zUkCK>XwuQYqajECjs}DHceL8XzvEj4KRQx&IqT@jI{=OzC4r;ITXpo#!gB>jj{xWB zp})6+)tlOKVSnTe z<0eq>&~4=<;SGBQiW9))KM`%q`!`cP*J`_NKcRd59--^eUmDMu~aZQwjenEIBj=53cerY#_# z^;}!skH<}_DK3x2haiFP8^u)iQj8i>$NeY=p-JLIOISv3VJ1w`2`YZPiqlOa|<&S%xZF`G{NPj z^yn5Au>mTE@J_jEDQjuO@Ga%R`k=16TwP!7)?HGXAY7g9=XG>F()#Kk!YhOe5SKkN z3nMx{5D9Q&bxdd4`F!*!S15h}GY3ziK&(~P>uDaay#+@xOK{SU%F5D zCtM9oj!$A>3P=o0qM$ZjXkhZ1H!#^TZh}o!8%aXK~$j;BOFqfotJPuLs3NU8+tb-Qv3Aku3(~tm*m|xq)czdmX)&Z1!`i|5L#jCL z`=PU7UUm-Ymq4NyIT$yk?^L}9SX<`*@}{vItM0Nkq65t8Z9~xk7It90z*wj~oJW<{ zr(un#y!Soe74(4Rbs#Ura7FYhmSa}kc^S*2|B(t-)$Ez&kHTEQ#9i$_rsUV$ZNjVR z*~q&Wz94Ks`NKF{n}RX?1F)<FCfe zrXNSYm>z-n#cTrci)l;19sXaGlZv4ScbHrixWfcQzXhgDC(;)_+4qG{ zK=xty!jD0oW(1*|OPDNRG6xCm;^btMRqYF((w0ki)lMOu+Lp^vJ2!=N22fx=oXJbV z8*4W_K#dnYWuoOhWwK`-U{)O@WXVF*Q$7Gl&Qm5AK|<~4K1Z=|hP zVAL)6&Sx*y1y=?xnov7etOIBa{Y+@vKgsJkfu|%NyQ)gNP)0~&B zU{;g!vI#EtvJ;o36ISy4`V&^Cvkv2iJMF_;#e|hsM~p+e;S`r{_=UWVo`{rg_<0;6 z>4xh!znGbK!v(!RC3T4#el82kG&ycJ+#4jtDbs<9(quC|D=V^~gMg8!p8qEG6%uO1VZy)o%Ft ztlfVtdM(bp%nj!a-SFoKfu|<>IyG*%uc>h=hi3y-?TE2O&N7m!si=i4)dT_ ziAc*c=7!5dc6An1I$Sqg$e+F&F62+&4Hxnwal_ppY~AqkcOCIE2bwqS4m8JT-+`7f zyWD}67oX=q^S;f2mVsPeX9Wk^%g7vP>p!0hUzq;$rM-Fo`9m1?>+qld%JY-yKOcne zcsFQ%;=$?7@ox_NRQ~t;XPQ$v|C#g3CmH{lRvZ0i`g!!9>D|$PrdJ^TGrc(RpK1Kz zM@PzcoOPtdRD&Z;@!&}FRvl@qi=`t?fODi#FMa7tIIDvCx$o>!ARNZNGcJ{Gz6H8! zzJbYWn7j&!xYC!QEaOUZrFmiB+2w7yzAJr2TducOQ$JRIHBevzT*FJk8@~HlQTwhm z;^h5k@@Ac3^`ps;h3HaD@?atAFkhKLf<)^*2uSOP?GE#`fWxui#dDYinvkZ%VJ7P` z*<6X``JBX|k0lj2hgnD!8YGmlKw>GJ!|YLb4zmw+POuMk4zmv}#SIebwu+N%ve_#q zNT~Y?ibXSR{6Q$x#l8;sLBiB`u?66}u+*_k6qD4SC?;jJ1kb(th0LaUT~oP<;uv{B z;!^9H`YtT%k%?lW!G-0;;)x4O0IWLJlXqcBDHFxaGA^v;hD64NCCIUAo3-G=5(!Vp z^}J+Hc9jeJ1V)3(O=wyK)94Pm7eh$EzJggz&V?no!i9BN>cYws<-4#~u@2+HI_;|q ztJM+1cVWvnp>ZJNCbXOXKla`{&Whp+8?M{4Ff$AT_ukpqcepTssE8wqBA^1IAc&$O ztGmY08C)+{iMx@wi^hFTT;p!sjT`QJqM~9n#x>Cxm&7dU_dMrRbywd7N5Aj={(9&4 zo9cV2PF02YmTB=#Xu{o)W9A~8&<4zf&(Z$cAp zt97wWXsUN{HJBCwSW*gL+bKbop?g;mJ=<+U^VOw#0I*tz)(WSBr9r`CgUcw zqe-gf*o3y&YOb5m$od1D(4@313yE(+lVYujN^e5zVCAuAQPkc{3-K!n;@9Pp!LyQm zhPh2>zM(p48@{Hf-Jp~)bQ9W-(NQ;{9Y$gGHARuTK6ki?&v=Ee9K2)|S)v5Kk_DZP z7s6LwzvoMGT#LPWH)oKCdyC=7n0(` zg(RsiI%5vy{)a zRZg%-H~r4ij=pXyApt%#Ea7ny9*>YG-dL@o{dKqxk{vLy=*4`{iy5I8b5bwn4fR34 zuI%_0qQv&sLAI96G6ZdSn@jd@eUEGY{yLG--@o-sCy>)d_%;PcHAo+RPP z5}txEgSGj*wwg_y@E{YNm=`)RGjw8Z>csqPE0z%I24CSP=%#Ju>E_z%bSIe8&h3Sa z^}|ykL6H50gr`Zk3Ss6>ml?Kjdm-@(M6v_Upy{q1v`eeJ+7Iw;Hhk=fAKUeV_Dnk(!h);?on@{lT&dBYeFsX`ur7f&xz)az|u zuUP-xIL1$k{O_0K9~a{%RVc$IF&rt-Ec?qs8|)qnoDG7Tq@#kryYhE<|LsfJQBIJ-#wo zL#mJmZo8)osS@$CFSX4dEmNuJfsSFF!XvnqzZX3+t-PPkE+4=Io50Of(XJswgX&wi^osOAHTY>4RDGl zYGg4_SvSs&nbr=6#L6J$>1cTljq#8w}T zlk)FBoCr~qxkc|kuP)oBDAl`nNqO>H9*iCy4=ImlAC=*h7!RpJo>OByq&%Lqmh+1k z4=Inw%5z$bhg2cYsu&L`kEdGe`elrV6zx2v@cy;+o*v^T<&|l9&WQ1lD&#pc#zU$^ zKg4aw_B|`cPm26S@C0s2@}C{!Csm^V;Pxc{IWc}xe*eM8<7zT574#ptf6RMsEH5cf zU$}haIWNXT%Hy$iTOH#ebU4co zI`C14n#_n&b=@8-hZM(b_3!MQ>ZpReaFHm(9kINmJUOi&dS{G>l*eQJ(7R$hq&%J@ zw65R9cu4tjrl{iv1#;SU`+Y1gse*Qk-MbIR_(^&4*fJl9@sRR((kk<#F&U}K6Ps%IP*86yjhg2cYnivnMLY^mLJfsSFo{aI3@_6=99iNKvkSgSPI>tlF~&Sr;>PX{X%5O zEJi{b-1r(fC|90m+Luq$^nH;oN$we8<$5(%Cn--Z+ZSGo@sKKUzpheyydL8xRf7MQ z%D*Yiq&rtq9#rR2;;6GFO--+>)qU}EtKQicOpzV*2*}j%G z*1Ye=@{;o8w>thg#zV^EIZMlVFUCX4Vr5`{nA`{lc;8T#+Gj700Tk(qq;2`D2x>6Dx9Fout;^ zXE9^%@sldl12f7V52->P%zAk|q*!mvZ}9!uJ4NppM)}eQaCgM)!g0jvhuIOY9#Vy} z0JVEOqzZZ9VR}5I3VGn6c|4>FdGN&Xct{oU;F06;kn(u!*oV>6<00koSl!WMJRVYo zJm@kW4=ImlKkeVmF&>Y_1(ve#D>Jm#0Dl#wFTAgoT#Yah(M372G2t@59(+YFub%U@p3$*-NU@%i3jH4ILyU{@lk)lfPc3YMG-&49 zJfZb5HvHDYV>QNL+7su(;;s2#;_XzN|5ew?b76Ny-d4QeYFhF3u4%>F$)=UtL|U*| zm^~9^*$sR+I4pky-&qBzL%p+b&MruOJhG&2;5!d2*aNYemn;cxeqcr620k88-4jL> zp7;hn%H}rbv0luXdoipFv*KRNR>E^m7!zc*-ZK!>z7FhpC*GWoc)Y^Si}zVMiOn)k z8@|y}*#_aFFDFoR*}zwl%iGaL9=;SWpO#84SZe>Zv&qn8*R$- zW1|gxer!=*wQUJWzJ~4eI3TYawS9h$jsa}T3uxIa!`S!Y7~yZ#qcvr#9*gz2>X9)s zn8WZ87RO{7GHR4&HVXPgP3~7n!-Rhrx-EFak=TC&{Ujpmk*#`U!&W_B9ACy2f}4T$ z#JB1(r)KCTqkFj2R=v+K(6#o* zP|%7u#!M?7)pEb;Hxjf6hOyITG@7!+w(2pu#8$m1Nw@0Bz2k4yJC}8A1nFU&$ojk` zuxNrbEETczjlp3*kHB;0HvySWrBczMuN<;?;QST5t~ecG3SSS}i%K=7yRQ4Nf@2XA zaV|YijzHl!M&LtjGJ89DG2OoGtH@HJ@mC_s%Pxb*Iq%gSMEwy)GTclBzxwrCaJ3T3^MyT)xX9AD9Dmm zckAIJ(|YJ@FFo|Nmpk-Tip#Q;bk88w+kRA_x0Y*d)Kd?A?HN1twNH@jle>hq#~wUU zi!&|Utw(~p^)8hRo|)_eYr={EJtTdI@B;b}A45lUJEP6@2>W0Xwy4U&Cxmr>dd z+(wluczq5V^`S81b-Nx1FxjprQM1?+$b#B<;dVV<QS}Tg*5@1;3(BSktGeuSpd#|UBnWq+lRZn z#m|3b<@x8oVx<6eSGR8%W-WUDtIZla|8;?6by{y77EtsQSQfB9JhE!gW_GCUzASv2^mJ9|6c0?v5mpuEimiVGTUQl0DZ|!~K!cljpH69%30|mEpijL{`%N2FY$b#8SGq z+~mn_8Nj&k5KAwimhV2Jf|2eFj>|B~fg#yayMa|%3cTQ(gTtMI*C`l!9+~!I6N9#H()T5!B7N(S8haE7O&te+I+ln zQ$gy`2(Kt2xfLuJ=WpXBOM-VEiwY6Rpwu8mB;<)B64o9^B&^ZJbj7-Kko~O}qlo0@ zFb1oW_#I?#K-m5+*z*v{?Mw}_ym*L2VkJ)-zAc%DNGQ4>l9F7Wi%uT)KB*u=B$8EQ zgDiE-%i?lGh{Vg`Are0}LK%K+gh>3@qP#(twk;vaP8ggOkw`g;I_>~J)?N|%s6*54 zlr*-@s2;YBrsA~?bfuO=laUSpD`v^oeuNylDeXue5h4HE7T}E)wr#1xw(A~t3i6aH zj1~LPh|S95j71xaR_+{6@+mUvi@UvTpp4ndRwTP^>GuglK1QI79Mq0u*(h{~$wyWcQ;-$efUJ0Ne1fbP0X0}p99c1^AS)(WWaXq`CX1{XrO1lETu019 zR+3bo`yDyL(dH*1D=mUy3|VP3tBD~iMwdWVQIaAn83TM|bqnjT$SShFA}g(q96qud zoEogiYDj8GgseEY2FW402YFp_J;KzGAaekR%f@uyb#Hf}>%heHkRUbGBCDaw-jHK% zl%~jPNQkWNW?`WvJB_UT;go*14tCTgL{`Pso`7x~WIeS#WHl@`Op(>_)bI#dsoKMH zzo(?C_V6Hcpi}!p@jscE9v-AJ7FlJK-KsrYk=1aEtVRUM5jj=7xE@T)Owt=J$dXcI zbq__zGIYoaecK@`Utj76WTkaT{>i+DJ!Hl2CvAhcG(VlPEq=JqX^i4gtq-xHW@)n^ z*^+yhq^jN$WDatw{|&BFkR`7ot5L~OimXN{vKr-(l@ym{Dd`sZ(n@!JPGhu|Yi-n` z$f_lVti}Y%F}ZtLd+Y%kwK&s4WJQ9=>ORTfnaMtQCv@Q14rJw9s*}bcveJ%F(i(50 z@Zd)&iGyF08|3b%v>lsb#8$!Ua}S98j8|mE0ZfpUL9|WLDf2rG?SaEbd$eJl5c>MxmMHou4O?yaDUEV`N&`!Sk~KP`vFMjH zY}T~aT8~=m+prpltZe(EIC6kx!dLojiN4OYO((|^?J;*1_>Kmjep`Y))cdwX(Jyc? z7rrgwzQEB1AK(DOLzT9}MusZ-5e}Q(eT1V6zQLh(ve~0UEsK7L!)A9M;^=~DBDIyx z9vQ6Y$2e?ucM511e2c@{3*tv3k^|Jm2Y&K}fSN?Q9{_b|T>@$jSkA;m$ufY2fI7x1 zPXXH+WF_qb>iz`OGOEegp6s8&I%f!|y@Y-lEN%kx0^Ww-h1eTdx(Or1imq`?eIFhQ z{ox9{0c-^vC4U@9cu3m0RmM~Rueo@eY&Jq1|9c_AVrseYeJ7@-pDdV~K9FE)4)ws)SjVi%iN^v=O~rtzNh+rP86*OxW<&<7lf^MLUUes? zhT8E*+(UOOv1;R`I{n``ZDC}INV}t<^!f?Mqp~@B&KFwlUa;=1(^B>Vrr~; z#xeE55HZt+pbg8Lf~m3mSa4pC$mnBgED#oAYCLMN2$+Yd85v^gbI_)jL+&OVTb5k| z>CzY@I*F-=A#a4FTL+-oTYDown+MsaP?p8i^~w5tO#O60>d<^l{UTWKgnx;bEC~)g zC~5-4MFkmPikdVh#?ekS!WM_s6u^OK79M0-sf$q%{frlbX$&2WXG0%B1i+~V= z?DJtvkX7-XL`?fyJdpCB_sfV!AL7M>-V&Q-p0@uKKyMmLpm#|w551Cyom47_ptoez zSZ#>BEG|a`y}cYB^!8&TIPJ$q(A$qK%B%J-A<3@5kqW(~9BBp)eY8eDr=hk^UI{L- z{lvT?*ltCNV05V>jt?gQR0=k9ks=sfP=wA1yn>`4%g~=KkO&`1Q!QDeWIg^GC39v5 zqeCk^Wil0v`bvbP|A4e08-)%b`$(Gg2$CinkTfrjPmnYtaI>gLDEdJNZLum zOcqHqDiYQ8t2`u4Cfvz?+Aunvo) zBkL=Y*6PUNBk9Ieqax|1R8xecIizxR?JZtcV79qD)f8k7;UL+V?y;^>TplK-n}Src zMbgd6-jHK%l%`0!DMZq*varySokr5$Aj-D2V;8jvk#upj6-j$)dq|qgbrU%h_e%AO zkhH4ZEB7`fRkeEsnM0l0{VVv0U}CzLtiQp7fUBkKR_$Jjq>NuzH&B<<@<{eYyk4#}U7r2D4&Dw6J(>K8-O{exux+&Wg&ENvDf`{n*b zQdP&KeY;bAh+s$ZDw4*x(-cYfS0vrvA!#Wt%Tm()g46)JMma#swKnRfNV;DPNe>K? z19PvlcK@;IwK&s4Bu#=ydaY#e%;X-oH_)XER`{0cq;ZI(wIh_YMk8=*@S~JW4+@fl za&J)Dj`si=RPg%Tn<78s6-jdd6C^EBf~3iU+IS(7<~5GL*fH)CtokKN29l;xy0rb7 z$VB-gv|C#>sG4@K%Ps5y5$tvV5l$ANFw9aZk=(fK~PN!&u zz-p2;$X`>mW?g?wckPnw8X_>-)%z4;ZL${GYl~*D)#|%-Np=enm}HL-7+y(3_PV0k z>oj}!E&$RI0*iXGLtw=R4Dy8tj6^yK1lGg$d-*UuJGyfK2&<&yhX^djDx-(>SjbA+ zM_?%;Fu5CKOh~3OW8l`i@A7#G$;<{!00MJozTS$_a##FU!QX~&Eq}Zz_r*~1EE;=b zFWx4b#fam-hqL(bDa(vS;Q)6$_YsiYTw!q*pK-)l^qPsY=qnRv@xdrKi;l72EILs5 zQJJF~gdbgU92$VUHbluedBOpCQ6V5Nl8U@KAUlv3Be>tq0UCZs;2n(qR|*E{9c14D zL%LtGUnen02lBT56{AS&2Mpe2fXAs~koQm)nvX4tVKyIw{G}juXg&t{7%UhYKj9@y z!WK2*blTZskO8Ryib2R0#~>8IAr2NEWLc?;Q4I3F7o!*inuI(jO0EyXm>{dd{24Lr zf5*2f^AHD2LBzp}hd3lQ%REI82Tdc0qa>H-?2?BbsZ6BL0R9L6%_*L@>e!5tLLw1he`ef{Y%BU@~Qnnm+;&pCT>DMxg@-K8RpF0wTx; z5W$P%6A-}&jCiak4kDOSKm?O4h;Y&{lLZlsQV_vkuB+sM2uZ5XeMXLOkoZX;LW^J+ z0}&d{YGNRQ(Ir4cl%ya+?qnZCe8f5|h={DOAVRAnhYunKrUojA;QIpO@lYSVP0*O* zm`JbZYhG7ij4MwK3Np*prR=@#N?DF$BAlbtU<)D!D|>_FMrjHn28AHv?<_2|WT!!d zHwvwFW zhS}w~VajgR9;zS$OO!+yShhK*Y!(IWqT8R@7`;d_?XWlB)U$9LD8TzXjevkR`8zh>^*W3L-`- zh#2WWgcO%$Dd`bG%C5L!nNP~KHX5NIVnhr?$lBmPSiAq+^IDu~A&4MB5b=d%@XX|% zmz%;>0f_J|)k)(JL}*7SX^krdQvDbu)1w2dNq$LbJ3fHhtAf|(z7qKvuONa0n1Be0 z5)eTa*q#@H2wvm9DLck?@IXulUXCD$pi#QCy-)92`PaJ~$Lu%;1AqS4?Z?P+-0!&@ zH^wc;5uY7{xBf2~5F~T7*-IF2~Ut`O9$%RFF49Dn*y$ zY~E@`D!Lq}Pz8A-tWtD2&gP9R$62uAFR2w>jV3{!XJNaCDZ|9(zB4@MvD{^j0O=^z-UC|Xeo84cLivV3T zsyIMbeDEe;2T|m66;!gk&Y{1G>HhbTTr@_?+yU z!HRnb=)8nJ8LYSv(7AV1`(QooP29@=LS%p5i}>Rm-;PoJJv`Lr;aTP5JbrSV-(O$p z#Y-jxHzAJy9?qkGP?o_Wy~BB!b~9I5oJTi=IFCL$aUSsqaUOja!Flw91?SOi6`aRG z8}M#36qpm=1MrUO0p5{Rc!zhB3GWz@fioUoSVR5kv0cn2xLyr8u(k$q;phDu+(Gs~ z68=}h|4I0*gx?{|e3!S*h6Oxx4a(?PVb|GM2G-eF2-ewH3fI|K4!S?v`s`3-(|(C1`eh|{wlGt$gk^ebrp4$`sI(a-P)Ub zJ6GR*-2k%w+Sm7cND*Wq3BrVgfrMoUGlmMam`d*1t2BEf?{BE*F;-9Jg`Ug|J(-(& zGC%cX388++Qa|9NxPBN-S~6Mchu0uPzpZ2X>9;aOUZD~sq}++GM-^&AR5 znQ)UZI$T@KV*cS;#5eIB{BlT`#$%ho7Uk6zDIrNT z{~+aL*)V)E(Hb)U5Jl&e5UL-|KPWF-vPcn(E>%Rd;;BWj>5CM>=u$;YM<>vwTPZ@P zFjB}6WEsY$Fc{%aVNh9_!eCZ^3WJQ^6b6&2cGQESDU3AIf@~DJsR@4ygZ0Q12H7x$ z!HeUQDGWxSZ?m5G6b5t36b6&*6o!+And}q>qjU;`zg%z2o5GN!`dmFZ!trpuQy3VR zOe7(lzKJi9*zNk;R*;wqI}@t7_+AjNb6y z#xXl{8m(y=cr2sOz`@^RV1H!IO^v_Y6PttDursA5ClY1VF#MgtdrUPQcv+{W?J@+= zQ7nErBd$QuenJiI9!!4Mw829|dVQ`*v~iEi^~}p$zAXx`sxF$B(YCD1^{1rTmUTfU=i2flfZrg?#B^Pd>Tc&{ zx+}YF%Q~Hxsk8GkJ@^GiRlK+!Ov_B7g=ltCIxo{q5wZ*iJdLNOj-L|%T)?-&*Eebs z&29^sOv_I}V0WQ%qwzK%Wux)7_~G7_P6yaI+>f<2OK;@9;{ha9e|U?>g!-dNf-HG; zat3HkCuh<+Ig@siGg4fZrEr6CyAbHN=fDNBkge%+FC4#tZpFKQ(C#yj9S-ch@N1CYx!9 zV}T!Ca&*J- zqbkRn7HD$;mBR}icTzZGM~K=20HK@tv@ zaEOFMB^)N?6AYLuN%rX^Hk*UIt(T%Rwf>61xeU%g(84>X z1!bWRb8P9G?3<6xMirzE^|0CKf>go}2g8`k*YIoN#qRQu_y{7 z;)c9rNjP!C{hEBkM}QZ3;=qd%|__^7i8k zA=E~QM~CIb`vkniW|^n03nA2I(6X%`dI|>&T3R4fNiNTOClBuksUU(-l2v2174x#V z91(=_a(EERkBwlF9~(g^Kei~Z+BRPj#TXmYPFaSrPq#C|#~8GYU<_8~V+=BS7=y_) zOJriWoAx}IaYzfYQRuLPk1<$}U<|SWWANhm1Y`m1mp{tNnBg%TR+34_1}05w0^|^uM@~UtQbR! zV3_$ix|zcm8qI2A7=zIzFh-Q57(?y^A7gC5IxNPBtj`V}WVJeS_!y&qs=s0kzIzd3 z3=U&KazJhpuPa6%ObrM!E2>y63v*F@+jrnV23Bqy}1yF;LkXa?Fj=6l36ZJIq!l zFh-1LVfDF9c@Z3uYvoT&b>ZSiZ^mee6`Xaif~<@O9GKeHAaJ+rVh2-%xBUi; z1zn2gXnPf&iOZHTUF7|${9=X4M<`I2QnvFOu9lhOr^jMru_M`yBl>EKA|~V)!I|8) z4TAI_IgDada!?!g9oKX-sj|#=j4#KJY5Y-9h5bVnUJVAkN1^}781)2BrReF#+H`V| z)2IqeM}r9)h^)xB!xk2*@usBtV?axq#r6*VE(BWA?Jj4}y#hh|11K;Kv?d^1bdRhD zXk7;vw)IhabHpAOTmaX>oVA5Ot9XaTOTPeGUWfL87PsNb0ytN~w*({B{hOpqavSbs zN~#?i+i-C=YKQ(7u0xPzqTPmD%eQEUD!c8_LlkIX7cLXi!-C|noGR`=_98u)mYD$=IbG^7VeSVg0+|E2TTi*7YQP-iIO2QUMglh+z%~@M#CFq!cw?V zK(4<1I%zFJF&zL)n&&wb9{eb+)AAa?mK49^_ZYZTllt6Nq7dU1it!01P)wo(ijf7i z@j@uZYaEJE-FDnmrsHmu3~ZC7nec||Lm+L==yh8z9pF9Cyn}*R1}1t?#*-|g3OhBc z+J49U$u2USu4jWNWu9d^UdOu zcY9NdE=t=H!bNHB5uJ|Flg&dzd2i1aU75D|!=T{g=U)=mUvzoe<`0*rE3sJ= zn|q`B`M^-q6In7KgOSkVSfi)U&hss{~mms;C~#j z9B`Zbksohgn-i*yS>(mrWU~r!{P*Sq=wy{;c7!k^iB$u$ADC}Mn{YmWz8vQR2$(n@ zK$yh&0QwZb`sF!#g7{I9<9G+qKMUpL#BT%W7k|uTNh;_+9+Cp|Ga|DSI0Yi}{o%*p z*4{)ciTSl-Mlu6v2|zS+HbDE)R~8hmL|&@FxhTD?yS~V}mR;%FE(% zL|D?x;bBQXHo}K~Y=kBK*rL4ndU6p-6ie=ilpxD6h9w!{V@cXZup}$d4_k$S$ca3L&dfRSF@e;!Rr)A3?Gz zH;>m9z|G~UsvvU$m1^v|ZcpeQWSN$(3R2Y;K~^hwgJecwiXf{(1PN!rvmbB<$65Y! zJZhdnI`)KW7zy67uRrz0`?gxC6gZhZZ3+Urq{F2v0T$g;-4$4@=-3X) z*zk@;r(IZcvo%Hc+IZ1TNF{G6NS3`BGYzg`~R& zsiegfNiEjeth?e0tc!WLBE|KjxvacI2Vh!=D@YJm?92@6n9I+shBTdXYl^o6`9imb zMD5!LcX3ZCIyJN;JrxcobZW%1&Z&uUN&|SDq$8iESx$14jwV*EwjNERtXM?xRnDPt zd!8-=l*5N4%$B%G;9AHZ@0mSt3wA@=eqOvyHs>Oa|ILW7XG`!7j`=5xkoH^apKzd{ zf5Hb8{S!VO=$~+O5&wi8&ABBq7Qii`%vg&cscy;1xL@FwFd}kG4E>VLx*Bsc{gO0# z=x#`dFWc0~Ire93Feqf8Y%vdI0m`x-N^`O~-$U86Ahp0lSqv8RAHW23I1+4o78QCZ z+}7I@omzO}9tvxB{)l=gtkK1&hq5q?39?$t9*8M+M8Z~E&qMKJBd^1cjXV@TwkU6qr6uzvQ4eJq zQi3eQn1{j$-$S8o#6w|azK23a&qHA{%@Ub7@=*3dT9A!G=XnfAe{dcO>k$uyZ17Nc zaeU&TFaiSy>xp|P%qboUldOm0q+urOp)g846#jC}k>{aEQhjc3a)fsn?!@T%isup* zzi^A%+3x-r%8Q+Tu0=46Z3@z8Rugko7+u0uiIUV+kvqY6RTi-h>#9W7S64-=BZu#* zaA*A{uzk9Bs&_Qo%>gCAp811#U9mgDRPP{jiafp3_3Iu4`U$d3O!p2_eXOt2N7);4 z%#G62SHS_;D4(<4`>?RklIxihJ%@I@7$dSkCVvRw(_U|RY7;sw#no1)#Z%jJTDaR@ zoEEOdg>#~+cE8-glvLHmTep}5;+$yxx+f~AHWRsPzQ29>q`$ITwfm{pf?f0CwG7~z zfht~H52i(43n}$l_N53}hHg_3`nKB?!hK)jq;TKYwrFej-pSw~ zIXL$-R@5wQ#%*A2Bvo~61N((j{aN(;AWL5LQU)gntCuoZy_CUj_EU<>vJ~zY!_+Vx z5lk~nxz5pEK5Qn;#p4a`oNuX4 z8i$je+7U`xgD*P-KT1iR96x~4s!t_?*XIrt`5CX1ogBbqvQwgF@gYeT)W!=ZJ9&*y zcCuqEqyHk4otUR!*{sN z;)ElRw{=V6gv}U?W3T}N*doYwpe&0Munv)r6P6dG(wn!h(&$X)5n#axek3nh66|~| zD#Qsy*Mbws6UPax-Jt@O9AsIei&30#SQryzwU&0ow112BgS?r{qYw`-kQWapNNkpQ zir@qaDmbAem*;AehYqn+5a9&Ls9-<^g4|0F_=;3hIVbMcmeMJvi9XWjTz-cc*5Bw-v z_^u3x8P0zl&+Cdq5vF*ze zXvt2a2Y+CpFR23owF%KfakUjacxrp-fnSOe^pH-aBlMtZr*kJ#QdK)0WPa(?UVz3A zvP?{;<&A6tgk-(4TeZ`Q9`HRWChEJ`s(5idn3kC&4>0sYQi>jqp$J)q4n3f6JM`e| zOZ|Wzv<}HX8KwDCoIHAN8^on~^qh|#nuBC>?gUoUEN#Y<=uRT3s^cU&9Arb_RK0Eq z9vVTGyow&+S15XDR`k&9(1R40Whp$e&VC*V-(-?bMT4?W0-oQ`Gfu}4YN z;!F$C0|}ysm6E|TlYInD_(&&%eM@!HI7AQH5lUKPE_{gKM=1%E4KV(5O51T5-Ud*? z>vPA6{ES!hzyVCqgG32>APZ{ah3J9TxI@W~@eREfO>EC$h?nK{BHvD8`TTa$7w8Z8 zb`s53)rR*hWIBLFM?j;&2mc4{7 zEo-EoD!nFjX=AK%>v^oCeV4W?U0Uf%azo*rkhxr!w+r@OLQQ68CSVWvOtd02dK@Fo zx%l4={u_KX`D1(*w_!EfifiyL-X@z{=_lgf^IJJ^mu2Rm?2)?uz6i{>S-+Lf2l}ma z#OSxu{i5H>hl=>Eym#QY?t<(&c?7_3rO@zONvhv^1_XiM%81N-aLTf~%x@pn)tKAG zZ*2~;CnG(LGaNhVx7H$W>s`>e^;QNqGWZPw=xq1L{t^Y^{y&|UED5$DUQ!>ur&~qm z1d;fjUpHs>^mJCD5N|@n@D{`(Jq%4dl~ABYf|T0t`VsbGGA! z{6p~6U?z3k`tqS6IUURNJ}}h^nkus!8a9&7RUie;1D79>U!(Yoq6UsQabJXCPS0O- z+D4X({Kd1uiqC$Aq4NWMf03GrzeqOti@Z2K@fR5ZwOCKwUt~`47nx-JMJEk2S$~mH z>M!z_YnMEKQIhI&=a3`p??1_3)FK$h{6&psH8FpY(Ix!FC`tWA>EOP3%|lKvcL-<0kDqdUi zi#Wr}^B3jC-_@)=HvC5|&a}{9Btd`ie97RM$v!qFR0yzJ;ajSc#-YEc9igN(4iVt+ zW0XwGabFiu+K$IDAEkoV=YA#fGhY2g4q)OhN|gAEWI?y*h5jP1aet8=qXCYDWs1(5 zD&jAa_i8+N@j8n4(a9D$Z)!KhCtGCNvQ}rVu~U);ZhI6GSGVnfrv`RX-xGdKrRXFy zYrwLUdr4R3p=J6yS?(2nqZ#X>Q_eQ0n{uwkiMBdp zT_w9W^kv$jv&}YV5B0f|)tFD#$?B^1Xr4NiOktinRnSdjo;s!T)T8V?^(b$iI*kLR zbe_5%Kcac+hH9OsuE#sPuj4*PKN+R-)D(yF)XmOaOD9Ls+h%+fn8JB#bgZM0lL-^f z*Kf;sd0L`8Enyz*>)t_Fjmbu+)mW%jPrN>?25HhBn`~-(gk1-J8lgj}0~5uEVs`Zq zOpr+T1ege=B$(h3;zT8wkRc@m6ERj9m#rnpO43|UP8~z zo=lMUV%+<`PXZSJT9|so`}5;}z=Ijs%}mRSpNIkLR+!^6#KY&7KaK+UR;U?PWlT@_ z=PuqRn{5%te-D4q5h%+ngg7G=f9wM0J1qX7zd`2m(V&I$1chhV^tMaY#CPXe%m z>H&6;RM>%2hX^|uky!#xg&l%Bo`(z}?zj{TKLU3wLEhG`7#mwF86+6|4?4GmxZ@fW zi0874$MXXcU*xO2RRgpT#1+>NaU)JG019Fmm{YAcsSd66W_l< zJRDM9JR~BqS>{MOFHh>vk9G`$0MnH4cQv%E|$$}Xt4KrCV!>G&+gVYwv>Cz7og`ItfSJ`!bpB*ch0J#s~*yiVwx)3&9MDLNLQ2#Cdx}C^DoJ2QxA*dtioi0hp0-Mn>B_Fyke7 zV8&sYzQ82JGW+A|W0?`aCB!n92 zxL06j=meRQO<1$L3&~tx>*P|($AEsVXA#J(VsJ78oK_@|CVLOcLX+~jff<(kSAgy< zNF5rz0+hY4AoWhb6L;1QQ`_Ff3SGSTe?%<$4$*_)!=vmWUa};dEa6!@+=?aZIOK`r zDT?p#6h#ZN6xqd49DH%ri`hze?hj+|&1(F{r&AHO@7A{fT>YM@L6#Q}TuH3tDFUu& zMp@=5$>kv<@(?TV+8%)`$*QsV$T!mRvbY@4TSZDi5k9b@#ROO}tN&IJ89iXdWEzW&rG}4y)gy?*$5_MA z0VW?9j#nTKY1>e0TY-oWctx$Fz)K||hY!5Ct8x=$PV)p~Sw-UZ zN{(znvO4!XuPc6sFjXC7E}+tlwe}EDrr|}%RE>SW< z?r~o9fSxt{iSHxg;zvKhXo-~>>mbVrcic`mnzg;HLz)bi=(WPtelms*JJN8-6DI$V z8&pRDVn@`7V78(7yYPq_X_CvKj~-D|coyiBBC>lP6vvbo<0;j;n*Hcf+k0Z8ED?r| zfvhdWl*L~4&1%57V;R@cXH=Buoa)dk7Aoa*gAEFv|SmYKv(z#Ep7LdvHoL6+fwXJHb3;7zE5 zVX()*S69{3*3pWjkjZR^DG2N$8Q+`R24tG=&B-E}-8Y&H@FLs`tgYF0=pMP3NUHjH zjqXCL{?E}ML6)ovD{&Zyu8}2mjV$TjsglyNEQGJy*~31uBUFmDcIu&PWO&=oTO*TW zNuOrrB^sS+A*>`pSow@(@JwYN$rEY|t<_1}Oa-jezEH{-%TYGIIf|+~t0T5e;@!Jv zDXbm@DstE7o)hsIuc(rvw=9uKl%Ptopf+BJDtV2gO6D10Ib@+g4g$r-4Az0KDC(O> zN@}li-gWU_$!wu_O`_Y|hg3OFhYJO?BYkUDOy64U>U`@MC;O+*N!oX<%ehV<@>w{HBXL{s4?Wa8hqw_)`==K#i3kSaHsinN zCv(`2odLQZ`0lcPGM^6glj+pZPo}#@KbhmJ_{n_i;73J{w+FuzuidL5n{&S8GNAoZ!d)VB8{ciL9|eZ->f^qVLJ zxA0rMWJ$1-fjRa`!tnG;vc)}W>gW7t^{AuO>#m6qm<+-Wk;iEt*h0hej2b2KzyE|Ze5f}JonP(y->gUcZ?eJv=Ed=e|IG;8Vyq|be>11} z-%PUpx08mMtpCj@^}qScHDI3qElKsccgT@-BSR_wn5_0&ick#n9X$fw0 z{VT64UO|`|5MYZ|l?{|W${WrKR>fe;4}R zV)Dz`tXCi?at{Cd$QE^=;=cDKc=ENz&*ArmWOivgHnO(R_b%R~>U(=l>iOP$Crx~B zo)a0qoTg1WIQJR&N@Uj!=0 z$+T^EGZS)!J1C0pV_-(S0ahWqDAJWUSF-IfoAV)zM*22Z(QOPir`yJWm($uFv^n1o za~AzVqRnZgt>J-`u#iYw-QU$&@<2*R>kg!>!a~mPZO)c3Cw4nviKkmZGf+==5M>q4 zpnWavy%1!q8uYB!+{KnI7V_A-xsqll6eWe zGJ7$BV9;U2h3Ig5;{QH858w&OAMd@s7(SlDTFM7ryiGP~U@`uC7?J)(SqA53x%a{j z1@qk&Bhrl_MkEv=Mx;wjj7Zoa7?BQvU_?4f_)(eTm zA_FWkBC{Vj<(0AMlYBUzvcimj9QQyDe1ou$Jj4DDZhYBS!hcBk1@kAvuR!p zb^wwfdFDVTE9zifjkt=8`n?DJ(!+Updr`iu7b%n;TW$tBUZ>BOkN}_Tl<;eWnRKWL z%SMkf_fe14RuA$+4`zTK%n{0e{!fy>!qhvND8EXNH!b4Q7nS{=s6EL3OTupuX7CcT zW)r(m_WLRO1y*+QLw06>?936$jxSUE1lt#t9gB9wWq-i$NB>6c_?D%F|3#Q-DvL^H&?RXT*ZF#Guv+tj`bUrU1W;vj;Zy0*~?5{*zqA> z_Wz;wAp0%C3{F9{7T3OrbJWc5Dfh)zZt_BIGKT_RLV?@z1-_aBUqgWpu>v0&3C#9S zJ2@b)b`#7S$HhgvYafrv`<=-9y@aL$Quhv}c76O|%8YN6$h}H_$jl6|HFJcbU-sig zhfHc~ktwn@W_{zryYU7?XEfdmH%bYMp4z?>X! zm^akr3hJ^1V^3_nffu~q@5|_TBQjE#I@=VOd5deKa&3S%d(_vb0utcEd=hq%uu8&e zgqi-KR&1BOk@qp`bfwjad7%?CLnr2@PR!45>9B-Qx2vcdrsCqd{hGS{hFz?~b}`H{ zyH|zLPWnw#kymxAv*QtPuWC1W?hJeqApyzs%NU1`8#8vy#$z|$5D43#ryPWEKB^gf z3}nZ(97+tHyS#n>gZJ$q$CF(X=7j!;n>W|YY)P0Nh#S1!yy;VMT>yFjehi*`P}@>6 z;}6f$#IF6X>{^Y-uKCZ zVjU-GlEKuinT&rJ1AjGEqe_#lTV7XVPOm$zuF_m3zi-CxI`cu@s|df9FxCB4r1tN= z9N|{ohjgzri@WcD@c8ZrA-t&jFS@79w@9rs-Fm!Q*J$d}-(f2G(=<8n?ZaH(N;rG~ zfA1{eq(MxbvLVAo8?v-z8#A?H0%KNhwPLGE^YB(TBYa)LuO+OT#F!QdXGpkA!W9yp zFX3$xzBTEYNjT+w>+dFAWQM{}sCVmeTUVOp5}qyLTBKH*?vq(>&&f=kjj++YGWoky zqxlA5%8Z=Se@cy+G3B_rUgr8K=S`_Jk4_o4^(*GhDJ-+=)NxzCX@Ad{N=q)DN=u%N z-<9TysYAN=Gpgwwh-ox~wqeQpZ8LkDMsqU48gt7w$JO;S4{vi&_d!x`Kd~otml#^I z(M;X;yVM|&r_rp$?@Dw1w#$+0MTEV~*V~>432V1wy^O&#d^_s(v+bzSm|l!IUw*&2 z9oy^6?HE%wjlcUM9A>ta-wURV+q#!Ia5{B7X8MrsHD>o6sP%9ymD2r~%L z2X@?e$40Z$j+E`d9jVJP2rJDSvsm&`yX>_~rMYky%69!O=S^ue)8^0KW|+y&Z<}9Z z8g{3gGZ(OxUs|-hj=d4xRlaDFVDJZ&0`oWkl;?ngiC**X%E)j2Eh(X%o(cpp5Bfj*$A6+qA53 zo+?y-^K;?6Ryg~cQ-%7SrB(^`qNUCh>Rn5nCDeD8I$NlwGS=7MoGa8wOTl@Bwwr^h zK-wiz`*fiOm@6f1iKVWUw4;O?h?7!j&x^`#EbD0oVvUE?I#7MhAb7*1D$8#yYk(K} zpiqN^8e$$6YAa9`W|&zc)b2tJH%|$*AE*n=aI`8*IZe{Wnzx0z7}Vuvtof5rH-oy` zY-~Od>Ji}_XFe9{O`$e5p9}SkP_5=mp}JJuSayeLHD3ue6jX(oVE!%C4nl2Z$}#!h z!z==Ifth0JglYrTV74_4LY)QbG4z&Zp{@Y+teIwd3w1B33NzjG6Y3@5+|i5>>H|re zWkw10olvvQ20}Ge-dOgInPbKYwIQemP@4#~BdBN1T9=$ zGN{MQ?q<4B=S$iiW~NZrg8HA?%PbP=VNeY?nSVc_UXXnIn*)V1!)$IRhol~7YaRiMY8A=Esfa^_;84gvKJ zdi*s)tpe3xPB1qLbsMN>&57n_pIi7E~3H1r63Uj)7RH(`-)_0b9TB!b@8qC?| zIiaS3de)p{UKDCSP#55Cctxm_B;T*h+d^F_`7Si?3iX6g7n#2Z^(m-l&Bf+Jp=zpG z`z7WRp@xEb%v^5%A=H+j?!evll~A*V^GfrLPzMQhHC{$wYyMoQUz@Uk)VV@kYpR60 z4%Cr}YfZIK4@=s0c*>LWJy3UGG)xLrUPD=KFbzU&Ak@vKpHMS|y2T6F#$v~4}uy9e7>oqJtO&kZ>e`c9hrF8OpvsHgSs~HnAuvWs;*3X z#Vi)8H>e8ps@Y$t{zAQO4i;*2Pz`3SIaKOf0BWFl(;O~oZIbpUOPvksTJw%MO44ow zRbk#WD};Is)YaxgbE=f`2B?AN6LY3ee-r9cQn1+m81;&`y z5^8Tyx0)vs)K)I&ne3$_(%o4HKu2&M_uhR5`+W>qjlD6Q}MV5U%7-_5~} zLTP<>2D63I`tAwl2sLjPmhw=rvru;k^;)otP_GO1c`#ont)Z%HccHX~+Oh>gX$?Kf z77A63w@Gd_^<|5Nx<;t6WlM!RZ$8tem+d9gQ$j5(+eav^AzQYeP+G&vvIB(D8crxX zNGR3e)Utzx8n!#j{AJl8LTM@2l;KSQ^rdYi?Ygq%UfLsNhYO{;uPHlHDAoO)vZFoD zf0wNgN@e-J>=>b*mom%CS9+WS%a0Rk(H@i~Q+|R_%NCHDT7HsH4+*tf`6-$Y6N0yz zL&|?4)b$HVom{?3sMi*ey0rXsp}H+0byxYBLY=>q)XU{(3#Horz5HCERL(EUR|};! z`)BzDLaELEU4EfZ3-)54|6lpVLLDvCcjcD~b*)f|ipz!iqfiwUSC%Ern(p)A{R~WX z#gIQbMQ>+(Dur-LsuAJ75}umsiQi|X`XanIH4x#gsi6oTNYSr(BsCi0E2#|;evqQa z@^xx6gzGQ!tkmh?*&uy3LX}}vnlfB1;mheQF`|8)-T`4_J>!)p9zI=>Fl!t4t90Q8 z=~M8#xrzK+G+mD02Q)p2@OX*2OTsUj-a*W`W`@T$lk-IhKa;SzCu1f{_!kNPDPdhN z#%swN%kO<8RM~Fr#nS3}lV@$?Kk<7?@47Atb5!pE2sQq`-W%cfSHiQb4>^A+;bVPv zL40N3LlG9%cy!&5TJIA1t(+H1u7`$<1m_n+wm{f2bVr0shAu|< z%FtgR960P^ga-}#Ey7^<%Lt$E`w7CO!zsf>623N^<#)?4oS9*ZpPpgrixSq3pho&T zZb{r)=Is$95kB8{GQ#!ujkS#jfM>gr$059EJ}zJd6) zjb9*a9L1Q!C47ApCHZnx4PM+FKbpS}8_nNq8wVkLa6fw9~*OT?Jg^ymGDIg{~+P(68=fT&k-ifH)ANt)*CR? zRz7e8TJ;5q@%#DuTOkok>7ZFDGsX*n+Jbe-iN->SCU*s5IM5ZcJ2~{U=}4qtYBc`5J^TY=L$+ z?@IXD7S|!BY$9Wl684(-Tg0rK{7xn25iv+qnrkGydGc+De_VclF!>(*uATBA!p){U zig33nPa<48KSDTe>KEWyzYI?1Ki5;{zajMb zmreW}F)I1`rM+t!WqxuR<#}})W&UUyW&ZCp%3M30GB-^B8l?@IPM+53lzHgXNak@O z^Ni_~*-53A%$LfS=kn>a-tAK66B52WosxVkzrUGINxIIUB>iVlk_~52lFet(dedi6 zlEpJ9Nym&xlH+I4dgsjeVM(+#eR=MlL3y5$lK&*(Co?EdVtdxrV|&UoczepT>GqUo z`u3D(?)H>tiSQh`J>@xV`$(RPwx>KdZ2wc_d1HIZ^Qn}am`NFGXHuTQ@_VD1lxLfn zlxMe@l;^;il;^OSl;?Qixo{@sxoKu3&jT|l&vP>=PpRJG$E$t(7~gKC;$0uOr`2RZ#Cm43Pci%WwSTxH`@ny8q}Fw_81|gSJ}_2(Z#9d3 zV9qRBV4qpEz>%|Pf#YWNM#*Oi&u?b258OK|lH}=Gl;pG`eX@8uJe({z{&ZbmD zW>cP438&1aRJ+UX{by6E74rM+*=(t+XS1bVlJKM1l=gqKDQ(?Ol(u;%_Sj)Nv9yUh zQQGIc9y@y{O1pTc{2p7_iwgT#Vec)B(Qy&j&!_IhOw+iTq% zw%1>UKbXt*YM2}KuAy_;UYpEidpVhp9K?Q}Z^^qS9*20px9>KWavn6760Vf+w7Hb? zN(t|jn8)T)+Sle%s=v;qRNu~}R9$vH8KpJs%)Fy^rc_()97#26XG*nbXJ4w$w(s2& zza8u>dB)C^@JgxWE(ssrnG(J(zdziWvi(PX_n1dZ4w^?xPM2`;Jj%R$9%Vjh9%Vjr z9xZw4Jj#40_~8r9i)4O%9%cS$9%c6Xc3}@(f2#HbpU1bnA75Cq>h9Wc6y8QYeDZjN zey%k#p8M_CnUTDhUo-(Fcg8Pr@-z)ECeN~o0}=1bQ>y;3X2HktXH&q(XPHt}DG_if&pKHxvi$M0I|Y0i6O&s}+s zbnMD|WXAO99yxJW-XrJj>fhJhTG%V{<@|CYP+LsGr+4MOyiQ8~hlKyzmHi<-pW(3i ztZ|e1yrYYafla98$BcpNlPa+#>+-Gl|869tY(IV^%(s}ftS?n(M!!$zbCgT$#!)W4 z8%MdmyRijZcB77ycVi1K-YIIqdAqR%_uh>yxc+|Sr~0i~81LKDPxUo&y?T=k*;}?m z=yTQ;v`AYK!>2z;{^+J#y;!kaeC?aeA1?!v-z@#r-8HcmiNc% zk3`@9ioUgbP~V0fEUWS51MWWR-!qaD;7n4VZ4ybMeYjAbe=VXsHH%qqKM6-HrX-Uj zoGUR)7gL_Y7E_*67gL^#7E_*U7E_+vh3DzTlxN-INS;p@Q=V@Z`|{{mk$+E(-EuR$ zx#?S}WeKI)atWoHBjKJ)DAjWLef$#2vs!-NxP*A;!6m$>K9cbJC6qJ0lyVMTN;x-J z%28tCQkJ&!Qp&mS(n!uDmQv1>m-=$9g*=7#{*GI+goRtamnZF=ODXM>QvO>Kez=s< zekZ@XEu*vpmND=6Wt4W>GD_Pf;YrIV?S;!I?TyPQ?On@0Livvg|C``Xn9r6)(tfv$ z($?)oX-kbue!N<>GckVODC{kM34VL|@%i?_%Ypb?Q*l%GtuXIBdjP59n}6SZ4&KV# zOQ;X3pYOiFRGD+-HRTTyJU=uxL2t+$lOGH*g!M7`YOGSeqaTi4@ikNRtm>pZF~`CE@l zC2#krUdg*XYE1G0kD8i%#G`geJ^|`;(e{IC>et6qjiLY_R8zk`W`L!rUmw$IDeBk9 z%(fKu>thyJiu(06%PmFy`kIwOt*NGd{mccHqJI6%EtaBw{mhe=qJI6%JC>q;{meI( zqJI5MkI|HKO*QrFXEK(eet5^(Qq-@XnJ?5y=mirK$Tx=hNNo*jc}Pu93@}fI)cnLi zvyz(!gmYnHkoikU?Uxv8TE{Z&G1D`BNMbmD;!k@BP7aX2HQi{zh@u4}iWZD0S}>w$ zLGJtFpZ1W5TG!*~gmhd<>z_Ur)GZ>5w%wr%{Za-?w?`qpUkum5-f9uxnrhMEOVCm9B(2qjb-A^R=f{Gie=6> ze-mo8IWYZNVox(4Z^v-d7@z(yvDDmQsYBBLP3&u$mucFhbX9PmInq)`rh5i$<}a4o z0UNlNn`wCGg{Ax)X-AnmEVT#HjxnzbbyC&Y=~K+{=5tG3l-?{j-u%x}HzDl=Q;(e< zuyxfvNISvwQ%d^$iDr~dTbrI7oM@(6>b>-Kpk`a@yY$Y%NoGGw)zmKlwcJwu>Q6Bz zn^l$?QNLMmvRSQ^)Nl%`#^0KX>GkbFM9rx`DL7q|r2Wnh&Izf7_16aHo13H*ZKF%f z?}gGfy3|~J9GO2zuuM>=DaA6cHmj~zYJB?q;5u{llS;A7o6LSsky>pIsDB{1-MnR~ z>GjVA_n1jfYudr}?*a)tZuzpP0Yy647H5DuBw=(OL0JXY)O4)lMb#wi0WuJu9{q;X9`@7jsN>SbaX;uiO zy8p}E@+z4>NU+R*nN@#Qie-Ll#(t?3%Pdcnf3FnFtWLZr)N1p``s2%b;2ywQD=e|1 z{_L{G#2uFUr2d++K8dkdac0`;`rnlePF!HA@9Li`8<{A_`ZUvSu3uNSL1MY3DjWV$ zHZJkGrS7jUE615J^0%gW zRiY8^ueq`3I=mxFO567O#N`b_C1|tj6L)8nqRnnj{B0wpXtO&Kmv2mJwVBtrxZ<8f z?Kq`+H5^>=VB!!<9hhEO@o3^LON~#TS@C3I(k9BeTjSLg&n0fO)Zm8ODqc=JFBE&- zV->F@-VutDJzw#9;@L@BJKN~>#9wA9#Ws37F$CYgV2@-Qy_Yy-f2G()A15*gkXmgP zHoji*S>j?#jc)k3;;V!?P}5d6epm6I#6gzYxuLG|`@|nC^{d7~mF2-SY0%ZCycDB@4jUAvCDkbAm@8F=2+AQcD zTl3UAIVUFi27d^tm6d&i%)zYvq^kbuUsm=HCRwVk=^Riql#==e1oLg$ zpr%vIfZz~IZP2t?Fd$fAsi{rZRSpc!wbZPp+d*Bbl$0_kxZ9?+H9c23D0tCQM>M?x z>J5)`aPWSN`rLA!joJqXRoLQ6sjo)ugM)fYJ&Cj-!6-|uL)ws_)l!ws?^O;BW?QOn z^M{}oSZaHu4GWfAYHy?s3szd{g631q@ZbVV-O;>RFg&>0Qm-Q|6Wnj9_mGwep0w0| zkTxRtf7tu-_^7I+?Q`ok5FjieArK%CBnT16Mt}qY5(rB$>;X|3laMqJ2}#VN;NXag zno(3n5z#?KL1i2q8O0S;R8$b$QBiP20Tsn@!*N6Xo~m>D_PyO5bl!Qt_x=9(;CCza zRMpw)Y<2HF-F?8ImI*nOLPrfsPH0r8kgrC!VIXv;P zbkNb}{b{9xhFht$)};Fwxunt~27QiPQfa$E$DvE3{RTDbl0#|qu|aWN8dW;sAh>up z5xR70rID1LL7k0`M?nUq8^og^gNC{+GikihjY6K8RANvO^30@4gX*ChNXrbm47!1| z!XVz6vuJ}syfbIf{TfMK2GKU7d%nxT=7VUjK?k~g1oVN+axi`7LEjn6E?pbdU~11_ zD~GX^(lv($Q#XSS$N$)T2xS>`EZ%A{ghps2rDs#2(M|6f+ajCF4Vv3E0jS2HtGo7Y zkwc9Jt?$|oXr)11`cT?v5SKob9x-Tl*C8#2(JKZW=sFx|zd_Wk5$D>E85G+shjQs> zjihG7DH+j(2;KQfEF3l zIdO4|k+i~~0g0CY-K>$6o=4jpw7f+gW!3At@QBQ(LW6ij=F=>Lctnn&8iRO5j-e$6 z@rWEtD-GfiIhJnKNXi>W8;x#d;(aZ~(RPFWp7?2e~n2JzS(Pd~dX z3n;ol*ZPgbT`dYI*`W6l-vCP0NJ^hTjihFiDe64khQsln zx0p;x1|5t42Iv%x#BvH{8{O62TSrZyDF&_W-Vx|bm*rHdH@dyu)1s!*a)Z9?J_u;F zL0x(*ZZVBE88o2BB|wj9B;`$~S3PLIu`KT~E^0a*GiXVVi9kQQEQ=`m{6MdiMHNx9 zLGL9l1WMINN|-_8jqdgyjcNv!81(lZIW&VR4dPyzNy`l4UYSWN4BCZsr_%<5_9ETs zwAmo`{4CmS5PN9gDvj=uDU8Y?^O$Et1wn&8DRWbxOJyXt_Z{leR|vj@BDAF6k+tO$IGY zdO7NB+F{TilJ)}aF=$;Mqv#|=88*Udmtzt?T3@71U(DaoK^y>h6M`Wv(sx`mW)(0$M?q$viy z+^dMHXud%Qd(8%_)ks=YO@DOI&8nK#7|Yb;w_4WFW`l+#zYFw)V>#S9mv$T78;M`H zJeLj`^j_jmK>u`E)>5-2(grE7mfC9+Rgm1MYN@Y5Gm>+tma+`u-J*^P4dUIRj%FFe zqpqH64B}B&PfHA{M4k<_(x3~FX9KM@h)3Od^oT(`>dvF>2JxsnpY|KXqwakAP$Q}J zB06SthvPf7T13$o>Rve(p9mDMkytLKWTWHRxR`Pc;@P;E#v4?S{BqOhtI*>dFsJ}sW@4Qw^Dc_(@y~hDfF=$xt>8&oN`36nu zeFjjyLFe}Nx4MLu8?>zV0-#kIN$Ho;dZYWa_qDAqrL6`vKluir9R_8ee0!^9bikl# zC*KWp)S$~wexTK5RMW3P)^FtKzC^*9$Z12jgE6!LAwp&TvpItgLn-7 ziM}w1=h&alX2DcpY`uNJ_Y#`WqeQSnKO4-yqB}ph+&vl{DMveo0Ad zy^`t;>UGK>pg*`QZ=mHy_eSDrt#6?92ECU!1L$uq%T=_)=s4D2MF$MxSbr5AHHc&V z8_9QxZUe{qH&T0pIM!cHeGTGRe>G(p#IgQORA>;#`Zv)mgLv(^nQ9E;wdZEKKqK+X zpQ+L44#!uw{xhvL=vaIM&^<28HS~zlm7a1%>oxR>L4P>qYM^&qmbcKyM)&9`x3#{7 z)TO#b@0@ZcP%Dk3^joR3(Y=wlrS+|pZqR#)&jJl~S>8rPM%TGtqq>bM4a)A9L$}c) zgBJAjwOmUp47#{qOQ1Cd-Gg+u(`JLVA>Hltgho=AJ7~Aj9gcsm^&ND`pkwief&S^T zTt~+p%Wqq+qqt?deaGT|0_v`juJLsp@>#5vWX7z7WchVArX7taYJE_s2%b~lA z)*5sZba&A`8cCja(<2T#+Wc;czD$??UjJ3REmK)2% z@ux=roz@$4EPf2o-yF-~*8Q~AL1Uutr(?#F=jHy@vq3yJH&ePnJU2H} zu0cFEAEY9Kcy2yOB?j@_e25kq#B=i@xBN9a3a$zFPt+Bcd}053gCT{Mys9;3bv%Av=o#8~=L&u+1W78w+uIuB@>K{=^) z(OYSaK@(Fi1iDKj$@6jAZFHQ=<8;U%&gF6Xr_1sQiu$9j+106kj(&oY47xS-PN4n< z@y`4tXsOY?mHuh;8?@S>gX!M@tvBd+`YQD%Z8a!5<7S{82KC8kRBzD%g9c^f&|CD0 zMpD9F@?Fhs_|Te~q1x=FWI^v+3o=>($vdKM+@r4obQ%sANmZCYf| z`xzerU80ec@D8moy7vKrM#wB4X$l>QODq>+^HG3__H zf5P%(I%ZJRpd9*`)C%1OUTuz0XM=dPIYP+>am_xVT!Xk~pU`-NxP6~ei9y`HPpQ(N zQwKGwqqNMRVw883Rv5Gry3c5XK^vj_j5ZteHgx}_-3EOL-9KrsK|I4hr!NfR8U8sP zH;8BI7Zmp=-6Ec;Ur=|A#1mgqf1`UVy;<8YDc_)j>Ft1~7{oL6E1GW*&(yD|-XNZ- zU(<4fc&2_$t2B}lj?pGTJX5>0Jw~qx(lhlKeQeUz3~p4%NL{DvxpZ(29ivtnNiN?| zXQO))mfujiK?h;^4doj29d!SqB7^K9IrJ|oG3ewWjp|!kWKbS--_j)-NeSQ43J2xT zceKM;a?QS{0|s%;zNe!GaZmq1zUy_Zxu<`i_6Ds&c|THLgEpePA1TYAH=#RDg$8{F z-Eo>_P<(cy`iW``>X)5EKhY9{#zXfrtu$ylbU)KtgLv)vg&r}8*PdT!yFv4iPTBhd zI;2zf#|B*mon@<)x(zo&XW7vPZO-u*^3O~Xw+vfGiZ5E5jC^d7_=^DHqZuxUd?G#&FyUleVUU)&FvR7k`h|jha7Zs z+ZOh$8+02u)@Wtd7}N~C(#pO-BT3iVZZx`4LmO3Vd#yp!hUQRfd!s@1&_&zZ4f-Q= z(e_IkNiJ>d{YLj9EZf+}4Eg|;ZS0?2mTm3mRk~(9hTYS)t(|O8&ah2DsTxV1?d)6! zZED-jt~ZwRhCSW3y}jI^KMdOew92s@ZpGN^9kioujJ@AjK0NH5wjJza2JIhq0O)7O za<~<1N8hMxHX!$oHnDcHLBn(J21?aPY8Geb2-4?D;_N~}`s_hRd&3=^%ZC=9rs!zT zUdL#aIwSY1wq5KU25s&5OWPjyCxUb?$@XzUI+xz|@xSX__!LHOd(-_om!IR>w>!n| z_JBtB#U-^%vquQhxn$W>1nFD`+2v2_T=?|HAiMBIjrjCNuHE@1oy&~)tahX9l?HX` znBT6zRxfMag4kK@rr7lc4UV1HZl=9jkS=ewy-|=Z?|1fweYylb5%N2`alg)`B=>@L zemnYIjdpary4^xMOAzO>y;*}jUJ&Q{-V&;*%u5x0mww<-)ss zlH?*gyR}AqlH^kRkxm-%Ns=qqSB7iECrPfiSBzk^N>%5s zZ+DY@+@Sp(H@Caho^`6$RmJUSx6a;b(6qQW+TCr(jnujs@jKf6)m~&!myU0=yU%{b zpg-h(*zN&4D^FW~(edkc58I6fEr|8C-(nv!XmD)%_D|TkqqOCXxk>Gxvez2aHhw_+ zXKgiF>;9TMqWw<0(x5)^liI&z?=k4{+&S%Ex5wve%MtN)?ccVSB%yiumb3n&hFkC1 z%TCc~(5RK|-?L--G16xX57^x_QqPXt6nnrfl=FN#-TU^&QNeWY+v%e<;ygdF*B1tL zAJ|C~gSvzE0XggUzQyGow9E1BVS&0Fvip_>(;c!m3et5sY;V>`eO#E>`LKP#9JbWD z5A9_dspb#xb?U!7-&+WZNcg56alRmeX%c(h??hAXRM(Vn$ zn__|Fyqm7)m-bpY@22bWrJXK^>a^}Fd&vjEHhg8r9n^^1@U@*JXW?|ZukG~)vF@0C z?B`&*WA>GDGEUd!8+)Zj>bn`6V!yHHE1tz#_b-9+X7j98zWK7p>GE3pie!(|>00}a8pL@<`*LN+)4FKiPC+`)HoiR?p>OvOZsU7Q z_CKv_>)Wmo`Zi+-knC}~ymr3Tvd8H>+xdpb9;ef__l?v@O*m^)Y}on)jBkVN zYC2tvum90t+dKHi%O0n79empj;x@$kYGlXLx>(;)gIE{m>nr=8*2VeO8^pSfz74V) zYF$TPx6b6um3Uvh?2TF%@B6|aPS?q|Ms`ZA>*PzqF|5EG>+IVm`=-`)_Dz(XQnx+9 zH%lYcy*w!|!Pi}OO0DbS>#Gsgv!uK(zWpv;SKlF{8;EpWeXC{P)aknU)@r1Nm*1Gz z%~vElrPd|-W^1IX%a7(I`fS-LwXVA_S|fE0blrX1T)G~<9Y(jcd{b->-!-yt>U2rI z)f%ZIeCZz*&C5kH6>?1G+owzm$s=9qUG-1tdd?^ z?9?hSQ^IYyMa|4Sa%-C!4?5=?!*UMq_y74igpUEPLo>yG;7>wE?$h6HbK)GD(*C=0 zT_5)FuhrRY6W(`v)VbHm6Wct35?e$V2`q1V1>n|s*JO7-;iDqlK77pyw{hp`ZpD96 zxA4)z<^KD7!LR4jLUBEtT2I_1Hf_l{G`+%{SR2}|rb}tc((Uu-PB^FGJ?(#Pxlu}g7}QqJ z{4dqvKX1iiI#^KWfY zl%)DCH9?$@QUdnjy>Q}4ReQdv9yzi6e=Ke@Y&_iwTq%F5&xM zTd`c<(F80{Ea#`zKE?MzO|J|m*799aGkiDJi6Yx@o6-5~)wl6GU-*>~;lruchSP9M zcW(bT?Eky+)cLq;>u!s?l%{Ol_D%8be146`4sRFT+PRCF*e6lsa7D}3j8kQb?QO<&f3it9F9>v7$Q>n>b( z9yBvC3==(yC2>nv%_d+d;ZCVPA5t<;hr_dCk8K8~r^FVLLuWa(ST}>6*5;+XF z&Jeyr&RJB*d55PU!5M0+I{%0EJFN@ze{TP(wK^Z4n-}|Be1A@>n4Q+&^1H?yv9{!= z#GI?1hPFbzk)IZmFE;tG848|1mvO}UFn^?2PKc>cpThEp^%xjXBu7P(_Ws1ALFM!>yfG%Gifu;?$tAPsHHU$YZz16sdoV*%vcg zeKzLvm~zGT<*LWn_8oRwrDHpGxY#;(Y$E9LvAsGJ(CV=%9V*4XUhJ2M{W8>QT8Cxo zexzEawvL?-`rO!s9hOKwf3n^gTZ`PX;x6rQ#Cm`1RUK}!J|DXRG_K2yplaML9iCF3 zk6quPf=(KD4=gjr{T(F^9yi=Vt3eCZh;a{hC{(A78yd5ixTgvgpAxtje3#fl_0HG} zKpV#`1HES4b+LaEn-uzJ+_SOEQMb2aOVtnK-i!SU#f(1`dlO}h|0MQNnlZjz+)A_} zBW{hMGIO;+1U zD?02H$sx?6W1WvmOGTqG++vPNpP zUUJ?D?a-JtlK&dXe~sk7M)F@H`LB`uH%mTSC7abhtuv_X7 zP3+G&v5zM9Ni?xfqKW5GG_g;jiG31H?2~R7GjGQx6MLgSu{W|rk}HyYkrYavMUp4i zd}_aou_DdtXVL6gXM_4@mG#TBFP~M}uTV-XloAW2#6l^tP)aP65@$>P<&uA;%&G{RyO;r*;wB& zO6PaTQ2d=N8H!ITXDB|Szeeh?M(VIe>aa%Yutw^zM(VIta^5PITg7s#SZ)=|tzx-V zEYGlc?bN9^~A^pO1(=*RZAZQ80NUuxU7D%m$2w6E`M(Eh%Q+eWEMAJ?JA$91Up zaUB-^R|!a+LoMlZOeUhwBt76w}HPf{($fYz<21RTCt64wU0J* zN@~TaMhYzvx>V>|q1%KW5UN_UWeGkRwV_K%8>yk8`)GC7wUAHizE&jL4Bbbc_c+jo zQ>nI0lZ1{GS|W6*(6vIhX}+D*za4VxxlQo2mp$CMj7`E&sv`pwap$E0R18YZj_z`2cOz5RT*9m<_=s}@&EZg)FI$CI% z&`X7`6Z(wM1F>As1F`#P)5!-#qT;0Har-LQB2ZTQ;yozVJ9WN~szL)SLg&!?^iST8@FBSe$;nxbk zPWWep9u#VKlKKlBEwoJNr9#&UeMaa(p>}7n7dl#Knb1pxt`qu<(1Swl1hE%7T4RhNY)BfrTggq997ENBt!Sn9YaS7KN8v} zhn0Z7l3OB@rH1aKj1g;D3(9G?8M=>3PdxznhLHzEqULbvNkT^oEfKm@=vtxMgdPy8 z%EVsiNTDS{mkM1gbeqrvLX*mOVf?QZdO&EBpCu(i*Un}BfY79QA{V-LzQ~0pRft^Z z+H*uMG-(0zNtL1%x>o1`p-ELNUn?}JT5NfE<;Y3JI`mv&y+`OePwbiOyCRo9VSf9|@W+e6*I?mi=_KI!hHhmu}NYT2_( z&#gVnPTFzO$GxsiUZ4D6@~g?MdUx&pL~rU-(&xIq-BU)SoS$-i%I=hRQ~sIK&e{<8*Hsqv|qsS8qdUEbr0z>Sl=@?;l@^!QC9Qv2 zW?FXIX=zi_&Ppput4OO$yE5&%v_Gdkl(seP>9ieb`_kS|`zY6>dTj%x5E6;1lyFBlXynT7!=B1Cy z8#QfI)u_8i*?4}}3~x5@dzC5*-}2p3^_J&FZPftPPNm_QQ6`=l4aBpeEIcO~qLfJ;yKc5hRynX9ruyJnM~WJQZ@(UoZ@DhO)22d|swN`!WQFgfRvCECl!-llAf7X2 zsox=&vyn>~aw$hHel=9hLoV}?ONAP)7OD}dTAhk#OC!}{m8ULLqtqV|8(gIF5d(}- z%hWh^8A`eeB`sGI@C52KJb5ZqH=)Fv)g;6Klhryk1y7r%;%U<~wE;24Ur>v`sTt}% zHB)U;r{lNSXW_}y8F+Sdrg{i9dl)r)6gAtTiq+$I>h**w#nY!bY8z^~9kqNGwR}#^ z#gnIbc=A-CUR39(mk^7*iYH+QP~(HDN*zY6KUC+ck5#QYqUzKqs$PAe&R1XKdD?Nb zmt?GTB>5Ki&Y2f5*24%sybTBRJ?VW>SSG^I$Mn@!Maj)v6ic@)-|e| zwL&H0Ao<(vN^weiP7HtGV`0oIpbar^fL)BnU)Jdf@E3J@2ec%CB~?N%O85$r>x6C) z$u^jcrCHGMy;&jKtNDS0vsJ8eZb<&9*|W%RQ2K0KB{Ov%7OX3xw*L*qx5U=7H`> zQA$;|%mp3UgL9tLya@b}#6_TodvGdU|1X8tX*Ja?wL7hZ<=H*kwN&byo(Z6JJ-dT0 z?a67c@7V|ZTH){MnE_s>)vdeZB({0zq$?obdD69@Z=AFm^hn}n&{KNt2K}}dk8LZN zE!zm~oXmZ_Aoh@0MzvC^QRLeHx~vrr=SL z?-Kc=LSIPX7HQt=$z034FNUGSYUV+)YAtuWdy?8;rvY zZtunnF6F53UuJN*`+WVNeI#=-=$p~gL9c6F19~KJC1`9G+Z^t}+MZeWf@WrM4o|dV zs%M9;v)ySsv{j;QIheKKE$SiiVL~Sh)pgdhX>~?&TW>vAh|TOFoSR>0rBE$5b2FQ@ zb`H~cp?!qv7NrV5SZH1jkBZZT>i&%$%Co7*P)@7+;#T4B5&Esr!_g0;RwqTj3|buh z5$MER_JengEkzCi$?MJVaeMqHybtHtA_{*Akwr_;R;o23j@Clk;QbUK+F;ri(FWm) z0d0@_dji)Hw1esd8mkgO@(+dNLvsLKHI`G!4-RA(F`h%|Ik#A(~;D zg=mD3p6MV&C4{J^0CWf<5<+A%5i|$U2qD6m3j1N8geYe^_~D?0NM{DNDW#B<;Xff#VR{at6jDnNqY&P`Re=5lF$y8V zSqRIAK?(2Is=;poB}6&rf`1Z})KiF9EWB;21OJR_0KXlS5cQl7{&`Ts`?kg4cY%`H zjc5kHy9`Q*gf0aCGAOB65T{v)i!K8Hnz|VL>!76eAa=9V8=$1#MEqu{w?Ikl#V=yu zJu)b%chn!j?-P0e@g1r6gubt?hWrCiLZo#q_(PzCXzNelKLRC0T-SsD1eDaLcpGV{ zqo6qPg*TG;9VSphG7xl&rfUw?Gj`TYmxX6WZMRD0}7 z7~9rU;Cq2$Y+KKO?+uEvZ9NOV4=AY=>v`~}fRgHO?F2sn6l31n1wLJ9ru8Bu8A1nH zFGD^U6eHYv6?_gTsbSXZ;B!H7O3Hcz{0LBtZR;)YBSA^!S#N_M1xhO4+6R7&&~etg zkc<^tV7&+V1W?Qf>wWMOK}k)r4uYR7bgFe2k|{!`Ssy_@UFZz!2;@bemO9<~6#Pt~ zv#ie`IRli`nbzmv&jKYi+ximx??6cvTVI1O0VP#xeFJ_DD5)~*Tkz$er2N+R;OByp zns5CGz5uLLDkW&Hxa8kAIxg@5>hd&?qKYuVuIKuOhG&A>N+l3HZ70KXWN z)bFj9;Fo}sy2xq`ekmxai>)@`FA=)TY6r=sLNBvoAio@x)D>1N_(o7tf3!M+zY>(x za;p>gt3gR!YbAhR0ZQsmR#))Xfs(r3N(8@B=qjrRBsU1X(dr5LYEV))S-rsD3`%N^ z)f@aRLT|JBKys_lwN?t`w+mfo;q{KX1JqJ?Sp&e|DfDhD4U!F@Se>j4@b`d{+Gq^~ ze=jJh`>a9WH-VD6-x>n`0Z>w#tsL+Vf?`dxhJk+=l++{EaPW_UVtunt1-}K9)K)7G z{Ntcl>#Wh>p9Cef%^Cy#DNw9+);RFnK}kJp6@Y&Zl+^RqY2bH&V%@VQg5L#7>P2fZ z_?JMj*5PCT);ds9uUpf>?*S$ChBX8Ho1moLvQ7uT7nIc7I6YvgcR)$)v(5s)AC%NT ztlxou4-}t5wTi)i07~kRRSNzvD5;OEGVmXRlKRB*gZ~ti)KP05_|HJ`=?SX>{O6#g zzO)vA{|XeVoV5`AH=v}xv#P;=FZ4(2Tu6Qp`m4umcLBvZMpuCE z28wlz{s_JYDAq2z3Vbh6tXFh3_&%V7-@v#Qe2UQi^e0IA2~DNzAx{IvPE9v}&j2O- z8pMs@2Z9oQ;o&CmgFvxI)1Sd-gJO54Tfh$k#qLbEfgdjPRJt9K5km859ps}x31881 zC-{6&!fy%O4SuZ9@$?r+#tAK;zd}AiXd>`DvgQzDNH)@DqhjroTfnMd&no0P?9q zr_+Ow7l9JKQT}1@GeJq6PLG101&TOC3qj$ky21@F3 zdJp^+pjgM~eehQbT}}rfxk~8ObQtn$K=IXO^bz1$i>lpn4{$5b5V`LH5F;G%}Cma0zprjt4X5cr2l6sh0fPVy(@ZFp(!9NB{ zY74anzZI0!Pql;s%wNU zhvY7`Lg;mn+^tp#T?xrXbr1NBY6JLt)kdLzgXC}OexaKnxnFG)`ZOdDsO{h%P|tzi ztagCktX=^Bpn6H@Zb%+e2ZVkA$yW7=(2pT`LVX4P3H1f|C)F{b|AORc970Y3r561V z!AF7Lu3CYARz-tLla zRI<>MA&JG^R!{umVjAB!#bm|Y6!Ut_hcVyBWONwPVMK>99d^a0#0`u4A#O;=Q#)pM zp3-?%=leVF>HJyepE|cr=#bDiAwA*LgmDRz6HZS^>Q>loUbpkRUEXa~x7)g1n6x_S zwxoBGzDrU)m!I^=Nl%@$FZugqtM{qB7xcce_ln-P_P(?C-+DjXyI-Hv`;1SSn^Ki> zOUjm%XHvTL8{aQC^~}^cshd+jOFfp_IxRVERNA7ni_`8*yEpB%w65tx(~HwrrEf@o zEd8tW_8H?c=4M`;*_ioA=Aq24SvgsGS=CuL4ti$LmxJ34=`>{Qkn$mwLmte2HT&J{ zBiY%xXAi$}_-CgM%A1~dR^GQHbA$iz z6JEG?_FA=4mxv5|uJf;zdQxQGwDn=K$=1&uI1wICIR9R2f7xgToF5)~N?{#h0_BQ? zrHG?-T5lOc$FuG_+__(mny2cj&j^x)s-LxYpuc z{dQb;;97@kJ?_`<#B~?0yK!y6o%>&K-Gl3|xHjVc{9ast!*w6-&o|-vJFfe2m;L~* z&A1-K^$_mYAI9|vu19e_hI6S~aF4iEU5RJ)S78n;#|*$3KHMKZh3jdYPkjdWhud*J z^;ulc;d&m|4qQ8Ny?|>MuHCqAd=b}6xL(Hf3a(diy@u;`T-EB{m}*5Gs@3ccTh#K{ zovK;fF4ZgUZFMiMx8jZ{yWkKQU+YBoc z*T`-S)~4>&>J?mXLL7n6W4pV zJ_G*UNmp1m;JOvp#*=QaKInxuCReN0xDt}#*W{h*Nb)ZAb@FZ2_};f!Q*jmde#$z2 z^0QV}pJ%P%xK8Wys{K&TcBvBl{VV=Hm{P5d<7#$FwTeAu zi~8!6_pRRj-nUY5<@Wo`TGa1b>!$wiTbpq`j%!!{Z>?zqs?|bV=iyp5V2k>3z)m$G zb(bni&7jE{88i#m+>Bu~G;^n_%iN`wWR9VyaJ_(QZ{}3`bl^^vlC?_>%sPt};kp>t zwOM{zIH-cw;`$4&hX*y#Q-gP^Uk2||Er;w>MMHL}vxiix6}WD~b@z}hswVpidIHy% zxPHmLomvmQf=OQ4~%$rE^nyxk5CgU%4)0Ys^`|H=3UTG>rb6nT2(sF zztCS*pE|0vY(YcKbbsx66=nW9m!iC~QWdavM$P0Je{E@fMRir(Z_i1EB@GpfSyb<@ zs*_x$oJh48U0H!jN?!kEb$B^5OB*Wd!<+0W>_4_~7dyJTs=lgLBL314oD5v?$ zs?YP+E}l|dQ5B-7tFNwg*SbJ@+m+Z`BM)*_ys3&dA$O&eX{e{36#d)hRVwDRzp_q+ z<}kX}Us~^j)|M{x*ZXV34afQGF-&SOnf+mz6jszVt%S3&4%AopWdw~X ztusE?xfGO^PMKW#hmxqq{Y5w1!4Q;Y4m1Xn&ys8F^G0sFePPMod&Tw*C z2n%oXLQ=R5ovgfdaKvug{L+fb#naH;RXpFvR@W{pm1aAl>88%?7OuB9K|srzf_neL zCMzFMy31ynw~8#0{xW@Ua&;%dgz~0=Am5KAveM5TiIScFU5_An?aty`e0C$%W7u9{cmuU+W4SFf;K-b5_)^Id)6b}bslE3&^l;Kqmp zB+SZP7mw2GD32;OV9Fft zFD>VtE$GWYrsQYW8jrRR_4 zEq!i988%M#lL|}*$#t54AwnpV9@E#jM|O8u)`^2$IpkH9=Z&5oSSp>dAD9p(Pcuyd zJ#9uwq>-)*n!cdHC7D5yvksU64Audf~$ADpg=^xPmPz$xsFP6>x4H4_IaN z`YsH*(3@71Pl#AYpH8O1p>0MdFSAn7a(}rqWF-z7Q`NB0)E9NEtkic)b*bb0xKXPp zQw3~*8(-87wb2c88@dew>Z17w!^lSHvTucl%qRz}QJHKVpdMBG&7 zr#H;0E32)j;RtbbWpzV2kADsrOK~$Hd52(*a;7y@RiQDCcMGa2I6+axLVtBby{bcz zzrl=ik7S1Rp?2}F<>fKroV15@l>@ic8in81iafad3&hGTf1O5|3CnqhO--@%Oe-Ui zNuyl;4*1#a)<}&GabYAAPm@h^ow%Qa3R6udp2Bt(xD{92yzpjtn_%X=DlQF6aan|B6qg6vQG5;>Qd}K)@?<)xxJJi0!5vN& z*ShcX8S1_<6LylnK6QM3eT`z`%%AEizjUOmXiC%K^Z2olY~y0@f`V)6ScL|yjv`XVCY1B!DgB64rb1rbIDfsa z%=G%|8h5oq!Y%i+1#QNa^cdBRTFjxvuV|~v$JXLWW_jh}Nq8=!jf11Zlc83k=1wKe zI*(afU0-VwW0`S1?$K$GfNl7R9NHBOT7z{Pg{K7CU|el=gK4>TwMh|dOE5Mv;h|HA zVy_vWd#dh@rNaYaUa?Kx4F^X4#z%v3K#^~GtE|xWBqF4DB)fZM& zEs%*cDFE2O0eUgeJENqkleuPC$IRg3x&;lA8A4UD>adi%}oFG<8(c8JsUtPOQ;Q|&bkbJg5c zHB*P;igIZ~LAm$>e~PODV@7Jh^%bVLo^PbtcRa_%S{Nh|y@22jEs(99$iqqIl@!l) zt!$FNXAX1u9)UNtM^)^Pa7!*(M!Hv*CPY+36c*RWdk|?Ww@W{?bA052E>S0i2x1KN@Z_Oca@tT?@%h!Y3;3qi>A%z6 z0#4!)gw#AjRYFVfBsczX3e(v+BgF-a>x>U^Pa)0-_>?hM%Z>4PX7XIV-B#{okm?25 zWh%0e$4TC6By(3fvA}8lyV!qSWuJpV#ft6g;Lccc z?%t(u^ew!f$K3S#T0AM!)4+wfOffZjoo7)+Jsx;EnQG{mYKS$f3{Orm$;{CkHs|L! zZW*Tul?7|&E?9V-b7+F%O6*Wl8>fqe2~2QZQ9ZX!&?OTeTWesJh>0_b^?vT?%%s3= zqnT4mhKE@IxkJHnOAKrNUHH)pd6OX2K1ku~92>4rqEnbAe8n$d+7qZ=9~mU@LrO(w3VjKSCLp?f!07w>y{ z$AIgHc%o^8;>yyxdL1NU2{8k@Fhs_=gvwkAF)R2i6OWysl@WTA8lfvK?^z)!MdVE< zB1y$F-#HTHB=kxHX}wZ&_f$|-hJ!;`F0i3UdVP1}5pxC+#DPb*&QojSF5_LdSaJw? zp$%(S4lbt!)4QA&CY06GX*!OV;bDX{z|%}4=kg=TgZ-m>JBUruL4o+3p(h^|!7st8 z8fAIl`8`}>^7Uk5D(M>Aj_-Kcc1ACcsNm?0Y{M=6H5(m-y9Q2Z37*yK$?gKZs$ZakmpR3=LRy7NyY`a zM4U&6C}18j%Me@KLj`89p2spAMCRPWa1tpx5SojC4Lt&#-Xns4%%hip*sK$wQtgRQ zX)w7{1!s41>fn_)$SKf~NQ%JPYwpkGF_wv#f=fm~8ocl3Jy5$KaN8{s@qtGo!H@gK zoL3IEb;~$esLZ)rmyAQTIv7J99K%ROB-RNCI75%X1LR>xaj`0>0#{M4CXbq~rsK+= zG7++gd^4ku|CBp7z-s!rl~ZsEHSoqfa9BmVO~3jJ%DDJYSt!O6?7Dh>Q*XAaf*|DN zE*QMiEU3bQE;m@xWal2wCFit}?5H$c@?gVyb5mxBbQ~Q-h{=~a+FvvQTlv|ekT*)G4uHJyL)R7Vy+LiCP$Aq zHaH6*Cog!kPj?U-22tP)2wtb*-Rd}hy*U%Y2Qyqc6@EG-HK4}B5*#UUCk#~BU7ui) z{1V(OUCeNO_*o_%2GwyqA)~55v#c|$m>51dP`oeXIGE5mJDm{8fO9>e0XtgWGMZ_D zb_5`&bwS)9%6rJb6Ay8<5kHGtLK#~5zlxe;~KCw1^o>VFRU?MaaO6tJVy?`(zZQ#_7 zH!(}YQ?s1kVtPO1_j)1gV3-#I?2CyWb=-(A>sP*hFEakmNt#K!_cu4xhV`6a|`PJHzt(cK*nfsPT?k zc-9B_;`;eGEQ`5r?zD@7kj-3>Uu{+3=ts4#9bRV{#CAcX&5Ej}L=l5`Ou#$Ma-8i* zf*x^1fo7Wa1gh<-SFq?nX&mt?33QbXR}}}hbvS^BN0p+$pFpS-jIH#j4GVU3{1QPN zoyC+0by2nXpolL%rb zcyg_V-edEUp9!g&G?LtZ&1h^zt?a2~)m7!HXnsX)xf+W|t$x0eNYZuFqVJJ{cOCk9 zyc@fDJTV%FvoqdvY07&fjf3StAZL06+YmlNA*a7W4x*VudahvrN#JO{Iew;UO>^Za z70+i!B0xt%<^~Thr{yCeXu1C2t(frZRBan}{JKmZvgW~IUbmblFWGS%$~h$+I3YVf zc#^ax_>sh#;PH~O6Mo_l+R)RD`ZhlB8HBRBg|2+7xTQ`z5Tr#qB;zCvv{&ZLT=&Tw zr)kKd*8LnezzvC-Riy1lmbo4kMvYa_l-0>;%<(5@+$!Mf*mH(bqlUy zu9YOhqF`zQ)0McEIwq}q*6~&^X5N1EutPA6j&UtfHTS)%Id=vqpNEc zBh;H8K~+?XIl8da?SeqdMq_9-;HYc3Z}gpJotortz-N9d11k*fhpXl_;HgkplKhI& zc~ywLD$1}+`{y*wo5#HzG}AJ44DT0pPA8at;|9ZDwdUj{KK>~JSt6$SD@zyY#UhxU z>2PsWeZ`!LN}PBIYMoEa1VteqXZbB(&0yMrTGjh&@R^e8hI#XY8RnX0nO{rI&_{en zlouDL3`aH*h6fb6BQlDyf%20BNyRT`C;IE> zSC@}!sHnsui{K)6M167b91Q`oiV^x%)T!LM`PB`T<>==!|A;}w#W1X>I?t>P1?4Qt zRJjecmCOxPxwy}Cf5@AqSt?hrx?(d(4)L1>DR3?#mzQHB<0ONPk$xZ$Vx@&_HYCv1 zdtDq39F>bb2}6}ZsQ`Hhfl0(q zg;_cW1NHoRyfWkO-k88QCm}c$=aA1;6ZB_*I6KK9zq*W5m+=ibwoFWga`t=P`K1-I zNJWw(P|qFFP+Xi`%2s~t_0lb9O4)))_B;)w?_6onbaxhWmFz?KUfbGv_$U;P@8a}N z&<)(Nm^gXmrMPJi+$QL=mpY!{0fh&+PLJcsZT;XZRa9*bLwL@YjDgc?5edpM3bY&d zg@IcOXPLtaKBlg$v_?LvXiO*I>m9@}Z%$oxB^J`aGn7Jq)jWhc98Qg%&p|pO{5qZe zG=EJc-%D}7>%lB$Q?O3R4TX{EAPd8?uAVau`9w)-Ajsfc%m56CxX=L4>HyEP_56al zfyY`rnoLT3I!#6y@2K#!d@PImoFjL9F-x7R5SfR;E|pQi;g&E?NAMEFpVlZ>BA-!J zS31`}xhg2u0UCxc=6qGTsfPH0%hJ!njfdnTD%_I`xQk$|tALj_{)+SP#LV^Z%{7fA z8$B0vFBl&8p~ygYpU$YL0aYy-C{}!kEyLk59S+~3>`Xu%YN~=d9*~o3$1JR=U##$a z0^e?+r;;pl)iuRq7S-U(Pb%~bcS2aF!rZ~G3XfR?OZ|yN{y1WNus{GLVqfX~!e2YS zq8$AcTy~`)oL6Aw45}cl)ni#YRBs{vTKSwI?8}3exg*Moi@5@orHe;bme$o_$@DDe zBj)f*u0K~e7Ki+*@pO&HT7VzhP*sMrS}dBxpK;;>1II!149)k?m5({GM%;)Ys2_J= zf^bE#Kq=>OcCF6B*|+NOnT+#mOKT)!Gv2U>@U8oF#FSO#`j(bsHU5Ag_rSRgxSdD$ zm=C^HT;TV7&{O5|9jbUwZ&SI|<@gjBq7*C#ya*2RYypE+=z2dSAPKJR*`X^qR%*Ru z>s8t;*>fT;*=0egS%!HfbuE$^>Ed5ZA7^Z;33;`(c%I3AAKg&PM`iIPJkDoId6{*8 zn2Z~mfvqoef5aXbxf6UHx@E(f^$k_jh-_$4#M z4+BH|Fc5xl53qrH0#CsN$_;)<%$Xts;f@dw4TLvBJv0z*3B*=#MFbBGgiBl=8tAyg z@z6kcBh*6!;SaBe2Es4eLj$!>jE4rgT;cN2K)55sLs=mn$qMmE7AA|^Ls@#OFdsRT z6-2L$VGAgHWo8~5U~Gl1uy9S_jSpMEX`vSIL9iFtCI^pCE?8_HtmWbehSN1@My>u{ zAy<1*f)SeaBwJ0;uK-o<37-^5z|Irc>6qaB4I8G;DD@0d^Qj_6kRwsl z5a*#d=F(rlfX^z;3oQIad?zplXTA8N?6RuOC>on>f-}=J=ZzFEcCM{H5b8|ymsgbX zKCA`O70!#ocCJQ9O9AGIyEc z-BNt2)X(7`Bi@L|Ye}wt$mEPotSX_N8W>^2;ngLuY((C0cwupQYM|p5$5XtpgwF$B zU%V56mzQ6A8sd_;C-P#TJCP%e;MC$cBhXu}PULVSAU2)ItA)GMc&YGU-XL6|9!DPB zdv4G3$`HEZz(b*)=anI_;=nNxJkOyXwI*E|>=^I*6w(!ydErU+|_Yn4Kec^0bRL^c`}j-AF? zh0>L|Q`9e2D=yIQ^3CI0=df)74)NjW4nAv$afpXmsz8Sv$o{+vJVI0xz{w|kLU#8I z_&#Kc@B)Rm6Tt_YytSiFrhS367DBc%thPi+I(67FX6o>Y9bxM5k{#+zG{iNV zczF()O<0=8yY3wW(H#%kQXG%uz(ZDd=h3-5&v)a~%*KrY7F-3*gND$U*!{%8IG(qD^B`;*UIPcd28E{w>JwT66z8n~O4a3K zaSRrZog~n|u5L$30jVh*)7o3MX}Eq08TiUww}VRgTekJ*g5-6o*AfpZ@$wIMUUg1f zgc?WKW1QI-yzfH;yiG$RbklUb&5(AjM6RaE7Ue*WWfJx63A!z%1C zklx6qnPU#-6+H658z5(J@spkqKk)rns2}*IED%RUb}&a@E0&O(3cW)H#?LeH9J57IkJ=#na)8G1-5@w6#CL<>oKW8lf@h5H2Eii{d^ZT53Gv+^c*f1&j!OOp*|Z7j~Jf~h9@HUY%o0Ha?oJM8_wVwB7;SstA#^k(1_Fw zjv;VN!-I4#1~F$7Kv?TI10c6gro4}srwPYi*_f}?l{{1sTO-1Wpr3Wx(0 zh40*+9s2Y+Zk0%# zTw*F9_ag^K(z^($@CB{-&*?`YRT+MXcLr*ehujt;hcfoOoloNqDPaL7fH5d7&I`v@hC>vIt0ySgFOw_VL zRl-sY(B;lU9_$NlgCDt%mYTVJ5U8cD16!7feK~#yS^GpR+NGh5+6PkhfKrrKf!|_2 zPx7t<&)yx5-&Iam8Tei00r;CEG(%bTsi^JAxRUVOX1&Em^~gg>+~4f60r>6YQly`U z`j?8&t=4|v0l;<28n6i5LU03+q7r4Xj#F`~f;~O}nsQ}z)O8pLeL8;InJMbfiG9gF z&}l1BP9<_w?YLbyw}`&w{!`=TBja_*?2KxcT_>(XDK7S}OCFPqkyasNh{w!urCKLR`^#aaTAv5L5@|3e z(LNrVTz)O`;XXl~5}GPowQ-lI66V96^Qu?#(fVLrBF)nx(@xb(`&9Qq_*gDLdsQw-& za?bAA=gPas43y4gHlc@StKk`*{lUId!^+^NiKt^a{!bC#2WG3DdsAGgxb)z>P)jfS zuP075g?T&LyA(}FRk=gUF*GXi*Q<59Z|N2P)71#A*fdnIN~xuP`hTM$Md)N6q!>yu zx?^3#BqgvhG}X;|%3%{oI2~PIiveAUzr5u+9`EQL6wcXuS)Px2EarCgjI4LHyax|fZX++O;X_$<<*DM;JGGMF!K=$h7xS_k$V>Gugg>T9 zaNxCc`$l!;8uP-p7}Lz#Qk589Ls$J%M$5zuw+X9BYhFZn0AhPc2-P}mN<1Cy^-FI? zsEgE-Jv$i-SCP!RfW7K55&3iO^CP#TUw9ou+v?O}z^~f|J*HYR&)!vS3Q#xR%z3$2 ziGgtttZlH4D(%!I<`8)oQA@A-zmu_d0}6GkSL+PgQG|O8{0Qy9d`zY~47NEkZ6Xb~(I%d8VlLdF)nPk~7&qgULsPmYhSunR zHwEVtjJqV3%ou~o|8KP+rY1Cxgh0d})?UQ@I)>&&CH$^S_48`=*65CvU2%KYz#Z)W zY47@D<2sJ>zT=5^qNp?PNZNEjJLj5$>4v1qR%)bJMr4?B#DtV+i?*qRwnd4wq?oc8 zib`x(LEk$mh=Vc#Td0MKDn(E@X$mN<5GbeuFsTeE01L&Oaapx3eLK3&Q>^>0XI;eb+)jA5eHYbQ>I+fkE!ox;jPV>9&|?aD8nF4Y5-^lAvl zw7Ne@xtFs+YYsISM^T_Hy}nPbUDbVzK3Hz!?V+IZ6;MXJmPSs}>>=GaxSox1&QmDK zmA`6^VdUYoSSNK~4BZVFDPSx@PruZN!@_-XKJG7CSQkrFJ-pl$?~TLR2TbsWa)73jTHuT(QF;UUA>o#3O4@Q0{xNlsFh%$?L$>){V7VWL==ODSpc zsDe-T`!Q2;&eE^;+g|Vg z8BN2h%3RB^8l9|p*x;%*m+V4qYw618W;9TnSPdvD>I z5<4T9c-{t<`VvMr^@KF({^-S?Ui6J(c~oiFWCpuW&x#c@A;x@V4RV;VbS`OR%p(G9 zExTGvPKyPBCV!8K0 zEpeuivHkJo@#ydmDcAl4W24j>nd9IoE?-kizcSXmj9)xn&A+Z*wyQ$xZ(GOv?xYpV z!>Z%#k>pN{))IPO|W6FrBpL{=)M36N$y$P!V@Ul8S1gNgL8SgEaKfrkN1xsgN3%C zl$Z)~B9@2k9Wi>|(}53Px2sGuYztK_cc-t#)hY9OR3=-7%4lsT+>E9^O3kdC1DqAz z6lBXIHsuJs&6`@?$b;mT4wP>bWqmR1i{mU$LyH}Z?P4`Zg&JI!|1SB>P|1nh$L zz_?0L_r$Ovw4j<93_gaOeb89Fu0dFKJy-0+#y%-^qVr$B^W#lD12b=a8%w^gKC7~S z^XAC&_iy~g*Rnl-yZQO={m#x!wataKL7@d-dH2<(fo+-Q!iJy_oi*Q!g(5OKgF>k_ zmn%eX=W_X;HN^ncYHABD>7qi?jwGjQQKXPHg$l~nav*FM=U9FdlP$Q*rhx~EDoE17 zt8GmBnG7@8%VdnnK_(M5?ZAQNHZj?PyDTpx>EP8iCjCr?ne1gU#^fNAiBxS4RBys( zOR6@DFMc}k*@jO)KEwFz#b*qkgZNB<%pg-t1%)kzP15Zx*>j(K`Smy7ifpi3)Nmr_^vA9MU9L|Gx;aTuF-_uY``%KUGLjHZ4Jp?Juz&FsQv>F(xQ zi1o=Jmnkaw&PrbaVBa=p+BLM%s7y0y4KJ7;Y4QZ-cQNWU9cuCv4FsJuy{s)X7q&S> zjYhA0SUvh-?%7Mzj;<8FO&&zOyz_YA0Yq)30co-+R@@laT*PSb$3P)Ep6{`Oi@J$> ztI%7eht#K9o|Ax;2C?TB-Z63S2W)am`qriqcl6 zT#p(^X{+?8Oe|WOuHYrugXl`4V5DJWHx*fnV{3U6;S!n%-$<=a+BPTXFno$NdeqHklQm{@8eqF9cCS<~g&Z%M z*qu^?06C1JbOCfqmyQ0#5D{4e^EFGI$UK-Cie)&U5C$THuMK0djbpKmqpht$Tig+8 zmtyf$HwH@UmkI!AIl0z77%@fmo}I9m5Rb-mbw?2qA1hp zj8L85p4CL>w`+s`WRTx(vifXRpUdi7huI>Rqv_1|Wp&Sh!d&!`wgsVWLDRM%?Jigj zU3DC~8guBXwI{+__!)A0A$ zQirtEp?+HyElAf0I4Dl}t{zZ*{F-w9e{$|2= z2z-Zz?-2M7i+9lB9gOh~I=q9d-!Jw1b^U&+-%t3Mz{fOvOyFaLj|hB3!$$-@V%r;Y z?Ty9ljk)%u{$8oSSJ&Sw_4g9*guo{>d_v$8U9mk*_UNcdX< ze@nyP68Kw$&kB52!)FCPtLe^{S`6K|vUC%u^&MBHTx9K8K63U9m$qDVmGpiqjU|mr z2TW2-c%RNPX<$-BV)=E}@$0N@7Yi8y?%|S#bLWeWeP_{)@Ep4lo|A6ihN^ZhRa=J% zrH&Iy9m{a6~M?I*rmg zjf!;|rR^Cd&dY-Hvc`E?a9(DESD0K)*RbzvnA9@KFj>o_j>$SE^++rgi;jxLm(q=^rlT0a*o>C&2QljhNPN{_pf~|$U+99(G z0tb+V(^6p!{+Rfm)*}i%*gbH^qoKkL>3kRDMKGfnK;3gG9MLx4;fp4 zYgg4hyO9m#JJUJ<&$h7-WxM`^rE5_%Gi0#(Ef*Tr2#s@ZXWWMqxV7 zr4{rMixv>TA=#+b63n1Tu2$8c0D>4n4Rke?%QAwIlS@=lupPhB9s3n)GGGAEf37R0 z3enm^v_2o@k)03!9&V}v%~{*|y6#jeXn0UHJQ!r_Qpm}dc4QPhSyU1;aDT3t(yNts zz><8AUKxh(U@Qa2&p>2~$bQDobELEPjnFiH1GK&_WiNpl)&}aV(LW@V{6rerAdC7= zbem1($ituMFR-${xez@H9r_Uz6iw6!9~)Ea4Cb7{8xVO4Lk^+>@#w%q_;i}qI>Fl% zxColw1#>a=^xy^<-(91E{Af;V$WI^#NJTgqZTVcL*+?%xnxZB~Te7J-Fp+Eue=0H=^|e8*0Jn=&=HHH%s)iXKv^I@r*!B8@!luHeI&z00 zvj;JMF|wEmQd<1?YwtP_TGnJzg_aa+k1&~J$u3Czp7su+J?LSp%#)ZB!*{_A`G&oY4gqjA{PWCj8&$+I4JG9NRY|WPr5@k*C&k#^ zDyp&}_SrxU+`cOFM{YP(VtmTi=EQG>YylIIIlG|X6sObtwSDLhn^4A zGb<#h%2AG*s39S0$czR%e5|a86GRPrL=C?XsApG9ROLa6nyO);YIqr{MiNwwcvOw- z3DnREsfy2~aKG`yNkW>g5ut0Oj4o?z!g*(G!g=4!g!9&Pg!42L;k=oAIJ#&H!g(CG9MI|P$4{YQr}v2qH6chHPc-OEvZ0ZH@)+%;!RjurMK zr*;lLRNa6Oj9Az`uo}4EgL|;L|@hxY=g|LUm>#SYi7pzT0#jXJtde7f0cRK8ky(| z=xrey&u?eaCpQ-4?yBXY6SlC)F0~|3jDvoS`-6(65LGWTQNm1NX`fh}=)ByNTI4Ib z3bBY2f^YFW?Dy?V$Da$-^LL>C?nS{kQCGjv!M9?`V^lB z&4k}@y1xTu_&*wyv>&ORToJ%c-06u}m!3urA{t29D5AAY!}lcBB_>UtE`?xLoM&1r zFVTS#h&@TUMN=9hOgF*4AS7kL8iPxta#Uwf&Z5#}uLz;#NX0i+9KGdZcLk~n|5#S1}n1?uDh zW;`zhuEn5Lui1op&3fuJyFXAb-M;?!;(Ybp^2Sbof~t0CpyRW3yJv;Xvt?|i)jn>? zJe45xlt<>N)gZIV0fvrB9IvMb>nS1gR2i9Wn&FBp+RCKc&NbbZ{L=~YPkZE_wll^y zxPjdG2`^@zbc1@MF}Tq-vA>&Uu+S>7NgW zBe=8>PKyvuYo+ft7E@S1W0`#>!R#|0v(K!Cu4rR{vn8t>po=2|HJN9G%rj-WB17|A z-bfU{+aACffbQ4;bSDfzw=)3UVgS000ie>!c<&aZ--T=wfU{mJPG{3F1=Cd7v{l)( z<>I*n7teWIJZDw5O;!SbkX5Pt0ODVN1fOR;lyQyTQj~QD?id~9f<^WYjTdy$qNqm( z{Ha`cJ@bsydhOG&8vjRaNU77YrsoF?h|LwEKVdxiU0#=~ew8Y$VG!5jf^FGa8gB1$ z7#?`0X7%E5N$=t_fqMG(t?Q?c?DNg4e~6v6qUS{A&gqenHX|eLMBP9!w=!w4vTm@l zKA({Fc~92ot)PnGqPJvgvMemh#Z8ZiWZ#O|UWSWez!NBUOAJOR1A*G{p{0@V?c8*6 zUgUw5Bd6yEBM-;&3kjBA@K}CfMYNQkVyn&31)=3anK^RCCLJ4_bi&xAov}%au}K?a zLvtaZKrU5TqA{YaZZ|XTcaq;e$fQsn8d! z9?vJ3I`1)c{-w;l&c1x1y1%-TmBZ0My>|QhGk}*0RgFsC@|aiWmDo`~FOr=vldK!{ zm&l(>cEDeR`S9 zICwCZ)-Pf1P?ce``SqUs#6lD+$7{c!Xd1e4xfx zf$%uin_#pf)OlQ2gwQKx13@gwRnKrZ^K>aTPnQzr>5?-~m&80>GUkb+NUYH%LAnUd zOaOjS4tURNb`9(mo)lzyQntIEEI71RE!wM+am8jx%y%3J&kNc~$-QQC!yC5R4avA}GWhUE2HRL{TNWs` zLR3$9pRR>crg~J*__jO(Mr!2|Fikc*Ij}PNHXkd~9gncH1$wfQO828ChrVbF6@{Lg zlD;QJJ0v|V=^249BIScqL?>*HHabMxETV0ay;;&7E_={s4@ySAq+^nfxI$yLkj~gE z*%L_lbP*d3C4EcMSyN4i(IF^26{K091L}a_`5()avljJP0U-i~M|gnpMdAw2VVAIu zS9m^$?aaG+3%1?@d^Az^9=L2R6)~S~HCql_?M$(h z7~xCa2w(bQ=A+i=Yb##x*Qc=NDLkIC`i|RRpgwc^hQ)c!yXA1qk5wK_t_}2(M39%n zd~7vLv4NhgF3_{p5A=XXIuNv#fu5}xjPUfxKw62d66m>B04}+;Gjg~@R<|Pw`9NB@ zWaegEn7H)y1jny?9KTMPa+CH(_-C0O$NOtwwfxty+w0Zl(dA&6fS2xqjP5LSYSz;6 zi;|tt@Yq3lB)~d8*Tvpn7p8|xT4LdnHSgh)Gw{pn)h%?n|BceB^54- zd4C@lT6CykMoBb8*-5Zr$cQZ(vSPcD5Zet;Y&U*4^RN|GG)759dyPCQ<2G=3hE`J` z&jo7m_D2iey@^-$;(fVz{pqwXg=!1V8zO-lB7tbg_%uU~S;JsfG;H}aZ25FE!Ka%Z zpKcoUj>f`2%{=BfHbRb(X}4mX;i>Z{!OG#)WTjau-dT8SS&mj;G~N`R-qbuDHas1+ zS{)5Jt&WC#t&WDQR!2kPvCy)+1q{D)A*dV1) z1;?-;MUVuPY5)g_JYam#$ooXrm-mTmEbkN9(ae2L%G~i?{bku_1NGdUX#Y{X`*hsb z`{XMcoY!fL(1|R?bpm<|%g?8V^izJqm3q(nvtuHhA%C_Z3Hfw!IAcZ!F0}DK(I8Le z@HxHQI$>c4$utmtp~-Zu`S#;DAnXp)XLEz{AKL`Pe^j<$rqpJ}&hvNF9`0aL6p z>1Pk5_`=1hxlrlpKCb}&YB7=qE9ouKCI5Nu6wtkvUK>#Lbo$1n+Iz$>@o z2D1&qV5=9VytA!}3T;{LpmjG+@Xim-rB>k*I>tEVoSAawESJJr8md`qsAesfiU}?i zJub<*jb7@>@JyyN=9d_r+crOBD@@SrYO*vLfZr9UPp?4Z67%;)vpsd9D9kKsm76tI z$1$xf!L&AyX>BhBYR?L(`GB`~Xi2vTacyP9LB6GWE7tY|h3y`N?IVGDVFeUc9KG)} z5pT-S^tB6put|y8)M{d>iIj31qts;75f^6O>`2hv;nCd@em&FSX<=m7M>ZJg&w%m9 zg@fX0?55RJ!WFY|;>hUOQ+UVjp;r#=$BW(_8}XV8&BhL4Bl=7>HfbF!HCcBroN?}6 zIODr};f!_n!Wmf^&6t%Dy%c(P;fy#o-MB~qut}W+APnFDw%KUTH5<+O%|>&!*=SC@ z%sJy_(lU!vIVa5`lmO$T0TyXE>yU=CKGJa3A`NGyFSDjEG-T43SwXrD7A67cEeGuI z+&J58smV24YVw;cHQ8oMO>DN*q?;9mWwWIwX|`YFq5*w@`bgK#?L$xV^<7^&GWBZ5 z^LU3Bp7wj6q6I9Z|p?L0_zlAP7!6h0`;gHpv5Qowy>gpU088o z^tI6gXuz%7JQew}v?B!tUPBDAgXQho3q! z`Nq_t0|%#z?fW0~+I;HB)Z`KULPflYAyBDt9E+AkgVGExvTRO07~stoL#caTm>Qkj zdE~Y2ukRn9WH*KmP96CYwrBYFFTePw=lIQE*tG(bK3}8Ke_W%U-QByp_xlfAnY*xV z*NLD1;Xl0e>=-z&)c7Yx4v+3T^4j>(u~$dr^=qBD>I6?ZUmKquIXbm}#Jg^uj|{K(Gn>5ZE@d&l=3J22vS(ga#X@uZU;WY7i-joH1G7^g*4ny^*l~LdKu|WE>;!9cdhX{C`R(Sh}{1HNZ_5XTtgU5&!Pw09YzggrV-|pNsPWh?;$DTTri#@8J~=*PXwCANmk6`X;ej=-O4iviO;@CriinO-bBqQ z^tPBdQ>%!6@TZw2eh_^;HIlz9<>`MsXNhNJ7Uc}xeW06ighd8#@xZZb`+1b(DW&>sJ+|3{es$xs zQNER$<#}u(`S_=)6J8H1Y3%ZN*o8h+Qk6VsyqvGqYw*-tj_(O*9u~Qv`v5Rch=xp} zXZp9bd`FF{0xPO^aQM+>WX_Z1rf?3FKBFww;?vUi^55-Rxslg$dSMkg-CZ6Gsr$hL zJra1%F}3`IbuOtlT`0XBW0yMJt1vg>Z=>i%5@)$~l - + From 271e5a741430522e22734b0d8d1603c0ea492994 Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Tue, 25 Aug 2015 12:19:46 +0530 Subject: [PATCH 26/37] Fix for Bug 4308340:[SDKBash2][Powershell] Add tags in Vault object --- .../AzureBackupClientAdapter/VaultAdapter.cs | 6 +- .../Cmdlets/Vault/NewAzureRMBackupVault.cs | 10 +-- .../Cmdlets/Vault/SetAzureRMBackupVault.cs | 12 ++- .../Helpers/VaultHelpers.cs | 75 +++++++++++++++++++ .../Models/AzurePSBackupVault.cs | 3 +- 5 files changed, 96 insertions(+), 10 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs index 7867512414d2..ebed5ab73e6f 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs @@ -12,9 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.AzureBackup.Helpers; using Microsoft.Azure.Management.BackupServices.Models; using System; +using System.Collections; using System.Collections.Generic; +using System.Linq; namespace Microsoft.Azure.Commands.AzureBackup.ClientAdapter { @@ -29,7 +32,7 @@ public partial class AzureBackupClientAdapter /// /// /// - public AzureBackupVault CreateOrUpdateAzureBackupVault(string resourceGroupName, string vaultName, string location) + public AzureBackupVault CreateOrUpdateAzureBackupVault(string resourceGroupName, string vaultName, string location, Hashtable[] Tag) { var createResourceParameters = new AzureBackupVaultCreateOrUpdateParameters() { @@ -41,6 +44,7 @@ public AzureBackupVault CreateOrUpdateAzureBackupVault(string resourceGroupName, Name = defaultSKU, }, }, + Tags = Tag.ConvertToDictionary(), }; var response = AzureBackupVaultClient.Vault.CreateOrUpdateAsync(resourceGroupName, vaultName, createResourceParameters, GetCustomRequestHeaders(), CmdletCancellationToken).Result; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs index aca22a655f21..c57637623b17 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs @@ -16,6 +16,7 @@ using Microsoft.Azure.Commands.AzureBackup.Models; using Microsoft.Azure.Commands.AzureBackup.Properties; using System; +using System.Collections; using System.Management.Automation; namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets @@ -41,10 +42,9 @@ public class NewAzureRMBackupVault : AzureBackupCmdletBase [Parameter(Position = 3, Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.StorageType)] public AzureBackupVaultStorageType Storage { get; set; } - // TODO: Add support for tags - //[Alias("Tags")] - //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] - //public Hashtable[] Tag { get; set; } + [Alias("Tags")] + [Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] + public Hashtable[] Tag { get; set; } public override void ExecuteCmdlet() { @@ -55,7 +55,7 @@ public override void ExecuteCmdlet() WriteDebug(String.Format(Resources.CreatingBackupVault, ResourceGroupName, Name)); - var createdVault = AzureBackupClient.CreateOrUpdateAzureBackupVault(ResourceGroupName, Name, Region); + var createdVault = AzureBackupClient.CreateOrUpdateAzureBackupVault(ResourceGroupName, Name, Region, Tag); if (Storage != 0) { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs index 53419e94d4ae..e7f6377646d9 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs @@ -16,6 +16,7 @@ using Microsoft.Azure.Commands.AzureBackup.Models; using Microsoft.Azure.Commands.AzureBackup.Properties; using System; +using System.Collections; using System.Management.Automation; using CmdletModel = Microsoft.Azure.Commands.AzureBackup.Models; @@ -31,9 +32,9 @@ public class SetAzureRMBackupVault : AzureBackupVaultCmdletBase public AzureBackupVaultStorageType Storage { get; set; } // TODO: Add support for tags - //[Alias("Tags")] - //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] - //public Hashtable[] Tag { get; set; } + [Alias("Tags")] + [Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] + public Hashtable[] Tag { get; set; } public override void ExecuteCmdlet() { @@ -48,6 +49,11 @@ public override void ExecuteCmdlet() AzureBackupClient.UpdateStorageType(Vault.ResourceGroupName, Vault.Name, Storage.ToString()); } + if (Tag != null) + { + AzureBackupClient.CreateOrUpdateAzureBackupVault(Vault.ResourceGroupName, Vault.Name, Vault.Region, Tag); + } + var backupVault = AzureBackupClient.GetVault(Vault.ResourceGroupName, Vault.Name); WriteObject(VaultHelpers.GetCmdletVault(backupVault, AzureBackupClient.GetStorageTypeDetails(Vault.ResourceGroupName, Vault.Name))); }); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs index 2bb8d3805a01..c469988ec10f 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs @@ -13,6 +13,9 @@ // ---------------------------------------------------------------------------------- using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; using ClientModel = Microsoft.Azure.Management.BackupServices.Models; using CmdletModel = Microsoft.Azure.Commands.AzureBackup.Models; @@ -35,6 +38,7 @@ public static CmdletModel.AzureRMBackupVault GetCmdletVault(ClientModel.AzureBac Region = vault.Location, ResourceGroupName = GetResourceGroup(vault.Id), Storage = storageType, + Tags = vault.Tags.GetTagsHashtables(), }; return response; @@ -50,5 +54,76 @@ public static string GetResourceGroup(string vaultId) string[] tokens = vaultId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); return tokens[3]; } + + /// + /// Extension to convert enumerable Hashtable into a dictionary + /// + /// + /// + public static Dictionary ConvertToDictionary(this Hashtable[] tags) + { + return tags == null + ? null + : tags + .CoalesceEnumerable() + .Select(hashTable => hashTable.OfType() + .ToDictionary(kvp => kvp.Key.ToString(), kvp => kvp.Value)) + .Where(tagDictionary => tagDictionary.ContainsKey("Name")) + .Select(tagDictionary => Tuple + .Create( + tagDictionary["Name"].ToString(), + tagDictionary.ContainsKey("Value") ? tagDictionary["Value"].ToString() : string.Empty)) + .Distinct(kvp => kvp.Item1) + .ToDictionary(kvp => kvp.Item1, kvp => kvp.Item2); + } + + /// + /// Extension to coalesce enumerable + /// + /// Enumerable type + /// Enumerable + /// + public static IEnumerable CoalesceEnumerable(this IEnumerable source) + { + return source ?? Enumerable.Empty(); + } + + /// + /// Extension to remove duplicates from enumerable based on a provided key selector + /// + /// Enumerable type + /// Type of key + /// Input enumerable to remove duplicates from + /// Lambda to select key + /// + public static IEnumerable Distinct(this IEnumerable source, Func keySelector) + { + var set = new Dictionary(EqualityComparer.Default); + foreach (TSource element in source) + { + TSource value; + var key = keySelector(element); + if (!set.TryGetValue(key, out value)) + { + yield return element; + } + else + { + set[key] = value; + } + } + } + + /// + /// Extension to convert dictionary to hashtable enumerable + /// + /// + /// + public static Hashtable[] GetTagsHashtables(this IDictionary tags) + { + return tags == null + ? null + : tags.Select(kvp => new Hashtable { { "Name", kvp.Key }, { "Value", kvp.Value } }).ToArray(); + } } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs index a86ec7bc4aeb..39c7502b4a73 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs @@ -14,6 +14,7 @@ using Microsoft.Azure.Commands.AzureBackup.Properties; using System; +using System.Collections; namespace Microsoft.Azure.Commands.AzureBackup.Models { @@ -30,7 +31,7 @@ public class AzureRMBackupVault public string Region { get; set; } - // public Hashtable[] Tags { get; protected set; } + public Hashtable[] Tags { get; set; } public string Storage { get; set; } From c2b9577800ab3fd9e368ddd0cc7edf43e11fabba Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Tue, 25 Aug 2015 15:42:55 +0530 Subject: [PATCH 27/37] Disabling tags --- .../AzureBackupClientAdapter/VaultAdapter.cs | 3 +-- .../Cmdlets/Vault/NewAzureRMBackupVault.cs | 9 +++++---- .../Cmdlets/Vault/SetAzureRMBackupVault.cs | 11 +++-------- .../Commands.AzureBackup/Helpers/VaultHelpers.cs | 1 - .../Commands.AzureBackup/Models/AzurePSBackupVault.cs | 3 ++- 5 files changed, 11 insertions(+), 16 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs index ebed5ab73e6f..b028cba7a36f 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs @@ -32,7 +32,7 @@ public partial class AzureBackupClientAdapter /// /// /// - public AzureBackupVault CreateOrUpdateAzureBackupVault(string resourceGroupName, string vaultName, string location, Hashtable[] Tag) + public AzureBackupVault CreateOrUpdateAzureBackupVault(string resourceGroupName, string vaultName, string location) { var createResourceParameters = new AzureBackupVaultCreateOrUpdateParameters() { @@ -44,7 +44,6 @@ public AzureBackupVault CreateOrUpdateAzureBackupVault(string resourceGroupName, Name = defaultSKU, }, }, - Tags = Tag.ConvertToDictionary(), }; var response = AzureBackupVaultClient.Vault.CreateOrUpdateAsync(resourceGroupName, vaultName, createResourceParameters, GetCustomRequestHeaders(), CmdletCancellationToken).Result; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs index c57637623b17..7cf2bf566903 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs @@ -42,9 +42,10 @@ public class NewAzureRMBackupVault : AzureBackupCmdletBase [Parameter(Position = 3, Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.StorageType)] public AzureBackupVaultStorageType Storage { get; set; } - [Alias("Tags")] - [Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] - public Hashtable[] Tag { get; set; } + // TODO: Add support for tags + //[Alias("Tags")] + //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] + //public Hashtable[] Tag { get; set; } public override void ExecuteCmdlet() { @@ -55,7 +56,7 @@ public override void ExecuteCmdlet() WriteDebug(String.Format(Resources.CreatingBackupVault, ResourceGroupName, Name)); - var createdVault = AzureBackupClient.CreateOrUpdateAzureBackupVault(ResourceGroupName, Name, Region, Tag); + var createdVault = AzureBackupClient.CreateOrUpdateAzureBackupVault(ResourceGroupName, Name, Region); if (Storage != 0) { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs index e7f6377646d9..1b447931f0f7 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs @@ -32,9 +32,9 @@ public class SetAzureRMBackupVault : AzureBackupVaultCmdletBase public AzureBackupVaultStorageType Storage { get; set; } // TODO: Add support for tags - [Alias("Tags")] - [Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] - public Hashtable[] Tag { get; set; } + //[Alias("Tags")] + //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] + //public Hashtable[] Tag { get; set; } public override void ExecuteCmdlet() { @@ -49,11 +49,6 @@ public override void ExecuteCmdlet() AzureBackupClient.UpdateStorageType(Vault.ResourceGroupName, Vault.Name, Storage.ToString()); } - if (Tag != null) - { - AzureBackupClient.CreateOrUpdateAzureBackupVault(Vault.ResourceGroupName, Vault.Name, Vault.Region, Tag); - } - var backupVault = AzureBackupClient.GetVault(Vault.ResourceGroupName, Vault.Name); WriteObject(VaultHelpers.GetCmdletVault(backupVault, AzureBackupClient.GetStorageTypeDetails(Vault.ResourceGroupName, Vault.Name))); }); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs index c469988ec10f..818c318ef558 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs @@ -38,7 +38,6 @@ public static CmdletModel.AzureRMBackupVault GetCmdletVault(ClientModel.AzureBac Region = vault.Location, ResourceGroupName = GetResourceGroup(vault.Id), Storage = storageType, - Tags = vault.Tags.GetTagsHashtables(), }; return response; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs index 39c7502b4a73..b54918d3efe5 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs @@ -31,7 +31,8 @@ public class AzureRMBackupVault public string Region { get; set; } - public Hashtable[] Tags { get; set; } + // TODO: Add support for tags + //public Hashtable[] Tags { get; set; } public string Storage { get; set; } From 4ab2c88c19d6da36e7fcedf762c89c23b374a6a9 Mon Sep 17 00:00:00 2001 From: dragonfly91 Date: Tue, 25 Aug 2015 19:37:56 +0530 Subject: [PATCH 28/37] Removing unused usings --- .../AzureBackupClientAdapter/VaultAdapter.cs | 3 --- .../Cmdlets/Vault/NewAzureRMBackupVault.cs | 1 - .../Cmdlets/Vault/SetAzureRMBackupVault.cs | 1 - .../Commands.AzureBackup/Models/AzurePSBackupVault.cs | 1 - 4 files changed, 6 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs index b028cba7a36f..7867512414d2 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupClientAdapter/VaultAdapter.cs @@ -12,12 +12,9 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.AzureBackup.Helpers; using Microsoft.Azure.Management.BackupServices.Models; using System; -using System.Collections; using System.Collections.Generic; -using System.Linq; namespace Microsoft.Azure.Commands.AzureBackup.ClientAdapter { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs index 7cf2bf566903..aca22a655f21 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs @@ -16,7 +16,6 @@ using Microsoft.Azure.Commands.AzureBackup.Models; using Microsoft.Azure.Commands.AzureBackup.Properties; using System; -using System.Collections; using System.Management.Automation; namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs index 1b447931f0f7..53419e94d4ae 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs @@ -16,7 +16,6 @@ using Microsoft.Azure.Commands.AzureBackup.Models; using Microsoft.Azure.Commands.AzureBackup.Properties; using System; -using System.Collections; using System.Management.Automation; using CmdletModel = Microsoft.Azure.Commands.AzureBackup.Models; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs index b54918d3efe5..d57047ba15ee 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzurePSBackupVault.cs @@ -14,7 +14,6 @@ using Microsoft.Azure.Commands.AzureBackup.Properties; using System; -using System.Collections; namespace Microsoft.Azure.Commands.AzureBackup.Models { From 79b49afb9804ee3c6e02e3260f7eb168ebcb668e Mon Sep 17 00:00:00 2001 From: Samuel Anudeep Date: Tue, 25 Aug 2015 21:33:44 +0530 Subject: [PATCH 29/37] Incorporating PR comments Commented unused code. --- .../Helpers/VaultHelpers.cs | 88 ++++++++++--------- 1 file changed, 45 insertions(+), 43 deletions(-) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs index 818c318ef558..4d51fb5458ad 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Helpers/VaultHelpers.cs @@ -54,27 +54,29 @@ public static string GetResourceGroup(string vaultId) return tokens[3]; } + // NOTE: Commenting code which will be used in a later sprint, but not right now. + /// /// Extension to convert enumerable Hashtable into a dictionary /// /// /// - public static Dictionary ConvertToDictionary(this Hashtable[] tags) - { - return tags == null - ? null - : tags - .CoalesceEnumerable() - .Select(hashTable => hashTable.OfType() - .ToDictionary(kvp => kvp.Key.ToString(), kvp => kvp.Value)) - .Where(tagDictionary => tagDictionary.ContainsKey("Name")) - .Select(tagDictionary => Tuple - .Create( - tagDictionary["Name"].ToString(), - tagDictionary.ContainsKey("Value") ? tagDictionary["Value"].ToString() : string.Empty)) - .Distinct(kvp => kvp.Item1) - .ToDictionary(kvp => kvp.Item1, kvp => kvp.Item2); - } + // public static Dictionary ConvertToDictionary(this Hashtable[] tags) + // { + // return tags == null + // ? null + // : tags + // .CoalesceEnumerable() + // .Select(hashTable => hashTable.OfType() + // .ToDictionary(kvp => kvp.Key.ToString(), kvp => kvp.Value)) + // .Where(tagDictionary => tagDictionary.ContainsKey("Name")) + // .Select(tagDictionary => Tuple + // .Create( + // tagDictionary["Name"].ToString(), + // tagDictionary.ContainsKey("Value") ? tagDictionary["Value"].ToString() : string.Empty)) + // .Distinct(kvp => kvp.Item1) + // .ToDictionary(kvp => kvp.Item1, kvp => kvp.Item2); + // } /// /// Extension to coalesce enumerable @@ -82,10 +84,10 @@ public static Dictionary ConvertToDictionary(this Hashtable[] ta /// Enumerable type /// Enumerable /// - public static IEnumerable CoalesceEnumerable(this IEnumerable source) - { - return source ?? Enumerable.Empty(); - } + // public static IEnumerable CoalesceEnumerable(this IEnumerable source) + // { + // return source ?? Enumerable.Empty(); + // } /// /// Extension to remove duplicates from enumerable based on a provided key selector @@ -95,34 +97,34 @@ public static IEnumerable CoalesceEnumerable(this IEnumerable< /// Input enumerable to remove duplicates from /// Lambda to select key /// - public static IEnumerable Distinct(this IEnumerable source, Func keySelector) - { - var set = new Dictionary(EqualityComparer.Default); - foreach (TSource element in source) - { - TSource value; - var key = keySelector(element); - if (!set.TryGetValue(key, out value)) - { - yield return element; - } - else - { - set[key] = value; - } - } - } + // public static IEnumerable Distinct(this IEnumerable source, Func keySelector) + // { + // var set = new Dictionary(EqualityComparer.Default); + // foreach (TSource element in source) + // { + // TSource value; + // var key = keySelector(element); + // if (!set.TryGetValue(key, out value)) + // { + // yield return element; + // } + // else + // { + // set[key] = value; + // } + // } + // } /// /// Extension to convert dictionary to hashtable enumerable /// /// /// - public static Hashtable[] GetTagsHashtables(this IDictionary tags) - { - return tags == null - ? null - : tags.Select(kvp => new Hashtable { { "Name", kvp.Key }, { "Value", kvp.Value } }).ToArray(); - } + // public static Hashtable[] GetTagsHashtables(this IDictionary tags) + // { + // return tags == null + // ? null + // : tags.Select(kvp => new Hashtable { { "Name", kvp.Key }, { "Value", kvp.Value } }).ToArray(); + // } } } From 53ff0838256345bfb7e6d6513a996721bc84de42 Mon Sep 17 00:00:00 2001 From: j82w Date: Tue, 25 Aug 2015 10:53:27 -0700 Subject: [PATCH 30/37] Fixed ServerActiveDirectoryAdministratorTest. Removed a check for the graph endpoint when setting the Azure SQL Server Active Directory administrator that caused the test to fail. --- .../AzureSqlServerActiveDirectoryAdministratorAdapter.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs index 500a365733d5..11e570a0f9b8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs @@ -65,10 +65,6 @@ public MicrosoftAzureCommandsResourcesModelsActiveDirectory.ActiveDirectoryClien { if (_activeDirectoryClient == null) { - if (!Profile.Context.Environment.IsEndpointSet(AzureEnvironment.Endpoint.Graph)) - { - throw new ArgumentException(string.Format(Resources.InvalidGraphEndpoint)); - } _activeDirectoryClient = new MicrosoftAzureCommandsResourcesModelsActiveDirectory.ActiveDirectoryClient(Profile.Context); } return this._activeDirectoryClient; From 5505ab94c4d19ef9e6e6339b2bcd2f668e61e154 Mon Sep 17 00:00:00 2001 From: Shefali Date: Tue, 25 Aug 2015 13:31:34 -0700 Subject: [PATCH 31/37] updating references to hdi nuget --- .../Commands.HDInsight/HDInsight.csproj | 48 +++++++++---------- .../Commands.HDInsight/packages.config | 14 +++--- 2 files changed, 29 insertions(+), 33 deletions(-) diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj index 7627df4c323d..8e564c431416 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj @@ -71,25 +71,22 @@ False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.7-preview\lib\net40\Microsoft.Azure.ResourceManager.dll - - False - ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + ..\..\..\packages\Microsoft.Data.Edm.5.6.0\lib\net40\Microsoft.Data.Edm.dll - - False - ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + ..\..\..\packages\Microsoft.Data.OData.5.6.0\lib\net40\Microsoft.Data.OData.dll - - False - ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.0\lib\net40\Microsoft.Data.Services.Client.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.Hadoop.Client.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.Hadoop.Client.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -124,25 +121,25 @@ False ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll - + False - ..\..\..\packages\WindowsAzure.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll + ..\..\..\packages\WindowsAzure.Storage.3.0.3.0\lib\net40\Microsoft.WindowsAzure.Storage.dll False @@ -163,9 +160,8 @@ ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll - - False - ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + + ..\..\..\packages\System.Spatial.5.6.0\lib\net40\System.Spatial.dll diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config index 25633f0fa4da..d70c540f8ae4 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config @@ -9,18 +9,18 @@ - - - - + + + + - + - - + + From b23decf30a1e4950c183d18000e7212f33e4a2c3 Mon Sep 17 00:00:00 2001 From: j82w Date: Tue, 25 Aug 2015 13:37:24 -0700 Subject: [PATCH 32/37] Set the graph endpoint in the test framework to fix the TestServerActiveDirectoryAdministratorCRUD. --- .../Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs | 3 +++ .../AzureSqlServerActiveDirectoryAdministratorAdapter.cs | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs index 0af96163993d..4d9a6c10f26e 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlEvnSetupHelper.cs @@ -89,6 +89,9 @@ public void SetupEnvironment() ProfileClient.Profile.Accounts[testAccount.Id] = testAccount; ProfileClient.SetSubscriptionAsDefault(testSubscription.Name, testSubscription.Account); + var environment = ProfileClient.Profile.Environments[ProfileClient.Profile.DefaultSubscription.Environment]; + environment.Endpoints[AzureEnvironment.Endpoint.Graph] = csmEnvironment.Endpoints.GraphUri.AbsoluteUri; + ProfileClient.Profile.Save(); } } diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs index 11e570a0f9b8..500a365733d5 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs @@ -65,6 +65,10 @@ public MicrosoftAzureCommandsResourcesModelsActiveDirectory.ActiveDirectoryClien { if (_activeDirectoryClient == null) { + if (!Profile.Context.Environment.IsEndpointSet(AzureEnvironment.Endpoint.Graph)) + { + throw new ArgumentException(string.Format(Resources.InvalidGraphEndpoint)); + } _activeDirectoryClient = new MicrosoftAzureCommandsResourcesModelsActiveDirectory.ActiveDirectoryClient(Profile.Context); } return this._activeDirectoryClient; From 85ef6b5145fffa643a106f2baa4074d7d67efcc9 Mon Sep 17 00:00:00 2001 From: Shefali Date: Tue, 25 Aug 2015 14:01:58 -0700 Subject: [PATCH 33/37] updating test refs --- setup/azurecmdfiles.wxi | 96 +++++++++++++++++++ .../Commands.HDInsight.Test.csproj | 59 ++++++------ .../Commands.HDInsight.Test/packages.config | 14 +-- 3 files changed, 135 insertions(+), 34 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 1343534e150d..1b36ee163dae 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -578,6 +578,15 @@ + + + + + + + + + @@ -623,6 +632,9 @@ + + + @@ -1187,6 +1199,15 @@ + + + + + + + + + @@ -1223,6 +1244,9 @@ + + + @@ -1326,6 +1350,15 @@ + + + + + + + + + @@ -1353,6 +1386,9 @@ + + + @@ -1421,6 +1457,15 @@ + + + + + + + + + @@ -1469,6 +1514,9 @@ + + + @@ -3227,6 +3275,15 @@ + + + + + + + + + @@ -3344,6 +3401,9 @@ + + + @@ -4682,6 +4742,15 @@ + + + + + + + + + @@ -4733,6 +4802,9 @@ + + + @@ -4919,6 +4991,9 @@ + + + @@ -4934,6 +5009,7 @@ + @@ -5110,6 +5186,9 @@ + + + @@ -5122,6 +5201,7 @@ + @@ -5155,6 +5235,9 @@ + + + @@ -5164,6 +5247,7 @@ + @@ -5186,6 +5270,9 @@ + + + @@ -5202,6 +5289,7 @@ + @@ -5774,6 +5862,9 @@ + + + @@ -5813,6 +5904,7 @@ + @@ -6233,6 +6325,9 @@ + + + @@ -6250,6 +6345,7 @@ + diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj index 565f4f9786a5..e60bb7edd892 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -43,7 +43,8 @@ false - + + False ..\..\..\packages\BouncyCastle.1.7.0\lib\Net40-Client\BouncyCastle.Crypto.dll @@ -67,23 +68,22 @@ ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5687.28567-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll True - - False - ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + ..\..\..\packages\Microsoft.Data.Edm.5.6.0\lib\net40\Microsoft.Data.Edm.dll - - False - ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + ..\..\..\packages\Microsoft.Data.OData.5.6.0\lib\net40\Microsoft.Data.OData.dll - - False - ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.0\lib\net40\Microsoft.Data.Services.Client.dll - - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.Hadoop.Client.dll + + False + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.Hadoop.Client.dll - - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll + + False + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll False @@ -118,20 +118,25 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll + + False + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll - - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll + + False + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll - - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll + + False + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll - - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll + + False + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll - - ..\..\..\packages\WindowsAzure.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll + + False + ..\..\..\packages\WindowsAzure.Storage.3.0.3.0\lib\net40\Microsoft.WindowsAzure.Storage.dll ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll @@ -156,9 +161,8 @@ - - False - ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + + ..\..\..\packages\System.Spatial.5.6.0\lib\net40\System.Spatial.dll @@ -259,6 +263,7 @@ + Designer diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config index c64f9f9af1c8..00a87cb382ed 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config @@ -10,21 +10,21 @@ - - - - + + + + - + - - + + From c8aff29ce9f278b9e3bc17f3124900e06e89a435 Mon Sep 17 00:00:00 2001 From: Shefali Date: Tue, 25 Aug 2015 14:16:54 -0700 Subject: [PATCH 34/37] remove app.config --- .../Commands.HDInsight.Test/Commands.HDInsight.Test.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj index e60bb7edd892..61a94fdf2e85 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -263,7 +263,6 @@ - Designer From ac98ca33439c7328a29cc729656144fb6d5a1e62 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Tue, 25 Aug 2015 15:43:59 -0700 Subject: [PATCH 35/37] Warn users for upcoming changes to test cmdlets --- .../Cmdlets/Implementation/TestAzureResourceCmdlet.cs | 1 + .../Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs | 1 + .../Templates/TestAzureResourceGroupTemplateCommand.cs | 1 + 3 files changed, 3 insertions(+) diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs index 5d38636d9610..04ef0f8abb30 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs @@ -131,6 +131,7 @@ protected override void OnProcessRecord() /// private void RunCmdlet() { + this.WriteWarning("The Test-AzureResource cmdlet is being deprecated and will be removed in a future release."); this.WriteObject(this.TestResource()); } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs index 3de440f13e6f..3803da52b23a 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs @@ -57,6 +57,7 @@ protected override void OnProcessRecord() /// private void RunCmdlet() { + this.WriteWarning("The Test-AzureResourceGroup cmdlet is being deprecated and will be removed in a future release."); this.WriteObject(this.TestResourceGroup()); } diff --git a/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs b/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs index d1b743791b85..7b9b658e11d1 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs @@ -40,6 +40,7 @@ public TestAzureResourceGroupTemplateCommand() public override void ExecuteCmdlet() { + this.WriteWarning("The Test-AzureResourceGroupTemplate cmdlet is being renamed to Test-AzureResourceGroupDeployment in a future release."); ValidatePSResourceGroupDeploymentParameters parameters = new ValidatePSResourceGroupDeploymentParameters() { ResourceGroupName = ResourceGroupName, From 05067d2ada2ccce1ac643871be6ea4ffc35ecc51 Mon Sep 17 00:00:00 2001 From: Mark Cowlishaw Date: Tue, 25 Aug 2015 16:37:06 -0700 Subject: [PATCH 36/37] Update ChangeLog.md --- ChangeLog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog.md b/ChangeLog.md index 9e97c0149675..8c38cdefb168 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,5 @@ +## 2015.09.03 version 0.9.8 + ## 2015.08.17 version 0.9.7 * Azure Profile cmdlets * New-AzureProfile From f5bfaacebbbefadf7a8b68de4bc978c1eaca7469 Mon Sep 17 00:00:00 2001 From: markcowl Date: Tue, 25 Aug 2015 22:07:37 -0700 Subject: [PATCH 37/37] Update wix file in dev branch --- setup/azurecmdfiles.wxi | 100 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 1343534e150d..1dbfaa5bc76a 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -578,6 +578,15 @@ + + + + + + + + + @@ -623,6 +632,9 @@ + + + @@ -1187,6 +1199,15 @@ + + + + + + + + + @@ -1223,6 +1244,9 @@ + + + @@ -1326,6 +1350,15 @@ + + + + + + + + + @@ -1353,6 +1386,9 @@ + + + @@ -1421,6 +1457,15 @@ + + + + + + + + + @@ -1469,6 +1514,9 @@ + + + @@ -2026,6 +2074,9 @@ + + + @@ -3227,6 +3278,15 @@ + + + + + + + + + @@ -3344,6 +3404,9 @@ + + + @@ -4682,6 +4745,15 @@ + + + + + + + + + @@ -4733,6 +4805,9 @@ + + + @@ -4919,6 +4994,9 @@ + + + @@ -4934,6 +5012,7 @@ + @@ -5110,6 +5189,9 @@ + + + @@ -5122,6 +5204,7 @@ + @@ -5155,6 +5238,9 @@ + + + @@ -5164,6 +5250,7 @@ + @@ -5186,6 +5273,9 @@ + + + @@ -5202,6 +5292,7 @@ + @@ -5383,6 +5474,7 @@ + @@ -5774,6 +5866,9 @@ + + + @@ -5813,6 +5908,7 @@ + @@ -6233,6 +6329,9 @@ + + + @@ -6250,6 +6349,7 @@ +